#include #include #include #include extern World *currentWorld; extern Player *player; extern void mainLoop(void); int compTestQuest(NPC *speaker){ ui::dialogBox(speaker->name,"Ooo, that's a nice quest you got there. Lemme finish that for you ;)."); player->qh.finish("Test",player); return 0; } int giveTestQuest(NPC *speaker){ unsigned int i; ui::dialogBox(speaker->name,"Here, have a quest!"); player->qh.assign("Test"); currentWorld->npc[1]->addAIFunc(compTestQuest,true); return 0; } float playerSpawnHillFunc(float x){ x=-x; return (float)(pow(2,(x+200)/5) + 80); } void initEverything(void){ unsigned int i; /* * World creation: */ World *test=new World(); World *playerSpawnHill=new World(); /* * Load the saved world if it exists, otherwise generate a new one. */ /*FILE *worldLoad; if((worldLoad=fopen("world.dat","r"))){ std::cout<<"Yes"<load(buf); }else{*/ test->generate(SCREEN_WIDTH*2); test->addHole(100,150); //} test->addLayer(400); playerSpawnHill->generateFunc(1280,playerSpawnHillFunc); //playerSpawnHill->generate(1920); /* * Setup the current world, making the player initially spawn in `test`. */ currentWorld=playerSpawnHill; playerSpawnHill->toRight=test; test->toLeft=playerSpawnHill; /* * Create the player. */ player=new Player(); player->spawn(-1000,200); /* * Create a structure (this will create villagers when spawned). */ IndoorWorld *iw=new IndoorWorld(); iw->generate(200); currentWorld->addStructure(STRUCTURET,(rand()%120*HLINE),10,test,iw); /* * Spawn a mob. */ currentWorld->addMob(MS_RABBIT,200,100); currentWorld->addMob(MS_BIRD,-500,500); /* * Link all the entities that were just created to the initial world, and setup a test AI function. */ currentWorld->npc[0]->addAIFunc(giveTestQuest,false); }