forked from itslunaranyo/copper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
t_level.qc
517 lines (441 loc) · 14.4 KB
/
t_level.qc
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
/*
=============================================================================
LEVEL CHANGING / INTERMISSION
=============================================================================
*/
void() GotoNextMap =
{
// tell the csqc hud to clear the intermission stuff
// or else it draws over the LOADING bar :(
entity e = nextent(world);
while (e.flags & FL_CLIENT)
{
e.clientdata = -1;
e = nextent(e);
}
if (cvar("samelevel")) // if samelevel is set, stay on same level
changelevel (mapname); // name of current level
else
changelevel (nextmap); // global set to next level
}
void() ExitIntermission =
{
// skip any text in deathmatch
if (deathmatch)
{
GotoNextMap ();
return;
}
if (!intermission) return;
intermission_exittime = time + 1;
intermission = intermission + 1;
// end of episode drivel
if (intermission == 2)
{
WriteByte (MSG_ALL, SVC_CDTRACK);
WriteByte (MSG_ALL, 2);
WriteByte (MSG_ALL, 3);
if (inter_text != string_null)
{
WriteByte (MSG_ALL, SVC_FINALE);
WriteString (MSG_ALL, inter_text);
return;
}
if (world.model == "maps/e1m7.bsp")
{
if (!cvar("registered"))
{
WriteByte (MSG_ALL, SVC_FINALE);
WriteString (MSG_ALL, "As the corpse of the monstrous entity\nChthon sinks back into the lava whence\nit rose, you grip the Rune of Earth\nMagic tightly. Now that you have\nconquered the Dimension of the Doomed,\nrealm of Earth Magic, you are ready to\ncomplete your task in the other three\nhaunted lands of Quake. Or are you? If\nyou don't register Quake, you'll never\nknow what awaits you in the Realm of\nBlack Magic, the Netherworld, and the\nElder World!");
}
else
{
WriteByte (MSG_ALL, SVC_FINALE);
WriteString (MSG_ALL, "As the corpse of the monstrous entity\nChthon sinks back into the lava whence\nit rose, you grip the Rune of Earth\nMagic tightly. Now that you have\nconquered the Dimension of the Doomed,\nrealm of Earth Magic, you are ready to\ncomplete your task. A Rune of magic\npower lies at the end of each haunted\nland of Quake. Go forth, seek the\ntotality of the four Runes!");
}
return;
}
else if (world.model == "maps/e2m6.bsp")
{
WriteByte (MSG_ALL, SVC_FINALE);
WriteString (MSG_ALL, "The Rune of Black Magic throbs evilly in\nyour hand and whispers dark thoughts\ninto your brain. You learn the inmost\nlore of the Hell-Mother; Shub-Niggurath!\nYou now know that she is behind all the\nterrible plotting which has led to so\nmuch death and horror. But she is not\ninviolate! Armed with this Rune, you\nrealize that once all four Runes are\ncombined, the gate to Shub-Niggurath's\nPit will open, and you can face the\nWitch-Goddess herself in her frightful\notherworld cathedral.");
return;
}
else if (world.model == "maps/e3m6.bsp")
{
WriteByte (MSG_ALL, SVC_FINALE);
WriteString (MSG_ALL, "The charred viscera of diabolic horrors\nbubble viscously as you seize the Rune\nof Hell Magic. Its heat scorches your\nhand, and its terrible secrets blight\nyour mind. Gathering the shreds of your\ncourage, you shake the devil's shackles\nfrom your soul, and become ever more\nhard and determined to destroy the\nhideous creatures whose mere existence\nthreatens the souls and psyches of all\nthe population of Earth.");
return;
}
else if (world.model == "maps/e4m7.bsp")
{
WriteByte (MSG_ALL, SVC_FINALE);
WriteString (MSG_ALL, "Despite the awful might of the Elder\nWorld, you have achieved the Rune of\nElder Magic, capstone of all types of\narcane wisdom. Beyond good and evil,\nbeyond life and death, the Rune\npulsates, heavy with import. Patient and\npotent, the Elder Being Shub-Niggurath\nweaves her dire plans to clear off all\nlife from the Earth, and bring her own\nfoul offspring to our world! For all the\ndwellers in these nightmare dimensions\nare her descendants! Once all Runes of\nmagic power are united, the energy\nbehind them will blast open the Gateway\nto Shub-Niggurath, and you can travel\nthere to foil the Hell-Mother's plots\nin person.");
return;
}
GotoNextMap();
}
if (intermission == 3)
{
if (!cvar("registered"))
{ // shareware episode has been completed, go to sell screen
WriteByte (MSG_ALL, SVC_SELLSCREEN);
return;
}
if ( (serverflags & SVFL_ALLEPISODES) == SVFL_ALLEPISODES)
{
WriteByte (MSG_ALL, SVC_FINALE);
WriteString (MSG_ALL, "Now, you have all four Runes. You sense\ntremendous invisible forces moving to\nunseal ancient barriers. Shub-Niggurath\nhad hoped to use the Runes Herself to\nclear off the Earth, but now instead,\nyou will use them to enter her home and\nconfront her as an avatar of avenging\nEarth-life. If you defeat her, you will\nbe remembered forever as the savior of\nthe planet. If she conquers, it will be\nas if you had never been born.");
return;
}
GotoNextMap();
}
if (intermission == 4)
{
GotoNextMap();
}
if (intermission >= 5)
{
GotoNextMap();
return;
}
dprint("fell off the end of exitintermission\n");
return;
}
/*
============
ClearItemEffects
turn off glow and screen coloring while we're in a camera
============
*/
void(entity who) ClearItemEffects =
{
who.items = not(who.items, IT_INVISIBILITY | IT_INVULNERABILITY | IT_SUIT | IT_QUAD);
who.effects = 0;
// remember how much time was left on the powerup
if (who.radsuit_finished > time)
who.radsuit_finished -= time;
if (who.invincible_finished > time)
who.invincible_finished -= time;
if (who.invisible_finished > time)
who.invisible_finished -= time;
if (who.super_damage_finished > time)
who.super_damage_finished -= time;
/*
who.rad_time = 0;
who.invincible_time = 0;
who.invisible_time = 0;
who.super_time = 0;
*/
}
/*
============
RestoreItemEffects
============
*/
void(entity who) RestoreItemEffects =
{
if ( who.radsuit_finished > 0 )
{
who.radsuit_finished += time;
who.items += IT_SUIT;
}
if ( who.invincible_finished > 0 )
{
who.invincible_finished += time;
who.items += IT_INVULNERABILITY;
}
if ( who.invisible_finished > 0 )
{
who.invisible_finished += time;
who.items += IT_INVISIBILITY;
}
if ( who.super_damage_finished > 0 )
{
who.super_damage_finished += time;
who.items += IT_QUAD;
}
}
/*
============
FindIntermission
Returns an entity to view from
============
*/
entity(entity start) FindIntermission =
{
entity spot;
float cyc;
// look for info_intermission first
spot = find (start, classname, "info_intermission");
if (spot)
{
// pick a random one
cyc = random() * 16;
while (cyc > 1)
{
spot = find (spot, classname, "info_intermission");
if (!spot)
spot = find (spot, classname, "info_intermission");
cyc = cyc - 1;
}
return spot;
}
spot = find (world, classname, "info_intermission");
if (spot)
return spot;
// then look for the start position
spot = find (world, classname, "info_player_start");
if (spot)
return spot;
// testinfo_player_start is only found in regioned levels
spot = find (world, classname, "testplayerstart");
if ( spot && ( spot.spawnflags & 1 ) )
return spot;
objerror ("FindIntermission: no spot");
return world;
}
entity(entity start) FindNextIntermission =
{
if (!start) return world;
if (start.classname != "info_intermission") return start;
entity spot;
spot = find(start, classname, "info_intermission");
if (!spot)
spot = find(world, classname, "info_intermission");
return spot;
}
entity(entity start) FindPreviousIntermission =
{
if (!start) return world;
if (start.classname != "info_intermission") return start;
entity last, spot;
spot = find(world, classname, "info_intermission");
if (spot == start)
{
// there's either only one spot or we're starting with the first one, so try to find the last one
while(spot)
{
last = spot;
spot = find(spot, classname, "info_intermission");
}
return last;
}
while(spot != start)
{
last = spot;
spot = find(spot, classname, "info_intermission");
}
return last;
}
// ================================================================
void(entity client, entity spot) move_player_to_intermission =
{
ClearItemEffects(client); // remove powerups to clear glows/tints
client.flags |= FL_NOTARGET;
client.flags = not(client.flags, FL_ONGROUND);
client.view_ofs = VEC_ORIGIN;
client.velocity = VEC_ORIGIN;
client.angles = client.v_angle = client.mangle = spot.mangle;
client.fixangle = TRUE; // turn this way immediately
client.nextthink = time + 0.5;
client.takedamage = DAMAGE_NO;
client.solid = SOLID_NOT;
client.movetype = MOVETYPE_NONE;
client.goalentity = spot;
//bprint3("setting origin to ", vtos(spot.origin), "\n");
// dumb hack: origins don't update without a model?
//client.modelindex = 0;//modelindex_eyes;
//client.alpha = -1;
setorigin (client, spot.origin);
//client.modelindex = 0;
client.model = string_null;
client.weaponmodel = string_null;
//setsize(client,VEC_ORIGIN,VEC_ORIGIN);
fog_setFromEnt(client, spot); // need to get fog from any camera we jump to
}
void() move_player_to_next_intermission =
{
entity spot;
spot = FindNextIntermission(self.goalentity);
move_player_to_intermission(self,spot);
}
void() move_player_to_previous_intermission =
{
entity spot;
spot = FindPreviousIntermission(self.goalentity);
move_player_to_intermission(self,spot);
}
void() move_players_to_intermission =
{
entity spot;
spot = FindIntermission(world);
other = find (world, classname, "player");
while (other != world)
{
move_player_to_intermission(other,spot);
other.lifetime_finished = time + 6;
other = find (other, classname, "player");
}
}
void() execute_changelevel =
{
intermission = 1;
// enforce a wait time before allowing changelevel
if (deathmatch)
intermission_exittime = time + 5;
else
intermission_exittime = time + 2;
WriteByte (MSG_ALL, SVC_CDTRACK);
WriteByte (MSG_ALL, 3);
WriteByte (MSG_ALL, 3);
move_players_to_intermission();
WriteByte (MSG_ALL, SVC_INTERMISSION);
}
// in timelimit coop, players who exit early can look through intermission
// cameras while waiting for other players
// returns TRUE if the level should end immediately
float() changelevel_check_coop =
{
if (!coop) return TRUE;
float timelimit = cvar("timelimit");
if (timelimit <= 0) return TRUE;
if (!gameover)
{
gameover = TRUE;
coop_time = time + timelimit;
bprint("Level will end in ");
bprint_int(timelimit);
bprint(" seconds\n");
}
entity pl = nextent(world); //player1
float exited = 0;
while (pl.flags & FL_CLIENT)
{
if (pl == activator || pl.deadflag)
exited++;
pl = nextent(pl);
}
// everybody's out
if (exited == clients)
return TRUE;
activator.deadflag = DEAD_SPECTATING; // never coming back
move_player_to_intermission(activator,FindIntermission(world));
return FALSE;
}
void() changelevel_do =
{
if (coop || deathmatch)
{
bprint (other.netname);
bprint (" exited the level\n");
}
nextmap = self.map;
if (self.message != string_null)
{
inter_text = self.message;
}
if ( (self.spawnflags & 1) && (deathmatch == 0) )
{ // NO_INTERMISSION
GotoNextMap();
return;
}
if (changelevel_check_coop())
{
// we can't move people right now, because touch functions are called
// in the middle of C movement code, so set a think time to do it
self.think = execute_changelevel;
self.touch = SUB_Null;
self.nextthink = time;
}
}
void() changelevel_touch =
{
if (!CheckValidTouch()) return;
if (self.customflags & CFL_LOCKED) return;
if (deathmatch)
{
if ((cvar("noexit") == 1) || ((cvar("noexit") == 2) && (mapname != "start")))
{
T_Damage (other, self, self, 50000);
return;
}
}
activator = other;
SUB_UseTargetsSilent();
// silent so that a 'message' key on the changelevel, which is meant for intermission text,
// doesn't also get insta-centerprinted
changelevel_do();
}
/*QUAKED trigger_changelevel (.5 0 .5) ? no_intermission ? TRIGGER_FIRST
When the player touches this, he gets sent to the map listed in the 'map' variable. The view will go to the info_intermission spot and display stats.
Flags:
"no_intermission" bypasses intermission screen
"trigger_first" won't be touchable until triggered once by something else
Keys:
"map" set to name of next map (e.g. e1m1) if no map is set, the current map will restart
"message" ONE page of intermission text to display
*/
/*FGD
@baseclass = ChangeLevel [
map(string) : "Next map"
message(string) : "Intermission text (limit one page)"
spawnflags(flags) =
[
1: "No intermission" : 0
]
]
@SolidClass base(Trigger, ChangeLevel) = trigger_changelevel : "Trigger: Change level.
When the player touches this, he gets sent to the map listed in the 'map' variable. The view will go to the info_intermission spot and display stats."
[]
*/
void() trigger_changelevel =
{
if (!SUB_ShouldSpawn()) return;
if (!self.map)
objerror ("trigger_changelevel doesn't have map");
InitTrigger ();
self.touch = changelevel_touch;
}
/*QUAKED target_changelevel (0.65 0 0.65) (-16 -16 -16) (16 16 16) NO_INTERMISSION
When the player triggers this by any means, he gets sent to the map listed in the "map" variable.
Spawnflags:
NO_INTERMISSION: the view will not go to the info_intermission spot and display stats
Keys:
"map" set to name of next map (e.g. e1m1) if no map is set, the current map will restart
"message" ONE page of intermission text to display
*/
/*FGD
@PointClass base(Appearflags, Targetname, ChangeLevel) color(160 0 160) size(32 32 32) = target_changelevel : "Target: Change level.
When this is triggered, the player is sent to the map listed in the 'map' variable. The view will go to the info_intermission spot and display stats."
[]
*/
void() target_changelevel =
{
if (!SUB_ShouldSpawn()) return;
if (!self.map)
objerror ("target_changelevel doesn't have map");
self.use = changelevel_do;
}
/*QUAKED info_intermission (.75 .25 .25) (-8 -8 -8) (8 8 8)
This is the camera point for the intermission. Use 'angles' instead of angle, so you can set pitch or roll as well as yaw.
Quake does a random pick if more than one exists.
If no info_intermission entity is set, Quake uses the player start.
Keys:
"angles" or "mangle" set pitch yaw roll, positive pitch is down
"fog_color"/"fog_density" set the fog for the view from this camera
*/
/*FGD
@PointClass size(16 16 16) color(192 64 64) base(Fog, Appearflags) = info_intermission : "Intermission camera"
[
angles(string) : "Camera angle (Pitch Yaw Roll, positive pitch down)"
mangle(string) : "Camera angle (Pitch Yaw Roll, positive pitch down)"
]
*/
void() info_intermission =
{
if (!SUB_ShouldSpawn()) return;
if (self.mangle == VEC_ORIGIN)
self.mangle = self.angles;
fog_fixKeys();
}