summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/constants.hpp7
-rw-r--r--inc/list.hpp4
2 files changed, 4 insertions, 7 deletions
diff --git a/inc/constants.hpp b/inc/constants.hpp
index 76a40c1..a9039bf 100644
--- a/inc/constants.hpp
+++ b/inc/constants.hpp
@@ -3,9 +3,8 @@
// General
const int HERBAVORES = 100;
-const int CARNIVORES = 50;;
-const int MINIMUM_PLANTS = 4000;
-const int PLANTS = 5000;
+const int CARNIVORES = 5;
+const int PLANTS = 3000;
const int WINDOW_X = 1000;
const int WINDOW_Y = 1000;
const float BOUNDS = 30;
@@ -43,7 +42,7 @@ const int NUM_UNIFORMS = 3;
const float SIDES = 5;
// Quadtree
-const int MAX_OBJECTS = 5;
+const int MAX_OBJECTS = 10;
const int MAX_LEVELS = 20;
// Camera
diff --git a/inc/list.hpp b/inc/list.hpp
index f43ba07..e2b94e5 100644
--- a/inc/list.hpp
+++ b/inc/list.hpp
@@ -19,11 +19,9 @@ class List
std::vector<Organism*> getNear(Organism o);
- std::list<Organism> resources;
- std::list<Organism> creatures;
+ std::list<Organism> organisms;
Quadtree tree;
- std::vector<Rectangle> drawQuadTree();
};
#endif