# HG changeset patch # User Jeremy Thurgood # Date 1336326301 -7200 # Node ID 2f7d8f908de0567a330c9babd9934d6fb007f304 # Parent 4d9610c59efaaa51481c2a82769c448a5f1d0abd Better REPL client. diff -r 4d9610c59efa -r 2f7d8f908de0 gamelib/tests/repl_game.py --- a/gamelib/tests/repl_game.py Sun May 06 19:28:15 2012 +0200 +++ b/gamelib/tests/repl_game.py Sun May 06 19:45:01 2012 +0200 @@ -11,7 +11,11 @@ self.display_state() def display_state(self): + print "-" * 50 + print "Repute:", self.game.reputation + print "Moneys:", self.game.money print "Points:", self.game.points + print "" print "Science:" self.science = [] for science in self.game.lab.science: @@ -21,6 +25,10 @@ len(self.science), science.NAME, science.points) else: print " -- %s (%s)" % (science.NAME, science.points) + print "" + print "Missions:" + print " * Coming soon!" + print "-" * 50 def next_turn(self, research_list, missions): assert not missions, "Missions not currently supported."