aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-09-28 08:47:43 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-09-28 08:47:43 -0400
commit113bb97e4ce7db5bc275e0dccf7c790c86cda5d7 (patch)
tree6db84a77b149476ecd45f838237385ab7d360cf3 /src
parent9630c8a49cbad7b1b71b9401ff24881ebf4c7c25 (diff)
Added enum for types and improved NPCs
Diffstat (limited to 'src')
-rw-r--r--src/entities.cpp10
-rw-r--r--src/main.cpp8
-rw-r--r--src/ui.cpp11
3 files changed, 20 insertions, 9 deletions
diff --git a/src/entities.cpp b/src/entities.cpp
index e93f23a..421badb 100644
--- a/src/entities.cpp
+++ b/src/entities.cpp
@@ -36,7 +36,7 @@ Player::Player(){
width = HLINE * 8;
height = HLINE * 12;
speed = 1;
- type = 0;
+ type = PLAYERT;
subtype = 5;
alive = true;
ground = false;
@@ -50,7 +50,7 @@ NPC::NPC(){
width = HLINE * 8;
height = HLINE * 12;
speed = 1;
- type = 1;
+ type = NPCT;
subtype = 0;
alive = true;
canMove = true;
@@ -61,17 +61,17 @@ void NPC::interact(){
}
Structures::Structures(){
- type = -1;
+ type = STRUCTURET;
speed = 0;
}
-unsigned int Structures::spawn(int t, float x, float y){
+unsigned int Structures::spawn(_TYPE t, float x, float y){
loc.x = x;
loc.y = y;
type = t;
/*VILLAGE*/
- if(type == -1){
+ if(type == STRUCTURET){
width = 4 * HLINE;
height = 4 * HLINE;
diff --git a/src/main.cpp b/src/main.cpp
index 1e8b942..b24c747 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -109,8 +109,8 @@ int main(int argc, char *argv[]){
entity[0]=&build[0];
static unsigned int i;
- build[0].spawn(-1,0,10);
- for(i=0;i<entity.size()+1;i++){
+ build[0].spawn(STRUCTURET,0,10);
+ for(i=0;i<=entity.size();i++){
entity[i]->inWorld=test;
}
@@ -196,9 +196,9 @@ void logic(){
ui::handleEvents();
currentWorld->detect(player);
for(int i=0;i<=entity.size();i++){
- if(entity[i]->alive&&entity[i]->type == 1){
+ if(entity[i]->alive&&entity[i]->type == NPCT){
entity[i]->wander(90, &entity[i]->vel);
- std::cout<<"works"<<i<<std::endl;
+ //std::cout<<"works"<<i<<std::endl;
}
}
}
diff --git a/src/ui.cpp b/src/ui.cpp
index 75bc5ee..0789994 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -16,6 +16,7 @@ static bool dialogBoxExists=false;
static const char *dialogBoxText=NULL;
namespace ui {
+ vec2 mouse;
bool debug=false;
unsigned int fontSize;
/*
@@ -132,6 +133,13 @@ namespace ui {
case SDL_QUIT:
gameRunning=false;
break;
+ case SDL_MOUSEMOTION:
+ mouse.x=e.motion.x;
+ mouse.y=e.motion.y;
+ break;
+ /*
+ KEYDOWN
+ */
case SDL_KEYDOWN:
if(SDL_KEY==SDLK_ESCAPE)gameRunning=false; // Exit the game with ESC
if(SDL_KEY==SDLK_a){ // Move left
@@ -166,6 +174,9 @@ namespace ui {
}
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;