diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-29 08:46:47 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-29 08:46:47 -0400 |
commit | 9137c25a3409a67ee04042e566f3c543d61d93d5 (patch) | |
tree | b60341552dec27b169a39040d88e01f8e22fe39f /src | |
parent | 764e0983c21247e325807933227b077bdc1ef6be (diff) |
fixed entity lags
Diffstat (limited to 'src')
-rw-r--r-- | src/entities.cpp | 1 | ||||
-rw-r--r-- | src/main.cpp | 4 | ||||
-rw-r--r-- | src/ui.cpp | 1 | ||||
-rw-r--r-- | src/world.cpp | 15 |
4 files changed, 12 insertions, 9 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index 3560a2d..b33f226 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -84,7 +84,6 @@ unsigned int Structures::spawn(_TYPE t, float x, float y){ //spawns a structure height = 16 * HLINE; int tempN = (getRand() % 5 + 1); //amount of villagers that will spawn - //int tempN=200; for(int i=0;i<tempN;i++){ entity.push_back(new NPC()); //create a new entity of NPC type npc.push_back(NPC()); //create new NPC diff --git a/src/main.cpp b/src/main.cpp index d36929a..cb3c086 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -174,7 +174,8 @@ void render(){ debugDiv=0; rndy = player->loc.y; } - ui::putText(player->loc.x-SCREEN_WIDTH/2,SCREEN_HEIGHT-ui::fontSize,"FPS: %d\nD: %d G:%d\nRes: %ux%u\nE: %d\nPOS: (x)%.2f\n (y)%.2f",fps,d,player->ground,SCREEN_WIDTH,SCREEN_HEIGHT,entity.size(),player->loc.x,rndy); + ui::putText(player->loc.x-SCREEN_WIDTH/2,SCREEN_HEIGHT-ui::fontSize,"FPS: %d\nD: %d G:%d\nRes: %ux%u\nE: %d\nPOS: (x)%+.2f\n (y)%+.2f", + fps,d,player->ground,SCREEN_WIDTH,SCREEN_HEIGHT,entity.size(),player->loc.x,rndy); } ui::draw(); // Draw any UI elements if they need to be @@ -191,6 +192,7 @@ void render(){ int mx = ui::mouse.x, my=ui::mouse.y; my = 720 - my; mx -= (SCREEN_WIDTH/2); + glColor3ub(0,0,0); glRectf(mx + player->loc.x, my, mx + player->loc.x + HLINE * 1, my + HLINE * 1); @@ -78,6 +78,7 @@ namespace ui { h=ftf->glyph->bitmap.rows; glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D,ftex); + if(c=='-')y+=fontSize/3; glBegin(GL_QUADS); glColor3ub(255,255,255); glTexCoord2f(0,1);glVertex2f(x,y); diff --git a/src/world.cpp b/src/world.cpp index 7d27e17..1d56643 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -101,12 +101,6 @@ LOOP2: // Draw each world cline[i].y-=(yoff-DRAW_Y_OFFSET); // Reset 'cline[i]'`s y to what it was } glEnd(); - for(i=0;i<entity.size()+1;i++){ - if(entity[i]->inWorld==this){ - entity[i]->draw(); - ui::putText(entity[i]->loc.x,entity[i]->loc.y,"%d",i); - } - } safeSetColor(255+shade*2,0+shade,0+shade); for(i=0;i<current->platform.size();i++){ glRectf(current->platform[i].p1.x,current->platform[i].p1.y+yoff-DRAW_Y_OFFSET, @@ -120,6 +114,12 @@ LOOP2: // Draw each world }else{ // Otherwise reset static values and return yoff=DRAW_Y_OFFSET; shade=0; + for(i=0;i<entity.size()+1;i++){ + if(entity[i]->inWorld==this){ + entity[i]->draw(); + ui::putText(entity[i]->loc.x,entity[i]->loc.y,"%d",i); + } + } } } @@ -162,8 +162,9 @@ void World::detect(Player *p){ unsigned int i; singleDetect(p); for(i=0;i<entity.size()+1;i++){ - if(entity[i]->inWorld==this) + if(entity[i]->inWorld==this){ singleDetect(entity[i]); + } } } |