diff --git a/game_objects/aiPlayer.py b/game_objects/aiPlayer.py index 7eba71b..5f5c588 100644 --- a/game_objects/aiPlayer.py +++ b/game_objects/aiPlayer.py @@ -34,9 +34,8 @@ class aiPlayer(): self.player.rot += 90 self.angle += 90 - def startAiController(self): - actions = ['right', 'straight', 'straight', 'left', 'straight' - ] + def startAiController(self, actions): + for action in actions: if action == 'straight': self.moveAiPlayer() diff --git a/main.py b/main.py index 34aaa87..713b383 100644 --- a/main.py +++ b/main.py @@ -79,8 +79,10 @@ class Game(): # game loop - set self.playing = False to end the game self.playing = True + actions = ['right', 'straight', 'straight', 'left', 'straight' + ] t = aiPlayer.aiPlayer(self.player, game=self) - t.startAiController() + t.startAiController(actions=actions) while self.playing: self.dt = self.clock.tick(FPS) / 1000.0