aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-10-01 08:24:30 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-10-01 08:24:30 -0400
commit9757c1c7e8704080c4e20cde442baf06960e98e7 (patch)
treee63438c079b9a934d4158375525f146b1b2904b3 /src/main.cpp
parentb06afc53ce5fa36544218b524f963725bf180fc1 (diff)
world stuff in sep. file
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp46
1 files changed, 8 insertions, 38 deletions
diff --git a/src/main.cpp b/src/main.cpp
index c1b22af..d454f0b 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -28,15 +28,11 @@ std::vector<Structures *>build;
int mx, my;
FILE* names;
+extern void initEverything(void);
+
void logic();
void render();
-int entityInteractTest(NPC *speaker){
- ui::dialogBox("Here, have a quest!");
- player->qh.assign("Test");
- return 1;
-}
-
unsigned int millis(void){
std::chrono::system_clock::time_point now=std::chrono::system_clock::now();
return std::chrono::duration_cast<std::chrono::milliseconds>(now.time_since_epoch()).count();
@@ -84,49 +80,23 @@ int main(int argc, char *argv[]){
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
SDL_ShowCursor(SDL_DISABLE);
-
- /**************************
- **** GAMELOOP ****
- **************************/
//************************************************************************//
// WORLD GENERATION STUFF //
//************************************************************************//
names = fopen("assets/names_en-us", "r+");
- // Make a world
- World *test=new World();
- test->generate(SCREEN_WIDTH/2);
- test->addLayer(400);
- test->addLayer(100);
- test->addPlatform(150,100,100,10);
- test->addHole(100,150);
- currentWorld=test;
-
- IndoorWorld *iw=new IndoorWorld();
- iw->generate(200);
-
- // Make the player
- player=new Player();
- player->spawn(0,100);
- // Make structures
- entity.push_back(new Entity());
- build.push_back(new Structures());
- entity[0]=build[0];
-
- static unsigned int i;
- build[0]->spawn(STRUCTURET,0,10);
- build[0]->inside=iw;
- for(i=0;i<entity.size()+1;i++){
- entity[i]->inWorld=test;
- }
-
- NPCp(entity[1])->addAIFunc(entityInteractTest);
+ initEverything();
//************************************************************************//
// END WORLD GENERATION STUFF //
//************************************************************************//
+
+ /**************************
+ **** GAMELOOP ****
+ **************************/
+
currentTime=millis();
while(gameRunning){
prevTime = currentTime;