aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-10-23 08:41:08 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-10-23 08:41:08 -0400
commitf3693157df0217d9dde1638a46a69b37e997c8fb (patch)
treeecbaa00de6a5b9038664b8d9c09c24ec5d5585cb /main.cpp
parent19ba40a368b06c38365fe861b6de9403044096a7 (diff)
fixed everything
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp79
1 files changed, 34 insertions, 45 deletions
diff --git a/main.cpp b/main.cpp
index 373dbea..a04cd01 100644
--- a/main.cpp
+++ b/main.cpp
@@ -66,44 +66,29 @@ bool gameRunning = true;
/*
* currentWorld - This is a pointer to the current world that the player
- * is in. Most drawing/entity handling is done through this
- * variable. This should only be changed when layer switch
- * buttons are pressed (see src/ui.cpp), or when the player
- * enters a Structure/Indoor World (see src/ui.cpp again).
+ * is in. Most drawing/entity handling is done through this
+ * variable. This should only be changed when layer switch
+ * buttons are pressed (see src/ui.cpp), or when the player
+ * enters a Structure/Indoor World (see src/ui.cpp again).
*
- * player - This points to a Player object, containing everything for
- * the player. Most calls made with currentWorld require a
- * Player object as an argument, and glOrtho is set based
- * off of the player's coordinates. This is probably the one
- * Entity-derived object that is not pointed to in the entity
- * array.
+ * player - This points to a Player object, containing everything for
+ * the player. Most calls made with currentWorld require a
+ * Player object as an argument, and glOrtho is set based
+ * off of the player's coordinates. This is probably the one
+ * Entity-derived object that is not pointed to in the entity
+ * array.
*
- * entity - Contains pointers to 'all' entities that have been created in
- * the game, including NPCs, Structures, and Mobs. World draws
- * and entity handling done by the world cycle through entities
- * using this array. Entities made that aren't added to this
- * array probably won't be noticable by the game.
- *
- * npc - An array of all NPCs in the game. It's not exactly clear how
- * NPC initing is done, their constructed in this array, then set
- * to be pointed to by entity, then maybe spawned with Entity->spawn().
- * See src/entities.cpp for more.
- * This variable might be referenced as an extern in other files.
- *
- * build - An array of all Structures in the game. Entries in entity point to
- * these, allowing worlds to handle the drawing and stuff of these.
- * See src/entities.cpp for more.
- *
- * mob - An array of all Mobs in the game, entity entries should point to these
- * so the world can take care of them. See src/entities.cpp for more.
+ * entity - Contains pointers to 'all' entities that have been created in
+ * the game, including NPCs, Structures, and Mobs. World draws
+ * and entity handling done by the world cycle through entities
+ * using this array. Entities made that aren't added to this
+ * array probably won't be noticable by the game.
*
*/
-World *currentWorld=NULL;
-Player *player;
-std::vector<Entity * > entity;
-std::vector<Structures *> build;
-std::vector<Mob > mob;
+World *currentWorld=NULL;
+Player *player;
+extern std::vector<Entity * > entity;
/*
* tickCount contains the number of ticks generated since main loop entrance.
@@ -445,7 +430,7 @@ void mainLoop(void){
prevTime = currentTime;
currentTime = millis();
deltaTime = currentTime - prevTime;
-
+
/*
* Run the logic handler if MSEC_PER_TICK milliseconds have passed.
*/
@@ -454,7 +439,7 @@ void mainLoop(void){
logic();
prevPrevTime = currentTime;
}
-
+
/*
* Update player and entity coordinates.
*/
@@ -462,13 +447,16 @@ void mainLoop(void){
player->loc.y+= player->vel.y *deltaTime;
player->loc.x+=(player->vel.x*player->speed)*deltaTime;
- for(int i=0;i<=entity.size();i++){
+ for(int i=0;i<entity.size();i++){
- entity[i]->loc.x += entity[i]->vel.x * deltaTime;
- entity[i]->loc.y += entity[i]->vel.y * deltaTime;
+ if(entity[i]->type == NPCT ||
+ entity[i]->type == MOBT ){
+ entity[i]->loc.x += entity[i]->vel.x * deltaTime;
+ entity[i]->loc.y += entity[i]->vel.y * deltaTime;
- if(entity[i]->vel.x<0)entity[i]->left=true;
- else if(entity[i]->vel.x>0)entity[i]->left=false;
+ if(entity[i]->vel.x < 0)entity[i]->left = true;
+ else if(entity[i]->vel.x > 0)entity[i]->left = false;
+ }
}
/*
@@ -661,13 +649,14 @@ void logic(){
*/
//std::cout << "Game Loop: "<< loops << std::endl;
- for(int i=0;i<=entity.size();i++){
+ for(unsigned int i=0;i<entity.size();i++){
/*
* Check if the entity is in this world and is alive.
*/
- if(entity[i]->inWorld==currentWorld&&entity[i]->alive){
+ if(entity[i]->inWorld == currentWorld &&
+ entity[i]->alive){
/*
* Switch on the entity's type and handle them accordingly.
@@ -685,7 +674,7 @@ void logic(){
*/
if(entity[i]->canMove)
- entity[i]->wander((rand() % 120 + 30), &entity[i]->vel);
+ NPCp(entity[i])->wander((rand() % 120 + 30), &entity[i]->vel);
/*
* Check if the NPC is under the mouse.
@@ -721,7 +710,7 @@ void logic(){
if(SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(SDL_BUTTON_RIGHT)){
- entity[i]->interact();
+ NPCp(entity[i])->interact();
//Mix_PlayChannel( -1, horn, 0); // Audio feedback
}
@@ -741,7 +730,7 @@ void logic(){
* Run the Mob's AI function.
*/
- entity[i]->wander((rand()%240 + 15),&entity[i]->vel); // Make the mob wander
+ Mobp(entity[i])->wander((rand()%240 + 15),&entity[i]->vel); // Make the mob wander
break; // End case MOBT