Added missing hoshi points, removed some now unneeded image files
This commit is contained in:
parent
740f914bd1
commit
b7f1d5b58d
4
pygo.py
4
pygo.py
|
@ -63,7 +63,7 @@ class GobanSquare:
|
|||
self.default_draw_code = 'dl'
|
||||
elif (self.x, self.y) == (19,19):
|
||||
self.default_draw_code = 'dr'
|
||||
elif (self.x, self.y) in [(4,4), (4,16), (16,4), (16,16)]:
|
||||
elif (self.x, self.y) in [(4,4), (4,10), (4,16), (10,4), (10,10), (10,16), (16,4), (16,10), (16,16)]:
|
||||
self.default_draw_code = 'h'
|
||||
elif self.x == 1:
|
||||
self.default_draw_code = 'u'
|
||||
|
@ -121,7 +121,7 @@ def main():
|
|||
# Build the dict of image objects
|
||||
img_res = build_img_res()
|
||||
|
||||
# Build the 361 board sprites
|
||||
# Build the 361 board intersections
|
||||
goban = []
|
||||
for i in range(19):
|
||||
goban.append([])
|
||||
|
|
BIN
res/go_b.png
BIN
res/go_b.png
Binary file not shown.
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 30 KiB |
BIN
res/go_bT.png
BIN
res/go_bT.png
Binary file not shown.
Before Width: | Height: | Size: 44 KiB |
BIN
res/go_w.png
BIN
res/go_w.png
Binary file not shown.
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 38 KiB |
BIN
res/go_wT.png
BIN
res/go_wT.png
Binary file not shown.
Before Width: | Height: | Size: 48 KiB |
Loading…
Reference in New Issue
Block a user