5 .float metertime = _STAT(NB_METERSTART);
7 int autocvar_g_nexball_goalleadlimit;
8 #define autocvar_g_nexball_goallimit cvar("g_nexball_goallimit")
10 float autocvar_g_nexball_basketball_bouncefactor;
11 float autocvar_g_nexball_basketball_bouncestop;
12 float autocvar_g_nexball_basketball_carrier_highspeed;
13 bool autocvar_g_nexball_basketball_meter;
14 float autocvar_g_nexball_basketball_meter_maxpower;
15 float autocvar_g_nexball_basketball_meter_minpower;
16 float autocvar_g_nexball_delay_collect;
17 float autocvar_g_nexball_delay_goal;
18 float autocvar_g_nexball_delay_start;
19 float autocvar_g_nexball_football_bouncefactor;
20 float autocvar_g_nexball_football_bouncestop;
21 bool autocvar_g_nexball_radar_showallplayers;
22 bool autocvar_g_nexball_sound_bounce;
23 int autocvar_g_nexball_trail_color;
25 float autocvar_g_nexball_safepass_turnrate;
26 float autocvar_g_nexball_safepass_maxdist;
27 float autocvar_g_nexball_safepass_holdtime;
28 float autocvar_g_nexball_viewmodel_scale;
29 float autocvar_g_nexball_tackling;
30 vector autocvar_g_nexball_viewmodel_offset;
32 float autocvar_g_balance_nexball_primary_animtime;
33 float autocvar_g_balance_nexball_primary_refire;
34 float autocvar_g_balance_nexball_primary_speed;
35 float autocvar_g_balance_nexball_secondary_animtime;
36 float autocvar_g_balance_nexball_secondary_force;
37 float autocvar_g_balance_nexball_secondary_lifetime;
38 float autocvar_g_balance_nexball_secondary_refire;
39 float autocvar_g_balance_nexball_secondary_speed;
41 void basketball_touch();
42 void football_touch();
44 const int NBM_NONE = 0;
45 const int NBM_FOOTBALL = 2;
46 const int NBM_BASKETBALL = 4;
49 float OtherTeam(float t) //works only if there are two teams on the map!
52 e = find(world, classname, "nexball_team");
54 e = find(e, classname, "nexball_team");
58 const float ST_NEXBALL_GOALS = 1;
59 const float SP_NEXBALL_GOALS = 4;
60 const float SP_NEXBALL_FAULTS = 5;
61 void nb_ScoreRules(float teams)
63 ScoreRules_basics(teams, 0, 0, true);
64 ScoreInfo_SetLabel_TeamScore( ST_NEXBALL_GOALS, "goals", SFL_SORT_PRIO_PRIMARY);
65 ScoreInfo_SetLabel_PlayerScore( SP_NEXBALL_GOALS, "goals", SFL_SORT_PRIO_PRIMARY);
66 ScoreInfo_SetLabel_PlayerScore(SP_NEXBALL_FAULTS, "faults", SFL_SORT_PRIO_SECONDARY | SFL_LOWER_IS_BETTER);
67 ScoreRules_basics_end();
70 void LogNB(string mode, entity actor)
73 if(!autocvar_sv_eventlog)
75 s = strcat(":nexball:", mode);
77 s = strcat(s, ":", ftos(actor.playerid));
81 void ball_restart(entity this)
84 DropBall(this, this.owner.origin, '0 0 0');
88 void nexball_setstatus()
90 self.items &= ~IT_KEY1;
93 if(self.ballcarried.teamtime && (self.ballcarried.teamtime < time))
95 bprint("The ", Team_ColoredFullName(self.team), " held the ball for too long.\n");
96 setself(self.ballcarried);
97 DropBall(self, self.owner.origin, '0 0 0');
102 self.items |= IT_KEY1;
106 void relocate_nexball()
108 tracebox(self.origin, BALL_MINS, BALL_MAXS, self.origin, true, self);
113 if(!move_out_of_solid(self))
114 objerror("could not get out of solid at all!");
115 LOG_INFO("^1NOTE: this map needs FIXING. ", self.classname, " at ", vtos(o - '0 0 1'));
116 LOG_INFO(" needs to be moved out of solid, e.g. by '", ftos(self.origin.x - o.x));
117 LOG_INFO(" ", ftos(self.origin.y - o.y));
118 LOG_INFO(" ", ftos(self.origin.z - o.z), "'\n");
127 DropBall(self, ownr.origin, ownr.velocity);
128 makevectors(ownr.v_angle.y * '0 1 0');
129 ownr.velocity += ('0 0 0.75' - v_forward) * 1000;
130 UNSET_ONGROUND(ownr);
133 void GiveBall(entity plyr, entity ball)
135 .entity weaponentity = weaponentities[0]; // TODO: find ballstealer
136 entity ownr = ball.owner;
139 ownr.effects &= ~autocvar_g_nexball_basketball_effects_default;
140 ownr.ballcarried = world;
144 ownr.(weaponentity).state = WS_READY;
146 WaypointSprite_Kill(ownr.waypointsprite_attachedforcarrier);
150 WaypointSprite_Kill(ball.waypointsprite_attachedforcarrier);
153 //setattachment(ball, plyr, "");
154 setorigin(ball, plyr.origin + plyr.view_ofs);
156 if(ball.team != plyr.team)
157 ball.teamtime = time + autocvar_g_nexball_basketball_delay_hold_forteam;
159 ball.owner = ball.pusher = plyr; //"owner" is set to the player carrying, "pusher" to the last player who touched it
160 ball.team = plyr.team;
161 plyr.ballcarried = ball;
162 ball.nb_dropper = plyr;
164 plyr.effects |= autocvar_g_nexball_basketball_effects_default;
165 ball.effects &= ~autocvar_g_nexball_basketball_effects_default;
167 ball.velocity = '0 0 0';
168 ball.movetype = MOVETYPE_NONE;
169 ball.touch = func_null;
170 ball.effects |= EF_NOSHADOW;
171 ball.scale = 1; // scale down.
173 WaypointSprite_AttachCarrier(WP_NbBall, plyr, RADARICON_FLAGCARRIER);
174 WaypointSprite_UpdateRule(plyr.waypointsprite_attachedforcarrier, 0, SPRITERULE_DEFAULT);
176 if(autocvar_g_nexball_basketball_delay_hold)
178 ball.think = DropOwner;
179 ball.nextthink = time + autocvar_g_nexball_basketball_delay_hold;
182 plyr.(weaponentity).weapons = plyr.weapons;
183 plyr.(weaponentity).m_switchweapon = PS(plyr).m_weapon;
184 plyr.weapons = WEPSET(NEXBALL);
186 Weapon w = WEP_NEXBALL;
188 PS(plyr).m_switchweapon = WEP_NEXBALL;
189 W_SwitchWeapon(WEP_NEXBALL);
193 void DropBall(entity ball, vector org, vector vel)
195 ball.effects |= autocvar_g_nexball_basketball_effects_default;
196 ball.effects &= ~EF_NOSHADOW;
197 ball.owner.effects &= ~autocvar_g_nexball_basketball_effects_default;
199 setattachment(ball, world, "");
200 setorigin(ball, org);
201 ball.movetype = MOVETYPE_BOUNCE;
202 UNSET_ONGROUND(ball);
203 ball.scale = ball_scale;
205 ball.nb_droptime = time;
206 ball.touch = basketball_touch;
207 ball.think = ResetBall;
208 ball.nextthink = min(time + autocvar_g_nexball_delay_idle, ball.teamtime);
210 if(ball.owner.metertime)
212 ball.owner.metertime = 0;
213 .entity weaponentity = weaponentities[0]; // TODO: find ballstealer
214 ball.owner.(weaponentity).state = WS_READY;
217 WaypointSprite_Kill(ball.owner.waypointsprite_attachedforcarrier);
218 WaypointSprite_Spawn(WP_NbBall, 0, 0, ball, '0 0 64', world, ball.team, ball, waypointsprite_attachedforcarrier, false, RADARICON_FLAGCARRIER); // no health bar please
219 WaypointSprite_UpdateRule(ball.waypointsprite_attachedforcarrier, 0, SPRITERULE_DEFAULT);
221 ball.owner.ballcarried = world;
228 UNSET_ONGROUND(self);
229 self.movetype = MOVETYPE_BOUNCE;
230 if(self.classname == "nexball_basketball")
231 self.touch = basketball_touch;
232 else if(self.classname == "nexball_football")
233 self.touch = football_touch;
235 self.think = ResetBall;
236 self.nextthink = time + autocvar_g_nexball_delay_idle + 3;
240 _sound(self, CH_TRIGGER, self.noise1, VOL_BASE, ATTEN_NORM);
241 WaypointSprite_Ping(self.waypointsprite_attachedforcarrier);
242 LogNB("init", world);
247 if(self.cnt < 2) // step 1
249 if(time == self.teamtime)
250 bprint("The ", Team_ColoredFullName(self.team), " held the ball for too long.\n");
252 self.touch = func_null;
253 self.movetype = MOVETYPE_NOCLIP;
254 self.velocity = '0 0 0'; // just in case?
256 LogNB("resetidle", world);
258 self.nextthink = time;
260 else if(self.cnt < 4) // step 2 and 3
262 // dprint("Step ", ftos(self.cnt), ": Calculated velocity: ", vtos(self.spawnorigin - self.origin), ", time: ", ftos(time), "\n");
263 self.velocity = (self.spawnorigin - self.origin) * (self.cnt - 1); // 1 or 0.5 second movement
264 self.nextthink = time + 0.5;
269 // dprint("Step 4: time: ", ftos(time), "\n");
270 if(vlen(self.origin - self.spawnorigin) > 10) // should not happen anymore
271 LOG_TRACE("The ball moved too far away from its spawn origin.\nOffset: ",
272 vtos(self.origin - self.spawnorigin), " Velocity: ", vtos(self.velocity), "\n");
273 self.velocity = '0 0 0';
274 setorigin(self, self.spawnorigin); // make sure it's positioned correctly anyway
275 self.movetype = MOVETYPE_NONE;
276 self.think = InitBall;
277 self.nextthink = max(time, game_starttime) + autocvar_g_nexball_delay_start;
281 void football_touch()
283 if(other.solid == SOLID_BSP)
285 if(time > self.lastground + 0.1)
287 _sound(self, CH_TRIGGER, self.noise, VOL_BASE, ATTEN_NORM);
288 self.lastground = time;
290 if(vlen(self.velocity) && !self.cnt)
291 self.nextthink = time + autocvar_g_nexball_delay_idle;
294 if (!IS_PLAYER(other))
299 self.nextthink = time + autocvar_g_nexball_delay_idle;
302 self.team = other.team;
304 if(autocvar_g_nexball_football_physics == -1) // MrBougo try 1, before decompiling Rev's original
306 if(vlen(other.velocity))
307 self.velocity = other.velocity * 1.5 + '0 0 1' * autocvar_g_nexball_football_boost_up;
309 else if(autocvar_g_nexball_football_physics == 1) // MrBougo's modded Rev style: partially independant of the height of the aiming point
311 makevectors(other.v_angle);
312 self.velocity = other.velocity + v_forward * autocvar_g_nexball_football_boost_forward + '0 0 1' * autocvar_g_nexball_football_boost_up;
314 else if(autocvar_g_nexball_football_physics == 2) // 2nd mod try: totally independant. Really playable!
316 makevectors(other.v_angle.y * '0 1 0');
317 self.velocity = other.velocity + v_forward * autocvar_g_nexball_football_boost_forward + v_up * autocvar_g_nexball_football_boost_up;
319 else // Revenant's original style (from the original mod's disassembly, acknowledged by Revenant)
321 makevectors(other.v_angle);
322 self.velocity = other.velocity + v_forward * autocvar_g_nexball_football_boost_forward + v_up * autocvar_g_nexball_football_boost_up;
324 self.avelocity = -250 * v_forward; // maybe there is a way to make it look better?
327 void basketball_touch()
329 if(other.ballcarried)
334 if(!self.cnt && IS_PLAYER(other) && !STAT(FROZEN, other) && !IS_DEAD(other) && (other != self.nb_dropper || time > self.nb_droptime + autocvar_g_nexball_delay_collect))
336 if(other.health <= 0)
338 LogNB("caught", other);
339 GiveBall(other, self);
341 else if(other.solid == SOLID_BSP)
343 _sound(self, CH_TRIGGER, self.noise, VOL_BASE, ATTEN_NORM);
344 if(vlen(self.velocity) && !self.cnt)
345 self.nextthink = min(time + autocvar_g_nexball_delay_idle, self.teamtime);
352 float isclient, pscore, otherteam;
356 if((self.spawnflags & GOAL_TOUCHPLAYER) && other.ballcarried)
357 ball = other.ballcarried;
360 if(ball.classname != "nexball_basketball")
361 if(ball.classname != "nexball_football")
363 if((!ball.pusher && self.team != GOAL_OUT) || ball.cnt)
369 otherteam = OtherTeam(ball.team);
373 if((isclient = IS_CLIENT(ball.pusher)))
374 pname = ball.pusher.netname;
376 pname = "Someone (?)";
378 if(ball.team == self.team) //owngoal (regular goals)
380 LogNB("owngoal", ball.pusher);
381 bprint("Boo! ", pname, "^7 scored a goal against their own team!\n");
384 else if(self.team == GOAL_FAULT)
386 LogNB("fault", ball.pusher);
388 bprint(Team_ColoredFullName(otherteam), " gets a point due to ", pname, "^7's silliness.\n");
390 bprint(Team_ColoredFullName(ball.team), " loses a point due to ", pname, "^7's silliness.\n");
393 else if(self.team == GOAL_OUT)
395 LogNB("out", ball.pusher);
396 if((self.spawnflags & GOAL_TOUCHPLAYER) && ball.owner)
397 bprint(pname, "^7 went out of bounds.\n");
399 bprint("The ball was returned.\n");
404 LogNB(strcat("goal:", ftos(self.team)), ball.pusher);
405 bprint("Goaaaaal! ", pname, "^7 scored a point for the ", Team_ColoredFullName(ball.team), ".\n");
409 _sound(ball, CH_TRIGGER, self.noise, VOL_BASE, ATTEN_NONE);
411 if(ball.team && pscore)
413 if(nb_teams == 2 && pscore < 0)
414 TeamScore_AddToTeam(otherteam, ST_NEXBALL_GOALS, -pscore);
416 TeamScore_AddToTeam(ball.team, ST_NEXBALL_GOALS, pscore);
421 PlayerScore_Add(ball.pusher, SP_NEXBALL_GOALS, pscore);
423 PlayerScore_Add(ball.pusher, SP_NEXBALL_FAULTS, -pscore);
426 if(ball.owner) // Happens on spawnflag GOAL_TOUCHPLAYER
427 DropBall(ball, ball.owner.origin, ball.owner.velocity);
429 WaypointSprite_Ping(ball.waypointsprite_attachedforcarrier);
432 ball.think = ResetBall;
433 if(ball.classname == "nexball_basketball")
434 ball.touch = football_touch; // better than func_null: football control until the ball gets reset
435 ball.nextthink = time + autocvar_g_nexball_delay_goal * (self.team != GOAL_OUT);
438 //=======================//
440 //=======================//
441 spawnfunc(nexball_team)
448 self.team = self.cnt + 1;
451 void nb_spawnteam(string teamname, float teamcolor)
453 LOG_TRACE("^2spawned team ", teamname, "\n");
454 entity e = new(nexball_team);
455 e.netname = teamname;
463 bool t_red = false, t_blue = false, t_yellow = false, t_pink = false;
465 for(e = world; (e = find(e, classname, "nexball_goal"));)
472 nb_spawnteam("Red", e.team-1) ;
479 nb_spawnteam("Blue", e.team-1) ;
486 nb_spawnteam("Yellow", e.team-1);
493 nb_spawnteam("Pink", e.team-1) ;
501 void nb_delayedinit()
503 if(find(world, classname, "nexball_team") == world)
505 nb_ScoreRules(nb_teams);
509 //=======================//
511 //=======================//
515 if(!g_nexball) { remove(self); return; }
517 // balls += 4; // using the remaining bits to count balls will leave more than the max edict count, so it's fine
521 self.model = "models/nexball/ball.md3";
525 precache_model(self.model);
526 _setmodel(self, self.model);
527 setsize(self, BALL_MINS, BALL_MAXS);
528 ball_scale = self.scale;
531 self.spawnorigin = self.origin;
533 self.effects = self.effects | EF_LOWPRECISION;
535 if(cvar(strcat("g_", self.classname, "_trail"))) //nexball_basketball :p
537 self.glow_color = autocvar_g_nexball_trail_color;
538 self.glow_trail = true;
541 self.movetype = MOVETYPE_FLY;
543 if(!autocvar_g_nexball_sound_bounce)
545 else if(self.noise == "")
546 self.noise = strzone(SND(NB_BOUNCE));
547 //bounce sound placeholder (FIXME)
548 if(self.noise1 == "")
549 self.noise1 = strzone(SND(NB_DROP));
550 //ball drop sound placeholder (FIXME)
551 if(self.noise2 == "")
552 self.noise2 = strzone(SND(NB_STEAL));
553 //stealing sound placeholder (FIXME)
554 if(self.noise) precache_sound(self.noise);
555 precache_sound(self.noise1);
556 precache_sound(self.noise2);
558 WaypointSprite_AttachCarrier(WP_NbBall, self, RADARICON_FLAGCARRIER); // the ball's team is not set yet, no rule update needed
560 self.reset = ball_restart;
561 self.think = InitBall;
562 self.nextthink = game_starttime + autocvar_g_nexball_delay_start;
565 spawnfunc(nexball_basketball)
567 nexball_mode |= NBM_BASKETBALL;
568 self.classname = "nexball_basketball";
569 if (!(balls & BALL_BASKET))
572 CVTOV(g_nexball_basketball_effects_default);
573 CVTOV(g_nexball_basketball_delay_hold);
574 CVTOV(g_nexball_basketball_delay_hold_forteam);
575 CVTOV(g_nexball_basketball_teamsteal);
577 autocvar_g_nexball_basketball_effects_default = autocvar_g_nexball_basketball_effects_default & BALL_EFFECTMASK;
580 self.effects = autocvar_g_nexball_basketball_effects_default;
581 self.solid = SOLID_TRIGGER;
582 balls |= BALL_BASKET;
583 self.bouncefactor = autocvar_g_nexball_basketball_bouncefactor;
584 self.bouncestop = autocvar_g_nexball_basketball_bouncestop;
588 spawnfunc(nexball_football)
590 nexball_mode |= NBM_FOOTBALL;
591 self.classname = "nexball_football";
592 self.solid = SOLID_TRIGGER;
594 self.bouncefactor = autocvar_g_nexball_football_bouncefactor;
595 self.bouncestop = autocvar_g_nexball_football_bouncestop;
599 float nb_Goal_Customize()
602 e = WaypointSprite_getviewentity(other);
603 wp_owner = self.owner;
604 if(SAME_TEAM(e, wp_owner)) { return false; }
611 if(!g_nexball) { remove(self); return; }
615 if(self.team != GOAL_OUT && Team_TeamToNumber(self.team) != -1)
617 entity wp = WaypointSprite_SpawnFixed(WP_NbGoal, (self.absmin + self.absmax) * 0.5, self, sprite, RADARICON_NONE);
618 wp.colormod = ((self.team) ? Team_ColorRGB(self.team) : '1 0.5 0');
619 self.sprite.customizeentityforclient = nb_Goal_Customize;
622 self.classname = "nexball_goal";
624 self.noise = "ctf/respawn.wav";
625 precache_sound(self.noise);
626 self.touch = GoalTouch;
629 spawnfunc(nexball_redgoal)
631 self.team = NUM_TEAM_1;
634 spawnfunc(nexball_bluegoal)
636 self.team = NUM_TEAM_2;
639 spawnfunc(nexball_yellowgoal)
641 self.team = NUM_TEAM_3;
644 spawnfunc(nexball_pinkgoal)
646 self.team = NUM_TEAM_4;
650 spawnfunc(nexball_fault)
652 self.team = GOAL_FAULT;
654 self.noise = strzone(SND(TYPEHIT));
658 spawnfunc(nexball_out)
660 self.team = GOAL_OUT;
662 self.noise = strzone(SND(TYPEHIT));
667 //Spawnfuncs preserved for compatibility
672 spawnfunc_nexball_football(this);
674 spawnfunc(ball_football)
676 spawnfunc_nexball_football(this);
678 spawnfunc(ball_basketball)
680 spawnfunc_nexball_basketball(this);
682 // The "red goal" is defended by blue team. A ball in there counts as a point for red.
683 spawnfunc(ball_redgoal)
685 spawnfunc_nexball_bluegoal(this); // I blame Revenant
687 spawnfunc(ball_bluegoal)
689 spawnfunc_nexball_redgoal(this); // but he didn't mean to cause trouble :p
691 spawnfunc(ball_fault)
693 spawnfunc_nexball_fault(this);
695 spawnfunc(ball_bound)
697 spawnfunc_nexball_out(this);
700 //=======================//
702 //=======================//
705 void W_Nexball_Think()
707 //dprint("W_Nexball_Think\n");
708 //vector new_dir = steerlib_arrive(self.enemy.origin, 2500);
709 vector new_dir = normalize(self.enemy.origin + '0 0 50' - self.origin);
710 vector old_dir = normalize(self.velocity);
711 float _speed = vlen(self.velocity);
712 vector new_vel = normalize(old_dir + (new_dir * autocvar_g_nexball_safepass_turnrate)) * _speed;
713 //vector new_vel = (new_dir * autocvar_g_nexball_safepass_turnrate
715 self.velocity = new_vel;
717 self.nextthink = time;
720 void W_Nexball_Touch()
722 entity ball, attacker;
723 attacker = self.owner;
724 //self.think = func_null;
725 //self.enemy = world;
728 if(attacker.team != other.team || autocvar_g_nexball_basketball_teamsteal)
729 if((ball = other.ballcarried) && !STAT(FROZEN, other) && !IS_DEAD(other) && (IS_PLAYER(attacker)))
731 other.velocity = other.velocity + normalize(self.velocity) * other.damageforcescale * autocvar_g_balance_nexball_secondary_force;
732 UNSET_ONGROUND(other);
733 if(!attacker.ballcarried)
735 LogNB("stole", attacker);
736 _sound(other, CH_TRIGGER, ball.noise2, VOL_BASE, ATTEN_NORM);
738 if(SAME_TEAM(attacker, other) && time > attacker.teamkill_complain)
740 attacker.teamkill_complain = time + 5;
741 attacker.teamkill_soundtime = time + 0.4;
742 attacker.teamkill_soundsource = other;
745 GiveBall(attacker, other.ballcarried);
751 void W_Nexball_Attack(float t)
755 if(!(ball = self.ballcarried))
758 W_SetupShot(self, false, 4, SND(NB_SHOOT1), CH_WEAPON_A, 0);
759 tracebox(w_shotorg, BALL_MINS, BALL_MAXS, w_shotorg, MOVE_WORLDONLY, world);
763 self.metertime = 0; // Shot failed, hide the power meter
767 //Calculate multiplier
772 mi = autocvar_g_nexball_basketball_meter_minpower;
773 ma = max(mi, autocvar_g_nexball_basketball_meter_maxpower); // avoid confusion
774 //One triangle wave period with 1 as max
775 mul = 2 * (t % g_nexball_meter_period) / g_nexball_meter_period;
778 mul = mi + (ma - mi) * mul; // range from the minimal power to the maximal power
781 DropBall(ball, w_shotorg, W_CalculateProjectileVelocity(self.velocity, w_shotdir * autocvar_g_balance_nexball_primary_speed * mul, false));
784 //TODO: use the speed_up cvar too ??
787 vector trigger_push_calculatevelocity(vector org, entity tgt, float ht);
789 void W_Nexball_Attack2()
791 if(self.ballcarried.enemy)
793 entity _ball = self.ballcarried;
794 W_SetupShot(self, false, 4, SND(NB_SHOOT1), CH_WEAPON_A, 0);
795 DropBall(_ball, w_shotorg, trigger_push_calculatevelocity(_ball.origin, _ball.enemy, 32));
796 _ball.think = W_Nexball_Think;
797 _ball.nextthink = time;
801 if(!autocvar_g_nexball_tackling)
804 W_SetupShot(self, false, 2, SND(NB_SHOOT2), CH_WEAPON_A, 0);
805 entity missile = new(ballstealer);
807 missile.owner = self;
809 missile.movetype = MOVETYPE_FLY;
810 PROJECTILE_MAKETRIGGER(missile);
812 //setmodel(missile, "models/elaser.mdl"); // precision set below
813 setsize(missile, '0 0 0', '0 0 0');
814 setorigin(missile, w_shotorg);
816 W_SetupProjVelocity_Basic(missile, autocvar_g_balance_nexball_secondary_speed, 0);
817 missile.angles = vectoangles(missile.velocity);
818 missile.touch = W_Nexball_Touch;
819 missile.think = SUB_Remove_self;
820 missile.nextthink = time + autocvar_g_balance_nexball_secondary_lifetime; //FIXME: use a distance instead?
822 missile.effects = EF_BRIGHTFIELD | EF_LOWPRECISION;
823 missile.flags = FL_PROJECTILE;
825 CSQCProjectile(missile, true, PROJECTILE_ELECTRO, true);
828 float ball_customize()
832 self.effects &= ~EF_FLAME;
834 self.customizeentityforclient = func_null;
838 if(other == self.owner)
840 self.scale = autocvar_g_nexball_viewmodel_scale;
842 self.effects |= EF_FLAME;
844 self.effects &= ~EF_FLAME;
848 self.effects &= ~EF_FLAME;
855 METHOD(BallStealer, wr_think, void(BallStealer thiswep, entity actor, .entity weaponentity, int fire))
858 if(weapon_prepareattack(thiswep, actor, weaponentity, false, autocvar_g_balance_nexball_primary_refire))
859 if(autocvar_g_nexball_basketball_meter)
861 if(self.ballcarried && !self.metertime)
862 self.metertime = time;
864 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, autocvar_g_balance_nexball_primary_animtime, w_ready);
868 W_Nexball_Attack(-1);
869 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, autocvar_g_balance_nexball_primary_animtime, w_ready);
872 if(weapon_prepareattack(thiswep, actor, weaponentity, true, autocvar_g_balance_nexball_secondary_refire))
875 weapon_thinkf(actor, weaponentity, WFRAME_FIRE2, autocvar_g_balance_nexball_secondary_animtime, w_ready);
878 if(!(fire & 1) && self.metertime && self.ballcarried)
880 W_Nexball_Attack(time - self.metertime);
881 // DropBall or stealing will set metertime back to 0
882 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, autocvar_g_balance_nexball_primary_animtime, w_ready);
885 METHOD(BallStealer, wr_setup, void(BallStealer thiswep))
887 //weapon_setup(WEP_PORTO.m_id);
889 METHOD(BallStealer, wr_checkammo1, bool(BallStealer thiswep))
893 METHOD(BallStealer, wr_checkammo2, bool(BallStealer thiswep))
898 void nb_DropBall(entity player)
900 if(player.ballcarried && g_nexball)
901 DropBall(player.ballcarried, player.origin, player.velocity);
904 MUTATOR_HOOKFUNCTION(nb, ClientDisconnect)
910 MUTATOR_HOOKFUNCTION(nb, PlayerDies)
912 nb_DropBall(frag_target);
916 MUTATOR_HOOKFUNCTION(nb, MakePlayerObserver)
922 MUTATOR_HOOKFUNCTION(nb, PlayerPreThink)
924 makevectors(self.v_angle);
925 if(nexball_mode & NBM_BASKETBALL)
930 self.ballcarried.velocity = self.velocity;
931 self.ballcarried.customizeentityforclient = ball_customize;
933 vector org = self.origin + self.view_ofs +
934 v_forward * autocvar_g_nexball_viewmodel_offset.x +
935 v_right * autocvar_g_nexball_viewmodel_offset.y +
936 v_up * autocvar_g_nexball_viewmodel_offset.z;
937 setorigin(self.ballcarried, org);
940 if(autocvar_g_nexball_safepass_maxdist)
942 if(self.ballcarried.wait < time && self.ballcarried.enemy)
944 //centerprint(self, sprintf("Lost lock on %s", self.ballcarried.enemy.netname));
945 self.ballcarried.enemy = world;
949 //tracebox(self.origin + self.view_ofs, '-2 -2 -2', '2 2 2', self.origin + self.view_ofs + v_forward * autocvar_g_nexball_safepass_maxdist);
950 crosshair_trace(self);
952 IS_CLIENT(trace_ent) &&
953 !IS_DEAD(trace_ent) &&
954 trace_ent.team == self.team &&
955 vlen(trace_ent.origin - self.origin) <= autocvar_g_nexball_safepass_maxdist )
958 //if(self.ballcarried.enemy != trace_ent)
959 // centerprint(self, sprintf("Locked to %s", trace_ent.netname));
960 self.ballcarried.enemy = trace_ent;
961 self.ballcarried.wait = time + autocvar_g_nexball_safepass_holdtime;
969 .entity weaponentity = weaponentities[0]; // TODO
970 if(self.(weaponentity).weapons)
972 self.weapons = self.(weaponentity).weapons;
973 Weapon w = WEP_NEXBALL;
975 PS(self).m_switchweapon = self.(weaponentity).m_switchweapon;
976 W_SwitchWeapon(PS(self).m_switchweapon);
978 self.(weaponentity).weapons = '0 0 0';
989 MUTATOR_HOOKFUNCTION(nb, SpectateCopy)
992 this.metertime = other.metertime;
995 MUTATOR_HOOKFUNCTION(nb, PlayerSpawn)
999 .entity weaponentity = weaponentities[0];
1000 this.(weaponentity).weapons = '0 0 0';
1002 if (nexball_mode & NBM_BASKETBALL)
1003 this.weapons |= WEPSET(NEXBALL);
1005 this.weapons = '0 0 0';
1010 .float stat_sv_airspeedlimit_nonqw;
1011 .float stat_sv_maxspeed;
1013 MUTATOR_HOOKFUNCTION(nb, PlayerPhysics)
1015 if(self.ballcarried)
1017 self.stat_sv_airspeedlimit_nonqw *= autocvar_g_nexball_basketball_carrier_highspeed;
1018 self.stat_sv_maxspeed *= autocvar_g_nexball_basketball_carrier_highspeed;
1023 MUTATOR_HOOKFUNCTION(nb, ForbidThrowCurrentWeapon)
1025 return PS(self).m_weapon == WEP_NEXBALL;
1028 MUTATOR_HOOKFUNCTION(nb, ForbidDropCurrentWeapon)
1030 return PS(self).m_weapon == WEP_MORTAR; // TODO: what is this for?
1033 MUTATOR_HOOKFUNCTION(nb, FilterItem)
1035 if(self.classname == "droppedweapon")
1036 if(self.weapon == WEP_NEXBALL.m_id)
1042 MUTATOR_HOOKFUNCTION(nb, GetTeamCount)
1044 ret_string = "nexball_team";
1048 MUTATOR_HOOKFUNCTION(nb, WantWeapon)
1050 ret_float = 0; // weapon is set a few lines later, apparently
1054 MUTATOR_HOOKFUNCTION(nb, DropSpecialItems)
1056 if(frag_target.ballcarried)
1057 DropBall(frag_target.ballcarried, frag_target.origin, frag_target.velocity);
1062 MUTATOR_HOOKFUNCTION(nb, SendWaypoint)
1064 wp_sendflags &= ~0x80;
1068 REGISTER_MUTATOR(nb, g_nexball)
1072 g_nexball_meter_period = autocvar_g_nexball_meter_period;
1073 if(g_nexball_meter_period <= 0)
1074 g_nexball_meter_period = 2; // avoid division by zero etc. due to silly users
1075 g_nexball_meter_period = rint(g_nexball_meter_period * 32) / 32; //Round to 1/32ths to send as a byte multiplied by 32
1079 CVTOV(g_nexball_football_boost_forward); //100
1080 CVTOV(g_nexball_football_boost_up); //200
1081 CVTOV(g_nexball_delay_idle); //10
1082 CVTOV(g_nexball_football_physics); //0
1084 radar_showennemies = autocvar_g_nexball_radar_showallplayers;
1086 InitializeEntity(world, nb_delayedinit, INITPRIO_GAMETYPE);
1087 WEP_NEXBALL.spawnflags &= ~WEP_FLAG_MUTATORBLOCKED;
1090 SetLimits(autocvar_g_nexball_goallimit, autocvar_g_nexball_goalleadlimit, -1, -1);
1091 have_team_spawns = -1; // request team spawns
1094 MUTATOR_ONROLLBACK_OR_REMOVE
1096 WEP_NEXBALL.spawnflags |= WEP_FLAG_MUTATORBLOCKED;
1097 // we actually cannot roll back nb_delayedinit here
1098 // BUT: we don't need to! If this gets called, adding always
1104 LOG_INFO("This is a game type and it cannot be removed at runtime.");