diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-09-30 08:50:49 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-09-30 08:50:49 -0400 |
commit | cfa79da357843f7918ff7108bce80acb59df3413 (patch) | |
tree | 5c287ad36ca30519715fe15cd6f3642ee42c6c45 /src | |
parent | a9f617e28ed109786cbdf9457878a2837d292a9a (diff) | |
parent | b3e21d31304efd793c58e904765bf298da6c5c20 (diff) |
Started names and genders
Diffstat (limited to 'src')
-rw-r--r-- | src/entities.cpp | 11 | ||||
-rw-r--r-- | src/main.cpp | 7 | ||||
-rw-r--r-- | src/ui.cpp | 23 |
3 files changed, 30 insertions, 11 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index 14048a0..9fe05c7 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -66,8 +66,19 @@ NPC::NPC(){ //sets all of the NPC specific traits on object creation canMove = true; } +void NPC::addAIFunc(int (*func)(NPC *)){ + aiFunc.push_back(func); +} + void NPC::interact(){ //have the npc's interact back to the player + int (*func)(NPC *); loc.y += 5; + if(aiFunc.size()){ + func=aiFunc.front(); + if(!func(this)){ + aiFunc.erase(aiFunc.begin()); + } + } } Structures::Structures(){ //sets the structure type diff --git a/src/main.cpp b/src/main.cpp index 27bb616..4ed34dc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,6 +31,11 @@ FILE* names; void logic(); void render(); +int entityInteractTest(NPC *speaker){ + ui::dialogBox("NPC: Hello there!"); + return 1; +} + unsigned int millis(void){ std::chrono::system_clock::time_point now=std::chrono::system_clock::now(); return std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch()).count(); @@ -116,6 +121,8 @@ int main(int argc, char *argv[]){ entity[i]->inWorld=test; } + NPCp(entity[1])->addAIFunc(entityInteractTest); + //************************************************************************// // END WORLD GENERATION STUFF // //************************************************************************// @@ -128,6 +128,7 @@ namespace ui { } } void handleEvents(void){ + static bool left=false,right=false; SDL_Event e; while(SDL_PollEvent(&e)){ switch(e.type){ @@ -138,16 +139,24 @@ namespace ui { mouse.x=e.motion.x; mouse.y=e.motion.y; break; + case SDL_MOUSEBUTTONDOWN: + if((e.button.button&SDL_BUTTON_RIGHT)&&dialogBoxExists){ + dialogBoxExists=false; + dialogBoxText=NULL; + } + break; /* KEYDOWN */ case SDL_KEYDOWN: if(SDL_KEY==SDLK_ESCAPE)gameRunning=false; // Exit the game with ESC if(SDL_KEY==SDLK_a){ // Move left + left=true; player->vel.x=-.15; currentWorld=currentWorld->goWorldLeft(player); } if(SDL_KEY==SDLK_d){ // Move right + right=true; player->vel.x=.15; currentWorld=currentWorld->goWorldRight(player); } @@ -167,22 +176,14 @@ namespace ui { if(SDL_KEY==SDLK_k)currentWorld=currentWorld->goWorldFront(player); // Go forward a layer if possible if(SDL_KEY==SDLK_F3)debug^=true; if(SDL_KEY==SDLK_LSHIFT)player->speed = 3; - - // TEMPORARY UNTIL MOUSE - if(SDL_KEY==SDLK_t){ - if(dialogBoxExists){ - dialogBoxExists=false; - dialogBoxText=NULL; - }else dialogBox("Hello"); - } - break; /* KEYUP */ case SDL_KEYUP: - if(SDL_KEY==SDLK_a)player->vel.x=0; // Stop the player if movement keys are released - if(SDL_KEY==SDLK_d)player->vel.x=0; + if(SDL_KEY==SDLK_a)left=false; // Stop the player if movement keys are released + if(SDL_KEY==SDLK_d)right=false; + if(!left&&!right)player->vel.x=0; if(SDL_KEY==SDLK_LSHIFT)player->speed = 1; break; |