-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathai.cpp
318 lines (258 loc) · 7.15 KB
/
ai.cpp
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#include "stdai.h"
#include "ai.fdh"
InitList AIRoutines;
bool ai_init(void)
{
// setup function pointers to AI routines
for(int i=0;i<OBJ_LAST;i++)
memset(&objprop[i].ai_routines, 0, sizeof(objprop[i].ai_routines));
if (load_npc_tbl()) return 1;
// OBJ_NULL has flags set in npc.tbl, but shouldn't be set in our engine
objprop[OBJ_NULL].defaultflags = 0;
memcpy(&objprop[OBJ_SKULLHEAD_CARRIED], &objprop[OBJ_SKULLHEAD], sizeof(ObjProp));
objprop[OBJ_POLISH].initial_hp = 24; // is the value of 120 in npc.tbl really wrong? if so why?
objprop[OBJ_POLISH].death_sound = 25; // not sure why this is apparently wrong in file
// call all the INITFUNC() routines you find at the beginning
// of every AI-related module which assign AI logic to objects.
if (AIRoutines.CallFunctions())
{
staterr("ai_init: failed to initialize AIRoutines function pointers");
return 1;
}
return 0;
}
bool load_npc_tbl(void)
{
const int smoke_amounts[] = { 0, 3, 7, 12 };
const int nEntries = 361;
int i;
FILE *fp = fileopen("data/npc.tbl", "rb");
if (!fp) { staterr("load_npc_tbl: data/npc.tbl is missing"); return 1; }
stat("Reading npc.tbl...");
for(i=0;i<nEntries;i++) objprop[i].defaultflags = fgeti(fp);
for(i=0;i<nEntries;i++) objprop[i].initial_hp = fgeti(fp);
// next is a spritesheet # of something--but we don't use it, so skip
//for(i=0;i<nEntries;i++) fgetc(fp); // spritesheet # or something--but we don't use it
fseek(fp, (nEntries * 2 * 2) + nEntries, SEEK_SET);
for(i=0;i<nEntries;i++) objprop[i].death_sound = fgetc(fp);
for(i=0;i<nEntries;i++) objprop[i].hurt_sound = fgetc(fp);
for(i=0;i<nEntries;i++) objprop[i].death_smoke_amt = smoke_amounts[fgetc(fp)];
for(i=0;i<nEntries;i++) objprop[i].xponkill = fgetl(fp);
for(i=0;i<nEntries;i++) objprop[i].damage = fgetl(fp);
/*for(i=0;i<nEntries;i++)
{
int left = fgetc(fp);
int top = fgetc(fp);
int right = fgetc(fp);
int bottom = fgetc(fp);
if (i == 59)
{
stat("%d %d %d %d", left, top, right, bottom);
stat("sprite %d", objprop[i].sprite);
}
}*/
fclose(fp);
return 0;//1;
}
/*
void c------------------------------() {}
*/
// spawn an object at an enemies action point
Object *SpawnObjectAtActionPoint(Object *o, int otype)
{
int x, y;
Object *newObject;
x = o->x + (sprites[o->sprite].frame[o->frame].dir[o->dir].actionpoint.x << CSF);
y = o->y + (sprites[o->sprite].frame[o->frame].dir[o->dir].actionpoint.y << CSF);
newObject = CreateObject(x, y, otype);
newObject->dir = o->dir;
return newObject;
}
// destroys all objects of type "otype".
// creates a BoomFlash and smoke, but no bonuses.
void KillObjectsOfType(int type)
{
Object *o = firstobject;
while(o)
{
if (o->type == type)
{
SmokeClouds(o, 1, 0, 0);
effect(o->CenterX(), o->CenterY(), EFFECT_BOOMFLASH);
o->Delete();
}
o = o->next;
}
}
// deletes all objects of type "otype" silently, without any smoke or other effects.
void DeleteObjectsOfType(int type)
{
Object *o = firstobject;
while(o)
{
if (o->type == type)
{
o->Delete();
}
o = o->next;
}
}
/*
void c------------------------------() {}
*/
// handles object blinking: at random intervals forces object o's frame to blinkframe
// for blinktime frames.
void randblink(Object *o, int blinkframe, int blinktime, int prob)
{
if (o->blinktimer)
{
o->blinktimer--;
o->frame = blinkframe;
}
else if (random(0, prob) == 0)
{
o->frame = blinkframe;
o->blinktimer = 8;
}
}
// call this in an object's aftermove routine if it's an object
// which is being carried by the player like a puppy or curly.
// x_left: offset from p's action point when he faces left
// x_right: when he faces right
// off_y: vertical offset from p's action point
void StickToPlayer(Object *o, int x_left, int x_right, int off_y)
{
int x, y, frame;
// needed for puppy in chest
o->flags &= ~FLAG_SCRIPTONACTIVATE;
// by offsetting from the player's action point, where he holds his gun, we
// already have set up for us a nice up-and-down 1 pixel as he walks
frame = player->frame;
// the p's "up" frames have unusually placed action points so we have to cancel those out
if (frame >= 3 && frame <= 5) frame -= 3;
x = (player->x >> CSF) + sprites[player->sprite].frame[frame].dir[player->dir].actionpoint.x;
y = (player->y >> CSF) + sprites[player->sprite].frame[frame].dir[player->dir].actionpoint.y;
y += off_y;
if (player->dir == RIGHT)
{
x += x_right;
o->dir = RIGHT;
}
else
{
x += x_left;
o->dir = LEFT;
}
o->x = (x << CSF);
o->y = (y << CSF);
}
// used for some bosses with subobjects
void transfer_damage(Object *o, Object *target)
{
if (o->hp < 1000)
{
// if you forget to set hp to 1000 when creating the puppet object,
// it can immediately destroy the main object, possibly leading to crashes.
#ifdef DEBUG
ASSERT(o->hp != 0);
#endif
target->DealDamage(1000 - o->hp);
o->hp = 1000;
}
}
/*
void c------------------------------() {}
*/
// do the "teleport in" effect for object o.
// when complete, returns true.
// this function uses o->timer and assume o->timer starts at 0.
bool DoTeleportIn(Object *o, int slowness)
{
if (teleffect(o, slowness, false))
{
o->clip_enable = false;
return true;
}
return false;
}
// does a teleport out effect.
// When complete, returns true.
// this function uses o->timer and assume o->timer starts at 0.
bool DoTeleportOut(Object *o, int slowness)
{
return teleffect(o, slowness, true);
}
// common code for DoTeleportIn and DoTeleportOut
// returns true when teleport is complete
static bool teleffect(Object *o, int slowness, bool teleporting_out)
{
o->display_xoff = random(-1, 1);
if (!o->timer)
{
sound(SND_TELEPORT);
o->clip_enable = true;
o->clipy1 = 0;
}
if (++o->timer >= (sprites[o->sprite].h << slowness))
{
o->clip_enable = false;
o->display_xoff = 0;
return true;
}
else
{
int amt = (o->timer >> slowness);
if (teleporting_out)
o->clipy2 = sprites[o->sprite].h - amt;
else
o->clipy2 = amt;
return false;
}
}
/*
void c------------------------------() {}
*/
void ai_animate1(Object *o) { if (++o->frame >= sprites[o->sprite].nframes) o->frame = 0; }
void ai_animate2(Object *o) { simpleanim(o, 2); }
void ai_animate3(Object *o) { simpleanim(o, 3); }
void ai_animate4(Object *o) { simpleanim(o, 4); }
void ai_animate5(Object *o) { simpleanim(o, 5); }
static void simpleanim(Object *o, int spd)
{
if (++o->animtimer >= spd)
{
o->animtimer = 0;
if (++o->frame >= sprites[o->sprite].nframes) o->frame = 0;
}
}
/*
void c------------------------------() {}
*/
// aftermove routine which sticks the object to the action point of the NPC that's carrying it
void aftermove_StickToLinkedActionPoint(Object *o)
{
Object *link = o->linkedobject;
int dir;
if (link)
{
dir = (link->dir ^ o->carry.flip);
o->x = ((link->x >> CSF) + sprites[link->sprite].frame[link->frame].dir[dir].actionpoint.x) << CSF;
o->y = ((link->y >> CSF) + sprites[link->sprite].frame[link->frame].dir[dir].actionpoint.y) << CSF;
o->dir = dir;
}
else
{
o->Delete();
}
}
void onspawn_snap_to_ground(Object *o)
{
o->SnapToGround();
}
void onspawn_set_frame_from_id2(Object *o)
{
o->frame = o->id2;
}
/*
void c------------------------------() {}
*/