2020-11-19 01:18:08 +00:00
|
|
|
from squirrelbattle.game import Game
|
|
|
|
from squirrelbattle.display.display_manager import DisplayManager
|
|
|
|
from squirrelbattle.term_manager import TermManager
|
2020-11-10 17:08:06 +00:00
|
|
|
|
2020-11-10 19:34:22 +00:00
|
|
|
|
2020-11-10 17:08:06 +00:00
|
|
|
class Bootstrap:
|
2020-11-18 11:19:27 +00:00
|
|
|
"""
|
2020-11-18 13:56:59 +00:00
|
|
|
The bootstrap object is used to bootstrap the game so that it starts
|
|
|
|
properly.
|
|
|
|
(It was initially created to avoid circular imports between the Game and
|
2020-11-18 11:19:27 +00:00
|
|
|
Display classes)
|
|
|
|
"""
|
2020-11-10 17:08:06 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def run_game():
|
2020-11-10 20:32:42 +00:00
|
|
|
with TermManager() as term_manager: # pragma: no cover
|
2020-11-10 17:08:06 +00:00
|
|
|
game = Game()
|
|
|
|
game.new_game()
|
|
|
|
display = DisplayManager(term_manager.screen, game)
|
2020-11-12 00:57:56 +00:00
|
|
|
game.display_actions = display.handle_display_action
|
2020-11-10 19:34:22 +00:00
|
|
|
game.run(term_manager.screen)
|