home · contact · privacy
Add basic plugin infrastructure.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 14 Sep 2015 03:08:38 +0000 (05:08 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 14 Sep 2015 03:08:38 +0000 (05:08 +0200)
SERVER_COMMANDS
roguelike-server

index f030d29dddec73ebe029dde58317891ca58b0644..bc69c2a2a31aad57a445d6e8cbd1e1fde03f4e15 100644 (file)
@@ -51,6 +51,10 @@ game world is set active.
 Meta commands
 -------------
 
+PLUGIN [string]
+Run plugin code in ./plugins/[argument], with argument only consisting of
+alphanumeric characters and underscores.
+
 PING
 Write "PONG" line to ./server/out file.
 
index 9d53bd0d2e08ade07eb41480bf27da00aa5f00b5..2f3480a5d6fc1ea45671c483c0194018e8bde875 100755 (executable)
@@ -1140,6 +1140,15 @@ def id_setter(id, category, id_store=False, start_at_1=False):
     return id
 
 
+def command_plugin(str_plugin):
+    """Run code in plugins/[str_plugin]."""
+    if (str_plugin.replace("_", "").isalnum()
+        and os.access("plugins/" + str_plugin, os.F_OK)):
+        exec(open("plugins/" + str_plugin).read())
+        return
+    print("Bad plugin name:", str_plugin)
+
+
 def command_ping():
     """Send PONG line to server output file."""
     strong_write(io_db["file_out"], "PONG\n")
@@ -1664,6 +1673,7 @@ be ignored in replay mode if read from server input file), and ([2]) a function
 to be called on it.
 """
 commands_db = {
+    "PLUGIN": (1, True, command_plugin),
     "QUIT": (0, True, command_quit),
     "PING": (0, True, command_ping),
     "THINGS_HERE": (2, True, command_thingshere),