From 11c5d147b845d4323f2e94c1ac47b6001420d8e6 Mon Sep 17 00:00:00 2001 From: tom Date: Thu, 19 Jan 2017 13:33:46 -0600 Subject: -added entity growing -added bite functionality for creature/resource -added gender (next largest feature is reproduction) -refractored creature setTarget function to make more sense -added constants for starting size of entity and max size of entity -refractored list to make make much more sense -added constants for types --- inc/creature.hpp | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) (limited to 'inc/creature.hpp') diff --git a/inc/creature.hpp b/inc/creature.hpp index f51d083..edc253f 100644 --- a/inc/creature.hpp +++ b/inc/creature.hpp @@ -17,24 +17,29 @@ class Creature: public Entity void setTarget(); void Move(SDL_Rect R); - void giveN(list n){N = n;}; - double Distance(SDL_Rect A, SDL_Rect B){return sqrt(pow(A.x-B.x,2)+pow(A.y-B.y,2));}; - int getHealth(){return health;}; - bool doesItHaveTarget(){return hasTarget;}; - int getBestSense(){return bestSense;}; + void giveN(list n){N = n;}; + double Distance(SDL_Rect A, SDL_Rect B){return sqrt(pow(A.x-B.x,2)+pow(A.y-B.y,2));}; + int getHealth(){return health;}; + bool doesItHaveTarget(){return hasTarget;}; + int getBestSense(){return bestSense;}; private: - bool hasTarget; - bool wander; + bool hasTarget; + bool wander; SDL_Rect wTarget; - int health; - int reach; - int maxHealth; - bool hungry; - int speed; - bool able; - int bestSense; + int health; + int reach; + int maxHealth; + int speed; + int bestSense; + int bite; + int amountAte; + int amountToGrow; + + bool hungry; + bool gender; + bool able; list N; Entity *target; -- cgit v1.2.3