diff --git a/pysollib/app.py b/pysollib/app.py index 5e88c10e..99f86d33 100644 --- a/pysollib/app.py +++ b/pysollib/app.py @@ -73,24 +73,6 @@ if True: # This prevents from travis 'error' E402. _GameStatResult = GameStatResult -class Comments: - def __init__(self): - self.version_tuple = VERSION_TUPLE - self.saved = 0 - # - self.comments = {} - - def setGameComment(self, gameid, text): - player = None - key = (1, gameid, player) - self.comments[key] = str(text) - - def getGameComment(self, gameid): - player = None - key = (1, gameid, player) - return self.comments.get(key, "") - - # ************************************************************************ # * Application # * This is the glue between the toplevel window and a Game. @@ -103,7 +85,6 @@ class Application: self.opt = Options() self.startup_opt = self.opt.copy() self.stats = Statistics() - self.comments = Comments() self.splashscreen = 1 # visual components self.top = None # the root toplevel window @@ -216,12 +197,6 @@ class Application: except Exception: traceback.print_exc() pass - # try to load comments - try: - self.loadComments() - except Exception: - traceback.print_exc() - pass # startup information if self.getGameClass(self.opt.last_gameid): self.nextgame.id = self.opt.last_gameid @@ -390,12 +365,6 @@ class Application: except Exception: traceback.print_exc() pass - # save comments - try: - self.saveComments() - except Exception: - traceback.print_exc() - pass # shut down audio try: self.audio.destroy() @@ -878,7 +847,7 @@ Please select a %s type %s. return cs # - # load & save options, statistics and comments + # load & save options, and statistics # def loadOptions(self): @@ -907,14 +876,6 @@ Please select a %s type %s. self.stats.session_balance = {} self.stats.gameid_balance = 0 - def loadComments(self): - if not os.path.exists(self.fn.comments): - return - comments = unpickle(self.fn.comments) - if comments: - # print "loaded:", comments.__dict__ - self.comments.__dict__.update(comments.__dict__) - def __saveObject(self, obj, fn): obj.version_tuple = VERSION_TUPLE obj.saved += 1 @@ -926,9 +887,6 @@ Please select a %s type %s. def saveStatistics(self): self.__saveObject(self.stats, self.fn.stats) - def saveComments(self): - self.__saveObject(self.comments, self.fn.comments) - # # access games database #