diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-01 09:19:52 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-01 09:19:52 -0400 |
commit | a9781681bb8f3277ac310fbec8dc0353972dbc37 (patch) | |
tree | 548ed837877d9d07802fc980f0ef6d6f62ae920c /src/world.cpp | |
parent | 68ec0bf510fd16cf4e6d7aabd7998fe656c25444 (diff) |
improved gravity
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/world.cpp b/src/world.cpp index 5ba2e7d..d2cd380 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -117,10 +117,6 @@ LOOP2: // Draw each world for(i=0;i<entity.size()+1;i++){ if(entity[i]->inWorld==this){ entity[i]->draw(); - if(entity[i]->near){ - ui::setFontSize(14); - ui::putText(entity[i]->loc.x,entity[i]->loc.y-ui::fontSize-HLINE/2,"%s",entity[i]->name); - } } } } @@ -130,7 +126,7 @@ void World::singleDetect(Entity *e){ unsigned int i; if(e->alive){ i=(e->loc.x+e->width/2-x_start)/HLINE; // Calculate what line the player is currently on - if(e->loc.y>line[i].y){ // Snap the player to the top of that line if the player is inside it + if(e->loc.y>line[i].y-.002*deltaTime){ // Snap the player to the top of that line if the player is inside it for(i=0;i<platform.size();i++){ if(((e->loc.x+e->width>platform[i].p1.x)&(e->loc.x+e->width<platform[i].p2.x))|| ((e->loc.x<platform[i].p2.x)&(e->loc.x>platform[i].p1.x))){ @@ -145,10 +141,10 @@ void World::singleDetect(Entity *e){ } } e->vel.y-=.001*deltaTime; - }else{ + }else if(e->loc.y<line[i].y){ e->vel.y=0; e->ground=true; - e->loc.y=line[i].y+HLINE/2; + e->loc.y=line[i].y-.001*deltaTime; } if(e->loc.x<x_start){ // Keep the player inside world bounds (ui.cpp handles world jumping) e->vel.x=0; |