]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/physics/player.qc
Merge branch 'master' into Mario/wepent_experimental
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / physics / player.qc
1 #include "player.qh"
2 #include "../triggers/include.qh"
3 #include "../viewloc.qh"
4
5 #ifdef SVQC
6
7 #include <server/miscfunctions.qh>
8 #include "../triggers/trigger/viewloc.qh"
9
10 // client side physics
11 bool Physics_Valid(string thecvar)
12 {
13         return autocvar_g_physics_clientselect && strhasword(autocvar_g_physics_clientselect_options, thecvar);
14 }
15
16 float Physics_ClientOption(entity this, string option, float defaultval)
17 {
18         if(Physics_Valid(this.cvar_cl_physics))
19         {
20                 string s = sprintf("g_physics_%s_%s", this.cvar_cl_physics, option);
21                 if(cvar_type(s) & CVAR_TYPEFLAG_EXISTS)
22                         return cvar(s);
23         }
24         if(autocvar_g_physics_clientselect && autocvar_g_physics_clientselect_default)
25         {
26                 string s = sprintf("g_physics_%s_%s", autocvar_g_physics_clientselect_default, option);
27                 if(cvar_type(s) & CVAR_TYPEFLAG_EXISTS)
28                         return cvar(s);
29         }
30         return defaultval;
31 }
32
33 void Physics_UpdateStats(entity this, float maxspd_mod)
34 {
35         STAT(MOVEVARS_AIRACCEL_QW, this) = AdjustAirAccelQW(Physics_ClientOption(this, "airaccel_qw", autocvar_sv_airaccel_qw), maxspd_mod);
36         STAT(MOVEVARS_AIRSTRAFEACCEL_QW, this) = (Physics_ClientOption(this, "airstrafeaccel_qw", autocvar_sv_airstrafeaccel_qw))
37                 ? AdjustAirAccelQW(Physics_ClientOption(this, "airstrafeaccel_qw", autocvar_sv_airstrafeaccel_qw), maxspd_mod)
38                 : 0;
39         STAT(MOVEVARS_AIRSPEEDLIMIT_NONQW, this) = Physics_ClientOption(this, "airspeedlimit_nonqw", autocvar_sv_airspeedlimit_nonqw) * maxspd_mod;
40         STAT(MOVEVARS_MAXSPEED, this) = Physics_ClientOption(this, "maxspeed", autocvar_sv_maxspeed) * maxspd_mod; // also slow walking
41
42         STAT(PL_MIN, this) = autocvar_sv_player_mins;
43         STAT(PL_MAX, this) = autocvar_sv_player_maxs;
44         STAT(PL_VIEW_OFS, this) = autocvar_sv_player_viewoffset;
45         STAT(PL_CROUCH_MIN, this) = autocvar_sv_player_crouch_mins;
46         STAT(PL_CROUCH_MAX, this) = autocvar_sv_player_crouch_maxs;
47         STAT(PL_CROUCH_VIEW_OFS, this) = autocvar_sv_player_crouch_viewoffset;
48
49         // old stats
50         // fix some new settings
51         STAT(MOVEVARS_AIRACCEL_QW_STRETCHFACTOR, this) = Physics_ClientOption(this, "airaccel_qw_stretchfactor", autocvar_sv_airaccel_qw_stretchfactor);
52         STAT(MOVEVARS_MAXAIRSTRAFESPEED, this) = Physics_ClientOption(this, "maxairstrafespeed", autocvar_sv_maxairstrafespeed);
53         STAT(MOVEVARS_MAXAIRSPEED, this) = Physics_ClientOption(this, "maxairspeed", autocvar_sv_maxairspeed);
54         STAT(MOVEVARS_AIRSTRAFEACCELERATE, this) = Physics_ClientOption(this, "airstrafeaccelerate", autocvar_sv_airstrafeaccelerate);
55         STAT(MOVEVARS_WARSOWBUNNY_TURNACCEL, this) = Physics_ClientOption(this, "warsowbunny_turnaccel", autocvar_sv_warsowbunny_turnaccel);
56         STAT(MOVEVARS_AIRACCEL_SIDEWAYS_FRICTION, this) = Physics_ClientOption(this, "airaccel_sideways_friction", autocvar_sv_airaccel_sideways_friction);
57         STAT(MOVEVARS_AIRCONTROL, this) = Physics_ClientOption(this, "aircontrol", autocvar_sv_aircontrol);
58         STAT(MOVEVARS_AIRCONTROL_POWER, this) = Physics_ClientOption(this, "aircontrol_power", autocvar_sv_aircontrol_power);
59         STAT(MOVEVARS_AIRCONTROL_BACKWARDS, this) = Physics_ClientOption(this, "aircontrol_backwards", autocvar_sv_aircontrol_backwards);
60         STAT(MOVEVARS_AIRCONTROL_PENALTY, this) = Physics_ClientOption(this, "aircontrol_penalty", autocvar_sv_aircontrol_penalty);
61         STAT(MOVEVARS_WARSOWBUNNY_AIRFORWARDACCEL, this) = Physics_ClientOption(this, "warsowbunny_airforwardaccel", autocvar_sv_warsowbunny_airforwardaccel);
62         STAT(MOVEVARS_WARSOWBUNNY_TOPSPEED, this) = Physics_ClientOption(this, "warsowbunny_topspeed", autocvar_sv_warsowbunny_topspeed);
63         STAT(MOVEVARS_WARSOWBUNNY_ACCEL, this) = Physics_ClientOption(this, "warsowbunny_accel", autocvar_sv_warsowbunny_accel);
64         STAT(MOVEVARS_WARSOWBUNNY_BACKTOSIDERATIO, this) = Physics_ClientOption(this, "warsowbunny_backtosideratio", autocvar_sv_warsowbunny_backtosideratio);
65         STAT(MOVEVARS_FRICTION, this) = Physics_ClientOption(this, "friction", autocvar_sv_friction);
66         STAT(MOVEVARS_ACCELERATE, this) = Physics_ClientOption(this, "accelerate", autocvar_sv_accelerate);
67         STAT(MOVEVARS_STOPSPEED, this) = Physics_ClientOption(this, "stopspeed", autocvar_sv_stopspeed);
68         STAT(MOVEVARS_AIRACCELERATE, this) = Physics_ClientOption(this, "airaccelerate", autocvar_sv_airaccelerate);
69         STAT(MOVEVARS_AIRSTOPACCELERATE, this) = Physics_ClientOption(this, "airstopaccelerate", autocvar_sv_airstopaccelerate);
70         STAT(MOVEVARS_JUMPVELOCITY, this) = Physics_ClientOption(this, "jumpvelocity", autocvar_sv_jumpvelocity);
71         STAT(MOVEVARS_TRACK_CANJUMP, this) = Physics_ClientOption(this, "track_canjump", autocvar_sv_track_canjump);
72 }
73 #endif
74
75 float IsMoveInDirection(vector mv, float ang) // key mix factor
76 {
77         if (mv_x == 0 && mv_y == 0)
78                 return 0; // avoid division by zero
79         ang -= RAD2DEG * atan2(mv_y, mv_x);
80         ang = remainder(ang, 360) / 45;
81         return ang > 1 ? 0 : ang < -1 ? 0 : 1 - fabs(ang);
82 }
83
84 float GeomLerp(float a, float _lerp, float b)
85 {
86         return a == 0 ? (_lerp < 1 ? 0 : b)
87                 : b == 0 ? (_lerp > 0 ? 0 : a)
88                 : a * pow(fabs(b / a), _lerp);
89 }
90
91 void PM_ClientMovement_UpdateStatus(entity this)
92 {
93 #ifdef CSQC
94         if(!IS_PLAYER(this))
95                 return;
96
97         // set crouched
98         bool do_crouch = PHYS_INPUT_BUTTON_CROUCH(this);
99         for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
100         {
101                 entity wep = viewmodels[slot];
102                 if(wep.hook && !wasfreed(wep.hook))
103                 {
104                         do_crouch = false;
105                         break; // don't bother checking the others
106                 }
107         }
108         if(this.waterlevel >= WATERLEVEL_SWIMMING)
109                 do_crouch = false;
110         if(hud != HUD_NORMAL)
111                 do_crouch = false;
112         if(STAT(FROZEN, this))
113                 do_crouch = false;
114
115         if (do_crouch)
116         {
117                 // wants to crouch, this always works
118                 if (!IS_DUCKED(this)) SET_DUCKED(this);
119         }
120         else
121         {
122                 // wants to stand, if currently crouching we need to check for a low ceiling first
123                 if (IS_DUCKED(this))
124                 {
125                         tracebox(this.origin, STAT(PL_MIN, NULL), STAT(PL_MAX, NULL), this.origin, MOVE_NORMAL, this);
126                         if (!trace_startsolid) UNSET_DUCKED(this);
127                 }
128         }
129
130         if (IS_ONGROUND(this) || this.velocity.z <= 0 || PHYS_WATERJUMP_TIME(this) <= 0)
131                 PHYS_WATERJUMP_TIME(this) = 0;
132 #endif
133 }
134
135 void CPM_PM_Aircontrol(entity this, float dt, vector wishdir, float wishspeed)
136 {
137         float movity = IsMoveInDirection(this.movement, 0);
138         if(PHYS_AIRCONTROL_BACKWARDS(this))
139                 movity += IsMoveInDirection(this.movement, 180);
140
141         float k = 32 * (2 * movity - 1);
142         if (k <= 0)
143                 return;
144
145         k *= bound(0, wishspeed / PHYS_MAXAIRSPEED(this), 1);
146
147         float zspeed = this.velocity_z;
148         this.velocity_z = 0;
149         float xyspeed = vlen(this.velocity);
150         this.velocity = normalize(this.velocity);
151
152         float dot = this.velocity * wishdir;
153
154         if (dot > 0) // we can't change direction while slowing down
155         {
156                 k *= pow(dot, PHYS_AIRCONTROL_POWER(this)) * dt;
157                 xyspeed = max(0, xyspeed - PHYS_AIRCONTROL_PENALTY(this) * sqrt(max(0, 1 - dot*dot)) * k/32);
158                 k *= PHYS_AIRCONTROL(this);
159                 this.velocity = normalize(this.velocity * xyspeed + wishdir * k);
160         }
161
162         this.velocity = this.velocity * xyspeed;
163         this.velocity_z = zspeed;
164 }
165
166 float AdjustAirAccelQW(float accelqw, float factor)
167 {
168         return copysign(bound(0.000001, 1 - (1 - fabs(accelqw)) * factor, 1), accelqw);
169 }
170
171 // example config for alternate speed clamping:
172 //   sv_airaccel_qw 0.8
173 //   sv_airaccel_sideways_friction 0
174 //   prvm_globalset server speedclamp_mode 1
175 //     (or 2)
176 void PM_Accelerate(entity this, float dt, vector wishdir, float wishspeed, float wishspeed0, float accel, float accelqw, float stretchfactor, float sidefric, float speedlimit)
177 {
178         float speedclamp = stretchfactor > 0 ? stretchfactor
179         : accelqw < 0 ? 1 // full clamping, no stretch
180         : -1; // no clamping
181
182         accelqw = fabs(accelqw);
183
184         if (GAMEPLAYFIX_Q2AIRACCELERATE)
185                 wishspeed0 = wishspeed; // don't need to emulate this Q1 bug
186
187         float vel_straight = this.velocity * wishdir;
188         float vel_z = this.velocity_z;
189         vector vel_xy = vec2(this.velocity);
190         vector vel_perpend = vel_xy - vel_straight * wishdir;
191
192         float step = accel * dt * wishspeed0;
193
194         float vel_xy_current  = vlen(vel_xy);
195         if (speedlimit)
196                 accelqw = AdjustAirAccelQW(accelqw, (speedlimit - bound(wishspeed, vel_xy_current, speedlimit)) / max(1, speedlimit - wishspeed));
197         float vel_xy_forward =  vel_xy_current  + bound(0, wishspeed - vel_xy_current, step) * accelqw + step * (1 - accelqw);
198         float vel_xy_backward = vel_xy_current  - bound(0, wishspeed + vel_xy_current, step) * accelqw - step * (1 - accelqw);
199         vel_xy_backward = max(0, vel_xy_backward); // not that it REALLY occurs that this would cause wrong behaviour afterwards
200         vel_straight =          vel_straight    + bound(0, wishspeed - vel_straight,   step) * accelqw + step * (1 - accelqw);
201
202         if (sidefric < 0 && (vel_perpend*vel_perpend))
203                 // negative: only apply so much sideways friction to stay below the speed you could get by "braking"
204         {
205                 float f = max(0, 1 + dt * wishspeed * sidefric);
206                 float themin = (vel_xy_backward * vel_xy_backward - vel_straight * vel_straight) / (vel_perpend * vel_perpend);
207                 // assume: themin > 1
208                 // vel_xy_backward*vel_xy_backward - vel_straight*vel_straight > vel_perpend*vel_perpend
209                 // vel_xy_backward*vel_xy_backward > vel_straight*vel_straight + vel_perpend*vel_perpend
210                 // vel_xy_backward*vel_xy_backward > vel_xy * vel_xy
211                 // obviously, this cannot be
212                 if (themin <= 0)
213                         vel_perpend *= f;
214                 else
215                 {
216                         themin = sqrt(themin);
217                         vel_perpend *= max(themin, f);
218                 }
219         }
220         else
221                 vel_perpend *= max(0, 1 - dt * wishspeed * sidefric);
222
223         vel_xy = vel_straight * wishdir + vel_perpend;
224
225         if (speedclamp >= 0)
226         {
227                 float vel_xy_preclamp;
228                 vel_xy_preclamp = vlen(vel_xy);
229                 if (vel_xy_preclamp > 0) // prevent division by zero
230                 {
231                         vel_xy_current += (vel_xy_forward - vel_xy_current) * speedclamp;
232                         if (vel_xy_current < vel_xy_preclamp)
233                                 vel_xy *= (vel_xy_current / vel_xy_preclamp);
234                 }
235         }
236
237         this.velocity = vel_xy + vel_z * '0 0 1';
238 }
239
240 void PM_AirAccelerate(entity this, float dt, vector wishdir, float wishspeed)
241 {
242         if (wishspeed == 0)
243                 return;
244
245         vector curvel = this.velocity;
246         curvel_z = 0;
247         float curspeed = vlen(curvel);
248
249         if (wishspeed > curspeed * 1.01)
250                 wishspeed = min(wishspeed, curspeed + PHYS_WARSOWBUNNY_AIRFORWARDACCEL(this) * PHYS_MAXSPEED(this) * dt);
251         else
252         {
253                 float f = max(0, (PHYS_WARSOWBUNNY_TOPSPEED(this) - curspeed) / (PHYS_WARSOWBUNNY_TOPSPEED(this) - PHYS_MAXSPEED(this)));
254                 wishspeed = max(curspeed, PHYS_MAXSPEED(this)) + PHYS_WARSOWBUNNY_ACCEL(this) * f * PHYS_MAXSPEED(this) * dt;
255         }
256         vector wishvel = wishdir * wishspeed;
257         vector acceldir = wishvel - curvel;
258         float addspeed = vlen(acceldir);
259         acceldir = normalize(acceldir);
260
261         float accelspeed = min(addspeed, PHYS_WARSOWBUNNY_TURNACCEL(this) * PHYS_MAXSPEED(this) * dt);
262
263         if (PHYS_WARSOWBUNNY_BACKTOSIDERATIO(this) < 1)
264         {
265                 vector curdir = normalize(curvel);
266                 float dot = acceldir * curdir;
267                 if (dot < 0)
268                         acceldir -= (1 - PHYS_WARSOWBUNNY_BACKTOSIDERATIO(this)) * dot * curdir;
269         }
270
271         this.velocity += accelspeed * acceldir;
272 }
273
274
275 /*
276 =============
277 PlayerJump
278
279 When you press the jump key
280 returns true if handled
281 =============
282 */
283 bool PlayerJump(entity this)
284 {
285         if (PHYS_FROZEN(this))
286                 return true; // no jumping in freezetag when frozen
287
288 #ifdef SVQC
289         if (this.player_blocked)
290                 return true; // no jumping while blocked
291 #endif
292
293         bool doublejump = false;
294         float mjumpheight = PHYS_JUMPVELOCITY(this);
295
296         if (MUTATOR_CALLHOOK(PlayerJump, this, mjumpheight, doublejump))
297                 return true;
298
299         mjumpheight = M_ARGV(1, float);
300         doublejump = M_ARGV(2, bool);
301
302         if (this.waterlevel >= WATERLEVEL_SWIMMING)
303         {
304                 if(this.viewloc)
305                 {
306                         doublejump = true;
307                         mjumpheight *= 0.7;
308                 }
309                 else
310                 {
311                         this.velocity_z = PHYS_MAXSPEED(this) * 0.7;
312                         return true;
313                 }
314         }
315
316         if (!doublejump)
317                 if (!IS_ONGROUND(this) && !IS_ONSLICK(this))
318                         return IS_JUMP_HELD(this);
319
320         bool track_jump = PHYS_CL_TRACK_CANJUMP(this);
321         if(PHYS_TRACK_CANJUMP(this))
322                 track_jump = true;
323
324         if (track_jump)
325                 if (IS_JUMP_HELD(this))
326                         return true;
327
328         // sv_jumpspeedcap_min/sv_jumpspeedcap_max act as baseline
329         // velocity bounds.  Final velocity is bound between (jumpheight *
330         // min + jumpheight) and (jumpheight * max + jumpheight);
331
332         if(PHYS_JUMPSPEEDCAP_MIN != "")
333         {
334                 float minjumpspeed = mjumpheight * stof(PHYS_JUMPSPEEDCAP_MIN);
335
336                 if (this.velocity_z < minjumpspeed)
337                         mjumpheight += minjumpspeed - this.velocity_z;
338         }
339
340         if(PHYS_JUMPSPEEDCAP_MAX != "")
341         {
342                 // don't do jump speedcaps on ramps to preserve old xonotic ramjump style
343                 tracebox(this.origin + '0 0 0.01', this.mins, this.maxs, this.origin - '0 0 0.01', MOVE_NORMAL, this);
344
345                 if (!(trace_fraction < 1 && trace_plane_normal_z < 0.98 && PHYS_JUMPSPEEDCAP_DISABLE_ONRAMPS(this)))
346                 {
347                         float maxjumpspeed = mjumpheight * stof(PHYS_JUMPSPEEDCAP_MAX);
348
349                         if (this.velocity_z > maxjumpspeed)
350                                 mjumpheight -= this.velocity_z - maxjumpspeed;
351                 }
352         }
353
354         if (!WAS_ONGROUND(this) && !WAS_ONSLICK(this))
355         {
356 #ifdef SVQC
357                 if(autocvar_speedmeter)
358                         LOG_TRACE("landing velocity: ", vtos(this.velocity), " (abs: ", ftos(vlen(this.velocity)), ")");
359 #endif
360                 if(this.lastground < time - 0.3)
361                 {
362                         float f = (1 - PHYS_FRICTION_ONLAND(this));
363                         this.velocity_x *= f;
364                         this.velocity_y *= f;
365                 }
366 #ifdef SVQC
367                 if(this.jumppadcount > 1)
368                         LOG_TRACE(ftos(this.jumppadcount), "x jumppad combo");
369                 this.jumppadcount = 0;
370 #endif
371         }
372
373         this.velocity_z += mjumpheight;
374
375         UNSET_ONGROUND(this);
376         UNSET_ONSLICK(this);
377         SET_JUMP_HELD(this);
378
379 #ifdef SVQC
380
381         this.oldvelocity_z = this.velocity_z;
382
383         animdecide_setaction(this, ANIMACTION_JUMP, true);
384
385         if (autocvar_g_jump_grunt)
386                 PlayerSound(this, playersound_jump, CH_PLAYER, VOL_BASE, VOICETYPE_PLAYERSOUND);
387 #endif
388         return true;
389 }
390
391 void CheckWaterJump(entity this)
392 {
393 // check for a jump-out-of-water
394         makevectors(this.v_angle);
395         vector start = this.origin;
396         start_z += 8;
397         v_forward_z = 0;
398         normalize(v_forward);
399         vector end = start + v_forward*24;
400         traceline (start, end, true, this);
401         if (trace_fraction < 1)
402         {       // solid at waist
403                 start_z = start_z + this.maxs_z - 8;
404                 end = start + v_forward*24;
405                 this.movedir = trace_plane_normal * -50;
406                 traceline(start, end, true, this);
407                 if (trace_fraction == 1)
408                 {       // open at eye level
409                         this.velocity_z = 225;
410                         this.flags |= FL_WATERJUMP;
411                         SET_JUMP_HELD(this);
412                 #ifdef SVQC
413                         PHYS_TELEPORT_TIME(this) = time + 2;    // safety net
414                 #elif defined(CSQC)
415                         PHYS_WATERJUMP_TIME(this) = 2;
416                 #endif
417                 }
418         }
419 }
420
421
422 #ifdef SVQC
423         #define JETPACK_JUMP(s) s.cvar_cl_jetpack_jump
424 #elif defined(CSQC)
425         float autocvar_cl_jetpack_jump;
426         #define JETPACK_JUMP(s) autocvar_cl_jetpack_jump
427 #endif
428 .float jetpack_stopped;
429 void CheckPlayerJump(entity this)
430 {
431 #ifdef SVQC
432         bool was_flying = boolean(ITEMS_STAT(this) & IT_USING_JETPACK);
433 #endif
434         if (JETPACK_JUMP(this) < 2)
435                 ITEMS_STAT(this) &= ~IT_USING_JETPACK;
436
437         if(PHYS_INPUT_BUTTON_JUMP(this) || PHYS_INPUT_BUTTON_JETPACK(this))
438         {
439                 bool playerjump = PlayerJump(this); // required
440
441                 bool air_jump = !playerjump || M_ARGV(2, bool);
442                 bool activate = JETPACK_JUMP(this) && air_jump && PHYS_INPUT_BUTTON_JUMP(this) || PHYS_INPUT_BUTTON_JETPACK(this);
443                 bool has_fuel = !PHYS_JETPACK_FUEL(this) || PHYS_AMMO_FUEL(this) || (ITEMS_STAT(this) & IT_UNLIMITED_WEAPON_AMMO);
444
445                 if (!(ITEMS_STAT(this) & ITEM_Jetpack.m_itemid)) { }
446                 else if (this.jetpack_stopped) { }
447                 else if (!has_fuel)
448                 {
449 #ifdef SVQC
450                         if (was_flying) // TODO: ran out of fuel message
451                                 Send_Notification(NOTIF_ONE, this, MSG_INFO, INFO_JETPACK_NOFUEL);
452                         else if (activate)
453                                 Send_Notification(NOTIF_ONE, this, MSG_INFO, INFO_JETPACK_NOFUEL);
454 #endif
455                         this.jetpack_stopped = true;
456                         ITEMS_STAT(this) &= ~IT_USING_JETPACK;
457                 }
458                 else if (activate && !PHYS_FROZEN(this))
459                         ITEMS_STAT(this) |= IT_USING_JETPACK;
460         }
461         else
462         {
463                 this.jetpack_stopped = false;
464                 ITEMS_STAT(this) &= ~IT_USING_JETPACK;
465         }
466         if (!PHYS_INPUT_BUTTON_JUMP(this))
467                 UNSET_JUMP_HELD(this);
468
469         if (this.waterlevel == WATERLEVEL_SWIMMING)
470                 CheckWaterJump(this);
471 }
472
473 float racecar_angle(float forward, float down)
474 {
475         if (forward < 0)
476         {
477                 forward = -forward;
478                 down = -down;
479         }
480
481         float ret = vectoyaw('0 1 0' * down + '1 0 0' * forward);
482
483         float angle_mult = forward / (800 + forward);
484
485         if (ret > 180)
486                 return ret * angle_mult + 360 * (1 - angle_mult);
487         else
488                 return ret * angle_mult;
489 }
490
491 #ifdef SVQC
492 string specialcommand = "xwxwxsxsxaxdxaxdx1x ";
493 .float specialcommand_pos;
494 void SpecialCommand(entity this)
495 {
496         if (!CheatImpulse(this, CHIMPULSE_GIVE_ALL.impulse))
497                 LOG_INFO("A hollow voice says \"Plugh\".\n");
498 }
499 #endif
500
501 bool PM_check_specialcommand(entity this, int buttons)
502 {
503 #ifdef SVQC
504         string c;
505         if (!buttons)
506                 c = "x";
507         else if (buttons == 1)
508                 c = "1";
509         else if (buttons == 2)
510                 c = " ";
511         else if (buttons == 128)
512                 c = "s";
513         else if (buttons == 256)
514                 c = "w";
515         else if (buttons == 512)
516                 c = "a";
517         else if (buttons == 1024)
518                 c = "d";
519         else
520                 c = "?";
521
522         if (c == substring(specialcommand, this.specialcommand_pos, 1))
523         {
524                 this.specialcommand_pos += 1;
525                 if (this.specialcommand_pos >= strlen(specialcommand))
526                 {
527                         this.specialcommand_pos = 0;
528                         SpecialCommand(this);
529                         return true;
530                 }
531         }
532         else if (this.specialcommand_pos && (c != substring(specialcommand, this.specialcommand_pos - 1, 1)))
533                 this.specialcommand_pos = 0;
534 #endif
535         return false;
536 }
537
538 void PM_check_nickspam(entity this)
539 {
540 #ifdef SVQC
541         if (time >= this.nickspamtime)
542                 return;
543         if (this.nickspamcount >= autocvar_g_nick_flood_penalty_yellow)
544         {
545                 // slight annoyance for nick change scripts
546                 this.movement = -1 * this.movement;
547                 PHYS_INPUT_BUTTON_ATCK(this) = PHYS_INPUT_BUTTON_JUMP(this) = PHYS_INPUT_BUTTON_ATCK2(this) = PHYS_INPUT_BUTTON_ZOOM(this) = PHYS_INPUT_BUTTON_CROUCH(this) = PHYS_INPUT_BUTTON_HOOK(this) = PHYS_INPUT_BUTTON_USE(this) = false;
548
549                 if (this.nickspamcount >= autocvar_g_nick_flood_penalty_red) // if you are persistent and the slight annoyance above does not stop you, I'll show you!
550                 {
551                         this.v_angle_x = random() * 360;
552                         this.v_angle_y = random() * 360;
553                         // at least I'm not forcing retardedview by also assigning to angles_z
554                         this.fixangle = true;
555                 }
556         }
557 #endif
558 }
559
560 void PM_check_punch(entity this, float dt)
561 {
562 #ifdef SVQC
563         if (this.punchangle != '0 0 0')
564         {
565                 float f = vlen(this.punchangle) - 10 * dt;
566                 if (f > 0)
567                         this.punchangle = normalize(this.punchangle) * f;
568                 else
569                         this.punchangle = '0 0 0';
570         }
571
572         if (this.punchvector != '0 0 0')
573         {
574                 float f = vlen(this.punchvector) - 30 * dt;
575                 if (f > 0)
576                         this.punchvector = normalize(this.punchvector) * f;
577                 else
578                         this.punchvector = '0 0 0';
579         }
580 #endif
581 }
582
583 // predict frozen movement, as frozen players CAN move in some cases
584 void PM_check_frozen(entity this)
585 {
586         if (!PHYS_FROZEN(this))
587                 return;
588         if (PHYS_DODGING_FROZEN(this)
589 #ifdef SVQC
590         && IS_REAL_CLIENT(this)
591 #endif
592         )
593         {
594                 this.movement_x = bound(-5, this.movement.x, 5);
595                 this.movement_y = bound(-5, this.movement.y, 5);
596                 this.movement_z = bound(-5, this.movement.z, 5);
597         }
598         else
599                 this.movement = '0 0 0';
600
601         vector midpoint = ((this.absmin + this.absmax) * 0.5);
602         if (pointcontents(midpoint) == CONTENT_WATER)
603         {
604                 this.velocity = this.velocity * 0.5;
605
606                 if (pointcontents(midpoint + '0 0 16') == CONTENT_WATER)
607                         this.velocity_z = 200;
608         }
609 }
610
611 void PM_check_hitground(entity this)
612 {
613 #ifdef SVQC
614         if (!this.wasFlying) return;
615     this.wasFlying = false;
616     if (this.waterlevel >= WATERLEVEL_SWIMMING) return;
617     if (time < this.ladder_time) return;
618     for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
619     {
620         .entity weaponentity = weaponentities[slot];
621         if(this.(weaponentity).hook)
622                 return;
623     }
624     this.nextstep = time + 0.3 + random() * 0.1;
625     trace_dphitq3surfaceflags = 0;
626     tracebox(this.origin, this.mins, this.maxs, this.origin - '0 0 1', MOVE_NOMONSTERS, this);
627     if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOSTEPS) return;
628     entity gs = (trace_dphitq3surfaceflags & Q3SURFACEFLAG_METALSTEPS)
629         ? GS_FALL_METAL
630         : GS_FALL;
631     float vol = ((IS_DUCKED(this)) ? VOL_MUFFLED : VOL_BASE);
632     GlobalSound(this, gs, CH_PLAYER, vol, VOICETYPE_PLAYERSOUND);
633 #endif
634 }
635
636 void PM_Footsteps(entity this)
637 {
638 #ifdef SVQC
639         if (!g_footsteps) return;
640         if (IS_DUCKED(this)) return;
641         if (time >= this.lastground + 0.2) return;
642         if (vdist(this.velocity, <=, autocvar_sv_maxspeed * 0.6)) return;
643         if ((time > this.nextstep) || (time < (this.nextstep - 10.0)))
644         {
645                 this.nextstep = time + 0.3 + random() * 0.1;
646                 trace_dphitq3surfaceflags = 0;
647                 tracebox(this.origin, this.mins, this.maxs, this.origin - '0 0 1', MOVE_NOMONSTERS, this);
648                 if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOSTEPS) return;
649                 entity gs = (trace_dphitq3surfaceflags & Q3SURFACEFLAG_METALSTEPS)
650                         ? GS_STEP_METAL
651                         : GS_STEP;
652                 GlobalSound(this, gs, CH_PLAYER, VOL_BASE, VOICETYPE_PLAYERSOUND);
653         }
654 #endif
655 }
656
657 void PM_check_slick(entity this)
658 {
659         if(!IS_ONGROUND(this))
660                 return;
661
662         if(!PHYS_SLICK_APPLYGRAVITY(this))
663                 return;
664
665         tracebox(this.origin, this.mins, this.maxs, this.origin - '0 0 1', MOVE_NOMONSTERS, this);
666         if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_SLICK)
667         {
668                 UNSET_ONGROUND(this);
669                 SET_ONSLICK(this);
670         }
671         else
672                 UNSET_ONSLICK(this);
673 }
674
675 void PM_check_blocked(entity this)
676 {
677 #ifdef SVQC
678         if (!this.player_blocked)
679                 return;
680         this.movement = '0 0 0';
681         this.disableclientprediction = 1;
682 #endif
683 }
684
685 void PM_jetpack(entity this, float maxspd_mod, float dt)
686 {
687         //makevectors(this.v_angle.y * '0 1 0');
688         makevectors(this.v_angle);
689         vector wishvel = v_forward * this.movement_x
690                                         + v_right * this.movement_y;
691         // add remaining speed as Z component
692         float maxairspd = PHYS_MAXAIRSPEED(this) * max(1, maxspd_mod);
693         // fix speedhacks :P
694         wishvel = normalize(wishvel) * min(1, vlen(wishvel) / maxairspd);
695         // add the unused velocity as up component
696         wishvel_z = 0;
697
698         // if (PHYS_INPUT_BUTTON_JUMP(this))
699                 wishvel_z = sqrt(max(0, 1 - wishvel * wishvel));
700
701         // it is now normalized, so...
702         float a_side = PHYS_JETPACK_ACCEL_SIDE(this);
703         float a_up = PHYS_JETPACK_ACCEL_UP(this);
704         float a_add = PHYS_JETPACK_ANTIGRAVITY(this) * PHYS_GRAVITY(this);
705
706         if(PHYS_JETPACK_REVERSE_THRUST(this) && PHYS_INPUT_BUTTON_CROUCH(self)) { a_up = PHYS_JETPACK_REVERSE_THRUST(this); }
707
708         wishvel_x *= a_side;
709         wishvel_y *= a_side;
710         wishvel_z *= a_up;
711         wishvel_z += a_add;
712
713         if(PHYS_JETPACK_REVERSE_THRUST(this) && PHYS_INPUT_BUTTON_CROUCH(self)) { wishvel_z *= -1; }
714
715         float best = 0;
716         //////////////////////////////////////////////////////////////////////////////////////
717         // finding the maximum over all vectors of above form
718         // with wishvel having an absolute value of 1
719         //////////////////////////////////////////////////////////////////////////////////////
720         // we're finding the maximum over
721         //   f(a_side, a_up, a_add, z) := a_side * (1 - z^2) + (a_add + a_up * z)^2;
722         // for z in the range from -1 to 1
723         //////////////////////////////////////////////////////////////////////////////////////
724         // maximum is EITHER attained at the single extreme point:
725         float a_diff = a_side * a_side - a_up * a_up;
726         float f;
727         if (a_diff != 0)
728         {
729                 f = a_add * a_up / a_diff; // this is the zero of diff(f(a_side, a_up, a_add, z), z)
730                 if (f > -1 && f < 1) // can it be attained?
731                 {
732                         best = (a_diff + a_add * a_add) * (a_diff + a_up * a_up) / a_diff;
733                         //print("middle\n");
734                 }
735         }
736         // OR attained at z = 1:
737         f = (a_up + a_add) * (a_up + a_add);
738         if (f > best)
739         {
740                 best = f;
741                 //print("top\n");
742         }
743         // OR attained at z = -1:
744         f = (a_up - a_add) * (a_up - a_add);
745         if (f > best)
746         {
747                 best = f;
748                 //print("bottom\n");
749         }
750         best = sqrt(best);
751         //////////////////////////////////////////////////////////////////////////////////////
752
753         //print("best possible acceleration: ", ftos(best), "\n");
754
755         float fxy, fz;
756         fxy = bound(0, 1 - (this.velocity * normalize(wishvel_x * '1 0 0' + wishvel_y * '0 1 0')) / PHYS_JETPACK_MAXSPEED_SIDE(this), 1);
757         if (wishvel_z - PHYS_GRAVITY(this) > 0)
758                 fz = bound(0, 1 - this.velocity_z / PHYS_JETPACK_MAXSPEED_UP(this), 1);
759         else
760                 fz = bound(0, 1 + this.velocity_z / PHYS_JETPACK_MAXSPEED_UP(this), 1);
761
762         float fvel;
763         fvel = vlen(wishvel);
764         wishvel_x *= fxy;
765         wishvel_y *= fxy;
766         wishvel_z = (wishvel_z - PHYS_GRAVITY(this)) * fz + PHYS_GRAVITY(this);
767
768         fvel = min(1, vlen(wishvel) / best);
769         if (PHYS_JETPACK_FUEL(this) && !(ITEMS_STAT(this) & IT_UNLIMITED_WEAPON_AMMO))
770                 f = min(1, PHYS_AMMO_FUEL(this) / (PHYS_JETPACK_FUEL(this) * dt * fvel));
771         else
772                 f = 1;
773
774         //print("this acceleration: ", ftos(vlen(wishvel) * f), "\n");
775
776         if (f > 0 && wishvel != '0 0 0')
777         {
778                 this.velocity = this.velocity + wishvel * f * dt;
779                 UNSET_ONGROUND(this);
780
781 #ifdef SVQC
782                 if (!(ITEMS_STAT(this) & IT_UNLIMITED_WEAPON_AMMO))
783                         this.ammo_fuel -= PHYS_JETPACK_FUEL(this) * dt * fvel * f;
784
785                 ITEMS_STAT(this) |= IT_USING_JETPACK;
786
787                 // jetpack also inhibits health regeneration, but only for 1 second
788                 this.pauseregen_finished = max(this.pauseregen_finished, time + autocvar_g_balance_pause_fuel_regen);
789 #endif
790         }
791 }
792
793 // used for calculating airshots
794 bool IsFlying(entity this)
795 {
796         if(IS_ONGROUND(this))
797                 return false;
798         if(this.waterlevel >= WATERLEVEL_SWIMMING)
799                 return false;
800         traceline(this.origin, this.origin - '0 0 48', MOVE_NORMAL, this);
801         if(trace_fraction < 1)
802                 return false;
803         return true;
804 }
805
806
807 void sys_phys_update(entity this, float dt);
808 #if defined(SVQC)
809 void SV_PlayerPhysics(entity this)
810 #elif defined(CSQC)
811 void CSQC_ClientMovement_PlayerMove_Frame(entity this)
812 #endif
813 {
814         sys_phys_update(this, PHYS_INPUT_TIMELENGTH);
815
816 #ifdef SVQC
817         this.pm_frametime = frametime;
818 #endif
819 }