summaryrefslogtreecommitdiff
path: root/stats.py
diff options
context:
space:
mode:
Diffstat (limited to 'stats.py')
-rw-r--r--stats.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/stats.py b/stats.py
index f850339..9a745ab 100644
--- a/stats.py
+++ b/stats.py
@@ -1,7 +1,8 @@
import time
class Stats:
- def __init__(self):
+ def __init__(self,c):
+ self.c = c
self.min_mass = 0
self.max_mass = 0
self.current_mass = 0
@@ -33,4 +34,8 @@ class Stats:
self.cell_defensiveness[cell] = value
def get_last_steps(self, list, steps = 10):
- return list[-steps:] \ No newline at end of file
+ return list[-steps:]
+
+ def process_frame(self):
+ self.log_pos(self.c.player.center)
+ self.log_mass(self.c.player.total_mass)