This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PySudoku.py
59 lines (48 loc) · 1.84 KB
/
PySudoku.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import sys, os, random, pygame
sys.path.append(os.path.join("objects"))
import SudokuSquare
from utils import *
from GameResources import *
def play(values, result, history):
assignments = reconstruct(result, history)
pygame.init()
size = width, height = 700, 700
screen = pygame.display.set_mode(size)
background_image = pygame.image.load("./images/sudoku-board-bare.jpg").convert()
clock = pygame.time.Clock()
while True:
pygame.event.pump()
theSquares = []
initXLoc = 0
initYLoc = 0
startX, startY, editable, number = 0, 0, "N", 0
for y in range(9):
for x in range(9):
if x in (0, 1, 2): startX = (x * 57) + 38
if x in (3, 4, 5): startX = (x * 57) + 99
if x in (6, 7, 8): startX = (x * 57) + 159
if y in (0, 1, 2): startY = (y * 57) + 35
if y in (3, 4, 5): startY = (y * 57) + 100
if y in (6, 7, 8): startY = (y * 57) + 165
string_number = values[rows[y] + cols[x]]
if len(string_number) > 1 or string_number == '' or string_number == '.':
number = None
else:
number = int(string_number)
theSquares.append(SudokuSquare.SudokuSquare(number, startX, startY, editable, x, y))
screen.blit(background_image, (0, 0))
for num in theSquares:
num.draw()
pygame.display.flip()
pygame.display.update()
clock.tick(5)
if len(assignments) == 0:
break
box, value = assignments.pop()
values[box] = value
# leave game showing until closed by user
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
quit()