From 9e81d6b967d87a163ecb6123eb34b9817fa13454 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 11 Sep 2015 17:40:56 -0400 Subject: good merge --- include/common.h | 6 ++++-- include/entities.h | 3 --- src/World.cpp | 24 +++++++++++++----------- src/main.cpp | 42 ++++++++++++++++++++++++++---------------- 4 files changed, 43 insertions(+), 32 deletions(-) diff --git a/include/common.h b/include/common.h index df5b6ac..2a6d66b 100644 --- a/include/common.h +++ b/include/common.h @@ -15,8 +15,8 @@ typedef struct{float x; float y;}vec2; #include #define SCREEN_WIDTH 1280 -#define SCREEN_HEIGHT 720 -//#define FULLSCREEN +#define SCREEN_HEIGHT 800 +#define FULLSCREEN #define HLINE (2.0f / (SCREEN_WIDTH / 4)) @@ -28,4 +28,6 @@ extern SDL_GLContext mainGLContext; //WINDOW VARIABLES extern bool gameRunning; +extern int grand(void); + #endif // COMMON_H diff --git a/include/entities.h b/include/entities.h index 5f0c9ee..5deaa00 100644 --- a/include/entities.h +++ b/include/entities.h @@ -13,10 +13,7 @@ public: vec2 loci; vec2 vel; vec2 velg; - void spawn(float, float); - - }; class Player : public Entities{ diff --git a/src/World.cpp b/src/World.cpp index 9b9a2c3..c2dc62d 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -9,7 +9,7 @@ World::World(void){ World::World(const float width,World *l,World *r){ unsigned int i; double f; - lineCount=width/HLINE+1; + lineCount=width/HLINE+11; if((line=(struct line_t *)calloc(lineCount,sizeof(struct line_t)))==NULL){ std::cout<<"Failed to allocate memory!"<toLeft=this; } } - line[0].start=(rand()%100)/100.0f-0.8f; // lazy + line[0].start=(grand()%100)/100.0f-0.8f; // lazy if(line[0].start>-0.5f)line[0].start=-0.7f; for(i=10;iyx>(HLINE*i)-1&&v->x<(HLINE*i)-1+HLINE){ - v->x=(HLINE*i)-1+HLINE; + v->y=line[i].start; + return; + //v->x=(HLINE*i)-1+HLINE; }else if(v->x+width>(HLINE*i)-1&&v->x+width<(HLINE*i)-1+HLINE){ - v->x=(HLINE*i)-1-width; - }else{ - v->y=line[i].start+HLINE/4; + v->y=line[i].start; + return; + //v->x=(HLINE*i)-1-width; } }else if(v->y>line[i].start+HLINE/4){ - //v->y-=HLINE/8; + v->y-=HLINE/8; } } } float World::getWidth(void){ - return (lineCount-1)*HLINE; + return (lineCount-11)*HLINE; } void World::saveToFile(FILE *f,World *parent){ fwrite(&lineCount,sizeof(unsigned int) ,1 ,f); diff --git a/src/main.cpp b/src/main.cpp index 8da775c..3575419 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -21,6 +21,16 @@ Player player; UIClass ui; World *currentWorld; +//static int randNext=1; + +void irand(unsigned int seed){ + srand(seed); +} + +int grand(void){ + return rand(); +} + unsigned int logic(unsigned int interval,void *param); float interpolate(float goal, float current, float dt){ @@ -65,7 +75,6 @@ int main(int argc,char **argv){ std::cout << "SDL was not able to initialize! Error: " << SDL_GetError() << std::endl; return -1; } - srand(time(NULL)); SDL_AddTimer(MSEC_PER_TICK,logic,NULL); glClearColor(.3,.5,.8,0); glEnable(GL_BLEND); @@ -86,19 +95,21 @@ int main(int argc,char **argv){ currentWorld=w; // Save the world if necessary - /*static FILE *f=fopen("world.dat","r"); - if(f==NULL){ + /*FILE *f=fopen("world.dat","r"); + unsigned int fSave; + if(!f){ f=fopen("world.dat","w"); - if(f!=NULL){ - currentWorld->saveToFile(f,currentWorld); + if(f){ + fSave=time(NULL); + fwrite(&fSave,sizeof(unsigned int),1,f); fclose(f); - }else{ - std::cout<<"Error! Couldn\'t save the world!"<loadFromFile(f,currentWorld); + fread(&fSave,sizeof(unsigned int),1,f); fclose(f); }*/ + irand(time(NULL)); +>>>>>>> Stashed changes float gw; @@ -106,11 +117,6 @@ int main(int argc,char **argv){ prevTime = currentTime; currentTime = tickCount; deltaTime = currentTime - prevTime; - //DO ALL RENDERING HERE - player.vel.x = interpolate(player.velg.x, player.vel.x, deltaTime) * .005; - if(player.vel.x > .05) player.vel.x = .05; - if(player.vel.x < -.05) player.vel.x = -.05; - player.loci.x += player.vel.x; gw=currentWorld->getWidth(); if(player.loci.x+player.width>-1+gw){ @@ -130,6 +136,10 @@ int main(int argc,char **argv){ } } + player.vel.x = interpolate(player.velg.x, player.vel.x, deltaTime) * .005; + if(player.vel.x > .05) player.vel.x = .05; + if(player.vel.x < -.05) player.vel.x = -.05; + player.loci.x += player.vel.x; render(); } @@ -162,7 +172,7 @@ void render(){ **************************/ currentWorld->draw(); - glColor3ub(0,0,0); + glColor3ub(120,30,30); glRectf(player.loci.x, player.loci.y, player.loci.x + player.width, player.loci.y + player.height); /************************** @@ -176,7 +186,7 @@ void render(){ unsigned int logic(unsigned int interval,void *param){ ui.handleEvents(); // Handle events - player.vel.x = 0; + player.vel.x=0; currentWorld->detect(&player.loci,player.width); //std::cout << player.vel.x << std::endl; @@ -185,4 +195,4 @@ unsigned int logic(unsigned int interval,void *param){ tickCount++; return interval; -} +} -- cgit v1.2.3