]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
Check for distinct weapons fired during the match.
authorAnt Zucaro <azucaro@gmail.com>
Sat, 28 Jan 2017 15:01:36 +0000 (10:01 -0500)
committerAnt Zucaro <azucaro@gmail.com>
Sat, 28 Jan 2017 15:01:36 +0000 (10:01 -0500)
xonstat/views/submission.py

index 52d609199cb6286e890fc9619731baf559333e72..81e639e531fcf0f0ba0894ad79fce080614a7100 100644 (file)
@@ -52,6 +52,13 @@ class Submission(object):
         except:
             return None, None
 
+    def check_for_new_weapon_fired(self, sub_key):
+        """Checks if a given player key (subkey, actually) is a new weapon fired in the match."""
+        if sub_key.endswith("cnt-fired"):
+            weapon = sub_key.split("-")[1]
+            if weapon not in self.weapons:
+                self.weapons.add(weapon)
+
     def parse_player(self, key, pid):
         """Construct a player events listing from the submission."""
 
@@ -68,6 +75,9 @@ class Submission(object):
             elif key == 'e':
                 (sub_key, sub_value) = value.split(' ', 1)
                 player[sub_key] = sub_value
+
+                # keep track of the distinct weapons fired during the match
+                self.check_for_new_weapon_fired(sub_key)
             elif key == 'n':
                 player[key] = unicode(value, 'utf-8')
             elif key in player_keys: