home · contact · privacy
Remove usage demo code from library.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 18 Feb 2019 00:50:43 +0000 (01:50 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 18 Feb 2019 00:50:43 +0000 (01:50 +0100)
new/plomrogue/misc.py

index 468680e083912c8bc99326fb97f33dcb47133fa1..93be672eea7f9acadb7c233c6a9b717a1e7cc550 100755 (executable)
@@ -903,27 +903,3 @@ def quote(string):
 def stringify_yx(tuple_):
     """Transform tuple (y,x) into string 'Y:'+str(y)+',X:'+str(x)."""
     return 'Y:' + str(tuple_[0]) + ',X:' + str(tuple_[1])
 def stringify_yx(tuple_):
     """Transform tuple (y,x) into string 'Y:'+str(y)+',X:'+str(x)."""
     return 'Y:' + str(tuple_[0]) + ',X:' + str(tuple_[1])
-
-
-
-if __name__ == "__main__":
-    import sys
-    import os
-    if len(sys.argv) != 2:
-        print('wrong number of arguments, expected one (game file)')
-        exit(1)
-    game_file_name = sys.argv[1]
-    game = Game(game_file_name)
-    if os.path.exists(game_file_name):
-        if not os.path.isfile(game_file_name):
-            print('game file name does not refer to a valid game file')
-        else:
-            with open(game_file_name, 'r') as f:
-                lines = f.readlines()
-            for i in range(len(lines)):
-                line = lines[i]
-                print("FILE INPUT LINE %5s: %s" % (i, line), end='')
-                game.io.handle_input(line, store=False)
-    else:
-        game.io.handle_input('GEN_WORLD Y:16,X:16 bar')
-    game.io.run_loop_with_server()