]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/mutator/gamemode_assault.qc
Merge branch 'master' into terencehill/race_fix
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / mutator / gamemode_assault.qc
1 #include "gamemode_assault.qh"
2 #ifndef GAMEMODE_ASSAULT_H
3 #define GAMEMODE_ASSAULT_H
4
5 void assault_ScoreRules();
6
7 REGISTER_MUTATOR(as, false)
8 {
9         ActivateTeamplay();
10         have_team_spawns = -1; // request team spawns
11
12         MUTATOR_ONADD
13         {
14                 if (time > 1) // game loads at time 1
15                         error("This is a game type and it cannot be added at runtime.");
16                 assault_ScoreRules();
17         }
18
19         MUTATOR_ONROLLBACK_OR_REMOVE
20         {
21                 // we actually cannot roll back assault_Initialize here
22                 // BUT: we don't need to! If this gets called, adding always
23                 // succeeds.
24         }
25
26         MUTATOR_ONREMOVE
27         {
28                 LOG_INFO("This is a game type and it cannot be removed at runtime.");
29                 return -1;
30         }
31
32         return 0;
33 }
34
35 // sprites
36 .entity assault_decreaser;
37 .entity assault_sprite;
38
39 // legacy bot defs
40 const int HAVOCBOT_AST_ROLE_NONE = 0;
41 const int HAVOCBOT_AST_ROLE_DEFENSE = 2;
42 const int HAVOCBOT_AST_ROLE_OFFENSE = 4;
43
44 .int havocbot_role_flags;
45 .float havocbot_attack_time;
46
47 .void(entity this) havocbot_role;
48 .void(entity this) havocbot_previous_role;
49
50 void(entity this) havocbot_role_ast_defense;
51 void(entity this) havocbot_role_ast_offense;
52 .entity havocbot_ast_target;
53
54 void(entity bot) havocbot_ast_reset_role;
55
56 void(entity this, float ratingscale, vector org, float sradius) havocbot_goalrating_items;
57 void(entity this, float ratingscale, vector org, float sradius) havocbot_goalrating_enemyplayers;
58
59 // scoreboard stuff
60 const float ST_ASSAULT_OBJECTIVES = 1;
61 const float SP_ASSAULT_OBJECTIVES = 4;
62
63 // predefined spawnfuncs
64 void target_objective_decrease_activate();
65 #endif
66
67 #ifdef IMPLEMENTATION
68 .entity sprite;
69
70 // random functions
71 void assault_objective_use()
72 {SELFPARAM();
73         // activate objective
74         self.health = 100;
75         //print("^2Activated objective ", self.targetname, "=", etos(self), "\n");
76         //print("Activator is ", activator.classname, "\n");
77
78         for (entity e = world; (e = find(e, target, this.targetname)); )
79         {
80                 if (e.classname == "target_objective_decrease")
81                 {
82                         WITH(entity, self, e, target_objective_decrease_activate());
83                 }
84         }
85
86         setself(this);
87 }
88
89 vector target_objective_spawn_evalfunc(entity player, entity spot, vector current)
90 {SELFPARAM();
91         if(self.health < 0 || self.health >= ASSAULT_VALUE_INACTIVE)
92                 return '-1 0 0';
93         return current;
94 }
95
96 // reset this objective. Used when spawning an objective
97 // and when a new round starts
98 void assault_objective_reset(entity this)
99 {
100         this.health = ASSAULT_VALUE_INACTIVE;
101 }
102
103 // decrease the health of targeted objectives
104 void assault_objective_decrease_use()
105 {SELFPARAM();
106         if(activator.team != assault_attacker_team)
107         {
108                 // wrong team triggered decrease
109                 return;
110         }
111
112         if(other.assault_sprite)
113         {
114                 WaypointSprite_Disown(other.assault_sprite, waypointsprite_deadlifetime);
115                 if(other.classname == "func_assault_destructible")
116                         other.sprite = world;
117         }
118         else
119                 return; // already activated! cannot activate again!
120
121         if(self.enemy.health < ASSAULT_VALUE_INACTIVE)
122         {
123                 if(self.enemy.health - self.dmg > 0.5)
124                 {
125                         PlayerTeamScore_Add(activator, SP_SCORE, ST_SCORE, self.dmg);
126                         self.enemy.health = self.enemy.health - self.dmg;
127                 }
128                 else
129                 {
130                         PlayerTeamScore_Add(activator, SP_SCORE, ST_SCORE, self.enemy.health);
131                         PlayerTeamScore_Add(activator, SP_ASSAULT_OBJECTIVES, ST_ASSAULT_OBJECTIVES, 1);
132                         self.enemy.health = -1;
133
134                         entity oldactivator;
135
136                         setself(this.enemy);
137                         if(self.message)
138                                 FOREACH_CLIENT(IS_PLAYER(it), LAMBDA(centerprint(it, self.message)));
139
140                         oldactivator = activator;
141                         activator = this;
142                         SUB_UseTargets();
143                         activator = oldactivator;
144                         setself(this);
145                 }
146         }
147 }
148
149 void assault_setenemytoobjective()
150 {SELFPARAM();
151         entity objective;
152         for(objective = world; (objective = find(objective, targetname, self.target)); )
153         {
154                 if(objective.classname == "target_objective")
155                 {
156                         if(self.enemy == world)
157                                 self.enemy = objective;
158                         else
159                                 objerror("more than one objective as target - fix the map!");
160                         break;
161                 }
162         }
163
164         if(self.enemy == world)
165                 objerror("no objective as target - fix the map!");
166 }
167
168 float assault_decreaser_sprite_visible(entity e)
169 {SELFPARAM();
170         entity decreaser;
171
172         decreaser = self.assault_decreaser;
173
174         if(decreaser.enemy.health >= ASSAULT_VALUE_INACTIVE)
175                 return false;
176
177         return true;
178 }
179
180 void target_objective_decrease_activate()
181 {SELFPARAM();
182         entity ent, spr;
183         self.owner = world;
184         for(ent = world; (ent = find(ent, target, self.targetname)); )
185         {
186                 if(ent.assault_sprite != world)
187                 {
188                         WaypointSprite_Disown(ent.assault_sprite, waypointsprite_deadlifetime);
189                         if(ent.classname == "func_assault_destructible")
190                                 ent.sprite = world;
191                 }
192
193                 spr = WaypointSprite_SpawnFixed(WP_Assault, 0.5 * (ent.absmin + ent.absmax), ent, assault_sprite, RADARICON_OBJECTIVE);
194                 spr.assault_decreaser = self;
195                 spr.waypointsprite_visible_for_player = assault_decreaser_sprite_visible;
196                 spr.classname = "sprite_waypoint";
197                 WaypointSprite_UpdateRule(spr, assault_attacker_team, SPRITERULE_TEAMPLAY);
198                 if(ent.classname == "func_assault_destructible")
199                 {
200                         WaypointSprite_UpdateSprites(spr, WP_AssaultDefend, WP_AssaultDestroy, WP_AssaultDestroy);
201                         WaypointSprite_UpdateMaxHealth(spr, ent.max_health);
202                         WaypointSprite_UpdateHealth(spr, ent.health);
203                         ent.sprite = spr;
204                 }
205                 else
206                         WaypointSprite_UpdateSprites(spr, WP_AssaultDefend, WP_AssaultPush, WP_AssaultPush);
207         }
208 }
209
210 void target_objective_decrease_findtarget()
211 {
212         assault_setenemytoobjective();
213 }
214
215 void target_assault_roundend_reset(entity this)
216 {
217         //print("round end reset\n");
218         ++this.cnt; // up round counter
219         this.winning = false; // up round
220 }
221
222 void target_assault_roundend_use()
223 {SELFPARAM();
224         self.winning = 1; // round has been won by attackers
225 }
226
227 void assault_roundstart_use()
228 {SELFPARAM();
229         activator = self;
230         SUB_UseTargets();
231
232         //(Re)spawn all turrets
233         FOREACH_ENTITY_CLASS("turret_main", true, LAMBDA(
234                 // Swap turret teams
235                 if(it.team == NUM_TEAM_1)
236                         it.team = NUM_TEAM_2;
237                 else
238                         it.team = NUM_TEAM_1;
239
240                 // Dubbles as teamchange
241                 WITH(entity, self, it, turret_respawn());
242         ));
243 }
244
245 void assault_wall_think()
246 {SELFPARAM();
247         if(self.enemy.health < 0)
248         {
249                 self.model = "";
250                 self.solid = SOLID_NOT;
251         }
252         else
253         {
254                 self.model = self.mdl;
255                 self.solid = SOLID_BSP;
256         }
257
258         self.nextthink = time + 0.2;
259 }
260
261 // trigger new round
262 // reset objectives, toggle spawnpoints, reset triggers, ...
263 void vehicles_clearreturn(entity veh);
264 void vehicles_spawn();
265 void assault_new_round()
266 {SELFPARAM();
267         //bprint("ASSAULT: new round\n");
268
269         // Eject players from vehicles
270     FOREACH_CLIENT(IS_PLAYER(it) && it.vehicle, LAMBDA(WITH(entity, self, it, vehicles_exit(VHEF_RELEASE))));
271
272     FOREACH_ENTITY_FLAGS(vehicle_flags, VHF_ISVEHICLE, LAMBDA(
273         setself(it);
274         vehicles_clearreturn(self);
275         vehicles_spawn();
276     ));
277
278     setself(this);
279
280         // up round counter
281         self.winning = self.winning + 1;
282
283         // swap attacker/defender roles
284         if(assault_attacker_team == NUM_TEAM_1)
285                 assault_attacker_team = NUM_TEAM_2;
286         else
287                 assault_attacker_team = NUM_TEAM_1;
288
289         FOREACH_ENTITY(IS_NOT_A_CLIENT(it), LAMBDA(
290                 if (it.team_saved == NUM_TEAM_1) it.team_saved = NUM_TEAM_2;
291                 else if (it.team_saved == NUM_TEAM_2) it.team_saved = NUM_TEAM_1;
292         ));
293
294         // reset the level with a countdown
295         cvar_set("timelimit", ftos(ceil(time - game_starttime) / 60));
296         ReadyRestart_force(); // sets game_starttime
297 }
298
299 // Assault winning condition: If the attackers triggered a round end (by fulfilling all objectives)
300 // they win. Otherwise the defending team wins once the timelimit passes.
301 int WinningCondition_Assault()
302 {
303     SELFPARAM();
304         WinningConditionHelper(); // set worldstatus
305
306         int status = WINNING_NO;
307         // as the timelimit has not yet passed just assume the defending team will win
308         if(assault_attacker_team == NUM_TEAM_1)
309         {
310                 SetWinners(team, NUM_TEAM_2);
311         }
312         else
313         {
314                 SetWinners(team, NUM_TEAM_1);
315         }
316
317         entity ent;
318         ent = find(world, classname, "target_assault_roundend");
319         if(ent)
320         {
321                 if(ent.winning) // round end has been triggered by attacking team
322                 {
323                         bprint("ASSAULT: round completed...\n");
324                         SetWinners(team, assault_attacker_team);
325
326                         TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 666 - TeamScore_AddToTeam(assault_attacker_team, ST_ASSAULT_OBJECTIVES, 0));
327
328                         if(ent.cnt == 1 || autocvar_g_campaign) // this was the second round
329                         {
330                                 status = WINNING_YES;
331                         }
332                         else
333                         {
334                                 WITH(entity, self, ent, assault_new_round());
335                         }
336                 }
337         }
338
339         return status;
340 }
341
342 // spawnfuncs
343 spawnfunc(info_player_attacker)
344 {
345         if (!g_assault) { remove(self); return; }
346
347         self.team = NUM_TEAM_1; // red, gets swapped every round
348         spawnfunc_info_player_deathmatch(this);
349 }
350
351 spawnfunc(info_player_defender)
352 {
353         if (!g_assault) { remove(self); return; }
354
355         self.team = NUM_TEAM_2; // blue, gets swapped every round
356         spawnfunc_info_player_deathmatch(this);
357 }
358
359 spawnfunc(target_objective)
360 {
361         if (!g_assault) { remove(this); return; }
362
363         this.classname = "target_objective";
364         this.use = assault_objective_use;
365         this.reset = assault_objective_reset;
366         this.reset(this);
367         this.spawn_evalfunc = target_objective_spawn_evalfunc;
368 }
369
370 spawnfunc(target_objective_decrease)
371 {
372         if (!g_assault) { remove(self); return; }
373
374         self.classname = "target_objective_decrease";
375
376         if(!self.dmg)
377                 self.dmg = 101;
378
379         self.use = assault_objective_decrease_use;
380         self.health = ASSAULT_VALUE_INACTIVE;
381         self.max_health = ASSAULT_VALUE_INACTIVE;
382         self.enemy = world;
383
384         InitializeEntity(self, target_objective_decrease_findtarget, INITPRIO_FINDTARGET);
385 }
386
387 // destructible walls that can be used to trigger target_objective_decrease
388 spawnfunc(func_breakable);
389 spawnfunc(func_assault_destructible)
390 {
391         if (!g_assault) { remove(self); return; }
392
393         self.spawnflags = 3;
394         self.classname = "func_assault_destructible";
395
396         if(assault_attacker_team == NUM_TEAM_1)
397                 self.team = NUM_TEAM_2;
398         else
399                 self.team = NUM_TEAM_1;
400
401         spawnfunc_func_breakable(this);
402 }
403
404 spawnfunc(func_assault_wall)
405 {
406         if (!g_assault) { remove(self); return; }
407
408         self.classname = "func_assault_wall";
409         self.mdl = self.model;
410         _setmodel(self, self.mdl);
411         self.solid = SOLID_BSP;
412         self.think = assault_wall_think;
413         self.nextthink = time;
414         InitializeEntity(self, assault_setenemytoobjective, INITPRIO_FINDTARGET);
415 }
416
417 spawnfunc(target_assault_roundend)
418 {
419         if (!g_assault) { remove(self); return; }
420
421         self.winning = 0; // round not yet won by attackers
422         self.classname = "target_assault_roundend";
423         self.use = target_assault_roundend_use;
424         self.cnt = 0; // first round
425         self.reset = target_assault_roundend_reset;
426 }
427
428 spawnfunc(target_assault_roundstart)
429 {
430         if (!g_assault) { remove(self); return; }
431
432         assault_attacker_team = NUM_TEAM_1;
433         self.classname = "target_assault_roundstart";
434         self.use = assault_roundstart_use;
435         self.reset2 = assault_roundstart_use;
436         InitializeEntity(self, assault_roundstart_use, INITPRIO_FINDTARGET);
437 }
438
439 // legacy bot code
440 void havocbot_goalrating_ast_targets(entity this, float ratingscale)
441 {
442         entity ad, best, wp, tod;
443         float radius, found, bestvalue;
444         vector p;
445
446         ad = findchain(classname, "func_assault_destructible");
447
448         for (; ad; ad = ad.chain)
449         {
450                 if (ad.target == "")
451                         continue;
452
453                 if (!ad.bot_attack)
454                         continue;
455
456                 found = false;
457                 for(tod = world; (tod = find(tod, targetname, ad.target)); )
458                 {
459                         if(tod.classname == "target_objective_decrease")
460                         {
461                                 if(tod.enemy.health > 0 && tod.enemy.health < ASSAULT_VALUE_INACTIVE)
462                                 {
463                                 //      dprint(etos(ad),"\n");
464                                         found = true;
465                                         break;
466                                 }
467                         }
468                 }
469
470                 if(!found)
471                 {
472                 ///     dprint("target not found\n");
473                         continue;
474                 }
475                 /// dprint("target #", etos(ad), " found\n");
476
477
478                 p = 0.5 * (ad.absmin + ad.absmax);
479         //      dprint(vtos(ad.origin), " ", vtos(ad.absmin), " ", vtos(ad.absmax),"\n");
480         //      te_knightspike(p);
481         //      te_lightning2(world, '0 0 0', p);
482
483                 // Find and rate waypoints around it
484                 found = false;
485                 best = world;
486                 bestvalue = 99999999999;
487                 for(radius=0; radius<1500 && !found; radius+=500)
488                 {
489                         for(wp=findradius(p, radius); wp; wp=wp.chain)
490                         {
491                                 if(!(wp.wpflags & WAYPOINTFLAG_GENERATED))
492                                 if(wp.classname=="waypoint")
493                                 if(checkpvs(wp.origin, ad))
494                                 {
495                                         found = true;
496                                         if(wp.cnt<bestvalue)
497                                         {
498                                                 best = wp;
499                                                 bestvalue = wp.cnt;
500                                         }
501                                 }
502                         }
503                 }
504
505                 if(best)
506                 {
507                 ///     dprint("waypoints around target were found\n");
508                 //      te_lightning2(world, '0 0 0', best.origin);
509                 //      te_knightspike(best.origin);
510
511                         navigation_routerating(this, best, ratingscale, 4000);
512                         best.cnt += 1;
513
514                         this.havocbot_attack_time = 0;
515
516                         if(checkpvs(this.view_ofs,ad))
517                         if(checkpvs(this.view_ofs,best))
518                         {
519                         //      dprint("increasing attack time for this target\n");
520                                 this.havocbot_attack_time = time + 2;
521                         }
522                 }
523         }
524 }
525
526 void havocbot_role_ast_offense(entity this)
527 {
528         if(IS_DEAD(this))
529         {
530                 this.havocbot_attack_time = 0;
531                 havocbot_ast_reset_role(this);
532                 return;
533         }
534
535         // Set the role timeout if necessary
536         if (!this.havocbot_role_timeout)
537                 this.havocbot_role_timeout = time + 120;
538
539         if (time > this.havocbot_role_timeout)
540         {
541                 havocbot_ast_reset_role(this);
542                 return;
543         }
544
545         if(this.havocbot_attack_time>time)
546                 return;
547
548         if (this.bot_strategytime < time)
549         {
550                 navigation_goalrating_start(this);
551                 havocbot_goalrating_enemyplayers(this, 20000, this.origin, 650);
552                 havocbot_goalrating_ast_targets(this, 20000);
553                 havocbot_goalrating_items(this, 15000, this.origin, 10000);
554                 navigation_goalrating_end(this);
555
556                 this.bot_strategytime = time + autocvar_bot_ai_strategyinterval;
557         }
558 }
559
560 void havocbot_role_ast_defense(entity this)
561 {
562         if(IS_DEAD(this))
563         {
564                 this.havocbot_attack_time = 0;
565                 havocbot_ast_reset_role(this);
566                 return;
567         }
568
569         // Set the role timeout if necessary
570         if (!this.havocbot_role_timeout)
571                 this.havocbot_role_timeout = time + 120;
572
573         if (time > this.havocbot_role_timeout)
574         {
575                 havocbot_ast_reset_role(this);
576                 return;
577         }
578
579         if(this.havocbot_attack_time>time)
580                 return;
581
582         if (this.bot_strategytime < time)
583         {
584                 navigation_goalrating_start(this);
585                 havocbot_goalrating_enemyplayers(this, 20000, this.origin, 3000);
586                 havocbot_goalrating_ast_targets(this, 20000);
587                 havocbot_goalrating_items(this, 15000, this.origin, 10000);
588                 navigation_goalrating_end(this);
589
590                 this.bot_strategytime = time + autocvar_bot_ai_strategyinterval;
591         }
592 }
593
594 void havocbot_role_ast_setrole(entity this, float role)
595 {
596         switch(role)
597         {
598                 case HAVOCBOT_AST_ROLE_DEFENSE:
599                         this.havocbot_role = havocbot_role_ast_defense;
600                         this.havocbot_role_flags = HAVOCBOT_AST_ROLE_DEFENSE;
601                         this.havocbot_role_timeout = 0;
602                         break;
603                 case HAVOCBOT_AST_ROLE_OFFENSE:
604                         this.havocbot_role = havocbot_role_ast_offense;
605                         this.havocbot_role_flags = HAVOCBOT_AST_ROLE_OFFENSE;
606                         this.havocbot_role_timeout = 0;
607                         break;
608         }
609 }
610
611 void havocbot_ast_reset_role(entity this)
612 {
613         if(IS_DEAD(this))
614                 return;
615
616         if(this.team == assault_attacker_team)
617                 havocbot_role_ast_setrole(this, HAVOCBOT_AST_ROLE_OFFENSE);
618         else
619                 havocbot_role_ast_setrole(this, HAVOCBOT_AST_ROLE_DEFENSE);
620 }
621
622 // mutator hooks
623 MUTATOR_HOOKFUNCTION(as, PlayerSpawn)
624 {SELFPARAM();
625         if(self.team == assault_attacker_team)
626                 Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_ASSAULT_ATTACKING);
627         else
628                 Send_Notification(NOTIF_ONE, self, MSG_CENTER, CENTER_ASSAULT_DEFENDING);
629
630         return false;
631 }
632
633 MUTATOR_HOOKFUNCTION(as, TurretSpawn)
634 {SELFPARAM();
635         if(!self.team || self.team == MAX_SHOT_DISTANCE)
636                 self.team = 5; // this gets reversed when match starts?
637
638         return false;
639 }
640
641 MUTATOR_HOOKFUNCTION(as, VehicleSpawn)
642 {SELFPARAM();
643         self.nextthink = time + 0.5;
644
645         return false;
646 }
647
648 MUTATOR_HOOKFUNCTION(as, HavocBot_ChooseRole)
649 {SELFPARAM();
650         havocbot_ast_reset_role(self);
651         return true;
652 }
653
654 MUTATOR_HOOKFUNCTION(as, PlayHitsound)
655 {
656         return (frag_victim.classname == "func_assault_destructible");
657 }
658
659 MUTATOR_HOOKFUNCTION(as, GetTeamCount)
660 {
661         // assault always has 2 teams
662         c1 = c2 = 0;
663         return true;
664 }
665
666 MUTATOR_HOOKFUNCTION(as, CheckRules_World)
667 {
668         ret_float = WinningCondition_Assault();
669         return true;
670 }
671
672 MUTATOR_HOOKFUNCTION(as, ReadLevelCvars)
673 {
674         // no assault warmups
675         warmup_stage = 0;
676         return false;
677 }
678
679 MUTATOR_HOOKFUNCTION(as, OnEntityPreSpawn)
680 {
681     SELFPARAM();
682         switch(self.classname)
683         {
684                 case "info_player_team1":
685                 case "info_player_team2":
686                 case "info_player_team3":
687                 case "info_player_team4":
688                         return true;
689         }
690
691         return false;
692 }
693
694 // scoreboard setup
695 void assault_ScoreRules()
696 {
697         ScoreRules_basics(2, SFL_SORT_PRIO_SECONDARY, SFL_SORT_PRIO_SECONDARY, true);
698         ScoreInfo_SetLabel_TeamScore(  ST_ASSAULT_OBJECTIVES,    "objectives",      SFL_SORT_PRIO_PRIMARY);
699         ScoreInfo_SetLabel_PlayerScore(SP_ASSAULT_OBJECTIVES,    "objectives",      SFL_SORT_PRIO_PRIMARY);
700         ScoreRules_basics_end();
701 }
702
703 #endif