aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameplay.cpp
blob: ad44eb20d606b6919e964c0ba3ee6b16ac927fdf (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
#include <common.h>
#include <world.h>
#include <ui.h>
#include <entities.h>

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

int giveTestQuest(NPC *speaker){
	ui::dialogBox(speaker->name,"Here, have a quest!");
	player->qh.assign("Test");
	return 0;
}

int compTestQuest(NPC *speaker){
	if(player->qh.hasQuest("Test")){
		ui::dialogBox(speaker->name,"Ooo, that's a nice quest you got there. Lemme finish that for you ;).");
		player->qh.finish("Test");
		return 0;
	}else{
		ui::dialogBox(speaker->name,"You need to get a quest from %s first.",entity[1]->name);
		return 1;
	}
}

void initEverything(void){
	unsigned int i;
	
	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;
	
	// 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];
	
	build[0]->spawn(STRUCTURET,0,10);
	IndoorWorld *iw=new IndoorWorld();
	iw->generate(200);
	build[0]->inside=iw;
	
	for(i=0;i<entity.size()+1;i++){
		entity[i]->inWorld=test;
		switch(i){
		case 1:
			NPCp(entity[i])->addAIFunc(giveTestQuest);
			break;
		case 2:
			NPCp(entity[i])->addAIFunc(compTestQuest);
			break;
		default:
			break;
		}
	}
}