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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
#include <common.h>
#include <entities.h>
#include <world.h>
#include <ui.h>
extern World *currentWorld;
extern Player *player;
/*
* int (npc*)
*
* dialog
* wait...
*
* switch optchosen
*
* qh.assign
* addAIFunc?
*
* return 1 = repeat
*/
void story(Mob *callee){
player->vel.x = 0;
Mix_FadeOutMusic(0);
ui::importantText("It was a dark and stormy night...");
ui::waitForDialog();
callee->alive = false;
}
/*
* Gens
*/
float gen_worldSpawnHill1(float x){
return (float)(pow(2,(-x+200)/5) + GEN_MIN);
}
float gen_worldSpawnHill3(float x){
float tmp = 60*atan(-(x/30-20))+GEN_MIN*2;
return tmp>GEN_MIN?tmp:GEN_MIN;
}
/*
* Thing-thangs
*/
void worldSpawnHill1_hillBlock(Mob *callee){
player->vel.x = 0;
player->loc.x = callee->loc.x + callee->width;
ui::dialogBox(player->name,NULL,false,"This hill seems to steep to climb up...");
callee->alive = true;
}
static Arena *a;
void worldSpawnHill2_infoSprint(Mob *callee){
ui::dialogBox(player->name,":Sure:Nah",false,"This page would like to take you somewhere.");
ui::waitForDialog();
switch(ui::dialogOptChosen){
case 1:
ui::dialogBox(player->name,NULL,true,"Cool.");
callee->alive = false;
a = new Arena(currentWorld,player);
a->setBackground(BG_FOREST);
a->setBGM("assets/music/embark.wav");
ui::toggleWhiteFast();
ui::waitForCover();
currentWorld = a;
ui::toggleWhiteFast();
break;
case 2:
default:
ui::dialogBox(player->name,NULL,false,"Okay then.");
break;
}
//ui::dialogBox("B-) ",NULL,true,"Press \'Shift\' to run!");
}
int worldSpawnHill2_Quest2(NPC *callee){
ui::dialogBox(callee->name,NULL,false,"Yo.");
ui::waitForDialog();
return 0;
}
int worldSpawnHill2_Quest1(NPC *callee){
ui::dialogBox(callee->name,":Cool.",false,"Did you know that I\'m the coolest NPC in the world?");
ui::waitForDialog();
if(ui::dialogOptChosen == 1){
ui::dialogBox(callee->name,NULL,false,"Yeah, it is.");
currentWorld->getAvailableNPC()->addAIFunc(worldSpawnHill2_Quest2,true);
ui::waitForDialog();
return 0;
}
return 1;
}
/*
* new world
* gen
* setbackground
* setbgm
* add...
*
*/
/*
* World definitions
*/
static World *worldSpawnHill1;
static World *worldSpawnHill2;
static World *worldSpawnHill3;
static IndoorWorld *worldSpawnHill2_Building1;
/*
* initEverything() start
*/
void destroyEverything(void);
void initEverything(void){
worldSpawnHill1 = new World();
worldSpawnHill1->generateFunc(400,gen_worldSpawnHill1);
worldSpawnHill1->setBackground(BG_FOREST);
worldSpawnHill1->setBGM("assets/music/embark.wav");
worldSpawnHill1->addMob(MS_TRIGGER,0,0,worldSpawnHill1_hillBlock);
worldSpawnHill2 = new World();
worldSpawnHill2->generate(700);
worldSpawnHill2->setBackground(BG_FOREST);
worldSpawnHill2->setBGM("assets/music/ozone.wav");
worldSpawnHill2->addMob(MS_PAGE,-400,0,worldSpawnHill2_infoSprint);
worldSpawnHill3 = new World();
worldSpawnHill3->generateFunc(1000,gen_worldSpawnHill3);
worldSpawnHill3->setBackground(BG_FOREST);
worldSpawnHill3->setBGM("assets/music/ozone.wav");
worldSpawnHill3->addHole(800,1000);
worldSpawnHill1->toRight = worldSpawnHill2;
worldSpawnHill2->toLeft = worldSpawnHill1;
worldSpawnHill2->toRight = worldSpawnHill3;
worldSpawnHill3->toLeft = worldSpawnHill2;
/*
* Spawn some entities.
*/
//playerSpawnHill->addMob(MS_TRIGGER,player->loc.x,0,story);
//playerSpawnHill->addStructure(STRUCTURET,FOUNTAIN,(rand()%120*HLINE)+100*HLINE,100,test,iw);
//playerSpawnHill->addStructure(STRUCTURET,HOUSE2,(rand()%120*HLINE)+300*HLINE,100,test,iw);
//playerSpawnHill->addVillage(5,1,4,STRUCTURET,rand()%500+120,(float)200,playerSpawnHill,iw);
//playerSpawnHill->addMob(MS_TRIGGER,-1300,0,CUTSCENEEE);*/
worldSpawnHill2_Building1 = new IndoorWorld();
worldSpawnHill2_Building1->generate(300);
worldSpawnHill2_Building1->setBackground(BG_WOODHOUSE);
worldSpawnHill2_Building1->setBGM("assets/music/theme_jazz.wav");
worldSpawnHill2->addStructure(STRUCTURET,HOUSE,(rand()%120*HLINE),100,worldSpawnHill2_Building1);
worldSpawnHill2->getAvailableNPC()->addAIFunc(worldSpawnHill2_Quest1,false);
player = new Player();
player->spawn(200,100);
currentWorld = worldSpawnHill1;
currentWorld->bgmPlay(NULL);
atexit(destroyEverything);
}
extern std::vector<int (*)(NPC *)> AIpreload;
extern std::vector<NPC *> AIpreaddr;
void destroyEverything(void){
while(!AIpreload.empty())
AIpreload.pop_back();
while(!AIpreaddr.empty())
AIpreaddr.pop_back();
}
|