summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortroido <troido@hotmail.com>2017-10-30 12:01:16 +0100
committertroido <troido@hotmail.com>2017-10-30 12:01:16 +0100
commitbcc306d36d639b0282c13ba25d187a22fb5e1d9f (patch)
treec4ca2fbf877b56ec4123d53e9fe30354eef47d14
parentd1f84633cff02d9d43c321814364b2c30c4fa3a9 (diff)
finally made everything executable that I wanted to be executable
-rw-r--r--[-rwxr-xr-x]asciifarm/client/__init__.py73
-rw-r--r--asciifarm/client/__main__.py10
-rwxr-xr-xasciifarm/client/main.py73
3 files changed, 81 insertions, 75 deletions
diff --git a/asciifarm/client/__init__.py b/asciifarm/client/__init__.py
index 92e1648..e69de29 100755..100644
--- a/asciifarm/client/__init__.py
+++ b/asciifarm/client/__init__.py
@@ -1,73 +0,0 @@
-#! /usr/bin/python3
-
-
-import argparse
-import getpass
-import json
-import os
-import os.path
-
-from .start import main as clientmain
-
-thisPath = os.path.dirname(__file__)
-farmsPath = os.path.join(thisPath, "..")
-charMapPath = os.path.join(farmsPath, "charmaps")
-keybindingsPath = os.path.join(farmsPath, "keybindings")
-
-standardCharFiles = [name[:-5] for name in os.listdir(charMapPath) if name[-5:] == ".json"]
-standardKeyFiles = [name[:-5] for name in os.listdir(keybindingsPath) if name[-5:] == ".json"]
-
-
-defaultAdresses = {
- "abstract": "asciifarm",
- "unix": "asciifarm.socket",
- "inet": "localhost:9021",
- }
-
-def main():
-
- parser = argparse.ArgumentParser(description="The client to AsciiFarm. Run this to connect to to the server.", epilog="""
- Gameplay information:
- Walk around and explore the rooms.
- Kill the goblins and plant the seeds.
-
- ~troido""", formatter_class=argparse.RawDescriptionHelpFormatter)
- parser.add_argument('-n', '--name', help='Your player name (must be unique!). Defaults to username', default=getpass.getuser())
- parser.add_argument("-a", "--address", help="The address of the socket. When the socket type is 'abstract' this is just a name. When it is 'unix' this is a filename. When it is 'inet' is should be in the format 'address:port', eg 'localhost:8080'. Defaults depends on the socket type")
- parser.add_argument("-s", "--socket", help="the socket type. 'unix' is unix domain sockets, 'abstract' is abstract unix domain sockets and 'inet' is inet sockets. ", choices=["abstract", "unix", "inet"], default="abstract")
- parser.add_argument('-k', '--keybindings', help='The file with the keybindings. If it is either of these names: {} it will be loaded from the keybindings directory.'.format(standardKeyFiles), default="default")
- parser.add_argument('-c', '--characters', help='The file with the character mappings for the graphics. If it is either of these names: {} it will be loaded from the charmaps directory.'.format(standardCharFiles), default="default")
-
- colourGroup = parser.add_mutually_exclusive_group()
- colourGroup.add_argument('-l', '--colours', '--colors', help='enable colours! :)', action="store_true")
- colourGroup.add_argument('-b', '--nocolours', '--nocolors', help='disable colours! :)', action="store_true")
- args = parser.parse_args()
-
- charFile = args.characters
- if charFile in standardCharFiles:
- charFile = os.path.join(charMapPath, charFile + ".json")
- with open(charFile, 'r') as cf:
- charMap = json.load(cf)
- keyFile = args.keybindings
- if keyFile in standardKeyFiles:
- keyFile = os.path.join(keybindingsPath, keyFile + ".json")
- with open(keyFile, 'r') as kf:
- keybindings = json.load(kf)
-
- address = args.address
- if address == None:
- address = defaultAdresses[args.socket]
- if args.socket == "abstract":
- address = '\0' + address
- elif args.socket == "inet":
- hostname, sep, port = address.partition(':')
- address = (hostname, int(port))
-
- colours = True
- if args.colours:
- colours = True
- elif args.nocolours:
- colours = False
-
- clientmain(args.name, args.socket, address, keybindings, charMap, colours)
-
diff --git a/asciifarm/client/__main__.py b/asciifarm/client/__main__.py
index ccc3f91..f30b6db 100644
--- a/asciifarm/client/__main__.py
+++ b/asciifarm/client/__main__.py
@@ -1,10 +1,16 @@
import sys
-import client
if sys.version_info[0] < 3:
print("This game is written in python 3.\nRun 'python3 "+sys.argv[0]+"' or './"+sys.argv[0]+"'")
sys.exit(-1)
-client.main()
+if __package__:
+ from . import main
+else:
+ import os.path
+ sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
+ from client import main
+
+main.main()
diff --git a/asciifarm/client/main.py b/asciifarm/client/main.py
new file mode 100755
index 0000000..baaf8d4
--- /dev/null
+++ b/asciifarm/client/main.py
@@ -0,0 +1,73 @@
+#! /usr/bin/python3
+
+
+import argparse
+import getpass
+import json
+import os
+import os.path
+
+from .start import main as clientmain
+
+thisPath = os.path.dirname(__file__)
+farmsPath = os.path.join(thisPath, "..")
+charMapPath = os.path.join(farmsPath, "charmaps")
+keybindingsPath = os.path.join(farmsPath, "keybindings")
+
+standardCharFiles = [name[:-5] for name in os.listdir(charMapPath) if name[-5:] == ".json"]
+standardKeyFiles = [name[:-5] for name in os.listdir(keybindingsPath) if name[-5:] == ".json"]
+
+
+defaultAdresses = {
+ "abstract": "asciifarm",
+ "unix": "asciifarm.socket",
+ "inet": "localhost:9021",
+ }
+
+def main(argv=None):
+
+ parser = argparse.ArgumentParser(description="The client to AsciiFarm. Run this to connect to to the server.", epilog="""
+ Gameplay information:
+ Walk around and explore the rooms.
+ Kill the goblins and plant the seeds.
+
+ ~troido""", formatter_class=argparse.RawDescriptionHelpFormatter)
+ parser.add_argument('-n', '--name', help='Your player name (must be unique!). Defaults to username', default=getpass.getuser())
+ parser.add_argument("-a", "--address", help="The address of the socket. When the socket type is 'abstract' this is just a name. When it is 'unix' this is a filename. When it is 'inet' is should be in the format 'address:port', eg 'localhost:8080'. Defaults depends on the socket type")
+ parser.add_argument("-s", "--socket", help="the socket type. 'unix' is unix domain sockets, 'abstract' is abstract unix domain sockets and 'inet' is inet sockets. ", choices=["abstract", "unix", "inet"], default="abstract")
+ parser.add_argument('-k', '--keybindings', help='The file with the keybindings. If it is either of these names: {} it will be loaded from the keybindings directory.'.format(standardKeyFiles), default="default")
+ parser.add_argument('-c', '--characters', help='The file with the character mappings for the graphics. If it is either of these names: {} it will be loaded from the charmaps directory.'.format(standardCharFiles), default="default")
+
+ colourGroup = parser.add_mutually_exclusive_group()
+ colourGroup.add_argument('-l', '--colours', '--colors', help='enable colours! :)', action="store_true")
+ colourGroup.add_argument('-b', '--nocolours', '--nocolors', help='disable colours! :)', action="store_true")
+ args = parser.parse_args(argv)
+
+ charFile = args.characters
+ if charFile in standardCharFiles:
+ charFile = os.path.join(charMapPath, charFile + ".json")
+ with open(charFile, 'r') as cf:
+ charMap = json.load(cf)
+ keyFile = args.keybindings
+ if keyFile in standardKeyFiles:
+ keyFile = os.path.join(keybindingsPath, keyFile + ".json")
+ with open(keyFile, 'r') as kf:
+ keybindings = json.load(kf)
+
+ address = args.address
+ if address == None:
+ address = defaultAdresses[args.socket]
+ if args.socket == "abstract":
+ address = '\0' + address
+ elif args.socket == "inet":
+ hostname, sep, port = address.partition(':')
+ address = (hostname, int(port))
+
+ colours = True
+ if args.colours:
+ colours = True
+ elif args.nocolours:
+ colours = False
+
+ clientmain(args.name, args.socket, address, keybindings, charMap, colours)
+