]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/gamemodes/gamemode/nexball/nexball.qc
Merge branch 'TimePath/scoreboard_elo' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / gamemodes / gamemode / nexball / nexball.qc
1 #include "nexball.qh"
2
3 #ifdef IMPLEMENTATION
4 #ifdef CSQC
5 int autocvar_cl_eventchase_nexball = 1;
6
7 REGISTER_MUTATOR(cl_nb, true);
8
9 MUTATOR_HOOKFUNCTION(cl_nb, WantEventchase)
10 {
11         if(autocvar_cl_eventchase_nexball && gametype == MAPINFO_TYPE_NEXBALL && !(WepSet_GetFromStat() & WEPSET(NEXBALL)))
12                 return true;
13         return false;
14 }
15 #endif
16 #ifdef SVQC
17 .float metertime = _STAT(NB_METERSTART);
18
19 int autocvar_g_nexball_goalleadlimit;
20 #define autocvar_g_nexball_goallimit cvar("g_nexball_goallimit")
21
22 bool autocvar_g_nexball_basketball_jumppad = true;
23 float autocvar_g_nexball_basketball_bouncefactor;
24 float autocvar_g_nexball_basketball_bouncestop;
25 float autocvar_g_nexball_basketball_carrier_highspeed;
26 bool autocvar_g_nexball_basketball_meter;
27 float autocvar_g_nexball_basketball_meter_maxpower;
28 float autocvar_g_nexball_basketball_meter_minpower;
29 float autocvar_g_nexball_delay_collect;
30 float autocvar_g_nexball_delay_goal;
31 float autocvar_g_nexball_delay_start;
32 bool autocvar_g_nexball_football_jumppad = true;
33 float autocvar_g_nexball_football_bouncefactor;
34 float autocvar_g_nexball_football_bouncestop;
35 bool autocvar_g_nexball_radar_showallplayers;
36 bool autocvar_g_nexball_sound_bounce;
37 int autocvar_g_nexball_trail_color;
38
39 float autocvar_g_nexball_safepass_turnrate;
40 float autocvar_g_nexball_safepass_maxdist;
41 float autocvar_g_nexball_safepass_holdtime;
42 float autocvar_g_nexball_viewmodel_scale;
43 float autocvar_g_nexball_tackling;
44 vector autocvar_g_nexball_viewmodel_offset;
45
46 float autocvar_g_balance_nexball_primary_animtime;
47 float autocvar_g_balance_nexball_primary_refire;
48 float autocvar_g_balance_nexball_primary_speed;
49 float autocvar_g_balance_nexball_secondary_animtime;
50 float autocvar_g_balance_nexball_secondary_force;
51 float autocvar_g_balance_nexball_secondary_lifetime;
52 float autocvar_g_balance_nexball_secondary_refire;
53 float autocvar_g_balance_nexball_secondary_speed;
54
55 void basketball_touch(entity this, entity toucher);
56 void football_touch(entity this, entity toucher);
57 void ResetBall(entity this);
58 const int NBM_NONE = 0;
59 const int NBM_FOOTBALL = 2;
60 const int NBM_BASKETBALL = 4;
61 float nexball_mode;
62
63 float OtherTeam(float t)  //works only if there are two teams on the map!
64 {
65         entity e;
66         e = find(NULL, classname, "nexball_team");
67         if(e.team == t)
68                 e = find(e, classname, "nexball_team");
69         return e.team;
70 }
71
72 const float ST_NEXBALL_GOALS = 1;
73 void nb_ScoreRules(int teams)
74 {
75         ScoreRules_basics(teams, 0, 0, true);
76         ScoreInfo_SetLabel_TeamScore(   ST_NEXBALL_GOALS,  "goals", SFL_SORT_PRIO_PRIMARY);
77         ScoreInfo_SetLabel_PlayerScore( SP_NEXBALL_GOALS,  "goals", SFL_SORT_PRIO_PRIMARY);
78         ScoreInfo_SetLabel_PlayerScore(SP_NEXBALL_FAULTS, "faults", SFL_SORT_PRIO_SECONDARY | SFL_LOWER_IS_BETTER);
79         ScoreRules_basics_end();
80 }
81
82 void LogNB(string mode, entity actor)
83 {
84         string s;
85         if(!autocvar_sv_eventlog)
86                 return;
87         s = strcat(":nexball:", mode);
88         if(actor != NULL)
89                 s = strcat(s, ":", ftos(actor.playerid));
90         GameLogEcho(s);
91 }
92
93 void ball_restart(entity this)
94 {
95         if(this.owner)
96                 DropBall(this, this.owner.origin, '0 0 0');
97         ResetBall(this);
98 }
99
100 void nexball_setstatus(entity this)
101 {
102         this.items &= ~IT_KEY1;
103         if(this.ballcarried)
104         {
105                 if(this.ballcarried.teamtime && (this.ballcarried.teamtime < time))
106                 {
107                         bprint("The ", Team_ColoredFullName(this.team), " held the ball for too long.\n");
108                         DropBall(this.ballcarried, this.ballcarried.owner.origin, '0 0 0');
109                         entity e = this.ballcarried;
110                         ResetBall(e);
111                 }
112                 else
113                         this.items |= IT_KEY1;
114         }
115 }
116
117 void relocate_nexball(entity this)
118 {
119         tracebox(this.origin, BALL_MINS, BALL_MAXS, this.origin, true, this);
120         if(trace_startsolid)
121         {
122                 vector o;
123                 o = this.origin;
124                 if(!move_out_of_solid(this))
125                         objerror(this, "could not get out of solid at all!");
126                 LOG_INFO("^1NOTE: this map needs FIXING. ", this.classname, " at ", vtos(o - '0 0 1'));
127                 LOG_INFO(" needs to be moved out of solid, e.g. by '", ftos(this.origin.x - o.x));
128                 LOG_INFO(" ", ftos(this.origin.y - o.y));
129                 LOG_INFO(" ", ftos(this.origin.z - o.z), "'\n");
130                 this.origin = o;
131         }
132 }
133
134 void DropOwner(entity this)
135 {
136         entity ownr;
137         ownr = this.owner;
138         DropBall(this, ownr.origin, ownr.velocity);
139         makevectors(ownr.v_angle.y * '0 1 0');
140         ownr.velocity += ('0 0 0.75' - v_forward) * 1000;
141         UNSET_ONGROUND(ownr);
142 }
143
144 void GiveBall(entity plyr, entity ball)
145 {
146         .entity weaponentity = weaponentities[0]; // TODO: find ballstealer
147         entity ownr = ball.owner;
148         if(ownr)
149         {
150                 ownr.effects &= ~autocvar_g_nexball_basketball_effects_default;
151                 ownr.ballcarried = NULL;
152                 if(ownr.metertime)
153                 {
154                         ownr.metertime = 0;
155                         ownr.(weaponentity).state = WS_READY;
156                 }
157                 WaypointSprite_Kill(ownr.waypointsprite_attachedforcarrier);
158         }
159         else
160         {
161                 WaypointSprite_Kill(ball.waypointsprite_attachedforcarrier);
162         }
163
164         //setattachment(ball, plyr, "");
165         setorigin(ball, plyr.origin + plyr.view_ofs);
166
167         if(ball.team != plyr.team)
168                 ball.teamtime = time + autocvar_g_nexball_basketball_delay_hold_forteam;
169
170         ball.owner = ball.pusher = plyr; //"owner" is set to the player carrying, "pusher" to the last player who touched it
171         ball.team = plyr.team;
172         plyr.ballcarried = ball;
173         ball.nb_dropper = plyr;
174
175         plyr.effects |= autocvar_g_nexball_basketball_effects_default;
176         ball.effects &= ~autocvar_g_nexball_basketball_effects_default;
177
178         ball.velocity = '0 0 0';
179         set_movetype(ball, MOVETYPE_NONE);
180         settouch(ball, func_null);
181         ball.effects |= EF_NOSHADOW;
182         ball.scale = 1; // scale down.
183
184         WaypointSprite_AttachCarrier(WP_NbBall, plyr, RADARICON_FLAGCARRIER);
185         WaypointSprite_UpdateRule(plyr.waypointsprite_attachedforcarrier, 0, SPRITERULE_DEFAULT);
186
187         if(autocvar_g_nexball_basketball_delay_hold)
188         {
189                 setthink(ball, DropOwner);
190                 ball.nextthink = time + autocvar_g_nexball_basketball_delay_hold;
191         }
192
193         plyr.(weaponentity).weapons = plyr.weapons;
194         plyr.(weaponentity).m_switchweapon = PS(plyr).m_weapon;
195         plyr.weapons = WEPSET(NEXBALL);
196         Weapon w = WEP_NEXBALL;
197         w.wr_resetplayer(w, plyr);
198         PS(plyr).m_switchweapon = WEP_NEXBALL;
199         W_SwitchWeapon(plyr, WEP_NEXBALL);
200 }
201
202 void DropBall(entity ball, vector org, vector vel)
203 {
204         ball.effects |= autocvar_g_nexball_basketball_effects_default;
205         ball.effects &= ~EF_NOSHADOW;
206         ball.owner.effects &= ~autocvar_g_nexball_basketball_effects_default;
207
208         setattachment(ball, NULL, "");
209         setorigin(ball, org);
210         set_movetype(ball, MOVETYPE_BOUNCE);
211         UNSET_ONGROUND(ball);
212         ball.scale = ball_scale;
213         ball.velocity = vel;
214         ball.nb_droptime = time;
215         settouch(ball, basketball_touch);
216         setthink(ball, ResetBall);
217         ball.nextthink = min(time + autocvar_g_nexball_delay_idle, ball.teamtime);
218
219         if(ball.owner.metertime)
220         {
221                 ball.owner.metertime = 0;
222                 .entity weaponentity = weaponentities[0]; // TODO: find ballstealer
223                 ball.owner.(weaponentity).state = WS_READY;
224         }
225
226         WaypointSprite_Kill(ball.owner.waypointsprite_attachedforcarrier);
227         WaypointSprite_Spawn(WP_NbBall, 0, 0, ball, '0 0 64', NULL, ball.team, ball, waypointsprite_attachedforcarrier, false, RADARICON_FLAGCARRIER); // no health bar please
228         WaypointSprite_UpdateRule(ball.waypointsprite_attachedforcarrier, 0, SPRITERULE_DEFAULT);
229
230         ball.owner.ballcarried = NULL;
231         ball.owner = NULL;
232 }
233
234 void InitBall(entity this)
235 {
236         if(gameover) return;
237         UNSET_ONGROUND(this);
238         set_movetype(this, MOVETYPE_BOUNCE);
239         if(this.classname == "nexball_basketball")
240                 settouch(this, basketball_touch);
241         else if(this.classname == "nexball_football")
242                 settouch(this, football_touch);
243         this.cnt = 0;
244         setthink(this, ResetBall);
245         this.nextthink = time + autocvar_g_nexball_delay_idle + 3;
246         this.teamtime = 0;
247         this.pusher = NULL;
248         this.team = false;
249         _sound(this, CH_TRIGGER, this.noise1, VOL_BASE, ATTEN_NORM);
250         WaypointSprite_Ping(this.waypointsprite_attachedforcarrier);
251         LogNB("init", NULL);
252 }
253
254 void ResetBall(entity this)
255 {
256         if(this.cnt < 2)        // step 1
257         {
258                 if(time == this.teamtime)
259                         bprint("The ", Team_ColoredFullName(this.team), " held the ball for too long.\n");
260
261                 settouch(this, func_null);
262                 set_movetype(this, MOVETYPE_NOCLIP);
263                 this.velocity = '0 0 0'; // just in case?
264                 if(!this.cnt)
265                         LogNB("resetidle", NULL);
266                 this.cnt = 2;
267                 this.nextthink = time;
268         }
269         else if(this.cnt < 4)     // step 2 and 3
270         {
271 //              dprint("Step ", ftos(this.cnt), ": Calculated velocity: ", vtos(this.spawnorigin - this.origin), ", time: ", ftos(time), "\n");
272                 this.velocity = (this.spawnorigin - this.origin) * (this.cnt - 1); // 1 or 0.5 second movement
273                 this.nextthink = time + 0.5;
274                 this.cnt += 1;
275         }
276         else     // step 4
277         {
278 //              dprint("Step 4: time: ", ftos(time), "\n");
279                 if(vdist(this.origin - this.spawnorigin, >, 10)) // should not happen anymore
280                         LOG_TRACE("The ball moved too far away from its spawn origin.\nOffset: ",
281                                    vtos(this.origin - this.spawnorigin), " Velocity: ", vtos(this.velocity), "\n");
282                 this.velocity = '0 0 0';
283                 setorigin(this, this.spawnorigin); // make sure it's positioned correctly anyway
284                 set_movetype(this, MOVETYPE_NONE);
285                 setthink(this, InitBall);
286                 this.nextthink = max(time, game_starttime) + autocvar_g_nexball_delay_start;
287         }
288 }
289
290 void football_touch(entity this, entity toucher)
291 {
292         if(toucher.solid == SOLID_BSP)
293         {
294                 if(time > this.lastground + 0.1)
295                 {
296                         _sound(this, CH_TRIGGER, this.noise, VOL_BASE, ATTEN_NORM);
297                         this.lastground = time;
298                 }
299                 if(this.velocity && !this.cnt)
300                         this.nextthink = time + autocvar_g_nexball_delay_idle;
301                 return;
302         }
303         if (!IS_PLAYER(toucher))
304                 return;
305         if(toucher.health < 1)
306                 return;
307         if(!this.cnt)
308                 this.nextthink = time + autocvar_g_nexball_delay_idle;
309
310         this.pusher = toucher;
311         this.team = toucher.team;
312
313         if(autocvar_g_nexball_football_physics == -1)   // MrBougo try 1, before decompiling Rev's original
314         {
315                 if(toucher.velocity)
316                         this.velocity = toucher.velocity * 1.5 + '0 0 1' * autocvar_g_nexball_football_boost_up;
317         }
318         else if(autocvar_g_nexball_football_physics == 1)         // MrBougo's modded Rev style: partially independant of the height of the aiming point
319         {
320                 makevectors(toucher.v_angle);
321                 this.velocity = toucher.velocity + v_forward * autocvar_g_nexball_football_boost_forward + '0 0 1' * autocvar_g_nexball_football_boost_up;
322         }
323         else if(autocvar_g_nexball_football_physics == 2)         // 2nd mod try: totally independant. Really playable!
324         {
325                 makevectors(toucher.v_angle.y * '0 1 0');
326                 this.velocity = toucher.velocity + v_forward * autocvar_g_nexball_football_boost_forward + v_up * autocvar_g_nexball_football_boost_up;
327         }
328         else     // Revenant's original style (from the original mod's disassembly, acknowledged by Revenant)
329         {
330                 makevectors(toucher.v_angle);
331                 this.velocity = toucher.velocity + v_forward * autocvar_g_nexball_football_boost_forward + v_up * autocvar_g_nexball_football_boost_up;
332         }
333         this.avelocity = -250 * v_forward;  // maybe there is a way to make it look better?
334 }
335
336 void basketball_touch(entity this, entity toucher)
337 {
338         if(toucher.ballcarried)
339         {
340                 football_touch(this, toucher);
341                 return;
342         }
343         if(!this.cnt && IS_PLAYER(toucher) && !STAT(FROZEN, toucher) && !IS_DEAD(toucher) && (toucher != this.nb_dropper || time > this.nb_droptime + autocvar_g_nexball_delay_collect))
344         {
345                 if(toucher.health <= 0)
346                         return;
347                 LogNB("caught", toucher);
348                 GiveBall(toucher, this);
349         }
350         else if(toucher.solid == SOLID_BSP)
351         {
352                 _sound(this, CH_TRIGGER, this.noise, VOL_BASE, ATTEN_NORM);
353                 if(this.velocity && !this.cnt)
354                         this.nextthink = min(time + autocvar_g_nexball_delay_idle, this.teamtime);
355         }
356 }
357
358 void GoalTouch(entity this, entity toucher)
359 {
360         entity ball;
361         float isclient, pscore, otherteam;
362         string pname;
363
364         if(gameover) return;
365         if((this.spawnflags & GOAL_TOUCHPLAYER) && toucher.ballcarried)
366                 ball = toucher.ballcarried;
367         else
368                 ball = toucher;
369         if(ball.classname != "nexball_basketball")
370                 if(ball.classname != "nexball_football")
371                         return;
372         if((!ball.pusher && this.team != GOAL_OUT) || ball.cnt)
373                 return;
374         EXACTTRIGGER_TOUCH(this, toucher);
375
376
377         if(NumTeams(nb_teams) == 2)
378                 otherteam = OtherTeam(ball.team);
379         else
380                 otherteam = 0;
381
382         if((isclient = IS_CLIENT(ball.pusher)))
383                 pname = ball.pusher.netname;
384         else
385                 pname = "Someone (?)";
386
387         if(ball.team == this.team)               //owngoal (regular goals)
388         {
389                 LogNB("owngoal", ball.pusher);
390                 bprint("Boo! ", pname, "^7 scored a goal against their own team!\n");
391                 pscore = -1;
392         }
393         else if(this.team == GOAL_FAULT)
394         {
395                 LogNB("fault", ball.pusher);
396                 if(NumTeams(nb_teams) == 2)
397                         bprint(Team_ColoredFullName(otherteam), " gets a point due to ", pname, "^7's silliness.\n");
398                 else
399                         bprint(Team_ColoredFullName(ball.team), " loses a point due to ", pname, "^7's silliness.\n");
400                 pscore = -1;
401         }
402         else if(this.team == GOAL_OUT)
403         {
404                 LogNB("out", ball.pusher);
405                 if((this.spawnflags & GOAL_TOUCHPLAYER) && ball.owner)
406                         bprint(pname, "^7 went out of bounds.\n");
407                 else
408                         bprint("The ball was returned.\n");
409                 pscore = 0;
410         }
411         else                                                       //score
412         {
413                 LogNB(strcat("goal:", ftos(this.team)), ball.pusher);
414                 bprint("Goaaaaal! ", pname, "^7 scored a point for the ", Team_ColoredFullName(ball.team), ".\n");
415                 pscore = 1;
416         }
417
418         _sound(ball, CH_TRIGGER, this.noise, VOL_BASE, ATTEN_NONE);
419
420         if(ball.team && pscore)
421         {
422                 if(NumTeams(nb_teams) == 2 && pscore < 0)
423                         TeamScore_AddToTeam(otherteam, ST_NEXBALL_GOALS, -pscore);
424                 else
425                         TeamScore_AddToTeam(ball.team, ST_NEXBALL_GOALS, pscore);
426         }
427         if(isclient)
428         {
429                 if(pscore > 0)
430                         PlayerScore_Add(ball.pusher, SP_NEXBALL_GOALS, pscore);
431                 else if(pscore < 0)
432                         PlayerScore_Add(ball.pusher, SP_NEXBALL_FAULTS, -pscore);
433         }
434
435         if(ball.owner)  // Happens on spawnflag GOAL_TOUCHPLAYER
436                 DropBall(ball, ball.owner.origin, ball.owner.velocity);
437
438         WaypointSprite_Ping(ball.waypointsprite_attachedforcarrier);
439
440         ball.cnt = 1;
441         setthink(ball, ResetBall);
442         if(ball.classname == "nexball_basketball")
443                 settouch(ball, football_touch); // better than func_null: football control until the ball gets reset
444         ball.nextthink = time + autocvar_g_nexball_delay_goal * (this.team != GOAL_OUT);
445 }
446
447 //=======================//
448 //         team ents       //
449 //=======================//
450 spawnfunc(nexball_team)
451 {
452         if(!g_nexball)
453         {
454                 delete(this);
455                 return;
456         }
457         this.team = this.cnt + 1;
458 }
459
460 void nb_spawnteam(string teamname, float teamcolor)
461 {
462         LOG_TRACE("^2spawned team ", teamname, "\n");
463         entity e = new(nexball_team);
464         e.netname = teamname;
465         e.cnt = teamcolor;
466         e.team = e.cnt + 1;
467         //nb_teams += 1;
468 }
469
470 void nb_spawnteams()
471 {
472         bool t_red = false, t_blue = false, t_yellow = false, t_pink = false;
473         entity e;
474         for(e = NULL; (e = find(e, classname, "nexball_goal"));)
475         {
476                 switch(e.team)
477                 {
478                 case NUM_TEAM_1:
479                         if(!t_red)
480                         {
481                                 nb_spawnteam("Red", e.team-1)   ;
482                                 nb_teams |= BIT(0);
483                                 t_red = true;
484                         }
485                         break;
486                 case NUM_TEAM_2:
487                         if(!t_blue)
488                         {
489                                 nb_spawnteam("Blue", e.team-1)  ;
490                                 t_blue = true;
491                                 nb_teams |= BIT(1);
492                         }
493                         break;
494                 case NUM_TEAM_3:
495                         if(!t_yellow)
496                         {
497                                 nb_spawnteam("Yellow", e.team-1);
498                                 t_yellow = true;
499                                 nb_teams |= BIT(2);
500                         }
501                         break;
502                 case NUM_TEAM_4:
503                         if(!t_pink)
504                         {
505                                 nb_spawnteam("Pink", e.team-1)  ;
506                                 t_pink = true;
507                                 nb_teams |= BIT(3);
508                         }
509                         break;
510                 }
511         }
512 }
513
514 void nb_delayedinit(entity this)
515 {
516         if(find(NULL, classname, "nexball_team") == NULL)
517                 nb_spawnteams();
518         nb_ScoreRules(nb_teams);
519 }
520
521
522 //=======================//
523 //        spawnfuncs       //
524 //=======================//
525
526 void SpawnBall(entity this)
527 {
528         if(!g_nexball) { delete(this); return; }
529
530 //      balls += 4; // using the remaining bits to count balls will leave more than the max edict count, so it's fine
531
532         if(this.model == "")
533         {
534                 this.model = "models/nexball/ball.md3";
535                 this.scale = 1.3;
536         }
537
538         precache_model(this.model);
539         _setmodel(this, this.model);
540         setsize(this, BALL_MINS, BALL_MAXS);
541         ball_scale = this.scale;
542
543         relocate_nexball(this);
544         this.spawnorigin = this.origin;
545
546         this.effects = this.effects | EF_LOWPRECISION;
547
548         if(cvar(strcat("g_", this.classname, "_trail")))  //nexball_basketball :p
549         {
550                 this.glow_color = autocvar_g_nexball_trail_color;
551                 this.glow_trail = true;
552         }
553
554         set_movetype(this, MOVETYPE_FLY);
555
556         if(!autocvar_g_nexball_sound_bounce)
557                 this.noise = "";
558         else if(this.noise == "")
559                 this.noise = strzone(SND(NB_BOUNCE));
560         //bounce sound placeholder (FIXME)
561         if(this.noise1 == "")
562                 this.noise1 = strzone(SND(NB_DROP));
563         //ball drop sound placeholder (FIXME)
564         if(this.noise2 == "")
565                 this.noise2 = strzone(SND(NB_STEAL));
566         //stealing sound placeholder (FIXME)
567         if(this.noise) precache_sound(this.noise);
568         precache_sound(this.noise1);
569         precache_sound(this.noise2);
570
571         WaypointSprite_AttachCarrier(WP_NbBall, this, RADARICON_FLAGCARRIER); // the ball's team is not set yet, no rule update needed
572
573         this.reset = ball_restart;
574         setthink(this, InitBall);
575         this.nextthink = game_starttime + autocvar_g_nexball_delay_start;
576 }
577
578 spawnfunc(nexball_basketball)
579 {
580         nexball_mode |= NBM_BASKETBALL;
581         this.classname = "nexball_basketball";
582         if (!(balls & BALL_BASKET))
583         {
584                 /*
585                 CVTOV(g_nexball_basketball_effects_default);
586                 CVTOV(g_nexball_basketball_delay_hold);
587                 CVTOV(g_nexball_basketball_delay_hold_forteam);
588                 CVTOV(g_nexball_basketball_teamsteal);
589                 */
590                 autocvar_g_nexball_basketball_effects_default = autocvar_g_nexball_basketball_effects_default & BALL_EFFECTMASK;
591         }
592         if(!this.effects)
593                 this.effects = autocvar_g_nexball_basketball_effects_default;
594         this.solid = SOLID_TRIGGER;
595         this.pushable = autocvar_g_nexball_basketball_jumppad;
596         balls |= BALL_BASKET;
597         this.bouncefactor = autocvar_g_nexball_basketball_bouncefactor;
598         this.bouncestop = autocvar_g_nexball_basketball_bouncestop;
599         SpawnBall(this);
600 }
601
602 spawnfunc(nexball_football)
603 {
604         nexball_mode |= NBM_FOOTBALL;
605         this.classname = "nexball_football";
606         this.solid = SOLID_TRIGGER;
607         balls |= BALL_FOOT;
608         this.pushable = autocvar_g_nexball_football_jumppad;
609         this.bouncefactor = autocvar_g_nexball_football_bouncefactor;
610         this.bouncestop = autocvar_g_nexball_football_bouncestop;
611         SpawnBall(this);
612 }
613
614 bool nb_Goal_Customize(entity this, entity client)
615 {
616         entity e = WaypointSprite_getviewentity(client);
617         entity wp_owner = this.owner;
618         if(SAME_TEAM(e, wp_owner)) { return false; }
619
620         return true;
621 }
622
623 void SpawnGoal(entity this)
624 {
625         if(!g_nexball) { delete(this); return; }
626
627         EXACTTRIGGER_INIT;
628
629         if(this.team != GOAL_OUT && Team_TeamToNumber(this.team) != -1)
630         {
631                 entity wp = WaypointSprite_SpawnFixed(WP_NbGoal, (this.absmin + this.absmax) * 0.5, this, sprite, RADARICON_NONE);
632                 wp.colormod = ((this.team) ? Team_ColorRGB(this.team) : '1 0.5 0');
633                 setcefc(this.sprite, nb_Goal_Customize);
634         }
635
636         this.classname = "nexball_goal";
637         if(this.noise == "")
638                 this.noise = "ctf/respawn.wav";
639         precache_sound(this.noise);
640         settouch(this, GoalTouch);
641 }
642
643 spawnfunc(nexball_redgoal)
644 {
645         this.team = NUM_TEAM_1;
646         SpawnGoal(this);
647 }
648 spawnfunc(nexball_bluegoal)
649 {
650         this.team = NUM_TEAM_2;
651         SpawnGoal(this);
652 }
653 spawnfunc(nexball_yellowgoal)
654 {
655         this.team = NUM_TEAM_3;
656         SpawnGoal(this);
657 }
658 spawnfunc(nexball_pinkgoal)
659 {
660         this.team = NUM_TEAM_4;
661         SpawnGoal(this);
662 }
663
664 spawnfunc(nexball_fault)
665 {
666         this.team = GOAL_FAULT;
667         if(this.noise == "")
668                 this.noise = strzone(SND(TYPEHIT));
669         SpawnGoal(this);
670 }
671
672 spawnfunc(nexball_out)
673 {
674         this.team = GOAL_OUT;
675         if(this.noise == "")
676                 this.noise = strzone(SND(TYPEHIT));
677         SpawnGoal(this);
678 }
679
680 //
681 //Spawnfuncs preserved for compatibility
682 //
683
684 spawnfunc(ball)
685 {
686         spawnfunc_nexball_football(this);
687 }
688 spawnfunc(ball_football)
689 {
690         spawnfunc_nexball_football(this);
691 }
692 spawnfunc(ball_basketball)
693 {
694         spawnfunc_nexball_basketball(this);
695 }
696 // The "red goal" is defended by blue team. A ball in there counts as a point for red.
697 spawnfunc(ball_redgoal)
698 {
699         spawnfunc_nexball_bluegoal(this);       // I blame Revenant
700 }
701 spawnfunc(ball_bluegoal)
702 {
703         spawnfunc_nexball_redgoal(this);        // but he didn't mean to cause trouble :p
704 }
705 spawnfunc(ball_fault)
706 {
707         spawnfunc_nexball_fault(this);
708 }
709 spawnfunc(ball_bound)
710 {
711         spawnfunc_nexball_out(this);
712 }
713
714 //=======================//
715 //        Weapon code     //
716 //=======================//
717
718
719 void W_Nexball_Think(entity this)
720 {
721         //dprint("W_Nexball_Think\n");
722         //vector new_dir = steerlib_arrive(this.enemy.origin, 2500);
723         vector new_dir = normalize(this.enemy.origin + '0 0 50' - this.origin);
724         vector old_dir = normalize(this.velocity);
725         float _speed = vlen(this.velocity);
726         vector new_vel = normalize(old_dir + (new_dir * autocvar_g_nexball_safepass_turnrate)) * _speed;
727         //vector new_vel = (new_dir * autocvar_g_nexball_safepass_turnrate
728
729         this.velocity = new_vel;
730
731         this.nextthink = time;
732 }
733
734 void W_Nexball_Touch(entity this, entity toucher)
735 {
736         entity ball, attacker;
737         attacker = this.owner;
738         //this.think = func_null;
739         //this.enemy = NULL;
740
741         PROJECTILE_TOUCH(this, toucher);
742         if(attacker.team != toucher.team || autocvar_g_nexball_basketball_teamsteal)
743                 if((ball = toucher.ballcarried) && !STAT(FROZEN, toucher) && !IS_DEAD(toucher) && (IS_PLAYER(attacker)))
744                 {
745                         toucher.velocity = toucher.velocity + normalize(this.velocity) * toucher.damageforcescale * autocvar_g_balance_nexball_secondary_force;
746                         UNSET_ONGROUND(toucher);
747                         if(!attacker.ballcarried)
748                         {
749                                 LogNB("stole", attacker);
750                                 _sound(toucher, CH_TRIGGER, ball.noise2, VOL_BASE, ATTEN_NORM);
751
752                                 if(SAME_TEAM(attacker, toucher) && time > attacker.teamkill_complain)
753                                 {
754                                         attacker.teamkill_complain = time + 5;
755                                         attacker.teamkill_soundtime = time + 0.4;
756                                         attacker.teamkill_soundsource = toucher;
757                                 }
758
759                                 GiveBall(attacker, toucher.ballcarried);
760                         }
761                 }
762         delete(this);
763 }
764
765 void W_Nexball_Attack(entity actor, float t)
766 {
767         entity ball;
768         float mul, mi, ma;
769         if(!(ball = actor.ballcarried))
770                 return;
771
772         W_SetupShot(actor, false, 4, SND_NB_SHOOT1, CH_WEAPON_A, 0);
773         tracebox(w_shotorg, BALL_MINS, BALL_MAXS, w_shotorg, MOVE_WORLDONLY, NULL);
774         if(trace_startsolid)
775         {
776                 if(actor.metertime)
777                         actor.metertime = 0; // Shot failed, hide the power meter
778                 return;
779         }
780
781         //Calculate multiplier
782         if(t < 0)
783                 mul = 1;
784         else
785         {
786                 mi = autocvar_g_nexball_basketball_meter_minpower;
787                 ma = max(mi, autocvar_g_nexball_basketball_meter_maxpower); // avoid confusion
788                 //One triangle wave period with 1 as max
789                 mul = 2 * (t % g_nexball_meter_period) / g_nexball_meter_period;
790                 if(mul > 1)
791                         mul = 2 - mul;
792                 mul = mi + (ma - mi) * mul; // range from the minimal power to the maximal power
793         }
794
795         DropBall(ball, w_shotorg, W_CalculateProjectileVelocity(actor, actor.velocity, w_shotdir * autocvar_g_balance_nexball_primary_speed * mul, false));
796
797
798         //TODO: use the speed_up cvar too ??
799 }
800
801 vector trigger_push_calculatevelocity(vector org, entity tgt, float ht);
802
803 void W_Nexball_Attack2(entity actor)
804 {
805         if(actor.ballcarried.enemy)
806         {
807                 entity _ball = actor.ballcarried;
808                 W_SetupShot(actor, false, 4, SND_NB_SHOOT1, CH_WEAPON_A, 0);
809                 DropBall(_ball, w_shotorg, trigger_push_calculatevelocity(_ball.origin, _ball.enemy, 32));
810                 setthink(_ball, W_Nexball_Think);
811                 _ball.nextthink = time;
812                 return;
813         }
814
815         if(!autocvar_g_nexball_tackling)
816                 return;
817
818         W_SetupShot(actor, false, 2, SND_NB_SHOOT2, CH_WEAPON_A, 0);
819         entity missile = new(ballstealer);
820
821         missile.owner = actor;
822
823         set_movetype(missile, MOVETYPE_FLY);
824         PROJECTILE_MAKETRIGGER(missile);
825
826         //setmodel(missile, "models/elaser.mdl");  // precision set below
827         setsize(missile, '0 0 0', '0 0 0');
828         setorigin(missile, w_shotorg);
829
830         W_SetupProjVelocity_Basic(missile, autocvar_g_balance_nexball_secondary_speed, 0);
831         missile.angles = vectoangles(missile.velocity);
832         settouch(missile, W_Nexball_Touch);
833         setthink(missile, SUB_Remove);
834         missile.nextthink = time + autocvar_g_balance_nexball_secondary_lifetime; //FIXME: use a distance instead?
835
836         missile.effects = EF_BRIGHTFIELD | EF_LOWPRECISION;
837         missile.flags = FL_PROJECTILE;
838         IL_PUSH(g_projectiles, missile);
839
840         CSQCProjectile(missile, true, PROJECTILE_ELECTRO, true);
841 }
842
843 bool ball_customize(entity this, entity client)
844 {
845         if(!this.owner)
846         {
847                 this.effects &= ~EF_FLAME;
848                 this.scale = 1;
849                 setcefc(this, func_null);
850                 return true;
851         }
852
853         if(client == this.owner)
854         {
855                 this.scale = autocvar_g_nexball_viewmodel_scale;
856                 if(this.enemy)
857                         this.effects |= EF_FLAME;
858                 else
859                         this.effects &= ~EF_FLAME;
860         }
861         else
862         {
863                 this.effects &= ~EF_FLAME;
864                 this.scale = 1;
865         }
866
867         return true;
868 }
869
870 METHOD(BallStealer, wr_think, void(BallStealer thiswep, entity actor, .entity weaponentity, int fire))
871 {
872     TC(BallStealer, thiswep);
873     if(fire & 1)
874         if(weapon_prepareattack(thiswep, actor, weaponentity, false, autocvar_g_balance_nexball_primary_refire))
875             if(autocvar_g_nexball_basketball_meter)
876             {
877                 if(actor.ballcarried && !actor.metertime)
878                     actor.metertime = time;
879                 else
880                     weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, autocvar_g_balance_nexball_primary_animtime, w_ready);
881             }
882             else
883             {
884                 W_Nexball_Attack(actor, -1);
885                 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, autocvar_g_balance_nexball_primary_animtime, w_ready);
886             }
887     if(fire & 2)
888         if(weapon_prepareattack(thiswep, actor, weaponentity, true, autocvar_g_balance_nexball_secondary_refire))
889         {
890             W_Nexball_Attack2(actor);
891             weapon_thinkf(actor, weaponentity, WFRAME_FIRE2, autocvar_g_balance_nexball_secondary_animtime, w_ready);
892         }
893
894     if(!(fire & 1) && actor.metertime && actor.ballcarried)
895     {
896         W_Nexball_Attack(actor, time - actor.metertime);
897         // DropBall or stealing will set metertime back to 0
898         weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, autocvar_g_balance_nexball_primary_animtime, w_ready);
899     }
900 }
901
902 METHOD(BallStealer, wr_setup, void(BallStealer this, entity actor))
903 {
904     TC(BallStealer, this);
905     //weapon_setup(WEP_PORTO.m_id);
906 }
907
908 METHOD(BallStealer, wr_checkammo1, bool(BallStealer this, entity actor))
909 {
910     TC(BallStealer, this);
911     return true;
912 }
913
914 METHOD(BallStealer, wr_checkammo2, bool(BallStealer this, entity actor))
915 {
916     TC(BallStealer, this);
917     return true;
918 }
919
920 void nb_DropBall(entity player)
921 {
922         if(player.ballcarried && g_nexball)
923                 DropBall(player.ballcarried, player.origin, player.velocity);
924 }
925
926 MUTATOR_HOOKFUNCTION(nb, ClientDisconnect)
927 {
928         entity player = M_ARGV(0, entity);
929
930         nb_DropBall(player);
931 }
932
933 MUTATOR_HOOKFUNCTION(nb, PlayerDies)
934 {
935         entity frag_target = M_ARGV(2, entity);
936
937         nb_DropBall(frag_target);
938 }
939
940 MUTATOR_HOOKFUNCTION(nb, MakePlayerObserver)
941 {
942         entity player = M_ARGV(0, entity);
943
944         nb_DropBall(player);
945         return false;
946 }
947
948 MUTATOR_HOOKFUNCTION(nb, PlayerPreThink)
949 {
950         entity player = M_ARGV(0, entity);
951
952         makevectors(player.v_angle);
953         if(nexball_mode & NBM_BASKETBALL)
954         {
955                 if(player.ballcarried)
956                 {
957                         // 'view ball'
958                         player.ballcarried.velocity = player.velocity;
959                         setcefc(player.ballcarried, ball_customize);
960
961                         vector org = player.origin + player.view_ofs +
962                                           v_forward * autocvar_g_nexball_viewmodel_offset.x +
963                                           v_right * autocvar_g_nexball_viewmodel_offset.y +
964                                           v_up * autocvar_g_nexball_viewmodel_offset.z;
965                         setorigin(player.ballcarried, org);
966
967                         // 'safe passing'
968                         if(autocvar_g_nexball_safepass_maxdist)
969                         {
970                                 if(player.ballcarried.wait < time && player.ballcarried.enemy)
971                                 {
972                                         //centerprint(player, sprintf("Lost lock on %s", player.ballcarried.enemy.netname));
973                                         player.ballcarried.enemy = NULL;
974                                 }
975
976
977                                 //tracebox(player.origin + player.view_ofs, '-2 -2 -2', '2 2 2', player.origin + player.view_ofs + v_forward * autocvar_g_nexball_safepass_maxdist);
978                                 crosshair_trace(player);
979                                 if( trace_ent &&
980                                         IS_CLIENT(trace_ent) &&
981                                         !IS_DEAD(trace_ent) &&
982                                         trace_ent.team == player.team &&
983                                         vdist(trace_ent.origin - player.origin, <=, autocvar_g_nexball_safepass_maxdist) )
984                                 {
985
986                                         //if(player.ballcarried.enemy != trace_ent)
987                                         //      centerprint(player, sprintf("Locked to %s", trace_ent.netname));
988                                         player.ballcarried.enemy = trace_ent;
989                                         player.ballcarried.wait = time + autocvar_g_nexball_safepass_holdtime;
990
991
992                                 }
993                         }
994                 }
995                 else
996                 {
997                         .entity weaponentity = weaponentities[0]; // TODO
998                         if(player.(weaponentity).weapons)
999                         {
1000                                 player.weapons = player.(weaponentity).weapons;
1001                                 Weapon w = WEP_NEXBALL;
1002                                 w.wr_resetplayer(w, player);
1003                                 PS(player).m_switchweapon = player.(weaponentity).m_switchweapon;
1004                                 W_SwitchWeapon(player, PS(player).m_switchweapon);
1005
1006                                 player.(weaponentity).weapons = '0 0 0';
1007                         }
1008                 }
1009
1010         }
1011
1012         nexball_setstatus(player);
1013 }
1014
1015 MUTATOR_HOOKFUNCTION(nb, SpectateCopy)
1016 {
1017         entity spectatee = M_ARGV(0, entity);
1018         entity client = M_ARGV(1, entity);
1019
1020         client.metertime = spectatee.metertime;
1021 }
1022
1023 MUTATOR_HOOKFUNCTION(nb, PlayerSpawn)
1024 {
1025         entity player = M_ARGV(0, entity);
1026
1027         player.metertime = 0;
1028         .entity weaponentity = weaponentities[0];
1029         player.(weaponentity).weapons = '0 0 0';
1030
1031         if (nexball_mode & NBM_BASKETBALL)
1032                 player.weapons |= WEPSET(NEXBALL);
1033         else
1034                 player.weapons = '0 0 0';
1035
1036         return false;
1037 }
1038
1039 .float stat_sv_airspeedlimit_nonqw;
1040 .float stat_sv_maxspeed;
1041
1042 MUTATOR_HOOKFUNCTION(nb, PlayerPhysics)
1043 {
1044         entity player = M_ARGV(0, entity);
1045
1046         if(player.ballcarried)
1047         {
1048                 player.stat_sv_airspeedlimit_nonqw *= autocvar_g_nexball_basketball_carrier_highspeed;
1049                 player.stat_sv_maxspeed *= autocvar_g_nexball_basketball_carrier_highspeed;
1050         }
1051 }
1052
1053 MUTATOR_HOOKFUNCTION(nb, ForbidThrowCurrentWeapon)
1054 {
1055         entity player = M_ARGV(0, entity);
1056
1057         return PS(player).m_weapon == WEP_NEXBALL;
1058 }
1059
1060 MUTATOR_HOOKFUNCTION(nb, ForbidDropCurrentWeapon)
1061 {
1062         entity player = M_ARGV(0, entity);
1063
1064         return PS(player).m_weapon == WEP_MORTAR; // TODO: what is this for?
1065 }
1066
1067 MUTATOR_HOOKFUNCTION(nb, FilterItem)
1068 {
1069         entity item = M_ARGV(0, entity);
1070
1071         if(item.classname == "droppedweapon")
1072         if(item.weapon == WEP_NEXBALL.m_id)
1073                 return true;
1074
1075         return false;
1076 }
1077
1078 MUTATOR_HOOKFUNCTION(nb, ItemTouch)
1079 {
1080         entity item = M_ARGV(0, entity);
1081         entity toucher = M_ARGV(1, entity);
1082
1083         if(item.weapon && toucher.ballcarried)
1084                 return MUT_ITEMTOUCH_RETURN; // no new weapons for you, mister!
1085
1086         return MUT_ITEMTOUCH_CONTINUE;
1087 }
1088
1089 MUTATOR_HOOKFUNCTION(nb, GetTeamCount)
1090 {
1091         M_ARGV(1, string) = "nexball_team";
1092         return true;
1093 }
1094
1095 MUTATOR_HOOKFUNCTION(nb, WantWeapon)
1096 {
1097         M_ARGV(1, float) = 0; // weapon is set a few lines later, apparently
1098         return true;
1099 }
1100
1101 MUTATOR_HOOKFUNCTION(nb, DropSpecialItems)
1102 {
1103         entity frag_target = M_ARGV(0, entity);
1104
1105         if(frag_target.ballcarried)
1106                 DropBall(frag_target.ballcarried, frag_target.origin, frag_target.velocity);
1107
1108         return false;
1109 }
1110
1111 MUTATOR_HOOKFUNCTION(nb, SendWaypoint)
1112 {
1113         M_ARGV(2, int) &= ~0x80;
1114 }
1115
1116 REGISTER_MUTATOR(nb, g_nexball)
1117 {
1118         MUTATOR_ONADD
1119         {
1120                 g_nexball_meter_period = autocvar_g_nexball_meter_period;
1121                 if(g_nexball_meter_period <= 0)
1122                         g_nexball_meter_period = 2; // avoid division by zero etc. due to silly users
1123                 g_nexball_meter_period = rint(g_nexball_meter_period * 32) / 32; //Round to 1/32ths to send as a byte multiplied by 32
1124
1125                 // General settings
1126                 /*
1127                 CVTOV(g_nexball_football_boost_forward);   //100
1128                 CVTOV(g_nexball_football_boost_up);             //200
1129                 CVTOV(g_nexball_delay_idle);                       //10
1130                 CVTOV(g_nexball_football_physics);               //0
1131                 */
1132                 radar_showennemies = autocvar_g_nexball_radar_showallplayers;
1133
1134                 InitializeEntity(NULL, nb_delayedinit, INITPRIO_GAMETYPE);
1135                 WEP_NEXBALL.spawnflags &= ~WEP_FLAG_MUTATORBLOCKED;
1136
1137                 ActivateTeamplay();
1138                 SetLimits(autocvar_g_nexball_goallimit, autocvar_g_nexball_goalleadlimit, autocvar_timelimit_override, -1);
1139                 have_team_spawns = -1; // request team spawns
1140         }
1141
1142         MUTATOR_ONROLLBACK_OR_REMOVE
1143         {
1144                 WEP_NEXBALL.spawnflags |= WEP_FLAG_MUTATORBLOCKED;
1145                 // we actually cannot roll back nb_delayedinit here
1146                 // BUT: we don't need to! If this gets called, adding always
1147                 // succeeds.
1148         }
1149
1150         MUTATOR_ONREMOVE
1151         {
1152                 LOG_INFO("This is a game type and it cannot be removed at runtime.");
1153                 return -1;
1154         }
1155
1156         return 0;
1157 }
1158
1159 #endif
1160 #endif