summaryrefslogtreecommitdiff
path: root/inc/constants.hpp
blob: 5ec55b27ef4b4e63c2cfb2f21e61e9f7ecdd5253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef constants_h
#define constants_h

const int CREATURES                         = 10;
const int RESOURCES                         = 100;
const int MINIMUM_RESOURCES                 = 80;
const int WINDOW_X                          = 500;
const int WINDOW_Y                          = 500;

const int CREATURE_TYPE                     = 1;
const int RESOURCE_TYPE                     = 2;

const int CREATURE_START_HEALTH             = 500;
const int CREATURE_MAX_HEALTH               = 1000;
const int CREATURE_BEST_SENSE               = 100;
const int CREATURE_SPEED                    = 1;
const int CREATURE_REACH                    = 5;
const int CREATURE_SIZE_MAX                 = 10;
const int CREATURE_SIZE_START               = 5;
const int CREATURE_BITE                     = 10;
const int CREATURE_AMOUNT_TO_GROW           = 50;
const int CREATURE_EXPECTED_PREGNANCY_TIME  = 100;
const int CREATURE_EXPECTED_AGE             = 100000;

const int RESOURCE_SIZE_START               = 1;
const int RESOURCE_SIZE_MAX                 = 4;
const int RESOURCE_AMOUNT_START             = 100;
const int RESOURCE_AMOUNT_MAX               = 200;
const int RESOURCE_GROW                     = 1;

#endif