-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsquish.py
1502 lines (1379 loc) · 54.5 KB
/
squish.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
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#############################################
## ##
## S Q U I S H v4.0.1 ##
## ##
## (c) 2025 Michel Vuijlsteke ##
## ##
#############################################
import os
os.environ['PYGAME_HIDE_SUPPORT_PROMPT'] = "hide"
import sys
import pygame
import random
import datetime
import json
import math
from pygame.locals import *
from heapq import heappush, heappop
############################################################
# 0) RESOURCE PATH HELPER
############################################################
def resource_path(relative_path):
"""
Get absolute path to resource, works for dev and for PyInstaller --onefile.
"""
try:
base_path = sys._MEIPASS
except Exception:
base_path = os.path.abspath(".")
return os.path.join(base_path, relative_path)
############################################################
# 1) BASIC CONFIGURATION
############################################################
EMPTY = 0
PLAYER = 1
MOVEABLE_BLOCK = 2
UNMOVEABLE_BLOCK = 3
HUNTER = 4
EGG = 5
PUSHER = 6
SENTINEL = 7
GRID_WIDTH = 40
GRID_HEIGHT = 25
CELL_SIZE = 32
STATUS_HEIGHT = CELL_SIZE
CHAR_WIDTH = 8
CHAR_HEIGHT = 16
SCALE_X = 2
SCALE_Y = 2
SHEET_COLS = 16
SHEET_ROWS = 16
HUNTER_VALUE = 2
EGG_VALUE = 3
PUSHER_VALUE = 5
SENTINEL_VALUE = 7
############################################################
# 2) COLOR DEFINITIONS
############################################################
TEXT_COLOR_DEFAULT = (0xa7, 0xa7, 0xa7)
HIGHLIGHT_COLOR = (0xfa, 0xfa, 0xfa)
PLAYER_COLOR = (0x59, 0xe1, 0xe3)
WALL_COLOR = (0xff, 0xea, 0x16)
BLOCK_COLOR = (0x00, 0x55, 0x00)
HUNTER_COLOR = (0xff, 0x16, 0xb0)
EGG_COLOR_0 = (0xfa, 0xe9, 0x01)
EGG_COLOR_1 = (0xfa, 0x82, 0x01)
EGG_COLOR_FLASH1 = (0xfa, 0x01, 0x01)
EGG_COLOR_FLASH2 = (0xff, 0xff, 0xff)
PUSHER_COLOR = (0x99, 0x35, 0xff)
SENTINEL_COLOR = (0x47, 0x52, 0xcb)
STATUS_BG_COLOR = (0x00, 0x00, 0x00)
############################################################
# 3) GLOBAL RESOURCES
############################################################
sprite_sheet = None
sounds = {}
lives = 3
current_level = 0
running_level_score = 0
cumulative_time = 0
game_over_flag = False
levels_data = []
global_pause_offset = 0
current_spritesheet = "dos_spritesheet.png"
############################################################
# 4) HELPER FUNCTIONS
############################################################
def cell_type(cell):
if isinstance(cell, tuple):
return cell[0]
return cell
def tint_surface(surface, tint_color):
tinted = surface.copy()
tinted.fill(tint_color, special_flags=pygame.BLEND_RGBA_MULT)
return tinted
def get_egg_color(cell):
now = get_game_time()
egg_total_time = cell[1]
egg_start = cell[2]
elapsed = now - egg_start
if elapsed < 0:
elapsed = 0
progress = elapsed / egg_total_time
if progress < 0.75:
return EGG_COLOR_0
elif progress < 0.90:
return EGG_COLOR_1
else:
flash_period = 250
flashes = (now // flash_period) % 2
return EGG_COLOR_FLASH1 if flashes == 0 else EGG_COLOR_FLASH2
def get_cell_color(cell):
t = cell_type(cell)
if t == PLAYER:
return PLAYER_COLOR
elif t == UNMOVEABLE_BLOCK:
return WALL_COLOR
elif t == MOVEABLE_BLOCK:
return BLOCK_COLOR
elif t == HUNTER:
return HUNTER_COLOR
elif t == EGG:
return get_egg_color(cell)
elif t == PUSHER:
return PUSHER_COLOR
elif t == SENTINEL:
return SENTINEL_COLOR
return (0, 0, 0)
def get_game_time():
return pygame.time.get_ticks() - global_pause_offset
############################################################
# 5a) HIGH SCORE HANDLING
############################################################
SCORE_FILE = "highscores.dat"
def encrypt_xor(data: bytes, key: int = 0xAA) -> bytes:
return bytes(b ^ key for b in data)
def decrypt_xor(data: bytes, key: int = 0xAA) -> bytes:
return encrypt_xor(data, key)
def load_highscores() -> list:
if not os.path.exists(resource_path(SCORE_FILE)):
save_highscores([])
return []
try:
with open(resource_path(SCORE_FILE), "rb") as f:
encrypted = f.read()
decrypted = decrypt_xor(encrypted, 0xAA).decode("utf-8", errors="ignore")
lines = decrypted.strip().split("\n")
scores = []
for line in lines:
parts = line.split("|")
if len(parts) == 5:
dt_str, lvl_str, scr_str, time_str, name_str = parts
record = {
"date": dt_str,
"level": lvl_str,
"score": int(scr_str),
"time": int(time_str),
"name": name_str,
"highlight": False
}
if record["name"].endswith("##"):
record["name"] = record["name"][:-2]
record["highlight"] = True
scores.append(record)
scores.sort(key=lambda s: (-s["score"], s["time"]))
return scores
except Exception as e:
print("Error loading high scores:", e)
return []
def save_highscores(scores: list):
scores = sorted(scores, key=lambda s: (-s["score"], s["time"]))[:20]
lines = []
for s in scores:
nm = s["name"] + ("##" if s.get("highlight") else "")
lines.append(f'{s["date"]}|{s["level"]}|{s["score"]}|{s["time"]}|{nm}')
data = "\n".join(lines)
encrypted = encrypt_xor(data.encode("utf-8"), 0xAA)
with open(resource_path(SCORE_FILE), "wb") as f:
f.write(encrypted)
def ask_player_name() -> str:
name = ""
screen = pygame.display.get_surface()
clock = pygame.time.Clock()
while True:
for evt in pygame.event.get():
if evt.type == QUIT:
pygame.quit(); sys.exit()
elif evt.type == KEYDOWN:
if evt.key == K_RETURN:
return name.strip() or "anonymous"
elif evt.key == K_BACKSPACE:
name = name[:-1]
elif evt.key == K_ESCAPE:
return "anonymous"
else:
ch = evt.unicode
if ch.isprintable():
name += ch
screen.fill((0, 0, 0))
draw_text(screen, "High score! Enter your name:", 50, 100, TEXT_COLOR_DEFAULT)
draw_text(screen, name, 50, 140, TEXT_COLOR_DEFAULT)
pygame.display.flip()
clock.tick(15)
def format_time(seconds: int) -> str:
minutes = seconds // 60
sec = seconds % 60
return f"{minutes:02}:{sec:02}"
def wait_for_key():
waiting = True
clock = pygame.time.Clock()
while waiting:
for event in pygame.event.get():
if event.type == KEYDOWN:
waiting = False
clock.tick(15)
############################################################
# 5b) HIGH SCORE SCREENS (SCROLLABLE)
############################################################
def show_highscores_overall_scroll(surface, clock, scores):
line_spacing = 32
x_margin = 10
y_start = 10
lines = []
lines.append(("header", " Name Date Score Time Rank"))
for idx, s in enumerate(scores, 1):
color = HIGHLIGHT_COLOR if s.get("highlight") else TEXT_COLOR_DEFAULT
name_full = s["name"]
if len(name_full) > 32:
name_full = name_full[:29] + "..."
date_display = s["date"][:10]
rank_char = "\x13"
lvl = s["level"]
if lvl and lvl[-1].isdigit():
rank = lvl
else:
rank = lvl + rank_char
line_text = f"{idx:2d}. {name_full}"
filler_len = max(0, 28 - len(line_text))
filler = "." * filler_len
remainder = f" {date_display:<10} {s['score']:>3d} {format_time(s['time'])} {rank}"
full_line = line_text + filler + remainder
lines.append(("line", full_line, color))
# Footer
lines.append(("footer", "Press TAB to toggle view, ESC to exit"))
total_height = y_start + len(lines) * line_spacing + 20
max_scroll = max(0, total_height - surface.get_height())
scroll_offset = 0
while True:
surface.fill((0, 0, 0))
y = y_start - scroll_offset
for entry in lines:
etype = entry[0]
if etype == "header":
text = entry[1]
draw_text(surface, text, x_margin, y, TEXT_COLOR_DEFAULT)
y += line_spacing
elif etype == "line":
text = entry[1]
color = entry[2]
draw_text(surface, text, x_margin, y, color)
y += line_spacing
elif etype == "footer":
text = entry[1]
draw_text(surface, text, x_margin, surface.get_height() - 30, TEXT_COLOR_DEFAULT)
pygame.display.flip()
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit(); sys.exit()
elif event.type == KEYDOWN:
if event.key == K_ESCAPE:
return "exit"
elif event.key == K_TAB:
return "tab"
elif event.key == K_UP:
scroll_offset = max(0, scroll_offset - line_spacing)
elif event.key == K_DOWN:
scroll_offset = min(max_scroll, scroll_offset + line_spacing)
clock.tick(15)
def show_highscores_by_level_scroll(surface, clock, scores):
line_spacing = 32
x_margin = 10
y_start = 10
lines = []
groups = {}
for s in scores:
lvl_letter = s["level"][0] if s["level"] else ""
groups.setdefault(lvl_letter, []).append(s)
for lvl in sorted(groups.keys()):
# Group header: "Level A", "Level B", etc.
lines.append(("group", f"Level {lvl}", HIGHLIGHT_COLOR))
# Only show top 3
group = sorted(groups[lvl], key=lambda x: (-x["score"], x["time"]))[:3]
for idx, rec in enumerate(group, 1):
color = HIGHLIGHT_COLOR if rec.get("highlight") else TEXT_COLOR_DEFAULT
name_full = rec["name"]
if len(name_full) > 21:
name_full = name_full[:18] + "..."
date_display = rec["date"][:10]
rank_char = "\x13"
if rec["level"] and rec["level"][-1].isdigit():
rec_rank = rec["level"]
else:
rec_rank = rec["level"] + rank_char
line_text = f"{idx}. {name_full}"
filler_len = max(0, 28 - len(line_text))
filler = "." * filler_len
remainder = f" {date_display:<10} {rec['score']:>3d} {format_time(rec['time'])} {rec_rank}"
full_line = line_text + filler + remainder
lines.append(("line", full_line, color))
lines.append(("blank",))
lines.append(("footer", "Press TAB to toggle view, ESC to exit"))
# Compute total height for scrolling
total_height = 0
for entry in lines:
if entry[0] in ("group", "line", "footer"):
total_height += line_spacing
elif entry[0] == "blank":
total_height += line_spacing
total_height += y_start + 20
max_scroll = max(0, total_height - surface.get_height())
scroll_offset = 0
while True:
surface.fill((0, 0, 0))
y = y_start - scroll_offset
for entry in lines:
etype = entry[0]
if etype in ("group", "line"):
text = entry[1]
color = entry[2]
draw_text(surface, text, x_margin, y, color)
y += line_spacing
elif etype == "blank":
y += line_spacing
elif etype == "footer":
draw_text(surface, entry[1], x_margin, surface.get_height() - 30, TEXT_COLOR_DEFAULT)
pygame.display.flip()
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit(); sys.exit()
elif event.type == KEYDOWN:
if event.key == K_ESCAPE:
return "exit"
elif event.key == K_TAB:
return "tab"
elif event.key == K_UP:
scroll_offset = max(0, scroll_offset - line_spacing)
elif event.key == K_DOWN:
scroll_offset = min(max_scroll, scroll_offset + line_spacing)
clock.tick(15)
def high_score_screen(surface, clock):
scores = load_highscores()
view = 0 # 0 => overall, 1 => per-level
while True:
if view == 0:
result = show_highscores_overall_scroll(surface, clock, scores)
else:
result = show_highscores_by_level_scroll(surface, clock, scores)
if result == "tab":
view = 1 - view
elif result == "exit":
return
def maybe_record_highscore(total_score: int, level: str, screen, time_played: int):
scores = load_highscores()
for s in scores:
s["highlight"] = False
qualifies = False
if len(scores) < 20:
qualifies = True
else:
worst = scores[-1]
if total_score > worst['score'] or (total_score == worst['score'] and time_played < worst['time']):
qualifies = True
# Check top 5 per letter
level_key = level[0] if level else ""
level_scores = [s for s in scores if s["level"] and s["level"][0] == level_key]
level_scores = sorted(level_scores, key=lambda s: (-s["score"], s["time"]))[:5]
if level_scores:
worst_level = level_scores[-1]
if total_score > worst_level["score"] or (total_score == worst_level["score"] and time_played < worst_level["time"]):
qualifies = True
else:
qualifies = True
if qualifies:
name = ask_player_name()
highlight = True
else:
name = "anonymous"
highlight = False
dt_str = datetime.datetime.now().isoformat(timespec="seconds")
new_record = {
"date": dt_str,
"level": level,
"score": total_score,
"time": time_played,
"name": name,
"highlight": highlight
}
scores.append(new_record)
save_highscores(scores)
high_score_screen(screen, pygame.time.Clock())
############################################################
# 5b) PAUSE AND QUIT CONFIRMATION
############################################################
def pause_game(screen):
global global_pause_offset
pause_start = pygame.time.get_ticks()
paused = True
clock = pygame.time.Clock()
while paused:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit(); sys.exit()
elif event.type == KEYDOWN:
if event.key in (K_q, ord('q')):
if quit_confirm(screen):
return -1 # means user wants to quit to level select
elif event.key == K_SPACE:
paused = False
screen.fill((0, 0, 0))
lines = ["Paused", "", "<q> to quit <space> to continue"]
total_w = GRID_WIDTH * (CHAR_WIDTH * SCALE_X * 2)
y = 100
for line in lines:
lw = len(line) * CHAR_WIDTH * SCALE_X
x = (total_w - lw) // 2
draw_text(screen, line, x, y, TEXT_COLOR_DEFAULT)
y += 40
pygame.display.flip()
clock.tick(10)
pause_duration = pygame.time.get_ticks() - pause_start
global_pause_offset += pause_duration
return pause_duration
def quit_confirm(screen) -> bool:
clock = pygame.time.Clock()
while True:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit(); sys.exit()
elif event.type == KEYDOWN:
if event.key in (K_y, ord('y')):
return True
elif event.key in (K_n, ord('n')):
return False
else:
return False
screen.fill((0, 0, 0))
msg = "Do you really want to quit? (y/n)"
total_w = GRID_WIDTH * (CHAR_WIDTH * SCALE_X * 2)
lw = len(msg) * CHAR_WIDTH * SCALE_X
x = (total_w - lw) // 2
y = 120
draw_text(screen, msg, x, y, TEXT_COLOR_DEFAULT)
pygame.display.flip()
clock.tick(10)
############################################################
# 6c) SPRITE-SHEET TEXT RENDERING
############################################################
def load_sprite_sheet(filename):
global sprite_sheet
actual_path = resource_path(filename)
sprite_sheet = pygame.image.load(actual_path).convert_alpha()
def draw_char(surface, ch, x, y, color):
code = ord(ch)
if code < 0 or code > 255:
code = 127
col = code % SHEET_COLS
row = code // SHEET_COLS
sx = col * CHAR_WIDTH
sy = row * CHAR_HEIGHT
char_rect = pygame.Rect(sx, sy, CHAR_WIDTH, CHAR_HEIGHT)
char_surf = pygame.Surface((CHAR_WIDTH, CHAR_HEIGHT), pygame.SRCALPHA)
char_surf.blit(sprite_sheet, (0, 0), char_rect)
scaled_w = CHAR_WIDTH * SCALE_X
scaled_h = CHAR_HEIGHT * SCALE_Y
char_surf = pygame.transform.scale(char_surf, (scaled_w, scaled_h))
char_surf = tint_surface(char_surf, color)
surface.blit(char_surf, (x, y))
def draw_text(surface, text, x, y, color):
offset_x = 0
for ch in text:
draw_char(surface, ch, x + offset_x, y, color)
offset_x += CHAR_WIDTH * SCALE_X
############################################################
# 7) ENTITY MAPPINGS
############################################################
WALL_CHARS = "\xDB\xDB"
BLOCK0_CHARS = "\xB0\xB0"
BLOCK1_CHARS = "\xB1\xB1"
BLOCK2_CHARS = "\xB2\xB2"
PLAYER_CHARS = "\x11\x10"
HUNTER_CHARS = "\xC3\xB4"
EGG_CHARS = "\x09\x09"
EMPTY_CHARS = " "
PUSHER_CHARS = "\xCE\xCE"
SENTINEL_CHARS = "\xC7\xB6"
def get_cell_string(cell):
t = cell_type(cell)
if t == EMPTY:
return EMPTY_CHARS
elif t == PLAYER:
return PLAYER_CHARS
elif t == MOVEABLE_BLOCK:
block_index = cell[1]
if block_index == 0:
return BLOCK0_CHARS
elif block_index == 1:
return BLOCK1_CHARS
else:
return BLOCK2_CHARS
elif t == UNMOVEABLE_BLOCK:
return WALL_CHARS
elif t == HUNTER:
return HUNTER_CHARS
elif t == EGG:
return EGG_CHARS
elif t == PUSHER:
return PUSHER_CHARS
elif t == SENTINEL:
return SENTINEL_CHARS
else:
return "??"
############################################################
# 8) DRAWING THE GRID & STATUS
############################################################
def draw_grid(screen, grid):
screen.fill((0, 0, 0))
for y in range(GRID_HEIGHT):
for x in range(GRID_WIDTH):
cell_str = get_cell_string(grid[y][x])
color = get_cell_color(grid[y][x])
px = x * (CHAR_WIDTH * SCALE_X * 2)
py = y * (CHAR_HEIGHT * SCALE_Y)
draw_text(screen, cell_str, px, py, color)
def draw_status_line(screen, grid, level_start_time, lives, level_name, running_level_score, time_offset):
container_width = GRID_WIDTH * (CHAR_WIDTH * SCALE_X * 2)
elapsed = time_offset + (get_game_time() - level_start_time) // 1000
elapsed = max(0, elapsed)
minutes, seconds = divmod(elapsed, 60)
time_str = f"{minutes:02}:{seconds:02}"
current_enemy_count = sum(1 for row in grid for c in row if cell_type(c) in [HUNTER, PUSHER, SENTINEL, EGG])
initial_egg_count = getattr(draw_status_line, "initial_egg_count", 0)
segments = []
segments.append(("Enemies: ", TEXT_COLOR_DEFAULT))
segments.append((f"{current_enemy_count}", HIGHLIGHT_COLOR))
if initial_egg_count > 0:
current_egg_count = sum(1 for row in grid for c in row if cell_type(c) == EGG)
segments.append((" Eggs: ", TEXT_COLOR_DEFAULT))
segments.append((f"{current_egg_count}", HIGHLIGHT_COLOR))
segments.append((" Level: ", TEXT_COLOR_DEFAULT))
segments.append((f"{level_name}", HIGHLIGHT_COLOR))
segments.append((" Time: ", TEXT_COLOR_DEFAULT))
segments.append((f"{time_str}", HIGHLIGHT_COLOR))
segments.append((" Lives: ", TEXT_COLOR_DEFAULT))
segments.append((f"{lives}", HIGHLIGHT_COLOR))
segments.append((" Score: ", TEXT_COLOR_DEFAULT))
segments.append((f"{running_level_score}", HIGHLIGHT_COLOR))
total_seg_width = sum(len(text) * CHAR_WIDTH * SCALE_X for text, col in segments)
x = container_width - total_seg_width - 5
y = GRID_HEIGHT * (CHAR_HEIGHT * SCALE_Y)
for text, col in segments:
draw_text(screen, text, x, y, col)
x += len(text) * CHAR_WIDTH * SCALE_X
############################################################
# 9) PLAYER SPAWN LOGIC & ANIMATION
############################################################
def get_player_position(grid):
for yy in range(GRID_HEIGHT):
for xx in range(GRID_WIDTH):
if cell_type(grid[yy][xx]) == PLAYER:
return (xx, yy)
return None
def place_player_best_spot(grid, screen):
enemies = []
blocks = []
for y in range(GRID_HEIGHT):
for x in range(GRID_WIDTH):
t = cell_type(grid[y][x])
if t in [HUNTER, PUSHER, SENTINEL]:
enemies.append((x, y))
elif t in (UNMOVEABLE_BLOCK, MOVEABLE_BLOCK, EGG):
blocks.append((x, y))
best_pos = None
best_edge = -1
best_enemy = -1
best_block = -1
for yy in range(1, GRID_HEIGHT - 1):
for xx in range(1, GRID_WIDTH - 1):
if cell_type(grid[yy][xx]) == EMPTY:
edge_dist = min(xx - 1, (GRID_WIDTH - 2) - xx, yy - 1, (GRID_HEIGHT - 2) - yy)
enemy_dist = min([abs(xx - ex) + abs(yy - ey) for ex, ey in enemies] or [999])
block_dist = min([abs(xx - bx) + abs(yy - by) for bx, by in blocks] or [999])
if (edge_dist > best_edge or
(edge_dist == best_edge and enemy_dist > best_enemy) or
(edge_dist == best_edge and enemy_dist == best_enemy and block_dist > best_block)):
best_edge = edge_dist
best_enemy = enemy_dist
best_block = block_dist
best_pos = (xx, yy)
if best_pos:
x, y = best_pos
show_spawn_animation(grid, screen, x, y)
grid[y][x] = PLAYER
def respawn_player(grid, screen):
for yy in range(GRID_HEIGHT):
for xx in range(GRID_WIDTH):
if cell_type(grid[yy][xx]) == PLAYER:
grid[yy][xx] = EMPTY
place_player_best_spot(grid, screen)
def show_spawn_animation(grid, screen, x, y):
steps = [
("\xFA\xFA", (0xff, 0xff, 0xff)),
("--", (0xff, 0x00, 0x00)),
("\x1B\x1A", (0xff, 0x99, 0x00)),
("\xAE\xAF", (0xff, 0xff, 0x00)),
("<>", (0xff, 0xff, 0xff))
]
clock = pygame.time.Clock()
for glyphs, color in steps:
draw_grid(screen, grid)
px = x * (CHAR_WIDTH * SCALE_X * 2)
py = y * (CHAR_HEIGHT * SCALE_Y)
draw_text(screen, glyphs, px, py, color)
pygame.display.flip()
clock.tick(5)
############################################################
# 10) GAME OVER & COLLISION
############################################################
def game_over_screen(screen):
screen.fill((0, 0, 0))
msg = "Game Over"
w = len(msg) * CHAR_WIDTH * SCALE_X
h = CHAR_HEIGHT * SCALE_Y
total_w = GRID_WIDTH * (CHAR_WIDTH * SCALE_X * 2)
total_h = GRID_HEIGHT * (CHAR_HEIGHT * SCALE_Y) + STATUS_HEIGHT
x = (total_w - w) // 2
y = (total_h - h) // 2
draw_text(screen, msg, x, y, TEXT_COLOR_DEFAULT)
pygame.display.flip()
pygame.time.wait(3000)
def handle_collision(grid, screen):
global lives, running_level_score, game_over_flag
sounds['collision'].play()
lives -= 1
if lives <= 0:
game_over_screen(screen)
partial_time = (get_game_time() - last_sublevel_start_time)//1000 + last_sublevel_time_offset
maybe_record_highscore(running_level_score, last_sublevel_name, screen, partial_time)
game_over_flag = True
else:
respawn_player(grid, screen)
############################################################
# 11) PLAYER MOVEMENT
############################################################
def move_player_direction(grid, direction, stats, screen, explosive_enabled=False):
player_pos = get_player_position(grid)
if not player_pos:
return grid
px, py = player_pos
dx, dy = direction
tx, ty = px + dx, py + dy
t = cell_type(grid[ty][tx])
if t == EMPTY:
grid[py][px] = EMPTY
grid[ty][tx] = PLAYER
elif t == MOVEABLE_BLOCK:
push_blocks_player(grid, (px, py), direction, stats, screen, explosive_enabled)
elif t == UNMOVEABLE_BLOCK:
if explosive_enabled:
handle_collision(grid, screen)
elif t in (HUNTER, PUSHER, SENTINEL):
handle_collision(grid, screen)
return grid
def push_blocks_player(grid, start_pos, direction, stats, screen, explosive_enabled=False):
x, y = start_pos
dx, dy = direction
chain = []
cx, cy = x + dx, y + dy
while cell_type(grid[cy][cx]) == MOVEABLE_BLOCK:
chain.append((cx, cy))
cx += dx
cy += dy
occupant_t = cell_type(grid[cy][cx])
if occupant_t == EMPTY:
for bx, by in reversed(chain):
grid[by+dy][bx+dx] = grid[by][bx]
grid[by][bx] = EMPTY
grid[y+dy][x+dx] = PLAYER
grid[y][x] = EMPTY
elif occupant_t == UNMOVEABLE_BLOCK:
if explosive_enabled:
if chain:
last_x, last_y = chain[-1]
grid[last_y][last_x] = EMPTY
for i in range(len(chain) - 2, -1, -1):
bx, by = chain[i]
grid[by+dy][bx+dx] = grid[by][bx]
grid[by][bx] = EMPTY
grid[y+dy][x+dx] = PLAYER
grid[y][x] = EMPTY
if 'explosion' in sounds:
sounds['explosion'].play()
else:
handle_collision(grid, screen)
else:
return
elif occupant_t == HUNTER:
nx, ny = cx + dx, cy + dy
if cell_type(grid[ny][nx]) in [MOVEABLE_BLOCK, UNMOVEABLE_BLOCK, EGG]:
for bx, by in reversed(chain):
grid[by+dy][bx+dx] = grid[by][bx]
grid[by][bx] = EMPTY
grid[y+dy][x+dx] = PLAYER
grid[y][x] = EMPTY
stats['hunters_killed'] = stats.get('hunters_killed', 0) + 1
stats["score"] = stats.get("score", 0) + HUNTER_VALUE
sounds['squish'].play()
elif occupant_t == PUSHER:
nx, ny = cx + dx, cy + dy
if cell_type(grid[ny][nx]) in [MOVEABLE_BLOCK, UNMOVEABLE_BLOCK]:
for bx, by in reversed(chain):
grid[by+dy][bx+dx] = grid[by][bx]
grid[by][bx] = EMPTY
grid[y+dy][x+dx] = PLAYER
grid[y][x] = EMPTY
stats['pushers_killed'] = stats.get('pushers_killed', 0) + 1
stats["score"] = stats.get("score", 0) + PUSHER_VALUE
sounds['squish'].play()
elif occupant_t == SENTINEL:
if chain:
behind_x, behind_y = cx + dx, cy + dy
if (0 <= behind_x < GRID_WIDTH and 0 <= behind_y < GRID_HEIGHT):
if cell_type(grid[behind_y][behind_x]) == UNMOVEABLE_BLOCK:
for bx, by in reversed(chain):
grid[by+dy][bx+dx] = grid[by][bx]
grid[by][bx] = EMPTY
grid[y+dy][x+dx] = PLAYER
grid[y][x] = EMPTY
stats['sentinels_killed'] = stats.get('sentinels_killed', 0) + 1
stats["score"] = stats.get("score", 0) + SENTINEL_VALUE
sounds['squish'].play()
else:
return
else:
return
else:
return
elif occupant_t == EGG:
nx, ny = cx + dx, cy + dy
if cell_type(grid[ny][nx]) in [MOVEABLE_BLOCK, UNMOVEABLE_BLOCK]:
for bx, by in reversed(chain):
grid[by+dy][bx+dx] = grid[by][bx]
grid[by][bx] = EMPTY
grid[y+dy][x+dx] = PLAYER
grid[y][x] = EMPTY
stats['eggs_destroyed'] = stats.get('eggs_destroyed', 0) + 1
stats["score"] = stats.get("score", 0) + EGG_VALUE
sounds['squish'].play()
############################################################
# 12) UPDATE EGGS, ENEMIES, AND PATHFINDING
############################################################
def update_eggs(grid):
now = get_game_time()
for y in range(GRID_HEIGHT):
for x in range(GRID_WIDTH):
c = grid[y][x]
if cell_type(c) == EGG:
egg_total_time = c[1]
egg_start = c[2]
if now - egg_start >= egg_total_time:
grid[y][x] = PUSHER
return grid
def a_star_path_for_enemy(grid, start, goal):
def heuristic(a, b):
return abs(a[0] - b[0]) + abs(a[1] - b[1])
directions = [(0,1),(0,-1),(1,0),(-1,0),(1,1),(1,-1),(-1,1),(-1,-1)]
open_set = []
heappush(open_set, (0, start))
came_from = {}
g_score = {start: 0}
while open_set:
_, current = heappop(open_set)
if current == goal:
path = [current]
while current in came_from:
current = came_from[current]
path.append(current)
path.reverse()
return path
cx, cy = current
for (dx, dy) in directions:
nx, ny = cx+dx, cy+dy
if not (0 <= nx < GRID_WIDTH and 0 <= ny < GRID_HEIGHT):
continue
t = cell_type(grid[ny][nx])
if t in (UNMOVEABLE_BLOCK, MOVEABLE_BLOCK, HUNTER, PUSHER, SENTINEL, EGG):
continue
cost = g_score[current] + 1
if (nx, ny) not in g_score or cost < g_score[(nx, ny)]:
g_score[(nx, ny)] = cost
f_val = cost + heuristic((nx, ny), goal)
came_from[(nx, ny)] = current
heappush(open_set, (f_val, (nx, ny)))
return None
def update_hunters(grid, hunter_accuracy, screen):
player_pos = get_player_position(grid)
if not player_pos:
return
hunters_positions = [
(x, y) for y in range(GRID_HEIGHT) for x in range(GRID_WIDTH)
if cell_type(grid[y][x]) == HUNTER
]
collision_occurred = False
for (ex, ey) in hunters_positions:
if collision_occurred:
break
if cell_type(grid[ey][ex]) != HUNTER:
continue
path = a_star_path_for_enemy(grid, (ex, ey), player_pos)
moved = False
if path and len(path) > 1 and random.random() < (hunter_accuracy / 100.0):
nx, ny = path[1]
t = cell_type(grid[ny][nx])
if t == PLAYER:
handle_collision(grid, screen)
collision_occurred = True
continue
elif t == EMPTY:
grid[ny][nx] = HUNTER
grid[ey][ex] = EMPTY
moved = True
if not moved:
possible_moves = [
(0,1),(0,-1),(1,0),(-1,0),
(1,1),(1,-1),(-1,1),(-1,-1)
]
mv = random.choice(possible_moves)
nx, ny = ex + mv[0], ey + mv[1]
if 0 <= nx < GRID_WIDTH and 0 <= ny < GRID_HEIGHT:
t = cell_type(grid[ny][nx])
if t == PLAYER:
handle_collision(grid, screen)
collision_occurred = True
continue
elif t == EMPTY:
grid[ny][nx] = HUNTER
grid[ey][ex] = EMPTY
def update_sentinels(grid, sentinel_accuracy, screen):
player_pos = get_player_position(grid)
if not player_pos:
return
sentinel_positions = [
(x, y) for y in range(GRID_HEIGHT) for x in range(GRID_WIDTH)
if cell_type(grid[y][x]) == SENTINEL
]
collision_occurred = False
for (sx, sy) in sentinel_positions:
if collision_occurred:
break
if cell_type(grid[sy][sx]) != SENTINEL:
continue
path = a_star_path_for_enemy(grid, (sx, sy), player_pos)
moved = False
if path and len(path) > 1 and random.random() < (sentinel_accuracy / 100.0):
nx, ny = path[1]
t = cell_type(grid[ny][nx])
if t == PLAYER:
handle_collision(grid, screen)
collision_occurred = True
continue
elif t == EMPTY:
grid[ny][nx] = SENTINEL
grid[sy][sx] = EMPTY
moved = True
if not moved:
possible_moves = [
(0,1),(0,-1),(1,0),(-1,0),
(1,1),(1,-1),(-1,1),(-1,-1)
]
mv = random.choice(possible_moves)
nx, ny = sx + mv[0], sy + mv[1]
if 0 <= nx < GRID_WIDTH and 0 <= ny < GRID_HEIGHT:
t = cell_type(grid[ny][nx])
if t == PLAYER:
handle_collision(grid, screen)
collision_occurred = True
continue
elif t == EMPTY:
grid[ny][nx] = SENTINEL
grid[sy][sx] = EMPTY
def a_star_path_for_pusher(grid, start, goal):
def heuristic(a, b):
return abs(a[0]-b[0]) + abs(a[1]-b[1])
open_set = []
heappush(open_set, (0, start))
came_from = {}
g_score = {start: 0}
gx, gy = goal
while open_set:
_, current = heappop(open_set)
if current == goal:
path = [current]
while current in came_from:
current = came_from[current]
path.append(current)
path.reverse()
return path
cx, cy = current
for (dx, dy) in [(0,1),(0,-1),(1,0),(-1,0)]:
nx, ny = cx+dx, cy+dy
if not (0 <= nx < GRID_WIDTH and 0 <= ny < GRID_HEIGHT):
continue
t = cell_type(grid[ny][nx])
if t in (UNMOVEABLE_BLOCK, MOVEABLE_BLOCK, HUNTER, PUSHER, SENTINEL, EGG):
continue
cost = g_score[current] + 1
if (nx, ny) not in g_score or cost < g_score[(nx, ny)]:
g_score[(nx, ny)] = cost
f_val = cost + heuristic((nx, ny), (gx, gy))
came_from[(nx, ny)] = current
heappush(open_set, (f_val, (nx, ny)))