Ver código fonte

Add basic research support

Tankernn 7 anos atrás
pai
commit
b8beea9fa8
1 arquivos alterados com 9 adições e 0 exclusões
  1. 9 0
      cbc/client.py

+ 9 - 0
cbc/client.py

@@ -19,6 +19,13 @@ class MyPrompt(Cmd):
             'name': args,
         })
 
+    def do_research(self, args):
+        """Starts the research of a new technology."""
+        send_json(self.ws, {
+            'type': "research",
+            'name': args,
+        })
+
     def do_train(self, args):
         """Starts the training of a unit."""
         args = args.split(" ")
@@ -36,6 +43,8 @@ class MyPrompt(Cmd):
             product = job['product']
             if product['type'] == "building":
                 print("Upgrading {} to level {}.".format(server_config['building'][product['name']]['name'], player_data['buildings'][product['name']] + 1))
+            elif product['type'] == "research":
+                print("Researching {} level {}.".format(server_config['research'][product['name']]['name'], player_data['research'][product['name']] + 1))
             elif product['type'] == "unit":
                 print("Training level {} {}.".format(product['level'], server_config['unit'][product['name']]['name']))
             elif product['type'] == "mission":