1 #include "sv_vehicles.qh"
3 bool SendAuxiliaryXhair(entity this, entity to, int sf)
5 WriteHeader(MSG_ENTITY, ENT_CLIENT_AUXILIARYXHAIR);
6 WriteByte(MSG_ENTITY, sf);
8 WriteByte(MSG_ENTITY, this.cnt);
12 WriteCoord(MSG_ENTITY, this.origin_x);
13 WriteCoord(MSG_ENTITY, this.origin_y);
14 WriteCoord(MSG_ENTITY, this.origin_z);
19 WriteByte(MSG_ENTITY, rint(this.colormod_x * 255));
20 WriteByte(MSG_ENTITY, rint(this.colormod_y * 255));
21 WriteByte(MSG_ENTITY, rint(this.colormod_z * 255));
27 bool AuxiliaryXhair_customize(entity this, entity client)
29 entity e = WaypointSprite_getviewentity(client);
30 entity axh = e.(AuxiliaryXhair[this.cnt]);
31 return axh.owner == this.owner; // cheaply check if the client's axh owner is the same as our real owner
34 .vector axh_prevorigin;
35 .vector axh_prevcolors;
37 void UpdateAuxiliaryXhair(entity own, vector loc, vector clr, int axh_id)
39 if(!IS_REAL_CLIENT(own))
42 axh_id = bound(0, axh_id, MAX_AXH);
43 entity axh = own.(AuxiliaryXhair[axh_id]);
45 if(axh == NULL || wasfreed(axh)) // MADNESS? THIS IS QQQQCCCCCCCCC (wasfreed, why do you exsist? Mario: because of sloppy code like this)
47 axh = new(auxiliary_xhair);
49 //axh.drawonlytoclient = own; // not spectatable
50 setcefc(axh, AuxiliaryXhair_customize);
52 Net_LinkEntity(axh, false, 0, SendAuxiliaryXhair);
55 if(loc != axh.axh_prevorigin)
61 if(clr != axh.axh_prevcolors)
67 own.(AuxiliaryXhair[axh_id]) = axh; // set it anyway...?
70 void CSQCVehicleSetup(entity own, int vehicle_id)
72 if(!IS_REAL_CLIENT(own))
77 WriteHeader(MSG_ONE, TE_CSQC_VEHICLESETUP);
78 WriteByte(MSG_ONE, vehicle_id);
80 if(vehicle_id == 0 || vehicle_id == HUD_NORMAL)
82 for(int i = 0; i < MAX_AXH; ++i)
84 entity axh = own.(AuxiliaryXhair[i]);
85 own.(AuxiliaryXhair[i]) = NULL;
87 if(axh.owner == own && axh != NULL && !wasfreed(axh))
93 void vehicles_locktarget(entity this, float incr, float decr, float _lock_time)
95 if(this.lock_target && IS_DEAD(this.lock_target))
97 this.lock_target = NULL;
98 this.lock_strength = 0;
102 if(this.lock_time > time)
105 if(this.lock_soundtime < time)
107 this.lock_soundtime = time + 0.5;
108 play2(this.owner, "vehicles/locked.wav");
114 if(trace_ent != NULL)
116 if(SAME_TEAM(trace_ent, this))
119 if(IS_DEAD(trace_ent))
122 if(!(IS_VEHICLE(trace_ent) || IS_TURRET(trace_ent)))
125 if(trace_ent.alpha <= 0.5 && trace_ent.alpha != 0)
126 trace_ent = NULL; // invisible
129 if(this.lock_target == NULL && trace_ent != NULL)
130 this.lock_target = trace_ent;
132 if(this.lock_target && trace_ent == this.lock_target)
134 if(this.lock_strength != 1 && this.lock_strength + incr >= 1)
136 play2(this.owner, "vehicles/lock.wav");
137 this.lock_soundtime = time + 0.8;
139 else if (this.lock_strength != 1 && this.lock_soundtime < time)
141 play2(this.owner, "vehicles/locking.wav");
142 this.lock_soundtime = time + 0.3;
146 // Have a locking target
147 // Trace hit current target
148 if(trace_ent == this.lock_target && trace_ent != NULL)
150 this.lock_strength = min(this.lock_strength + incr, 1);
151 if(this.lock_strength == 1)
152 this.lock_time = time + _lock_time;
157 this.lock_strength = max(this.lock_strength - decr * 2, 0);
159 this.lock_strength = max(this.lock_strength - decr, 0);
161 if(this.lock_strength == 0)
162 this.lock_target = NULL;
166 float vehicle_altitude(entity this, float amax)
168 tracebox(this.origin, this.mins, this.maxs, this.origin - ('0 0 1' * amax), MOVE_WORLDONLY, this);
169 return vlen(this.origin - trace_endpos);
172 vector vehicles_force_fromtag_hover(entity this, string tag_name, float spring_length, float max_power)
174 force_fromtag_origin = gettaginfo(this, gettagindex(this, tag_name));
175 v_forward = normalize(v_forward) * -1;
176 traceline(force_fromtag_origin, force_fromtag_origin - (v_forward * spring_length), MOVE_NORMAL, this);
178 force_fromtag_power = (1 - trace_fraction) * max_power;
179 force_fromtag_normpower = force_fromtag_power / max_power;
181 return v_forward * force_fromtag_power;
184 vector vehicles_force_fromtag_maglev(entity this, string tag_name, float spring_length, float max_power)
186 force_fromtag_origin = gettaginfo(this, gettagindex(this, tag_name));
187 v_forward = normalize(v_forward) * -1;
188 traceline(force_fromtag_origin, force_fromtag_origin - (v_forward * spring_length), MOVE_NORMAL, this);
190 // TODO - this may NOT be compatible with wall/celing movement, unhardcode 0.25 (engine count multiplier)
191 if(trace_fraction == 1.0)
193 force_fromtag_normpower = -0.25;
197 force_fromtag_power = ((1 - trace_fraction) - trace_fraction) * max_power;
198 force_fromtag_normpower = force_fromtag_power / max_power;
200 return v_forward * force_fromtag_power;
203 // projectile handling
204 void vehicles_projectile_damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
206 // Ignore damage from oterh projectiles from my owner (dont mess up volly's)
207 if(inflictor.owner == this.owner)
210 this.health -= damage;
211 this.velocity += force;
214 this.takedamage = DAMAGE_NO;
215 this.event_damage = func_null;
216 setthink(this, adaptor_think2use);
217 this.nextthink = time;
221 void vehicles_projectile_explode(entity this, entity toucher)
223 if(this.owner && toucher != NULL)
225 if(toucher == this.owner.vehicle)
228 if(toucher == this.owner.vehicle.tur_head)
232 PROJECTILE_TOUCH(this, toucher);
234 this.event_damage = func_null;
235 RadiusDamage (this, this.realowner, this.shot_dmg, 0, this.shot_radius, this, NULL, this.shot_force, this.totalfrags, toucher);
240 void vehicles_projectile_explode_think(entity this)
242 vehicles_projectile_explode(this, NULL);
245 void vehicles_projectile_explode_use(entity this, entity actor, entity trigger)
247 vehicles_projectile_explode(this, trigger);
250 entity vehicles_projectile(entity this, string _mzlfx, Sound _mzlsound,
251 vector _org, vector _vel,
252 float _dmg, float _radi, float _force, float _size,
253 int _deahtype, float _projtype, float _health,
254 bool _cull, bool _clianim, entity _owner)
256 TC(Sound, _mzlsound);
261 PROJECTILE_MAKETRIGGER(proj);
262 setorigin(proj, _org);
264 proj.shot_dmg = _dmg;
265 proj.shot_radius = _radi;
266 proj.shot_force = _force;
267 proj.totalfrags = _deahtype;
268 proj.solid = SOLID_BBOX;
269 set_movetype(proj, MOVETYPE_FLYMISSILE);
270 proj.flags = FL_PROJECTILE;
271 IL_PUSH(g_projectiles, proj);
272 IL_PUSH(g_bot_dodge, proj);
273 proj.bot_dodge = true;
274 proj.bot_dodgerating = _dmg;
275 proj.velocity = _vel;
276 settouch(proj, vehicles_projectile_explode);
277 proj.use = vehicles_projectile_explode_use;
279 proj.realowner = _owner;
280 setthink(proj, SUB_Remove);
281 proj.nextthink = time + 30;
285 proj.takedamage = DAMAGE_AIM;
286 proj.event_damage = vehicles_projectile_damage;
287 proj.health = _health;
290 proj.flags |= FL_NOTARGET;
292 if(_mzlsound != SND_Null)
293 sound (this, CH_WEAPON_A, _mzlsound, VOL_BASE, ATTEN_NORM);
296 Send_Effect_(_mzlfx, proj.origin, proj.velocity, 1);
298 setsize (proj, '-1 -1 -1' * _size, '1 1 1' * _size);
300 CSQCProjectile(proj, _clianim, _projtype, _cull);
305 void vehicles_gib_explode(entity this)
307 sound (this, CH_SHOTS, SND_ROCKET_IMPACT, VOL_BASE, ATTEN_NORM);
308 Send_Effect(EFFECT_EXPLOSION_SMALL, randomvec() * 80 + (this.origin + '0 0 100'), '0 0 0', 1);
309 Send_Effect(EFFECT_EXPLOSION_SMALL, this.wp00.origin + '0 0 64', '0 0 0', 1);
313 void vehicles_gib_touch(entity this, entity toucher)
315 vehicles_gib_explode(this);
318 void vehicles_gib_think(entity this)
324 this.nextthink = time + 0.1;
327 entity vehicle_tossgib(entity this, entity _template, vector _vel, string _tag, bool _burn, bool _explode, float _maxtime, vector _rot)
329 entity _gib = spawn();
330 _setmodel(_gib, _template.model);
331 vector org = gettaginfo(this, gettagindex(this, _tag));
332 setorigin(_gib, org);
333 _gib.velocity = _vel;
334 set_movetype(_gib, MOVETYPE_TOSS);
335 _gib.solid = SOLID_CORPSE;
336 _gib.colormod = '-0.5 -0.5 -0.5';
337 _gib.effects = EF_LOWPRECISION;
338 _gib.avelocity = _rot;
341 _gib.effects |= EF_FLAME;
345 setthink(_gib, vehicles_gib_explode);
346 _gib.nextthink = time + random() * _explode;
347 settouch(_gib, vehicles_gib_touch);
351 _gib.cnt = time + _maxtime;
352 setthink(_gib, vehicles_gib_think);
353 _gib.nextthink = time + _maxtime - 1;
359 bool vehicle_addplayerslot( entity _owner,
363 bool(entity,float) _framefunc,
364 void(entity,bool) _exitfunc, float(entity, entity) _enterfunc)
366 if(!(_owner.vehicle_flags & VHF_MULTISLOT))
367 _owner.vehicle_flags |= VHF_MULTISLOT;
369 _slot.PlayerPhysplug = _framefunc;
370 _slot.vehicle_exit = _exitfunc;
371 _slot.vehicle_enter = _enterfunc;
373 _slot.vehicle_flags = VHF_PLAYERSLOT;
374 _slot.vehicle_viewport = spawn();
375 _slot.vehicle_hudmodel = spawn();
376 _slot.vehicle_hudmodel.viewmodelforclient = _slot;
377 _slot.vehicle_viewport.effects = (EF_ADDITIVE | EF_DOUBLESIDED | EF_FULLBRIGHT | EF_NODEPTHTEST | EF_NOGUNBOB | EF_NOSHADOW | EF_LOWPRECISION | EF_SELECTABLE | EF_TELEPORT_BIT);
379 setmodel(_slot.vehicle_hudmodel, _hud_model);
380 setmodel(_slot.vehicle_viewport, MDL_Null);
382 setattachment(_slot.vehicle_hudmodel, _slot, "");
383 setattachment(_slot.vehicle_viewport, _slot.vehicle_hudmodel, "");
388 vector vehicle_aimturret(entity _vehic, vector _target, entity _turrret, string _tagname,
389 float _pichlimit_min, float _pichlimit_max,
390 float _rotlimit_min, float _rotlimit_max, float _aimspeed)
394 vtag = gettaginfo(_turrret, gettagindex(_turrret, _tagname));
395 vtmp = vectoangles(normalize(_target - vtag));
396 vtmp = AnglesTransform_ToAngles(AnglesTransform_LeftDivide(AnglesTransform_FromAngles(_vehic.angles), AnglesTransform_FromAngles(vtmp))) - _turrret.angles;
397 vtmp = AnglesTransform_Normalize(vtmp, true);
398 ftmp = _aimspeed * frametime;
399 vtmp_y = bound(-ftmp, vtmp_y, ftmp);
400 vtmp_x = bound(-ftmp, vtmp_x, ftmp);
401 _turrret.angles_y = bound(_rotlimit_min, _turrret.angles_y + vtmp_y, _rotlimit_max);
402 _turrret.angles_x = bound(_pichlimit_min, _turrret.angles_x + vtmp_x, _pichlimit_max);
406 void vehicles_reset_colors(entity this, entity player)
409 const vector cmod = '0 0 0';
410 if(this.team && teamplay)
411 cmap = 1024 + (this.team - 1) * 17;
413 cmap = player.colormap;
416 if(autocvar_g_nodepthtestplayers)
417 eff |= EF_NODEPTHTEST;
418 if(autocvar_g_fullbrightplayers)
419 eff |= EF_FULLBRIGHT;
421 // Find all ents attacked to main model and setup effects, colormod etc.
422 FOREACH_ENTITY_ENT(tag_entity, this,
424 if(it == this.vehicle_shieldent)
433 // Also check head tags
434 FOREACH_ENTITY_ENT(tag_entity, this.tur_head,
436 if(it == this.vehicle_shieldent)
445 this.vehicle_hudmodel.effects = this.effects = eff; // | EF_LOWPRECISION;
446 this.vehicle_hudmodel.colormod = this.colormod = cmod;
447 this.vehicle_hudmodel.colormap = this.colormap = cmap;
448 this.vehicle_viewport.effects = (EF_ADDITIVE | EF_DOUBLESIDED | EF_FULLBRIGHT | EF_NODEPTHTEST | EF_NOGUNBOB | EF_NOSHADOW | EF_LOWPRECISION | EF_SELECTABLE | EF_TELEPORT_BIT);
451 this.avelocity = '0 0 0';
452 this.velocity = '0 0 0';
455 Vehicle info = Vehicles_from(this.vehicleid);
456 info.vr_setcolors(info, this);
459 void vehicles_clearreturn(entity veh)
461 // Remove "return helper" entities, if any.
462 IL_EACH(g_vehicle_returners, it.wp00 == veh,
465 setthink(it, SUB_Remove);
466 it.nextthink = time + 0.1;
467 IL_REMOVE(g_vehicle_returners, it);
469 if(it.waypointsprite_attached)
470 WaypointSprite_Kill(it.waypointsprite_attached);
474 void vehicles_spawn(entity this);
475 void vehicles_return(entity this)
477 Send_Effect(EFFECT_TELEPORT, this.wp00.origin + '0 0 64', '0 0 0', 1);
479 setthink(this.wp00, vehicles_spawn);
480 this.wp00.nextthink = time;
482 if(this.waypointsprite_attached)
483 WaypointSprite_Kill(this.waypointsprite_attached);
488 void vehicles_showwp_goaway(entity this)
490 if(this.waypointsprite_attached)
491 WaypointSprite_Kill(this.waypointsprite_attached);
496 void vehicles_showwp(entity this)
502 setthink(ent, vehicles_return);
503 ent.nextthink = ent.cnt;
507 setthink(ent, vehicles_return);
508 ent.nextthink = time + 1;
511 ent.team = this.wp00.team;
512 ent.wp00 = this.wp00;
513 setorigin(ent, this.wp00.pos1);
515 ent.nextthink = time + 5;
516 setthink(ent, vehicles_showwp_goaway);
520 if(teamplay && ent.team)
521 rgb = Team_ColorRGB(ent.team);
524 entity wp = WaypointSprite_Spawn(WP_Vehicle, 0, 0, ent, '0 0 64', NULL, 0, ent, waypointsprite_attached, true, RADARICON_Vehicle);
526 if(ent.waypointsprite_attached)
528 WaypointSprite_UpdateRule(ent.waypointsprite_attached, ent.wp00.team, SPRITERULE_DEFAULT);
530 WaypointSprite_UpdateBuildFinished(ent.waypointsprite_attached, ent.nextthink);
531 WaypointSprite_Ping(ent.waypointsprite_attached);
535 void vehicles_setreturn(entity veh)
537 vehicles_clearreturn(veh);
539 entity ret = new(vehicle_return);
540 IL_PUSH(g_vehicle_returners, ret);
543 setthink(ret, vehicles_showwp);
547 ret.cnt = time + veh.respawntime;
548 ret.nextthink = min(time + veh.respawntime, time + veh.respawntime - 5);
552 ret.nextthink = min(time + veh.respawntime, time + veh.respawntime - 1);
555 setorigin(ret, veh.pos1 + '0 0 96');
558 void vehicle_use(entity this, entity actor, entity trigger)
560 LOG_DEBUG("vehicle ", this.netname, " used by ", actor.classname);
562 this.tur_head.team = actor.team;
564 if(this.tur_head.team == 0)
565 this.active = ACTIVE_NOT;
567 this.active = ACTIVE_ACTIVE;
569 if(this.active == ACTIVE_ACTIVE && !IS_DEAD(this) && !game_stopped)
571 LOG_DEBUG("Respawning vehicle: ", this.netname);
572 if(this.effects & EF_NODRAW)
574 setthink(this, vehicles_spawn);
575 this.nextthink = time + 3;
579 vehicles_setreturn(this);
580 vehicles_reset_colors(this, actor);
585 void vehicles_regen(entity this, float timer, .float regen_field, float field_max, float rpause, float regen, float delta_time, float _healthscale)
587 if(this.(regen_field) < field_max)
588 if(timer + rpause < time)
591 regen = regen * (this.vehicle_health / this.max_health);
593 this.(regen_field) = min(this.(regen_field) + regen * delta_time, field_max);
596 this.owner.(regen_field) = (this.(regen_field) / field_max) * 100;
600 void shieldhit_think(entity this)
605 // setmodel(this, MDL_Null);
607 this.effects |= EF_NODRAW;
611 this.nextthink = time + 0.1;
615 void vehicles_painframe(entity this)
617 int myhealth = ((this.owner) ? this.owner.vehicle_health : ((this.vehicle_health / this.max_health) * 100));
620 if(this.pain_frame < time)
622 float _ftmp = myhealth / 50;
623 this.pain_frame = time + max(0.1, 0.1 + (random() * 0.5 * _ftmp));
624 Send_Effect(EFFECT_SMOKE_SMALL, (this.origin + (randomvec() * 80)), '0 0 0', 1);
626 if(this.vehicle_flags & VHF_DMGSHAKE)
627 this.velocity += randomvec() * 30;
629 if(this.vehicle_flags & VHF_DMGROLL)
630 if(this.vehicle_flags & VHF_DMGHEADROLL)
631 this.tur_head.angles += randomvec();
633 this.angles += randomvec();
637 void vehicles_frame(entity this, entity actor)
639 vehicles_painframe(this);
642 void vehicles_damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
644 this.dmg_time = time;
647 if(DEATH_ISWEAPON(deathtype, WEP_VORTEX))
648 damage *= autocvar_g_vehicles_vortex_damagerate;
649 else if(DEATH_ISWEAPON(deathtype, WEP_MACHINEGUN))
650 damage *= autocvar_g_vehicles_machinegun_damagerate;
651 else if(DEATH_ISWEAPON(deathtype, WEP_RIFLE))
652 damage *= autocvar_g_vehicles_rifle_damagerate;
653 else if(DEATH_ISWEAPON(deathtype, WEP_VAPORIZER))
654 damage *= autocvar_g_vehicles_vaporizer_damagerate;
655 else if(DEATH_ISWEAPON(deathtype, WEP_SEEKER))
656 damage *= autocvar_g_vehicles_tag_damagerate;
657 else if(DEATH_WEAPONOF(deathtype) != WEP_Null)
658 damage *= autocvar_g_vehicles_weapon_damagerate;
660 this.enemy = attacker;
662 this.pain_finished = time;
664 if((this.vehicle_flags & VHF_HASSHIELD) && (this.vehicle_shield > 0))
666 if (wasfreed(this.vehicle_shieldent) || this.vehicle_shieldent == NULL)
668 this.vehicle_shieldent = spawn();
669 this.vehicle_shieldent.effects = EF_LOWPRECISION;
671 setmodel(this.vehicle_shieldent, MDL_VEH_SHIELD);
672 setattachment(this.vehicle_shieldent, this, "");
673 setorigin(this.vehicle_shieldent, real_origin(this) - this.origin);
674 this.vehicle_shieldent.scale = 256 / vlen(this.maxs - this.mins);
675 setthink(this.vehicle_shieldent, shieldhit_think);
678 this.vehicle_shieldent.colormod = '1 1 1';
679 this.vehicle_shieldent.alpha = 0.45;
680 this.vehicle_shieldent.angles = vectoangles(normalize(hitloc - (this.origin + this.vehicle_shieldent.origin))) - this.angles;
681 this.vehicle_shieldent.nextthink = time;
682 this.vehicle_shieldent.effects &= ~EF_NODRAW;
684 this.vehicle_shield -= damage;
686 if(this.vehicle_shield < 0)
688 this.vehicle_health -= fabs(this.vehicle_shield);
689 this.vehicle_shieldent.colormod = '2 0 0';
690 this.vehicle_shield = 0;
691 this.vehicle_shieldent.alpha = 0.75;
693 if(sound_allowed(MSG_BROADCAST, attacker))
694 spamsound (this, CH_PAIN, SND_ONS_HIT2, VOL_BASE, ATTEN_NORM); // FIXME: PLACEHOLDER
697 if(sound_allowed(MSG_BROADCAST, attacker))
698 spamsound (this, CH_PAIN, SND_ONS_ELECTRICITY_EXPLODE, VOL_BASE, ATTEN_NORM); // FIXME: PLACEHOLDER
703 this.vehicle_health -= damage;
705 if(sound_allowed(MSG_BROADCAST, attacker))
706 spamsound (this, CH_PAIN, SND_ONS_HIT2, VOL_BASE, ATTEN_NORM); // FIXME: PLACEHOLDER
709 if(this.damageforcescale < 1 && this.damageforcescale > 0)
710 this.velocity += force * this.damageforcescale;
712 this.velocity += force;
714 if(this.vehicle_health <= 0)
717 if(this.vehicle_flags & VHF_DEATHEJECT)
718 vehicles_exit(this, VHEF_EJECT);
720 vehicles_exit(this, VHEF_RELEASE);
723 antilag_clear(this, this);
725 Vehicle info = Vehicles_from(this.vehicleid);
726 info.vr_death(info, this);
727 vehicles_setreturn(this);
731 bool vehicles_crushable(entity e)
733 if(IS_PLAYER(e) && time >= e.vehicle_enter_delay)
742 void vehicles_impact(entity this, float _minspeed, float _speedfac, float _maxpain)
744 if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
747 if(this.play_time < time)
749 float wc = vlen(this.velocity - this.oldvelocity);
750 //dprint("oldvel: ", vtos(this.oldvelocity), "\n");
751 //dprint("vel: ", vtos(this.velocity), "\n");
754 float take = min(_speedfac * wc, _maxpain);
755 Damage (this, NULL, NULL, take, DEATH_FALL.m_id, this.origin, '0 0 0');
756 this.play_time = time + 0.25;
758 //dprint("wc: ", ftos(wc), "\n");
759 //dprint("take: ", ftos(take), "\n");
764 // vehicle enter/exit handling
765 vector vehicles_findgoodexit(entity this, entity player, vector prefer_spot)
767 // TODO: we actually want the player's size here
768 tracebox(this.origin + '0 0 32', PL_MIN_CONST, PL_MAX_CONST, prefer_spot, MOVE_NORMAL, player);
769 if(trace_fraction == 1.0 && !trace_startsolid && !trace_allsolid)
772 float mysize = 1.5 * vlen(this.maxs - this.mins);
774 vector v2 = 0.5 * (this.absmin + this.absmax);
775 for(int i = 0; i < autocvar_g_vehicles_exit_attempts; ++i)
779 v = v2 + normalize(v) * mysize;
780 tracebox(v2, PL_MIN_CONST, PL_MAX_CONST, v, MOVE_NORMAL, player);
781 if(trace_fraction == 1.0 && !trace_startsolid && !trace_allsolid)
788 .int old_vehicle_flags;
789 void vehicles_exit(entity vehic, bool eject)
791 entity player = vehic.owner;
793 if(vehicles_exit_running)
795 LOG_TRACE("^1vehicles_exit already running! this is not good...");
799 vehicles_exit_running = true;
801 // TODO: this was in an IS_CLIENT check, make sure it isn't actually needed!
802 if(vehic.vehicle_flags & VHF_PLAYERSLOT)
804 vehic.vehicle_exit(vehic, eject);
805 vehicles_exit_running = false;
811 if (IS_REAL_CLIENT(player))
814 WriteByte (MSG_ONE, SVC_SETVIEWPORT);
815 WriteEntity( MSG_ONE, player);
817 WriteByte (MSG_ONE, SVC_SETVIEWANGLES);
818 WriteAngle(MSG_ONE, 0);
819 WriteAngle(MSG_ONE, vehic.angles_y);
820 WriteAngle(MSG_ONE, 0);
823 setsize(player, STAT(PL_MIN, player), STAT(PL_MAX, player));
825 player.takedamage = DAMAGE_AIM;
826 player.solid = SOLID_SLIDEBOX;
827 set_movetype(player, MOVETYPE_WALK);
828 player.effects &= ~EF_NODRAW;
829 player.teleportable = TELEPORT_NORMAL;
831 player.PlayerPhysplug = func_null;
832 player.vehicle = NULL;
833 player.view_ofs = STAT(PL_VIEW_OFS, player);
834 player.event_damage = PlayerDamage;
835 player.hud = HUD_NORMAL;
836 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++ slot)
838 .entity weaponentity = weaponentities[slot];
839 player.(weaponentity).m_switchweapon = vehic.(weaponentity).m_switchweapon;
840 delete(vehic.(weaponentity)); // no longer needed
842 player.last_vehiclecheck = time + 3;
843 player.vehicle_enter_delay = time + 2;
845 CSQCVehicleSetup(player, HUD_NORMAL);
847 Kill_Notification(NOTIF_ONE, player, MSG_CENTER, CPID_VEHICLES);
848 Kill_Notification(NOTIF_ONE, player, MSG_CENTER, CPID_VEHICLES_OTHER); // kill all vehicle notifications when exiting a vehicle?
851 vehic.flags |= FL_NOTARGET;
854 vehic.avelocity = '0 0 0';
856 vehic.tur_head.nodrawtoclient = NULL;
861 WaypointSprite_Kill(vehic.wps_intruder);
863 MUTATOR_CALLHOOK(VehicleExit, player, vehic);
865 vehic.team = vehic.tur_head.team;
867 if(vehic.old_vehicle_flags & VHF_SHIELDREGEN)
868 vehic.vehicle_flags |= VHF_SHIELDREGEN;
869 vehic.old_vehicle_flags = 0;
871 sound (vehic, CH_TRIGGER_SINGLE, SND_Null, 1, ATTEN_NORM);
872 vehic.vehicle_hudmodel.viewmodelforclient = vehic;
873 vehic.phase = time + 1;
875 vehic.vehicle_exit(vehic, eject);
877 vehicles_setreturn(vehic);
878 vehicles_reset_colors(vehic, NULL);
881 CSQCMODEL_AUTOINIT(vehic);
884 player.oldorigin = player.origin; // player's location is set by the exit functions, so we need to do this after everything
886 vehicles_exit_running = false;
889 void vehicles_touch(entity this, entity toucher)
891 if(MUTATOR_CALLHOOK(VehicleTouch, this, toucher))
894 // Vehicle currently in use
897 if(!forbidWeaponUse(this.owner))
899 if((this.origin_z + this.maxs_z) > (toucher.origin_z))
900 if(vehicles_crushable(toucher))
902 if(vdist(this.velocity, >=, 30))
903 Damage(toucher, this, this.owner, autocvar_g_vehicles_crush_dmg, DEATH_VH_CRUSH.m_id, '0 0 0', normalize(toucher.origin - this.origin) * autocvar_g_vehicles_crush_force);
905 return; // Dont do selfdamage when hitting "soft targets".
908 if(this.play_time < time) {
909 Vehicle info = Vehicles_from(this.vehicleid);
910 info.vr_impact(info, this);
916 if(autocvar_g_vehicles_enter)
919 vehicles_enter(toucher, this);
922 bool vehicle_impulse(entity this, int imp)
924 entity v = this.vehicle;
925 if (!v) return false;
926 if (IS_DEAD(v)) return false;
927 bool(entity,int) f = v.vehicles_impulse;
928 if (f && f(this,imp)) return true;
931 case IMP_weapon_drop.impulse:
933 stuffcmd(this, "\ntoggle cl_eventchase_vehicle\nset _vehicles_shownchasemessage 1\n");
940 void vehicles_enter(entity pl, entity veh)
942 // Remove this when bots know how to use vehicles
943 if((IS_BOT_CLIENT(pl) && !autocvar_g_vehicles_allow_bots))
947 || (veh.phase >= time)
948 || (pl.vehicle_enter_delay >= time)
949 || (STAT(FROZEN, pl))
954 Vehicle info = Vehicles_from(veh.vehicleid);
956 if(autocvar_g_vehicles_enter) // vehicle's touch function should handle this if entering via use key is disabled (TODO)
957 if(veh.vehicle_flags & VHF_MULTISLOT)
958 if(veh.owner && SAME_TEAM(pl, veh))
960 // we don't need a return value or anything here
961 // if successful the owner check below will prevent anything weird
962 info.vr_gunner_enter(info, veh, pl);
966 return; // got here and didn't enter the gunner, return
970 if(DIFF_TEAM(pl, veh))
971 if(autocvar_g_vehicles_steal)
973 FOREACH_CLIENT(IS_PLAYER(it) && SAME_TEAM(it, veh), Send_Notification(NOTIF_ONE, it, MSG_CENTER, CENTER_VEHICLE_STEAL));
975 Send_Notification(NOTIF_ONE, pl, MSG_CENTER, CENTER_VEHICLE_STEAL_SELF);
977 veh.vehicle_shield = 0;
978 veh.old_vehicle_flags = veh.vehicle_flags; // make a backup just so we're not permanently crippling this vehicle
979 veh.vehicle_flags &= ~VHF_SHIELDREGEN;
981 if (autocvar_g_vehicles_steal_show_waypoint) {
982 entity wp = WaypointSprite_Spawn(WP_VehicleIntruder, 0, 0, pl, '0 0 68', NULL, veh.team, veh, wps_intruder, true, RADARICON_DANGER);
983 wp.colormod = Team_ColorRGB(pl.team);
988 RemoveGrapplingHooks(pl);
990 veh.vehicle_ammo1 = 0;
991 veh.vehicle_ammo2 = 0;
992 veh.vehicle_reload1 = 0;
993 veh.vehicle_reload2 = 0;
994 veh.vehicle_energy = 0;
999 // .viewmodelforclient works better.
1000 //veh.vehicle_hudmodel.drawonlytoclient = veh.owner;
1002 veh.vehicle_hudmodel.viewmodelforclient = pl;
1005 pl.view_ofs = STAT(PL_VIEW_OFS, pl);
1006 setsize(pl, STAT(PL_MIN, pl), STAT(PL_MAX, pl));
1008 veh.event_damage = vehicles_damage;
1010 pl.items &= ~IT_USING_JETPACK;
1011 pl.angles = veh.angles;
1012 pl.takedamage = DAMAGE_NO;
1013 pl.solid = SOLID_NOT;
1014 pl.disableclientprediction = 1; // physics is no longer run, so this won't be reset
1015 set_movetype(pl, MOVETYPE_NOCLIP);
1016 pl.teleportable = false;
1018 pl.event_damage = func_null;
1019 pl.view_ofs = '0 0 0';
1020 veh.colormap = pl.colormap;
1022 veh.tur_head.colormap = pl.colormap;
1023 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1025 .entity weaponentity = weaponentities[slot];
1026 veh.(weaponentity) = new(temp_wepent);
1027 veh.(weaponentity).m_switchweapon = pl.(weaponentity).m_switchweapon;
1029 pl.hud = veh.vehicleid;
1030 pl.PlayerPhysplug = veh.PlayerPhysplug;
1032 pl.vehicle_ammo1 = veh.vehicle_ammo1;
1033 pl.vehicle_ammo2 = veh.vehicle_ammo2;
1034 pl.vehicle_reload1 = veh.vehicle_reload1;
1035 pl.vehicle_reload2 = veh.vehicle_reload2;
1036 pl.vehicle_energy = veh.vehicle_energy;
1038 // Cant do this, hides attached objects too.
1039 //veh.exteriormodeltoclient = veh.owner;
1040 //veh.tur_head.exteriormodeltoclient = veh.owner;
1043 UNSET_ONGROUND(veh);
1046 veh.flags -= FL_NOTARGET;
1048 vehicles_reset_colors(veh, pl);
1050 if (IS_REAL_CLIENT(pl))
1052 Send_Notification(NOTIF_ONE, pl, MSG_CENTER, CENTER_VEHICLE_ENTER);
1055 WriteByte (MSG_ONE, SVC_SETVIEWPORT);
1056 WriteEntity(MSG_ONE, veh.vehicle_viewport);
1058 WriteByte (MSG_ONE, SVC_SETVIEWANGLES);
1061 WriteAngle(MSG_ONE, veh.tur_head.angles_x + veh.angles_x); // tilt
1062 WriteAngle(MSG_ONE, veh.tur_head.angles_y + veh.angles_y); // yaw
1063 WriteAngle(MSG_ONE, 0); // roll
1067 WriteAngle(MSG_ONE, veh.angles_x * -1); // tilt
1068 WriteAngle(MSG_ONE, veh.angles_y); // yaw
1069 WriteAngle(MSG_ONE, 0); // roll
1073 vehicles_clearreturn(veh);
1075 CSQCVehicleSetup(pl, veh.vehicleid);
1077 MUTATOR_CALLHOOK(VehicleEnter, pl, veh);
1079 CSQCModel_UnlinkEntity(veh);
1080 info.vr_enter(info, veh);
1082 antilag_clear(pl, CS(pl));
1085 void vehicles_think(entity this)
1087 this.nextthink = time + autocvar_g_vehicles_thinkrate;
1090 this.owner.vehicle_weapon2mode = this.vehicle_weapon2mode;
1092 Vehicle info = Vehicles_from(this.vehicleid);
1093 info.vr_think(info, this);
1095 vehicles_painframe(this);
1097 CSQCMODEL_AUTOUPDATE(this);
1100 void vehicles_reset(entity this)
1103 vehicles_exit(this, VHEF_RELEASE);
1105 vehicles_clearreturn(this);
1107 if(this.active != ACTIVE_NOT)
1108 vehicles_spawn(this);
1112 void vehicles_spawn(entity this)
1114 LOG_DEBUG("Spawning vehicle: ", this.classname);
1117 this.vehicle_hudmodel.viewmodelforclient = this;
1120 settouch(this, vehicles_touch);
1121 this.event_damage = vehicles_damage;
1122 this.reset = vehicles_reset;
1123 this.iscreature = true;
1124 this.teleportable = false; // no teleporting for vehicles, too buggy
1125 this.damagedbycontents = true;
1126 set_movetype(this, MOVETYPE_WALK);
1127 this.solid = SOLID_SLIDEBOX;
1128 this.takedamage = DAMAGE_AIM;
1129 this.deadflag = DEAD_NO;
1130 if(!this.bot_attack)
1131 IL_PUSH(g_bot_targets, this);
1132 this.bot_attack = true;
1133 this.flags = FL_NOTARGET;
1134 this.avelocity = '0 0 0';
1135 this.velocity = '0 0 0';
1136 setthink(this, vehicles_think);
1137 this.nextthink = time;
1140 this.lock_strength = 0;
1141 this.lock_target = NULL;
1142 this.misc_bulletcounter = 0;
1145 this.angles = this.pos2;
1146 setorigin(this, this.pos1);
1148 Send_Effect(EFFECT_TELEPORT, this.origin + '0 0 64', '0 0 0', 1);
1150 if(this.vehicle_controller)
1151 this.team = this.vehicle_controller.team;
1153 FOREACH_CLIENT(IS_PLAYER(it),
1155 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1157 .entity weaponentity = weaponentities[slot];
1158 if(it.(weaponentity).hook.aiment == this)
1159 RemoveHook(it.(weaponentity).hook);
1164 Vehicle info = Vehicles_from(this.vehicleid);
1165 info.vr_spawn(info, this);
1167 vehicles_reset_colors(this, NULL);
1169 CSQCMODEL_AUTOINIT(this);
1172 bool vehicle_initialize(entity this, Vehicle info, bool nodrop)
1174 if(!autocvar_g_vehicles)
1182 info.vr_precache(info);
1183 IL_PUSH(g_vehicles, this);
1186 if(this.targetname && this.targetname != "")
1188 this.vehicle_controller = find(NULL, target, this.targetname);
1189 if(!this.vehicle_controller)
1191 LOG_DEBUG("^1WARNING: ^7Vehicle with invalid .targetname");
1192 this.active = ACTIVE_ACTIVE;
1196 this.team = this.vehicle_controller.team;
1197 this.use = vehicle_use;
1201 if(this.vehicle_controller.team == 0)
1202 this.active = ACTIVE_NOT;
1204 this.active = ACTIVE_ACTIVE;
1208 else { this.active = ACTIVE_ACTIVE; }
1210 if(this.team && (!teamplay || !autocvar_g_vehicles_teams))
1213 if(this.mdl == "" || !this.mdl)
1214 _setmodel(this, info.model);
1216 _setmodel(this, this.mdl);
1218 this.vehicle_flags |= VHF_ISVEHICLE;
1220 this.vehicle_viewport = new(vehicle_viewport);
1221 this.vehicle_hudmodel = new(vehicle_hudmodel);
1222 this.tur_head = new(tur_head);
1223 this.tur_head.owner = this;
1224 this.takedamage = DAMAGE_NO;
1225 this.bot_attack = true;
1226 IL_PUSH(g_bot_targets, this);
1227 this.iscreature = true;
1228 this.teleportable = false; // no teleporting for vehicles, too buggy
1229 this.damagedbycontents = true;
1230 IL_PUSH(g_damagedbycontents, this);
1231 this.vehicleid = info.vehicleid;
1232 this.PlayerPhysplug = info.PlayerPhysplug;
1233 this.event_damage = func_null;
1234 settouch(this, vehicles_touch);
1235 setthink(this, vehicles_spawn);
1236 this.nextthink = time;
1237 this.effects = EF_NODRAW;
1238 this.dphitcontentsmask = DPCONTENTS_BODY | DPCONTENTS_SOLID;
1240 if(autocvar_g_playerclip_collisions)
1241 this.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
1243 if(autocvar_g_nodepthtestplayers)
1244 this.effects |= EF_NODEPTHTEST;
1246 if(autocvar_g_fullbrightplayers)
1247 this.effects |= EF_FULLBRIGHT;
1249 _setmodel(this.vehicle_hudmodel, info.hud_model);
1250 setmodel(this.vehicle_viewport, MDL_Null);
1252 if(info.head_model != "")
1254 _setmodel(this.tur_head, info.head_model);
1255 setattachment(this.tur_head, this, info.tag_head);
1256 setattachment(this.vehicle_hudmodel, this.tur_head, info.tag_hud);
1257 setattachment(this.vehicle_viewport, this.vehicle_hudmodel, info.tag_view);
1261 setattachment(this.tur_head, this, "");
1262 setattachment(this.vehicle_hudmodel, this, info.tag_hud);
1263 setattachment(this.vehicle_viewport, this.vehicle_hudmodel, info.tag_view);
1266 setsize(this, info.m_mins, info.m_maxs);
1268 info.vr_setup(info, this);
1272 setorigin(this, this.origin);
1273 tracebox(this.origin + '0 0 100', info.m_mins, info.m_maxs, this.origin - '0 0 10000', MOVE_WORLDONLY, this);
1274 setorigin(this, trace_endpos);
1277 this.pos1 = this.origin;
1278 this.pos2 = this.angles;
1279 this.tur_head.team = this.team;
1281 if(this.active == ACTIVE_NOT)
1282 this.nextthink = 0; // wait until activated
1283 else if(autocvar_g_vehicles_delayspawn)
1284 this.nextthink = time + this.respawntime + (random() * autocvar_g_vehicles_delayspawn_jitter);
1286 this.nextthink = time + game_starttime;
1288 if(MUTATOR_CALLHOOK(VehicleInit, this))