]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/race.qc
add missing functions
[divverent/nexuiz.git] / data / qcsrc / server / race.qc
1 #define MAX_CHECKPOINTS 255
2
3 .float race_checkpoint; // player: next checkpoint that has to be reached
4 .float race_laptime;
5
6 .entity sprite;
7
8 float race_checkpoint_records[MAX_CHECKPOINTS];
9 string race_checkpoint_recordholders[MAX_CHECKPOINTS];
10 float race_checkpoint_lasttimes[MAX_CHECKPOINTS];
11 float race_checkpoint_lastlaps[MAX_CHECKPOINTS];
12 entity race_checkpoint_lastplayers[MAX_CHECKPOINTS];
13
14 float race_highest_checkpoint;
15 float race_highest_place_spawn;
16
17 float race_NextCheckpoint(float f)
18 {
19         if(f >= race_highest_checkpoint)
20                 return 0;
21         else
22                 return f + 1;
23 }
24
25 float race_PreviousCheckpoint(float f)
26 {
27         if(f == -1)
28                 return 0;
29         else if(f == 0)
30                 return race_highest_checkpoint;
31         else
32                 return f - 1;
33 }
34
35 void race_SendNextCheckpoint(entity e, float spec)
36 {
37         float recordtime;
38         string recordholder;
39         float cp;
40
41         if(!e.race_laptime)
42                 return;
43
44         cp = e.race_checkpoint;
45         recordtime = race_checkpoint_records[cp];
46         recordholder = race_checkpoint_recordholders[cp];
47         /*
48         recordtime = stof(db_get(ServerProgsDB, strcat(GetMapname(), "/racerecord/", ftos(cp), "/time")));
49         recordholder = db_get(ServerProgsDB, strcat(GetMapname(), "/racerecord/", ftos(cp), "/netname"));
50         */
51         if(recordholder == e.netname)
52                 recordholder = "";
53
54         if(!spec)
55                 msg_entity = e;
56         WRITESPECTATABLE_MSG_ONE({
57                 WriteByte(MSG_ONE, SVC_TEMPENTITY);
58                 WriteByte(MSG_ONE, TE_CSQC_RACE);
59                 if(spec)
60                 {
61                         WriteByte(MSG_ONE, RACE_NET_CHECKPOINT_NEXT_SPEC_QUALIFYING);
62                         WriteCoord(MSG_ONE, e.race_laptime);
63                 }
64                 else
65                         WriteByte(MSG_ONE, RACE_NET_CHECKPOINT_NEXT_QUALIFYING);
66                 WriteByte(MSG_ONE, cp); // checkpoint the player will be at next
67                 WriteShort(MSG_ONE, recordtime);
68                 WriteString(MSG_ONE, recordholder);
69         });
70 }
71
72 void race_InitSpectator()
73 {
74         if(g_race_qualifying)
75                 if(msg_entity.enemy.race_laptime)
76                         race_SendNextCheckpoint(msg_entity.enemy, 1);
77 }
78
79 void race_SendTime(entity e, float cp, float t, float tvalid)
80 {
81         float snew, l;
82         t = floor(0.5 + 10 * t); // make integer
83
84         if(tvalid)
85         if(cp == 0) // finish line
86         if not(e.race_completed)
87         {
88                 float s;
89                 if(g_race_qualifying)
90                 {
91                         s = PlayerScore_Add(e, SP_RACE_FASTEST, 0);
92                         if(!s || t < s)
93                                 PlayerScore_Add(e, SP_RACE_FASTEST, t - s);
94                 }
95                 else
96                 {
97                         s = PlayerScore_Add(e, SP_RACE_TIME, 0);
98                         snew = floor(0.5 + 10 * (time - restart_countdown));
99                         PlayerScore_Add(e, SP_RACE_TIME, snew - s);
100                         l = PlayerTeamScore_Add(e, SP_RACE_LAPS, ST_RACE_LAPS, 1);
101
102                         if(cvar("fraglimit"))
103                                 if(l >= cvar("fraglimit"))
104                                         race_completing = 1;
105
106                         if(race_completing)
107                         {
108                                 e.race_completed = 1;
109                                 MAKE_INDEPENDENT_PLAYER(e);
110                                 bprint(e.netname, "^7 has finished the race.\n");
111                                 // TODO support spectators with this (e.g. set a flag for forced sbar)
112                                 if(clienttype(e) == CLIENTTYPE_REAL)
113                                 {
114                                         msg_entity = e;
115                                         WriteByte(MSG_ONE, SVC_TEMPENTITY);
116                                         WriteByte(MSG_ONE, TE_CSQC_FORCESCOREBOARD);
117                                         WriteByte(MSG_ONE, 1);
118                                         // he can still move, but will see the scoreboard now
119                                 }
120                         }
121                 }
122         }
123
124         float recordtime;
125         string recordholder;
126
127         if(g_race_qualifying)
128         {
129                 if(tvalid)
130                 {
131                         recordtime = race_checkpoint_records[cp];
132                         recordholder = strcat1(race_checkpoint_recordholders[cp]); // make a tempstring copy, as we'll possibly strunzone it!
133                         if(recordholder == e.netname)
134                                 recordholder = "";
135
136                         if(t < recordtime || recordtime == 0)
137                         {
138                                 race_checkpoint_records[cp] = t;
139                                 if(race_checkpoint_recordholders[cp])
140                                         strunzone(race_checkpoint_recordholders[cp]);
141                                 race_checkpoint_recordholders[cp] = strzone(e.netname);
142                                 if(cp == 0)
143                                 {
144                                         float grecordtime;
145                                         string grecordholder;
146                                         grecordtime = stof(db_get(ServerProgsDB, strcat(GetMapname(), "/racerecord/time")));
147                                         grecordholder = db_get(ServerProgsDB, strcat(GetMapname(), "/racerecord/netname"));
148                                         if(grecordholder == e.netname)
149                                                 grecordholder = "";
150                                         if(grecordtime == 0)
151                                         {
152                                                 bprint(e.netname, "^7 set the all-time fastest lap record with ", mmsss(t), "\n");
153                                                 db_put(ServerProgsDB, strcat(GetMapname(), "/racerecord/time"), ftos(t));
154                                                 db_put(ServerProgsDB, strcat(GetMapname(), "/racerecord/netname"), e.netname);
155                                         }
156                                         else if(t < grecordtime)
157                                         {
158                                                 if(grecordholder == "")
159                                                         bprint(e.netname, "^7 broke his all-time fastest lap record with ", mmsss(t), "\n");
160                                                 else
161                                                         bprint(e.netname, "^7 broke ", grecordholder, "^7's all-time fastest lap record with ", mmsss(t), "\n");
162                                                 db_put(ServerProgsDB, strcat(GetMapname(), "/racerecord/time"), ftos(t));
163                                                 db_put(ServerProgsDB, strcat(GetMapname(), "/racerecord/netname"), e.netname);
164                                         }
165                                         else
166                                         {
167                                                 if(grecordholder == "")
168                                                         bprint(e.netname, "^7's new fastest lap could not break his all-time fastest lap record of ", mmsss(grecordtime), "\n");
169                                                 else
170                                                         bprint(e.netname, "^7's new fastest lap could not break ", grecordholder, "^7's all-time fastest lap record of ", mmsss(grecordtime), "\n");
171                                         }
172                                 }
173
174                                 if(g_race_qualifying)
175                                 {
176                                         entity p;
177                                         FOR_EACH_REALPLAYER(p)
178                                                 if(p.race_checkpoint == cp)
179                                                         race_SendNextCheckpoint(p, 0);
180                                 }
181                         }
182                 }
183                 else
184                 {
185                         // dummies
186                         t = 0;
187                         recordtime = 0;
188                         recordholder = "";
189                 }
190
191                 msg_entity = e;
192                 if(g_race_qualifying)
193                 {
194                         WRITESPECTATABLE_MSG_ONE({
195                                 WriteByte(MSG_ONE, SVC_TEMPENTITY);
196                                 WriteByte(MSG_ONE, TE_CSQC_RACE);
197                                 WriteByte(MSG_ONE, RACE_NET_CHECKPOINT_HIT_QUALIFYING);
198                                 WriteByte(MSG_ONE, cp); // checkpoint the player now is at
199                                 WriteShort(MSG_ONE, t); // time to that intermediate
200                                 WriteShort(MSG_ONE, recordtime); // previously best time
201                                 WriteString(MSG_ONE, recordholder); // record holder
202                         });
203                 }
204         }
205         else // RACE! Not Qualifying
206         {
207                 float lself, lother, othtime;
208                 entity oth;
209                 oth = race_checkpoint_lastplayers[cp];
210                 if(oth)
211                 {
212                         lself = PlayerScore_Add(e, SP_RACE_LAPS, 0);
213                         lother = race_checkpoint_lastlaps[cp];
214                         othtime = race_checkpoint_lasttimes[cp];
215                 }
216                 else
217                         lself = lother = othtime = 0;
218
219                 msg_entity = e;
220                 WRITESPECTATABLE_MSG_ONE({
221                         WriteByte(MSG_ONE, SVC_TEMPENTITY);
222                         WriteByte(MSG_ONE, TE_CSQC_RACE);
223                         WriteByte(MSG_ONE, RACE_NET_CHECKPOINT_HIT_RACE);
224                         WriteByte(MSG_ONE, cp); // checkpoint the player now is at
225                         if(e == oth)
226                         {
227                                 WriteShort(MSG_ONE, 0);
228                                 WriteByte(MSG_ONE, 0);
229                                 WriteString(MSG_ONE, "");
230                         }
231                         else
232                         {
233                                 WriteShort(MSG_ONE, floor(10 * (time - race_checkpoint_lasttimes[cp]) + 0.5));
234                                 WriteByte(MSG_ONE, lself - lother);
235                                 WriteString(MSG_ONE, oth.netname); // record holder
236                         }
237                 });
238
239                 race_checkpoint_lastplayers[cp] = e;
240                 race_checkpoint_lasttimes[cp] = time;
241                 race_checkpoint_lastlaps[cp] = lself;
242
243                 msg_entity = oth;
244                 WRITESPECTATABLE_MSG_ONE({
245                         WriteByte(MSG_ONE, SVC_TEMPENTITY);
246                         WriteByte(MSG_ONE, TE_CSQC_RACE);
247                         WriteByte(MSG_ONE, RACE_NET_CHECKPOINT_HIT_RACE_BY_OPPONENT);
248                         WriteByte(MSG_ONE, cp); // checkpoint the player now is at
249                         if(e == oth)
250                         {
251                                 WriteShort(MSG_ONE, 0);
252                                 WriteByte(MSG_ONE, 0);
253                                 WriteString(MSG_ONE, "");
254                         }
255                         else
256                         {
257                                 WriteShort(MSG_ONE, floor(10 * (time - othtime) + 0.5));
258                                 WriteByte(MSG_ONE, lother - lself);
259                                 WriteString(MSG_ONE, e.netname); // record holder
260                         }
261                 });
262         }
263 }
264
265 void race_ClearTime(entity e)
266 {
267         e.race_checkpoint = -1;
268         e.race_laptime = 0;
269
270         msg_entity = e;
271         WRITESPECTATABLE_MSG_ONE({
272                 WriteByte(MSG_ONE, SVC_TEMPENTITY);
273                 WriteByte(MSG_ONE, TE_CSQC_RACE);
274                 WriteByte(MSG_ONE, RACE_NET_CHECKPOINT_CLEAR); // next
275         });
276 }
277
278 void dumpsurface(entity e)
279 {
280         float n, si, ni;
281         vector norm, vec;
282         print("Surfaces of ", etos(e), ":\n");
283
284         print("TEST = ", ftos(getsurfacenearpoint(e, '0 0 0')), "\n");
285
286         for(si = 0; ; ++si)
287         {
288                 n = getsurfacenumpoints(e, si);
289                 if(n <= 0)
290                         break;
291                 print("  Surface ", ftos(si), ":\n");
292                 norm = getsurfacenormal(e, si);
293                 print("    Normal = ", vtos(norm), "\n");
294                 for(ni = 0; ni < n; ++ni)
295                 {
296                         vec = getsurfacepoint(e, si, ni);
297                         print("    Point ", ftos(ni), " = ", vtos(vec), " (", ftos(norm * vec), ")\n");
298                 }
299         }
300 }
301
302 void checkpoint_touch()
303 {
304         EXACTTRIGGER_TOUCH;
305
306         if(other.classname == "porto")
307         {
308                 // do not allow portalling through checkpoints
309                 trace_plane_normal = normalize(-1 * other.velocity);
310                 self = other;
311                 W_Porto_Fail();
312                 return;
313         }
314
315         if(other.classname != "player")
316                 return;
317
318         /*
319          * Remove unauthorized equipment
320          */
321         Portal_ClearAll(other);
322
323         /*
324          * Trigger targets
325          */
326         if(self.spawnflags & 2)
327         {
328                 activator = other;
329                 SUB_UseTargets();
330         }
331
332         if(other.race_checkpoint == -1 || other.race_checkpoint == self.race_checkpoint)
333         {
334                 /*
335                  * Trigger targets
336                  */
337                 if not(self.spawnflags & 2)
338                 {
339                         activator = other;
340                         SUB_UseTargets();
341                 }
342
343                 other.race_checkpoint = race_NextCheckpoint(self.race_checkpoint);
344
345                 race_SendTime(other, self.race_checkpoint, time - other.race_laptime, !!other.race_laptime);
346
347                 if(!self.race_checkpoint) // finish line
348                         other.race_laptime = time;
349
350                 if(g_race_qualifying)
351                         race_SendNextCheckpoint(other, 0);
352         }
353         else if(other.race_checkpoint == race_NextCheckpoint(self.race_checkpoint))
354         {
355                 // ignored
356         }
357         else
358         {
359                 if(self.spawnflags & 4)
360                         Damage (other, self, self, 10000, DEATH_HURTTRIGGER, other.origin, '0 0 0');
361         }
362 }
363
364 void checkpoint_use()
365 {
366         other = activator;
367         checkpoint_touch();
368 }
369
370 float race_waypointsprite_for_player(entity e)
371 {
372         if(e.race_checkpoint == -1)
373                 return self.modelindex;
374         else if(e.race_checkpoint == self.owner.race_checkpoint)
375                 return self.modelindex;
376         else
377                 return FALSE;
378 }
379
380 void spawnfunc_trigger_race_checkpoint()
381 {
382         vector o;
383         if(!g_race)
384         {
385                 remove(self);
386                 return;
387         }
388
389         EXACTTRIGGER_INIT;
390
391         self.use = checkpoint_use;
392         if not(self.spawnflags & 1)
393                 self.touch = checkpoint_touch;
394
395         o = (self.absmin + self.absmax) * 0.5;
396         tracebox(o, PL_MIN, PL_MAX, o - '0 0 1' * (o_z - self.absmin_z), MOVE_NORMAL, self);
397         self.nearestwaypoint = waypoint_spawn(trace_endpos, trace_endpos, WAYPOINTFLAG_GENERATED);
398         self.nearestwaypointtimeout = time + 1000000000;
399
400         if(!self.message)
401                 self.message = "went backwards";
402         
403         self.race_checkpoint = self.cnt;
404
405         if(self.race_checkpoint > race_highest_checkpoint)
406                 race_highest_checkpoint = self.race_checkpoint;
407
408         if(self.race_checkpoint)
409         {
410                 precache_model("models/sprites/race-checkpoint.sp2");
411                 WaypointSprite_SpawnFixed("race-checkpoint", o, self, sprite);
412         }
413         else
414         {
415                 precache_model("models/sprites/race-finish.sp2");
416                 WaypointSprite_SpawnFixed("race-finish", o, self, sprite);
417         }
418         self.sprite.waypointsprite_for_player = race_waypointsprite_for_player;
419 }
420
421 void race_PreparePlayer()
422 {
423         race_ClearTime(self);
424         self.race_place = 0;
425 }
426
427 void race_RetractPlayer()
428 {
429         if(!g_race)
430                 return;
431         self.race_checkpoint = race_PreviousCheckpoint(self.race_checkpoint);
432         if(self.race_checkpoint == 0)
433         {
434                 race_ClearTime(self);
435                 self.race_checkpoint = 0;
436         }
437 }
438
439 void race_PreSpawn()
440 {
441         if(!g_race)
442                 return;
443         if(self.killcount == -666 || g_race_qualifying)
444                 race_PreparePlayer();
445
446         if(race_completing)
447         {
448                 self.race_completed = 1;
449                 MAKE_INDEPENDENT_PLAYER(self);
450                 bprint(self.netname, "^7 has abandoned the race.\n");
451                 // TODO support spectators with this (e.g. set a flag for forced sbar)
452                 if(clienttype(self) == CLIENTTYPE_REAL)
453                 {
454                         msg_entity = self;
455                         WriteByte(MSG_ONE, SVC_TEMPENTITY);
456                         WriteByte(MSG_ONE, TE_CSQC_FORCESCOREBOARD);
457                         WriteByte(MSG_ONE, 1);
458                         // he can still move, but will see the scoreboard now
459                 }
460         }
461 }
462
463 void race_PostSpawn(entity spot)
464 {
465         if(!g_race)
466                 return;
467         if(self.killcount != -666 && !g_race_qualifying)
468         {
469                 if(spot.target == "")
470                         // let the player run without timing, if he did not spawn at a targetting spawnpoint
471                         race_PreparePlayer();
472                 else
473                         race_RetractPlayer();
474         }
475
476         if(spot.target != "" && self.race_checkpoint == -1)
477                 self.race_checkpoint = 0;
478
479         self.race_place = 0;
480 }
481
482 void race_PreSpawnObserver()
483 {
484         if(!g_race)
485                 return;
486         race_PreparePlayer();
487 }
488
489 void spawnfunc_info_player_race (void)
490 {
491         if(!g_race)
492         {
493                 remove(self);
494                 return;
495         }
496         ++race_spawns;
497         spawnfunc_info_player_deathmatch();
498
499         if(self.race_place > race_highest_place_spawn)
500                 race_highest_place_spawn = self.race_place;
501 }
502
503 void race_ClearRecords()
504 {
505         float i;
506         entity e;
507
508         for(i = 0; i < MAX_CHECKPOINTS; ++i)
509         {
510                 race_checkpoint_records[i] = 0;
511                 if(race_checkpoint_recordholders[i])
512                         strunzone(race_checkpoint_recordholders[i]);
513                 race_checkpoint_recordholders[i] = string_null;
514         }
515
516         FOR_EACH_CLIENT(e)
517                 race_ClearTime(e);
518 }
519
520 void race_ReadyRestart()
521 {
522         race_ClearRecords();
523
524         if(g_race_qualifying == 2)
525         {
526                 g_race_qualifying = 0;
527                 independent_players = 0;
528                 cvar_set("fraglimit", ftos(race_fraglimit));
529                 ScoreRules_race();
530         }
531
532         PlayerScore_Sort(race_place);
533 }