Final 2.0

This commit is contained in:
2025-08-20 16:43:16 +02:00
parent 0141063baa
commit 17e5abc7df
8 changed files with 112 additions and 11 deletions
+1
View File
@@ -15,6 +15,7 @@
"keydown_Space": "spawn_new_bomb", "keydown_Space": "spawn_new_bomb",
"keydown_N": "spawn_new_nuclear_bomb", "keydown_N": "spawn_new_nuclear_bomb",
"keydown_Left_Ctrl": "spawn_new_mine", "keydown_Left_Ctrl": "spawn_new_mine",
"keydown_G": "spawn_gas",
"keydown_P": "toggle_pause" "keydown_P": "toggle_pause"
}, },
"keybinding_start_menu": { "keybinding_start_menu": {
+2 -1
View File
@@ -6,9 +6,10 @@ keybinding_game:
joyhatmotion_0_2: start_scrolling|Right joyhatmotion_0_2: start_scrolling|Right
joyhatmotion_0_0: stop_scrolling joyhatmotion_0_0: stop_scrolling
joybuttondown_3: spawn_new_bomb joybuttondown_3: spawn_new_bomb
joybuttondown_5: spawn_new_nuclear_bomb joybuttondown_11: spawn_new_nuclear_bomb
joybuttondown_4: spawn_new_mine joybuttondown_4: spawn_new_mine
joybuttondown_10: toggle_pause joybuttondown_10: toggle_pause
joybuttondown_5: spawn_gas
keybinding_start_menu: keybinding_start_menu:
joybuttondown_9: reset_game joybuttondown_9: reset_game
+3 -3
View File
@@ -266,7 +266,7 @@ class GameWindow:
def update_ammo(self, ammo, assets): def update_ammo(self, ammo, assets):
"""Update and display the ammo count""" """Update and display the ammo count"""
ammo_text = f"{ammo['bomb']['count']}/{ammo['bomb']['max']} {ammo['mine']['count']}/{ammo['mine']['max']} {ammo['nuclear']['count']}/{ammo['nuclear']['max']} " ammo_text = f"{ammo['bomb']['count']}/{ammo['bomb']['max']} {ammo['mine']['count']}/{ammo['mine']['max']} {ammo['gas']['count']}/{ammo['gas']['max']} "
if self.ammo_text != ammo_text: if self.ammo_text != ammo_text:
self.ammo_text = ammo_text self.ammo_text = ammo_text
font = self.fonts[20] font = self.fonts[20]
@@ -279,8 +279,8 @@ class GameWindow:
self.renderer.copy(self.ammo_background, dstrect=sdl2.SDL_Rect(position[0] - 5, position[1] - 2, text_width + 10, text_height + 4)) self.renderer.copy(self.ammo_background, dstrect=sdl2.SDL_Rect(position[0] - 5, position[1] - 2, text_width + 10, text_height + 4))
self.renderer.copy(self.ammo_sprite, dstrect=sdl2.SDL_Rect(position[0], position[1], text_width, text_height)) self.renderer.copy(self.ammo_sprite, dstrect=sdl2.SDL_Rect(position[0], position[1], text_width, text_height))
self.renderer.copy(assets["BMP_BOMB0"], dstrect=sdl2.SDL_Rect(position[0]+25, position[1], 20, 20)) self.renderer.copy(assets["BMP_BOMB0"], dstrect=sdl2.SDL_Rect(position[0]+25, position[1], 20, 20))
self.renderer.copy(assets["BMP_POISON"], dstrect=sdl2.SDL_Rect(position[0]+80, position[1], 20, 20)) self.renderer.copy(assets["BMP_POISON"], dstrect=sdl2.SDL_Rect(position[0]+85, position[1], 20, 20))
self.renderer.copy(assets["BMP_NUCLEAR"], dstrect=sdl2.SDL_Rect(position[0]+130, position[1], 20, 20)) self.renderer.copy(assets["BMP_GAS"], dstrect=sdl2.SDL_Rect(position[0]+140, position[1], 20, 20))
# ====================== # ======================
# VIEW & NAVIGATION # VIEW & NAVIGATION
# ====================== # ======================
+15 -1
View File
@@ -1,6 +1,8 @@
import random import random
import uuid import uuid
from units import rat, bomb, mine, points from units import gas, rat, bomb, mine
class UnitManager: class UnitManager:
def count_rats(self): def count_rats(self):
@@ -10,6 +12,15 @@ class UnitManager:
count += 1 count += 1
return count return count
def spawn_gas(self, parent_id=None):
if self.map.is_wall(self.pointer[0], self.pointer[1]):
return
if self.ammo["gas"]["count"] <= 0:
return
self.ammo["gas"]["count"] -= 1
self.render_engine.play_sound("GAS.WAV")
self.spawn_unit(gas.Gas, self.pointer, parent_id=parent_id)
def spawn_rat(self, position=None): def spawn_rat(self, position=None):
if position is None: if position is None:
position = self.choose_start() position = self.choose_start()
@@ -57,3 +68,6 @@ class UnitManager:
if self.map.matrix[y][x] if self.map.matrix[y][x]
] ]
return random.choice(self._valid_positions) return random.choice(self._valid_positions)
def get_unit_by_id(self, id):
return self.units.get(id) or None
+11 -4
View File
@@ -54,15 +54,19 @@ class MiceMaze(
self.ammo = { self.ammo = {
"bomb": { "bomb": {
"count": 2, "count": 2,
"max": 5 "max": 8
}, },
"nuclear": { "nuclear": {
"count": 1, "count": 1,
"max": 1 "max": 1
}, },
"mine": { "mine": {
"count": 5, "count": 2,
"max": 5 "max": 4
},
"gas": {
"count": 2,
"max": 4
} }
} }
self.blood_stains = {} self.blood_stains = {}
@@ -84,11 +88,14 @@ class MiceMaze(
def refill_ammo(self): def refill_ammo(self):
for ammo_type, data in self.ammo.items(): for ammo_type, data in self.ammo.items():
if ammo_type == "bomb": if ammo_type == "bomb":
if random.random() < 0.01: if random.random() < 0.02:
data["count"] = min(data["count"] + 1, data["max"]) data["count"] = min(data["count"] + 1, data["max"])
elif ammo_type == "mine": elif ammo_type == "mine":
if random.random() < 0.05: if random.random() < 0.05:
data["count"] = min(data["count"] + 1, data["max"]) data["count"] = min(data["count"] + 1, data["max"])
elif ammo_type == "gas":
if random.random() < 0.01:
data["count"] = min(data["count"] + 1, data["max"])
def update_maze(self): def update_maze(self):
if self.game_over(): if self.game_over():
Binary file not shown.
+69
View File
@@ -0,0 +1,69 @@
from .unit import Unit
from .rat import Rat
import random
# Costanti
AGE_THRESHOLD = 200
class Gas(Unit):
def __init__(self, game, position=(0,0), id=None, parent_id=None):
super().__init__(game, position, id)
self.parent_id = parent_id
# Specific attributes for gas
self.speed = 50
self.fight = False
self.age = 0
if parent_id:
self.age = round(random.uniform(0, AGE_THRESHOLD))
self.spreading_cells = []
self.last_spreading_cells = []
def move(self):
if self.age > AGE_THRESHOLD:
self.die()
return
self.age += 1
#victims = self.game.unit_positions.get(self.position, [])
victims = [rat for rat in self.game.unit_positions.get(self.position, []) if rat.partial_move>0.5]
for rat in self.game.unit_positions_before.get(self.position, []):
if rat.partial_move<0.5 and rat is Rat:
victims.append(rat)
for victim in victims:
victim.gassed += 1
if self.age % self.speed:
return
parent = self.game.get_unit_by_id(self.parent_id)
if (parent) or self.parent_id is None:
print(f"Gas at {self.position} is spreading")
# Spread gas to adjacent cells
for dx, dy in [(-1, 0), (1, 0), (0, -1), (0, 1)]:
new_x = self.position[0] + dx
new_y = self.position[1] + dy
if not self.game.map.is_wall(new_x, new_y):
if not any(isinstance(unit, Gas) for unit in self.game.units.values() if unit.position == (new_x, new_y)):
print(f"Spreading gas from {self.position} to ({new_x}, {new_y})")
self.game.spawn_unit(Gas, (new_x, new_y), parent_id=self.parent_id if self.parent_id else self.id)
def collisions(self):
pass
def die(self, unit=None):
if not unit:
unit = self
self.game.units.pop(unit.id)
def draw(self):
image = self.game.assets["BMP_GAS"]
image_size = self.game.render_engine.get_image_size(image)
self.rat_image = image
partial_x, partial_y = 0, 0
x_pos = self.position_before[0] * self.game.cell_size + (self.game.cell_size - image_size[0]) // 2 + partial_x
y_pos = self.position_before[1] * self.game.cell_size + (self.game.cell_size - image_size[1]) // 2 + partial_y
self.game.render_engine.draw_image(x_pos, y_pos, image, anchor="nw", tag="unit")
for cell in self.spreading_cells:
x_pos = cell[0] * self.game.cell_size + (self.game.cell_size - image_size[0]) // 2 + partial_x
y_pos = cell[1] * self.game.cell_size + (self.game.cell_size - image_size[1]) // 2 + partial_y
self.game.render_engine.draw_image(x_pos, y_pos, image, anchor="nw", tag="unit")
+9
View File
@@ -17,6 +17,7 @@ class Rat(Unit):
# Specific attributes for rats # Specific attributes for rats
self.speed = 0.10 # Rats are slower self.speed = 0.10 # Rats are slower
self.fight = False self.fight = False
self.gassed = 0
# Initialize position using pathfinding # Initialize position using pathfinding
self.position = self.find_next_position() self.position = self.find_next_position()
@@ -47,7 +48,14 @@ class Rat(Unit):
self.position_before = self.position self.position_before = self.position
return neighbors[random.randint(0, len(neighbors) - 1)] return neighbors[random.randint(0, len(neighbors) - 1)]
def choked(self):
self.game.render_engine.play_sound("CHOKE.WAV")
self.die(score=10)
def move(self): def move(self):
if self.gassed > 35:
self.choked()
return
self.age += 1 self.age += 1
if self.age == AGE_THRESHOLD: if self.age == AGE_THRESHOLD:
self.speed *= SPEED_REDUCTION self.speed *= SPEED_REDUCTION
@@ -69,6 +77,7 @@ class Rat(Unit):
return return
units = [] units = []
units.extend(self.game.unit_positions.get(self.position_before, [])) units.extend(self.game.unit_positions.get(self.position_before, []))
units.extend(self.game.unit_positions_before.get(self.position, []))
for unit in units: for unit in units:
if unit.id == self.id or unit.age < AGE_THRESHOLD or self.position != unit.position_before: if unit.id == self.id or unit.age < AGE_THRESHOLD or self.position != unit.position_before: