]> de.git.xonotic.org Git - xonotic/xonstat.git/commitdiff
A rough outline of constructing the frag matrix for a single player.
authorAnt Zucaro <azucaro@gmail.com>
Sat, 30 Sep 2017 14:07:04 +0000 (10:07 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Sat, 30 Sep 2017 14:07:04 +0000 (10:07 -0400)
xonstat/views/submission.py

index b4059e5ad06c2bbe3863587c7b3499ed0f5521b1..89efdb18514914f34b96e606ea21a5549fd762b5 100644 (file)
@@ -1044,6 +1044,25 @@ def get_or_create_players(session, events_by_hashkey):
     return players_by_hashkey
 
 
+def create_frag_matrix(pgstat, events):
+    """
+    Construct a PlayerFragMatrix object from the events of a given player.
+
+    :param pgstat: The PlayerGameStat object of the player whose frag matrix we want to create.
+    :param events: The raw player events of the above player.
+    :return: PlayerFragMatrix
+    """
+    player_index = events.get("i", None)
+
+    # "kills-4" -> 4
+    victim_index = lambda x: int(x.split("-")[1])
+
+    # TODO: prune these events to only those corresponding to players who played in the game
+    matrix = {victim_index(k): int(v) for (k, v) in events if k.startswith("kills-")}
+
+    return None
+
+
 def submit_stats(request):
     """
     Entry handler for POST stats submissions.