X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plomrogue-server.py;h=7a56d55e87e6e92f42e312cdf16410f57de38e60;hb=40e55b700dbf1fabb7aac5f3b969d65765353418;hp=d5949ad148761124614a2c2f1537f7be907268dd;hpb=be70795641d788332eb1f2b7fdc613fb41aa8b6a;p=plomrogue diff --git a/plomrogue-server.py b/plomrogue-server.py index d5949ad..7a56d55 100755 --- a/plomrogue-server.py +++ b/plomrogue-server.py @@ -50,10 +50,34 @@ def detect_atomic_leftover(path): raise SystemExit(msg) -def obey(msg): +def obey(cmd, io_db, path_recordfile): """""" - print("Input: " + msg) - print(shlex.split(msg)) + print("Input: " + cmd) + try: + tokens = shlex.split(cmd, comments=True) + except ValueError as err: + print("Can't tokenize command string: " + str(err) + ".") + return + if 0 == len(tokens): + pass + elif "PING" == tokens[0] and 1 == len(tokens): + io_db["file_out"].write("PONG\n") + elif "QUIT" == tokens[0] and 1 == len(tokens): + record("# " + cmd, path_recordfile) + raise SystemExit("received QUIT command") + elif "MAKE_WORLD" == tokens[0] and 2 == len(tokens): + print("I would generate a new world now, if only I knew how.") + record(cmd, path_recordfile) + else: + print("Invalid command/argument, or bad number of tokens.") + + +def record(cmd, path_recordfile): + """Append cmd string plus newline to file at path_recordfile.""" + file = open(path_recordfile, "a") + file.write(cmd + "\n") + file.close() + io_db = {} @@ -78,8 +102,7 @@ try: elif os.access(path_savefile, os.F_OK): print(open(path_savefile, "r").read()) else: - msg = "MAKE_WORLD " + str(int(time.time())) - obey(msg) + obey("MAKE_WORLD " + str(int(time.time())), io_db, path_recordfile) except SystemExit as exit: print("ABORTING: " + exit.args[0]) except: