Files
lab_retro/asteroid.py
tsmith37 2bfaa54f1d finished the game
The program in unit 1, the turtle would draw whatever you made when it starts, but for the
nav_game the objects are already made, and you can move things around after it starts
2025-12-01 16:15:27 -05:00

25 lines
686 B
Python

# asteroid.py
# ------------
# By MWC Contributors
# This module defines an asteroid agent class.
class Asteroid:
character = 'O'
def __init__(self, position):
self.position = position
def play_turn(self, game):
width, height = game.board_size
if game.turn_number % 2 == 0:
x, y = self.position
if y == height - 1:
game.remove_agent(self)
else:
ship = game.get_agent_by_name('ship')
new_position = (x, y + 1)
if new_position == ship.position:
game.end()
else:
self.position = new_position