From 60bc5dcb19a983e8ae335ba89f860c59473303fb Mon Sep 17 00:00:00 2001 From: tom Date: Sun, 12 Feb 2017 08:42:55 -0600 Subject: -added DNA combining, currently it just takes the average of the mother and father -there maybe a random segfault, further investigation is needed --- inc/creature.hpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'inc/creature.hpp') diff --git a/inc/creature.hpp b/inc/creature.hpp index c3ed2d8..56954fe 100644 --- a/inc/creature.hpp +++ b/inc/creature.hpp @@ -20,10 +20,11 @@ class Creature: public Entity void setTarget(); void checkTarget(); void Move(SDL_Rect R); - void impregnate(); + void impregnate(Dna D); void giveN(std::vector n){N = n;}; Dna getDNA(){return mine;}; + Dna getChildDNA(){return childs;}; int getHealth(){return health;}; int getBestSense(){return mine.bestSense;}; bool getGender(){return gender;}; @@ -31,10 +32,11 @@ class Creature: public Entity void hadPregnancy(){pregnate = pregnancyReady = false;}; private: - SDL_Rect wTarget; - Entity *target; - std::vectorN; - Dna mine; + SDL_Rect wTarget; + Entity *target; + std::vector N; + Dna mine; + Dna childs; int health; int amountAte; -- cgit v1.2.3