aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameplay.cpp
blob: d1cc69d175c7d0c3d4159bf09c7b1e989741f9fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#include <common.h>
#include <world.h>
#include <ui.h>
#include <entities.h>

extern World	*currentWorld;
extern Player	*player;
extern std::vector<Entity		*>	entity;
extern std::vector<Structures	*>	build;
extern std::vector<Mob			*>	mob;
extern std::vector<NPC			*>	npc;


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){
	ui::dialogBox(speaker->name,"Here, have a quest!");
	player->qh.assign("Test");
	NPCp(entity[2])->addAIFunc(compTestQuest,true);
	return 0;
}

void initEverything(void){
	unsigned int i;
	
	/*
	 *	Generate a new world. 
	*/
	
	World *test=new World();
	test->generate(SCREEN_WIDTH/2);
	
	/*
	 *	Add two layers, a platform, and a hole to the world. 
	*/
	
	test->addLayer(400);
	test->addLayer(100);
	
	test->addPlatform(150,100,100,10);

	test->addHole(100,150);
	
	/*
	 *	Setup the current world, making the player initially spawn in `test`.
	*/
	
	currentWorld=test;
	
	/*
	 *	Create the player.
	*/
	
	player=new Player();
	player->spawn(0,100);
	
	/*
	 *	Create a structure (this will create villagers when spawned).
	*/
	
	build.push_back(new Structures());
	entity.push_back(build.back());
	build.back()->spawn(STRUCTURET,(rand()%120*HLINE),10);
	
	/*
	 *	Generate an indoor world and link the structure to it. 
	*/
	
	IndoorWorld *iw=new IndoorWorld();
	iw->generate(200);
	build.back()->inside=iw;

	/*
	 *	Spawn a mob. 
	*/
	
	mob.push_back(new Mob(MS_RABBIT));
	entity.push_back(mob.back());
	mob.back()->spawn(200,100);

	mob.push_back(new Mob(MS_BIRD));
	entity.push_back(mob.back());
	mob.back()->spawn(-500,500);
	
	/*
	 *	Link all the entities that were just created to the initial world, and setup a test AI function. 
	*/
	NPCp(entity[1])->addAIFunc(giveTestQuest,false);
	
	for(i=0;i<entity.size();i++){
		entity[i]->inWorld=currentWorld;
	}
}