-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdungeon_cross.py
executable file
·885 lines (787 loc) · 35.6 KB
/
dungeon_cross.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
#!/usr/bin/python3
# Dungeon Cross
# Written by HalfBurntToast
# https://github.com/halfburnttoast/Dungeon-Cross
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
from copy import deepcopy
import math
import gzip
import json
import time
import numpy
import pygame
import random
import logging
import hashlib
import pygame_menu
import pygame_menu.locals
import pygame_menu.events
from collections import namedtuple
# local includes
import log_system
import sound_handler
from map_object_enum import MapObject
from resource_path import resource_path
from save_game import SaveFile
from debug_timer import debug_timer
from mouse_action_enum import MouseAction
VERSION = "v1.1.0"
G_LOG_LEVEL = logging.INFO
TILE_SIZE = 90
G_RESOLUTION = (TILE_SIZE * 9, TILE_SIZE * 9)
TARGET_FPS = 60
THEME_COLOR = (100, 70, 0)
# Used to store a single user action for undo/redo functions
HistoryAction = namedtuple("HistoryAction", ['x', 'y', 'old_state', 'new_state'])
class DungeonCross:
def __init__(self, screen: pygame.Surface, sound: sound_handler.SoundHandler) -> None:
# I/O Objects
self._screen: pygame.Surface = screen
self._sound: sound_handler.SoundHandler = sound
self._save_file = SaveFile("dungeon_cross.sav")
# Create Menus
self._menu_theme = self._menu_build_theme()
self._menu_tutorial = self._menu_build_tutorial()
self._menu_about = self._menu_build_about()
self._menu = self._menu_build_main()
self._menu_pid: int = 0
self._menu_backdrop = pygame.Surface(self._screen.get_size())
self._menu_backdrop.fill((50, 50, 50))
self._menu_backdrop.set_alpha(150)
# System settings
self._power_save = False
# Game variables
self.game_won = False
self._open_puzzle_id = -1
self._action_history = []
self._action_history_idx = 0
self._action_history_idx_top = 0
self._board_layout = []
self._puzzle_book = []
self._placed_walls = []
self._hint_x = [0] * 8
self._hint_y = [0] * 8
self._x_err = []
self._y_err = []
self._x_lim = []
self._y_lim = []
self._map_hash: str = ""
self._mouse_action: MouseAction = MouseAction.NONE.value
self._check_board_state = False
self._player_wins = 0
# UI variables
self._needs_display_update = True
self._font_offset = 32
self._font_pos_offset = self._font_offset / 2
self._menu_is_open = False
self._cb_mode = False
# error overlay
self._err_overlay_og = pygame.Surface((TILE_SIZE, TILE_SIZE))
self._err_overlay_og.fill((255, 0, 0))
self._err_overlay_og.set_alpha(120)
# colorblind error overlay
self._err_overlay_cb = pygame.Surface((TILE_SIZE, TILE_SIZE))
self._err_overlay_cb.fill((0, 100, 200))
self._err_overlay_cb.set_alpha(180)
err_overlay_sprite = self._load_sprite('sprite/error.png')
err_overlay_sprite.set_alpha(120)
self._err_overlay_cb.blit(err_overlay_sprite, (0, 0))
# set default error overlay to "normal" (not colorblind) mode
self._err_overlay = self._err_overlay_og
# limit overlay, used to show when a row/column has the needed number of walls
self._limit_overlay = pygame.Surface((TILE_SIZE, TILE_SIZE))
self._limit_overlay.fill((0, 0, 0))
self._limit_overlay.set_alpha(120)
# load sprites for both normal and colorblind modes
self._sprite_enemy_cb = self._load_sprite('sprite/cb_enemy.png')
self._sprite_enemy_og = self._load_sprite('sprite/enemy.png')
self._sprite_wall_cb = self._load_sprite('sprite/cb_wall.png')
self._sprite_wall_og = self._load_sprite('sprite/wall3.png')
self._sprite_mark_cb = self._load_sprite('sprite/cb_mark.png')
self._sprite_mark_og = self._load_sprite('sprite/mark4.png')
self._sprite_floor_og = self._load_sprite('sprite/floor4.png')
self._sprite_floor_cb = self._load_sprite('sprite/cb_floor2.png')
self._sprite_wall = self._sprite_wall_og
self._sprite_mark = self._sprite_mark_og
self._sprite_enemy = self._sprite_enemy_og
self._sprite_floor = self._sprite_floor_og
self._sprite_chest = self._load_sprite('sprite/chest.png')
self._sprite_frame = self._load_sprite('sprite/frame3.png')
self._sprite_book = self._load_sprite('sprite/book.png')
self._sprite_win = self._load_sprite('sprite/win.png', G_RESOLUTION[0], G_RESOLUTION[1])
self._sprite_number = []
for i in range(0, 9):
self._sprite_number.append(self._load_sprite(f"sprite/{i}.png", TILE_SIZE - self._font_offset, TILE_SIZE - self._font_offset))
pygame.display.set_icon(self._sprite_book)
# load sound effects
self._sound_win = self._sound.load_sfx('audio/sfx/level_win.mp3')
self._sound_wall = self._sound.load_sfx('audio/sfx/place_wall.mp3')
self._sound_mark = self._sound.load_sfx('audio/sfx/place_mark.mp3')
self._sound_open = self._sound.load_sfx('audio/sfx/level_open.mp3')
@property
def number_of_puzzles(self) -> int:
"""Returns total number of puzzles loaded."""
return len(self._puzzle_book)
@property
def current_puzzle_id(self) -> int:
"""Return currently open puzzle ID number."""
return self._open_puzzle_id
@property
def needs_display_update(self) -> bool:
return self._needs_display_update
@needs_display_update.setter
def needs_display_update(self, val: bool):
if val:
self._needs_display_update = True
def update(self):
"""Main game update function. Should be called in main loop once per frame."""
if not self._menu_is_open:
self._game_handle_mouse()
if not self._power_save or self._needs_display_update:
self._draw_game()
self._needs_display_update = False
else:
self._menu.enable()
self._menu.mainloop(self._screen, bgfun=self._draw_game)
@debug_timer
def load_puzzle_book(self, file_name: str = "puzzles.json.gz"):
"""Loads a gzipped JSON file containing the puzzle data. Puzzles are stored as a list of lists."""
logging.info(f"Opening puzzle book: {file_name}.")
try:
with gzip.open(resource_path(file_name), 'r') as f:
self._puzzle_book = json.load(f)
f.close()
logging.info(f"{len(self._puzzle_book)} puzzles loaded.")
except FileNotFoundError:
logging.warning(f"Couldn't open file: {file_name}")
raise
except json.JSONDecodeError:
logging.warning(f"Error reading file: {file_name}")
raise
def open_puzzle(self, fq_map_id: int = 0) -> None:
"""
Opens a puzzle by ID. Whatever method you use to select a puzzle number
by should end with calling this method. Invalid puzzle IDs will default
to puzzle #0. The two left-most digits determine the orientation of the
map. For example, map #1200045 can be viewed as map 1-2-00045, which will:
Load map number 00045
Rotate the map 90-degrees clockwise twice (2)
Flip the map (1)
"""
logging.debug(f"Input fq_map_id: {fq_map_id}")
map_id_str: str = f"{fq_map_id:07d}"
flip: bool = bool(int(map_id_str[0]))
rot: int = int(map_id_str[1]) % 4
num: int = int(map_id_str[2:])
logging.info(f"Opening puzzle #{num:05d} with modifiers r({rot}), f({flip}).")
# reset board data
self._hint_x = [0] * 8
self._hint_y = [0] * 8
self._x_err = []
self._y_err = []
# reset user history
self._action_history = []
self._action_history_idx = 0
self._action_history_idx_top = 0
# if we attempt to load an invalid puzzle, default to puzzle 0
if num not in range(0, self.number_of_puzzles + 1):
logging.error(f"Attempted to load invalid puzzle ID {num}")
num = 0
# load and setup game board
self.game_won = False
self._open_puzzle_id = fq_map_id
self._board_layout = deepcopy(self._puzzle_book[num])
# apply modifications after map load if needed
if rot != 0:
mp: numpy.ndarray = numpy.array(self._board_layout)
for _ in range(rot):
mp = numpy.rot90(mp)
self._board_layout = mp.tolist()
if flip != 0:
mp: numpy.ndarray = numpy.array(self._board_layout)
mp = numpy.flip(mp)
self._board_layout = mp.tolist()
# prepare rest of the board
self._calc_hints()
self._placed_walls = self._strip_walls()
self._check_board_state = False
self._sound.play_sfx(self._sound_open)
self._update_hint_vars()
self._map_hash = hashlib.sha256(repr(self._board_layout).encode()).hexdigest()
self._menu.get_widget("PUZZLE_ID").set_value(f"{fq_map_id:07d}")
self._menu_pid = num
logging.debug(f"Map hash: {self._map_hash}")
pygame.display.set_caption(f"Dungeon Cross - {VERSION} - Puzzle #{fq_map_id:07d} - Wins: {self._player_wins}")
self._needs_display_update = True
def open_random_puzzle(self):
"""Opens a random puzzle. Will not select the same puzzle twice in a row."""
pid = random.choice(range(0, len(self._puzzle_book)))
flip = random.randint(0, 1)
rot = random.randint(0, 3)
pid = int(f"{flip:01d}{rot:01d}{pid:05d}")
if pid == self.current_puzzle_id:
pid = (pid + 1) % len(self._puzzle_book)
self._open_puzzle_id = pid
self.open_puzzle(pid)
def handle_io_event(self, event: pygame.event.Event) -> bool:
"""Pass pygame events to this function. Returns false if ESCAPE key was pressed."""
if not self._menu_is_open:
if event.type == pygame.KEYDOWN:
self.needs_display_update = True
mods = pygame.key.get_mods()
shift_pressed = bool(mods & 0x1)
ctrl_pressed = bool(mods & 0x40)
if event.key == pygame.K_ESCAPE:
return False
if not self._menu_is_open:
if event.key == pygame.K_SPACE:
self.open_random_puzzle()
elif event.key == pygame.K_r:
self.open_puzzle(self.current_puzzle_id)
elif event.key == pygame.K_z:
if ctrl_pressed:
if not shift_pressed:
self._undo_action()
self._update_hint_vars()
else:
self._redo_action()
self._update_hint_vars()
elif event.key == pygame.K_y and ctrl_pressed:
self._redo_action()
self._update_hint_vars()
elif event.type == pygame.MOUSEBUTTONDOWN:
lm = event.button == 1
rm = event.button == 3
self._game_handle_mouse(lm_event=lm, rm_event=rm)
return True
### Save game methods
def load_save(self):
try:
data = self._save_file.get_save_data()
self._player_wins = data["WINS"]
# if version matches, load settings
if data["VERSION"] == VERSION:
# sound settings
self._sound.enabled = data["SOUND"]
if not self._sound.enabled:
self._sound.stop_music()
self._sound.enabled = False
self._menu.get_widget("SOUND").set_value(False)
# colorblind mode settings
self._cb_mode = data["CB_MODE"]
if self._cb_mode:
w = self._menu.get_widget("CB_MODE")
w.set_value(True)
w._onchange(True)
# power save settings
self._power_save = data["PW_SAVE"]
if self._power_save:
w = self._menu.get_widget("PW_SAVE")
w.set_value(True)
w._onchange(True)
# open the last puzzle and reload user progress
self.open_puzzle(data["LEVEL"])
logging.debug(f"Save hash: {data['MAPHASH']}")
if data["MAPHASH"] == self._map_hash:
self._placed_walls = data["PROGRESS"]
self._update_hint_vars()
else:
logging.warning("Map hash invalid for puzzle ID.")
logging.warning(f"Expected: {data['MAPHASH']}")
logging.warning(f"Actual : {self._map_hash}")
self.open_random_puzzle()
else:
self.open_random_puzzle()
except Exception as e:
logging.error(f"Exception opening/reading save file {self._save_file.get_save_path()}\n{e}")
self.open_random_puzzle()
def save_game(self):
try:
save_data = {}
save_data['VERSION'] = VERSION
save_data['WINS'] = self._player_wins
save_data['SOUND'] = self._sound.enabled
save_data['CB_MODE'] = self._cb_mode
save_data['PW_SAVE'] = self._power_save
save_data["LEVEL"] = self.current_puzzle_id
save_data["PROGRESS"] = self._placed_walls
save_data["MAPHASH"] = self._map_hash
logging.debug(f"Save hash: {self._map_hash}")
self._save_file.store_save_data(save_data)
except Exception as e: # temporary catchall
logging.error(f"Could not save to save file. \n{e}")
def _load_sprite(self, path: str, size_x: int = TILE_SIZE, size_y: int = TILE_SIZE) -> pygame.image:
"""
Load a sprite of a given size (size_x, size_y), returns the pygame image.
This should be called rather than directly calling pygame.image.load because
it automatically detects the correct path of the asset, whether the program
is running from the main directory or if it's compiled as a standalone executable.
"""
logging.debug(f"Loading sprite: {path}. Size ({size_x}, {size_y})")
try:
image = pygame.image.load(resource_path(path))
return pygame.transform.scale(image, (size_x, size_x))
except FileNotFoundError:
logging.critical(f"Could not open sprite: {path}")
raise
def _undo_action(self):
"""Undo a move from the user. Retains history for Redo function."""
if self._action_history_idx > 0:
self._action_history_idx -= 1
action: HistoryAction = self._action_history[self._action_history_idx]
self._placed_walls[action.y][action.x] = action.old_state
def _redo_action(self):
"""Redo an action after an undo was made."""
if self._action_history_idx < self._action_history_idx_top:
action: HistoryAction = self._action_history[self._action_history_idx]
self._action_history_idx += 1
self._placed_walls[action.y][action.x] = action.new_state
### Draw Methods
def _draw_game(self):
"""
Redraws the entire game board. This should be called by the engine and not by
the user. This function should only run when there has been a change to the
game board itself, or if the window has changed focus states.
Render processs goes like:
1. Draw outer hint frame
2. Draw the map tiles (minus the walls) from the puzzle book answer
3. Draw the user-placed walls/marks
4. Draw the error overlays on the hint frame
5. Draw the limit overlays on the hint frame
"""
self._draw_frame()
for y in range(1, 9):
for x in range(1, 9):
self._screen.blit(self._sprite_floor, (x * TILE_SIZE, y * TILE_SIZE))
self._draw_map_tiles(show_wall=False)
self._draw_placed_objects()
self._draw_errors()
self._draw_limit()
if self.game_won:
self._screen.blit(self._sprite_win, (0, 0))
if self._menu_is_open:
self._screen.blit(self._menu_backdrop, (0, 0))
def _draw_sprite(self, sprite: pygame.image, grid_pos: tuple):
"""
Draws a grid-oriented sprite to an (x, y) position.
x and y are GRID positions, not pixel coordinates.
"""
pos_x = (grid_pos[0] + 1) * TILE_SIZE
pos_y = (grid_pos[1] + 1) * TILE_SIZE
self._screen.blit(sprite, (pos_x, pos_y))
def _draw_placed_objects(self):
"""Draws all user-placed objects on board. Should be called after _draw_map_tiles"""
for y, row in enumerate(self._placed_walls):
for x, obj in enumerate(row):
if obj == MapObject.WALL.value:
self._draw_sprite(self._sprite_wall, (x, y))
elif obj == MapObject.MARK.value:
self._draw_sprite(self._sprite_mark, (x, y))
def _draw_map_tiles(self, show_wall: bool = False):
"""
Draws the map to the board including enemies and chests.
If show_wall is True, it also draws the walls for the map.
"""
for y, row in enumerate(self._board_layout):
for x, obj in enumerate(row):
if show_wall and obj == MapObject.WALL.value:
self._draw_sprite(self._sprite_wall, (x, y))
elif obj == MapObject.ENEMY.value:
self._draw_sprite(self._sprite_enemy, (x, y))
elif obj == MapObject.CHEST.value:
self._draw_sprite(self._sprite_chest, (x, y))
def _draw_errors(self):
"""Draws a red overlay over the hint numbers based on the values in _x_err and _y_err."""
for i in self._x_err:
self._screen.blit(self._err_overlay, ((i + 1) * TILE_SIZE, 0))
for i in self._y_err:
self._screen.blit(self._err_overlay, (0, (i + 1) * TILE_SIZE))
def _draw_limit(self):
"""Draws a grey overlay over the hint numbers based on the values in _x_lim and _y_lim."""
for i in self._x_lim:
self._screen.blit(self._limit_overlay, ((i + 1) * TILE_SIZE, 0))
for i in self._y_lim:
self._screen.blit(self._limit_overlay, (0, (i + 1) * TILE_SIZE))
def _draw_frame(self):
"""Draws the outer frame of the board along with the wall hints."""
for i in range(1, 9):
hint_x = self._sprite_number[self._hint_x[i - 1]]
hint_y = self._sprite_number[self._hint_y[i - 1]]
self._screen.blit(self._sprite_frame, (i * TILE_SIZE, 0))
self._screen.blit(self._sprite_frame, (0, i * TILE_SIZE))
self._screen.blit(hint_x, (i * TILE_SIZE + self._font_pos_offset, self._font_pos_offset))
self._screen.blit(hint_y, (self._font_pos_offset, i * TILE_SIZE + self._font_pos_offset))
self._screen.blit(self._sprite_frame, (0, 0))
self._screen.blit(self._sprite_book, (0, 0))
### Mouse input methods
def _get_mouse_to_grid(self) -> tuple:
""""Snaps" the mouse position to the board grid. Returns mouse's position on grid."""
pos_x, pos_y = pygame.mouse.get_pos()
pos_x = math.floor((pos_x / TILE_SIZE) - 1)
pos_y = math.floor((pos_y / TILE_SIZE) - 1)
pos_x = max(min(8, pos_x), -1)
pos_y = max(min(8, pos_y), -1)
return(pos_x, pos_y)
def _game_handle_mouse(self, lm_event: bool = False, rm_event: bool = False):
"""
Handles all mouse input/actions. If a user-placed wall is changed, it will automatically
call the routines to check for a win condition or if an error is made.
Modifies:
self._placed_walls
"""
mx, my = self._get_mouse_to_grid()
user_tile = self._placed_walls[my][mx]
map_tile = self._board_layout[my][mx]
mouse_press = pygame.mouse.get_pressed()
click_lmb = mouse_press[0] or lm_event
click_rmb = mouse_press[2] or rm_event
# reset mouse action if no buttons are being pressed
if not True in [click_lmb, click_rmb] and self._mouse_action != MouseAction.NONE.value:
self._mouse_action = MouseAction.NONE.value
# update mouse action if not already set
if mx >= 0 and my >= 0:
if not self.game_won:
if self._mouse_action == MouseAction.NONE.value:
if click_lmb:
if user_tile:
self._mouse_action = MouseAction.REMOVE_WALL.value
else:
self._mouse_action = MouseAction.PLACE_WALL.value
elif click_rmb:
if user_tile:
self._mouse_action = MouseAction.REMOVE_MARK.value
else:
self._mouse_action = MouseAction.PLACE_MARK.value
# update user tiles based on mouse location and action
if self._mouse_action:
if map_tile in [MapObject.EMPTY.value, MapObject.WALL.value]:
update_history = False
old_state = self._placed_walls[my][mx]
if self._mouse_action == MouseAction.PLACE_WALL.value:
if user_tile == MapObject.EMPTY.value:
self._placed_walls[my][mx] = MapObject.WALL.value
self._check_board_state = True
self._sound.play_sfx(self._sound_wall)
update_history = True
self.needs_display_update = True
elif self._mouse_action == MouseAction.REMOVE_WALL.value:
if user_tile == MapObject.WALL.value:
self._placed_walls[my][mx] = MapObject.EMPTY.value
self._check_board_state = True
self._sound.play_sfx(self._sound_wall)
update_history = True
self.needs_display_update = True
elif self._mouse_action == MouseAction.PLACE_MARK.value:
if user_tile == MapObject.EMPTY.value:
self._placed_walls[my][mx] = MapObject.MARK.value
self._sound.play_sfx(self._sound_mark)
update_history = True
self.needs_display_update = True
elif self._mouse_action == MouseAction.REMOVE_MARK.value:
if user_tile == MapObject.MARK.value:
self._placed_walls[my][mx] = MapObject.EMPTY.value
self._sound.play_sfx(self._sound_mark)
update_history = True
self.needs_display_update = True
if update_history:
# update history with this move. If we've done an undo in
# the past, reset the 'top' pointer to start overwriting
# old actions
this_action = HistoryAction(mx, my, old_state, self._placed_walls[my][mx])
try:
self._action_history[self._action_history_idx] = this_action
except IndexError:
self._action_history.append(this_action)
self._action_history_idx += 1
self._action_history_idx_top = self._action_history_idx
# if a user wall has changed, check for errors/win condition
if self._check_board_state:
self._update_hint_vars()
self._check_win()
self._check_board_state = False
elif mx == -1 and my == -1: # if user has clicked on book icon
if click_lmb and not self._mouse_action:
self._mouse_action = MouseAction.MENU_ACTION.value
self._menu_is_open = True
logging.debug("MENU OPEN")
### game logic
def _check_win(self):
"""Checks to see if the user-modified board matches the puzzle book board."""
user_board = self._strip_marks()
if self._board_layout == user_board:
self._sound.play_sfx(self._sound_win)
self.game_won = True
self._player_wins += 1
def _update_hint_vars(self):
"""
Generates the sum of user-placed walls by row and column. Checks to see
if any of those user values exceed the generated hints from the puzzle.
Updates the error arrays x_err and y_err with the indexes of the errors.
"""
x_sum = []
y_sum = []
# calculate sums of placed walls row/columns
for i, v in enumerate(self._placed_walls):
y_sum.append(v.count(MapObject.WALL.value))
for x in range(8):
e_sum = 0
for y in range(8):
if self._placed_walls[y][x] == MapObject.WALL.value:
e_sum = e_sum + 1
x_sum.append(e_sum)
# get indexes of errors when compared to the hint frame
self._x_err = [i for i, v in enumerate(x_sum) if v > self._hint_x[i]]
self._y_err = [i for i, v in enumerate(y_sum) if v > self._hint_y[i]]
# get indexes of limits against hint frame
self._x_lim = [i for i, v in enumerate(x_sum) if v == self._hint_x[i]]
self._y_lim = [i for i, v in enumerate(y_sum) if v == self._hint_y[i]]
def _strip_walls(self) -> list:
"""Removes walls from loaded puzzle. Used to generate the 'user board'."""
out = []
for row in self._board_layout:
out.append([v if v != MapObject.WALL.value else MapObject.EMPTY.value for v in row])
return out
def _strip_marks(self) -> list:
"""Returns a list of the board with all user-placed marks removed. Used by _check_win"""
out = []
for row in self._placed_walls:
out.append([v if v != MapObject.MARK.value else MapObject.EMPTY.value for v in row])
return out
def _calc_hints(self) -> None:
"""Calculates the hint numbers for the border. Updates _hint_x and _hint_y"""
for i, v in enumerate(self._board_layout):
self._hint_y[i] = v.count(MapObject.WALL.value)
for x in range(8):
sum_y = 0
for y in range(8):
if self._board_layout[y][x] == MapObject.WALL.value:
sum_y = sum_y + 1
self._hint_x[x] = sum_y
### Methods for building the menus. I'd love to move these methods out of this file because they look dumb.
# Menu callback methods. These are called directly by the pygame_menu widgets.
def _menu_open_map(self, val = None):
self.open_puzzle(self._menu_pid)
self._menu_close()
def _menu_random_map(self):
self.open_random_puzzle()
self._menu_close()
def _menu_reset(self):
self.open_puzzle(self.current_puzzle_id)
self._menu_close()
def _menu_update_pid(self, value):
try:
self._menu_pid = int(value)
except:
self._menu_pid = 0
def _menu_close(self):
self._menu_is_open = False
self._menu.disable()
self.needs_display_update = True
def _menu_set_mute(self, val: bool) -> None:
self._sound.enabled = val
if not self._sound.enabled:
self._sound.stop_music()
else:
self._sound.play_next_background_song()
def _menu_quit(self):
pygame.event.post(pygame.event.Event(pygame.QUIT))
self._menu_is_open = False
self._menu.disable()
def _menu_power_save(self, val: bool) -> None:
self._power_save = val
def _menu_set_cb_mode(self, val: bool) -> None:
try:
if val:
self._sprite_wall = self._sprite_wall_cb
self._sprite_mark = self._sprite_mark_cb
self._sprite_enemy = self._sprite_enemy_cb
self._sprite_floor = self._sprite_floor_cb
self._err_overlay = self._err_overlay_cb
self._cb_mode = True
else:
self._sprite_wall = self._sprite_wall_og
self._sprite_mark = self._sprite_mark_og
self._sprite_enemy = self._sprite_enemy_og
self._sprite_floor = self._sprite_floor_og
self._err_overlay = self._err_overlay_og
self._cb_mode = False
except AttributeError as e:
logging.warning(f"Error switching color modes: {e}")
def _menu_build_theme(self) -> pygame_menu.Theme:
pygame_menu.widgets.MENUBAR_STYLE_UNDERLINE_TITLE
theme: pygame_menu.Theme = pygame_menu.themes.THEME_DARK.copy()
theme.background_color = THEME_COLOR
theme.widget_font_shadow = True
theme.widget_font_size = 20
return theme
def _menu_build_main(self) -> pygame_menu.Menu:
menu: pygame_menu.Menu = pygame_menu.Menu(
"Dungeon Cross",
400,
600,
theme = self._menu_theme
)
menu.set_onclose(self._menu_close)
menu.add.button('Resume', action=self._menu_close)
menu.add.button('Reset', action=self._menu_reset)
menu.add.button("Random Puzzle", action=self._menu_random_map)
menu.add.vertical_fill(2)
menu.add.text_input(
'Puzzle ID: ',
default='0000000',
maxchar=7,
valid_chars=[*'0123456789'],
onchange=self._menu_update_pid,
onreturn=self._menu_open_map,
background_color = (70, 50, 0),
textinput_id="PUZZLE_ID"
)
menu.add.button("Load Puzzle", action=self._menu_open_map)
menu.add.vertical_fill(2)
self._menu_sound_selector = menu.add.toggle_switch(
"Sound: ",
onchange=self._menu_set_mute,
default=True,
width=90,
toggleswitch_id="SOUND"
)
self._menu_colorblind_selector = menu.add.toggle_switch(
"Colorblind Mode: ",
onchange=self._menu_set_cb_mode,
default=False,
width=90,
toggleswitch_id="CB_MODE"
)
menu.add.toggle_switch(
title="Power Saver: ",
default=False,
width=90,
onchange=self._menu_power_save,
toggleswitch_id="PW_SAVE"
)
menu.add.vertical_fill(2)
menu.add.button("How to Play", action=self._menu_tutorial)
menu.add.button("About", self._menu_about)
menu.add.button('Quit', self._menu_quit)
return menu
def _menu_build_about(self):
menu: pygame_menu.Menu = pygame_menu.Menu(
"About",
700,
600,
theme = self._menu_theme
)
with open(resource_path("about.txt")) as f:
lines = f.readlines()
f.close()
menu.add.image(resource_path("sprite/hydra3.png"))
for line in lines:
menu.add.label(line.splitlines()[0], align=pygame_menu.locals.ALIGN_LEFT)
menu.add.image(resource_path("sprite/hydra3.png"))
return menu
def _menu_build_tutorial(self):
menu: pygame_menu.Menu = pygame_menu.Menu(
"Tutorial",
700,
600,
theme = self._menu_theme
)
with open(resource_path("tutorial.txt")) as f:
lines = f.readlines()
f.close()
menu.add.image(resource_path("sprite/hydra3.png"))
for line in lines:
if line.strip() == '':
continue
if line.strip()[0] == '#':
file_str = line.strip('#')
try:
menu.add.image(resource_path(file_str.strip()))
except AssertionError as e:
print(e)
else:
menu.add.label(line.splitlines()[0], align=pygame_menu.locals.ALIGN_LEFT)
menu.add.image(resource_path("sprite/hydra3.png"))
return menu
def show_splash(screen: pygame.Surface):
"""
Shows splash screen while loading.
Automatically calls pygame.display.update.
Only needs be called once.
"""
image = pygame.image.load(resource_path('sprite/splash.png'))
sxm = round(image.get_width() / 2)
sym = round(image.get_height() / 2)
pos_x = (G_RESOLUTION[0] / 2) - sxm
pos_y = (G_RESOLUTION[1] / 2) - sym
screen.fill(pygame.color.Color(THEME_COLOR))
screen.blit(image, (pos_x, pos_y))
pygame.display.update()
def main():
# init logging
log_system.init_logging(G_LOG_LEVEL)
# init pygame
pygame.init()
# create music handler object, load music, and start playback
sound = sound_handler.SoundHandler(resource_path('audio/music/'))
sound.load_music_all()
sound.shuffle()
sound.set_volume(35)
sound.play_next_background_song()
# create display window
screen = pygame.display.set_mode(G_RESOLUTION)
pygame.display.set_caption(f"Dungeon Cross - {VERSION}")
pygame.display.set_allow_screensaver = True
show_splash(screen)
# internal timer for FPS regulation
clock = pygame.time.Clock()
# create game and load levels
game = DungeonCross(screen, sound)
game.load_puzzle_book('puzzles.json.gz')
game.load_save()
game_run = True
# main loop
logging.info("GAME START")
while game_run:
while game_run and not game.game_won:
# handle events
events = pygame.event.get()
for event in events:
# handle window quit event
if event.type == pygame.QUIT:
logging.info("GAME EXITING")
game.save_game()
game_run = False
# handle song-end event
elif event.type == pygame.USEREVENT:
sound.play_next_background_song()
# handle window focus change event
elif event.type == pygame.ACTIVEEVENT:
game.needs_display_update = True
# otherwise, pass event to game object
else:
game_run = game.handle_io_event(event)
# draw game assets
game.update()
# update screen
pygame.display.update()
clock.tick(TARGET_FPS)
if game.game_won:
time.sleep(2)
game.open_random_puzzle()
if __name__ == '__main__':
main()