]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/cl_physics.qc
now that antilag works, shrink the headshot bbox a bit:
[divverent/nexuiz.git] / data / qcsrc / server / cl_physics.qc
1 .float race_penalty;
2 .float restart_jump;
3
4 float sv_accelerate;
5 float sv_friction;
6 float sv_maxspeed;
7 float sv_airaccelerate;
8 float sv_maxairspeed;
9 float sv_stopspeed;
10 float sv_gravity;
11 float sv_airaccel_sideways_friction;
12 float sv_airaccel_qw;
13 float sv_airstopaccelerate;
14 float sv_airstrafeaccelerate;
15 float sv_maxairstrafespeed;
16 float sv_aircontrol;
17 float sv_warsowbunny_airforwardaccel;
18 float sv_warsowbunny_accel;
19 float sv_warsowbunny_topspeed;
20 float sv_warsowbunny_turnaccel;
21 float sv_warsowbunny_backtosideratio;
22
23 .float ladder_time;
24 .entity ladder_entity;
25 .float gravity;
26 .float swamp_slowdown;
27 .float lastflags;
28 .float lastground;
29 .float wasFlying;
30 .float spectatorspeed;
31
32 #define SHTEST_DELTA 10
33 #define SHTEST_THRESHOLD 1.1
34 .float shtest_next;
35 .float shtest_accumulator;
36 .float doublejump_nextjumptime;
37
38 /*
39 =============
40 PlayerJump
41
42 When you press the jump key
43 =============
44 */
45 void PlayerJump (void)
46 {
47         float mjumpheight;
48
49         mjumpheight = cvar("sv_jumpvelocity");
50         if (self.waterlevel >= WATERLEVEL_SWIMMING)
51         {
52                 if (self.watertype == CONTENT_WATER)
53                         self.velocity_z = 200;
54                 else if (self.watertype == CONTENT_SLIME)
55                         self.velocity_z = 80;
56                 else
57                         self.velocity_z = 50;
58
59                 return;
60         }
61
62         if (!(self.flags & FL_ONGROUND))
63                 return;
64
65         if(!sv_pogostick)
66                 if (!(self.flags & FL_JUMPRELEASED))
67                         return;
68
69         if(self.health <= g_bloodloss)
70                 return;
71
72         if(sv_doublejump)
73                 if(time < self.doublejump_nextjumptime)
74                         return;
75
76         if(g_runematch)
77         {
78                 if(self.runes & RUNE_SPEED)
79                 {
80                         if(self.runes & CURSE_SLOW)
81                                 mjumpheight = mjumpheight * cvar("g_balance_rune_speed_combo_jumpheight");
82                         else
83                                 mjumpheight = mjumpheight * cvar("g_balance_rune_speed_jumpheight");
84                 }
85                 else if(self.runes & CURSE_SLOW)
86                 {
87                         mjumpheight = mjumpheight * cvar("g_balance_curse_slow_jumpheight");
88                 }
89         }
90
91         if(g_minstagib && (self.items & IT_INVINCIBLE))
92         {
93                 mjumpheight = mjumpheight * cvar("g_minstagib_speed_jumpheight");
94         }
95
96         if(!(self.lastflags & FL_ONGROUND))
97         {
98                 if(cvar("speedmeter"))
99                         dprint(strcat("landing velocity: ", vtos(self.velocity), " (abs: ", ftos(vlen(self.velocity)), ")\n"));
100                 if(self.lastground < time - 0.3)
101                         self.velocity = self.velocity * (1 - cvar("sv_friction_on_land"));
102                 if(self.jumppadcount > 1)
103                         dprint(strcat(ftos(self.jumppadcount), "x jumppad combo\n"));
104                 self.jumppadcount = 0;
105         }
106
107         self.velocity_z = self.velocity_z + mjumpheight;
108         self.oldvelocity_z = self.velocity_z;
109
110         self.flags &~= FL_ONGROUND;
111         self.flags &~= FL_JUMPRELEASED;
112
113         if (self.crouch)
114                 setanim(self, self.anim_duckjump, FALSE, TRUE, TRUE);
115         else
116                 setanim(self, self.anim_jump, FALSE, TRUE, TRUE);
117
118         if(g_jump_grunt)
119                 PlayerSound(playersound_jump, CHAN_PLAYER, VOICETYPE_PLAYERSOUND);
120
121         if(sv_doublejump)
122         {
123                 // we're moving upwards at self.velocity_z
124                 // only allow jumping after we got 3 units upwards
125                 // so we for sure leave the FL_ONGROUND check
126                 //
127                 // but as this sucks because of factoring in gravity, we'll just do it
128                 // for 4 units, and constant velocity
129                 self.doublejump_nextjumptime = time + 4 / max(40, self.velocity_z); // max 0.1s blocking of jumps
130         }
131
132         self.restart_jump = -1; // restart jump anim next time
133         // value -1 is used to not use the teleport bit (workaround for tiny hitch when re-jumping)
134 }
135
136 void CheckWaterJump()
137 {
138         local vector start, end;
139
140 // check for a jump-out-of-water
141         makevectors (self.angles);
142         start = self.origin;
143         start_z = start_z + 8;
144         v_forward_z = 0;
145         normalize(v_forward);
146         end = start + v_forward*24;
147         traceline (start, end, TRUE, self);
148         if (trace_fraction < 1)
149         {       // solid at waist
150                 start_z = start_z + self.maxs_z - 8;
151                 end = start + v_forward*24;
152                 self.movedir = trace_plane_normal * -50;
153                 traceline (start, end, TRUE, self);
154                 if (trace_fraction == 1)
155                 {       // open at eye level
156                         self.flags |= FL_WATERJUMP;
157                         self.velocity_z = 225;
158                         self.flags &~= FL_JUMPRELEASED;
159                         self.teleport_time = time + 2;  // safety net
160                         return;
161                 }
162         }
163 };
164
165 float racecar_angle(float forward, float down)
166 {
167         float ret, angle_mult;
168
169         if(forward < 0)
170         {
171                 forward = -forward;
172                 down = -down;
173         }
174
175         ret = vectoyaw('0 1 0' * down + '1 0 0' * forward);
176
177         angle_mult = forward / (800 + forward);
178
179         if(ret > 180)
180                 return ret * angle_mult + 360 * (1 - angle_mult);
181         else
182                 return ret * angle_mult;
183 }
184
185 void RaceCarPhysics()
186 {
187         // using this move type for "big rigs"
188         // the engine does not push the entity!
189
190         float accel, steer, f;
191         vector angles_save, rigvel;
192
193         angles_save = self.angles;
194         accel = bound(-1, self.movement_x / sv_maxspeed, 1);
195         steer = bound(-1, self.movement_y / sv_maxspeed, 1);
196
197         if(g_bugrigs_reverse_speeding)
198         {
199                 if(accel < 0)
200                 {
201                         // back accel is DIGITAL
202                         // to prevent speedhack
203                         if(accel < -0.5)
204                                 accel = -1;
205                         else
206                                 accel = 0;
207                 }
208         }
209
210         self.angles_x = 0;
211         self.angles_z = 0;
212         makevectors(self.angles); // new forward direction!
213
214         if(self.flags & FL_ONGROUND || g_bugrigs_air_steering)
215         {
216                 float myspeed, upspeed, steerfactor, accelfactor;
217
218                 myspeed = self.velocity * v_forward;
219                 upspeed = self.velocity * v_up;
220
221                 // responsiveness factor for steering and acceleration
222                 f = 1 / (1 + pow(max(-myspeed, myspeed) / g_bugrigs_speed_ref, g_bugrigs_speed_pow));
223                 //MAXIMA: f(v) := 1 / (1 + (v / g_bugrigs_speed_ref) ^ g_bugrigs_speed_pow);
224
225                 if(myspeed < 0 && g_bugrigs_reverse_spinning)
226                         steerfactor = -myspeed * g_bugrigs_steer;
227                 else
228                         steerfactor = -myspeed * f * g_bugrigs_steer;
229
230                 if(myspeed < 0 && g_bugrigs_reverse_speeding)
231                         accelfactor = g_bugrigs_accel;
232                 else
233                         accelfactor = f * g_bugrigs_accel;
234                 //MAXIMA: accel(v) := f(v) * g_bugrigs_accel;
235
236                 if(accel < 0)
237                 {
238                         if(myspeed > 0)
239                         {
240                                 myspeed = max(0, myspeed - frametime * (g_bugrigs_friction_floor - g_bugrigs_friction_brake * accel));
241                         }
242                         else
243                         {
244                                 if(!g_bugrigs_reverse_speeding)
245                                         myspeed = min(0, myspeed + frametime * g_bugrigs_friction_floor);
246                         }
247                 }
248                 else
249                 {
250                         if(myspeed >= 0)
251                         {
252                                 myspeed = max(0, myspeed - frametime * g_bugrigs_friction_floor);
253                         }
254                         else
255                         {
256                                 if(g_bugrigs_reverse_stopping)
257                                         myspeed = 0;
258                                 else
259                                         myspeed = min(0, myspeed + frametime * (g_bugrigs_friction_floor + g_bugrigs_friction_brake * accel));
260                         }
261                 }
262                 // terminal velocity = velocity at which 50 == accelfactor, that is, 1549 units/sec
263                 //MAXIMA: friction(v) := g_bugrigs_friction_floor;
264
265                 self.angles_y += steer * frametime * steerfactor; // apply steering
266                 makevectors(self.angles); // new forward direction!
267
268                 myspeed += accel * accelfactor * frametime;
269
270                 rigvel = myspeed * v_forward + '0 0 1' * upspeed;
271         }
272         else
273         {
274                 myspeed = vlen(self.velocity);
275
276                 // responsiveness factor for steering and acceleration
277                 f = 1 / (1 + pow(max(0, myspeed / g_bugrigs_speed_ref), g_bugrigs_speed_pow));
278                 steerfactor = -myspeed * f;
279                 self.angles_y += steer * frametime * steerfactor; // apply steering
280
281                 rigvel = self.velocity;
282                 makevectors(self.angles); // new forward direction!
283         }
284
285         rigvel = rigvel * max(0, 1 - vlen(rigvel) * g_bugrigs_friction_air * frametime);
286         //MAXIMA: airfriction(v) := v * v * g_bugrigs_friction_air;
287         //MAXIMA: total_acceleration(v) := accel(v) - friction(v) - airfriction(v);
288         //MAXIMA: solve(total_acceleration(v) = 0, v);
289
290         if(g_bugrigs_planar_movement)
291         {
292                 vector rigvel_xy, neworigin, up;
293                 float mt;
294
295                 rigvel_z -= frametime * sv_gravity; // 4x gravity plays better
296                 rigvel_xy = rigvel;
297                 rigvel_xy_z = 0;
298
299                 if(g_bugrigs_planar_movement_car_jumping && !g_touchexplode) // touchexplode is a better way to handle collisions
300                         mt = MOVE_NORMAL;
301                 else
302                         mt = MOVE_NOMONSTERS;
303
304                 tracebox(self.origin, self.mins, self.maxs, self.origin + '0 0 1024', mt, self);
305                 up = trace_endpos - self.origin;
306
307                 // BUG RIGS: align the move to the surface instead of doing collision testing
308                 // can we move?
309                 tracebox(trace_endpos, self.mins, self.maxs, trace_endpos + rigvel_xy * frametime, mt, self);
310
311                 // align to surface
312                 tracebox(trace_endpos, self.mins, self.maxs, trace_endpos - up + '0 0 1' * rigvel_z * frametime, mt, self);
313
314                 if(trace_fraction < 0.5)
315                 {
316                         trace_fraction = 1;
317                         neworigin = self.origin;
318                 }
319                 else
320                         neworigin = trace_endpos;
321
322                 if(trace_fraction < 1)
323                 {
324                         // now set angles_x so that the car points parallel to the surface
325                         self.angles = vectoangles(
326                                         '1 0 0' * v_forward_x * trace_plane_normal_z
327                                         +
328                                         '0 1 0' * v_forward_y * trace_plane_normal_z
329                                         +
330                                         '0 0 1' * -(v_forward_x * trace_plane_normal_x + v_forward_y * trace_plane_normal_y)
331                                         );
332                         self.flags |= FL_ONGROUND;
333                 }
334                 else
335                 {
336                         // now set angles_x so that the car points forward, but is tilted in velocity direction
337                         self.flags &~= FL_ONGROUND;
338                 }
339
340                 self.velocity = (neworigin - self.origin) * (1.0 / frametime);
341                 self.movetype = MOVETYPE_NOCLIP;
342         }
343         else
344         {
345                 rigvel_z -= frametime * sv_gravity; // 4x gravity plays better
346                 self.velocity = rigvel;
347                 self.movetype = MOVETYPE_FLY;
348         }
349
350         trace_fraction = 1;
351         tracebox(self.origin, self.mins, self.maxs, self.origin - '0 0 4', MOVE_NORMAL, self);
352         if(trace_fraction != 1)
353         {
354                 self.angles = vectoangles2(
355                                 '1 0 0' * v_forward_x * trace_plane_normal_z
356                                 +
357                                 '0 1 0' * v_forward_y * trace_plane_normal_z
358                                 +
359                                 '0 0 1' * -(v_forward_x * trace_plane_normal_x + v_forward_y * trace_plane_normal_y),
360                                 trace_plane_normal
361                                 );
362         }
363         else
364         {
365                 vector vel_local;
366
367                 vel_local_x = v_forward * self.velocity;
368                 vel_local_y = v_right * self.velocity;
369                 vel_local_z = v_up * self.velocity;
370
371                 self.angles_x = racecar_angle(vel_local_x, vel_local_z);
372                 self.angles_z = racecar_angle(-vel_local_y, vel_local_z);
373         }
374
375         // smooth the angles
376         vector vf1, vu1, smoothangles;
377         makevectors(self.angles);
378         f = bound(0, frametime * g_bugrigs_angle_smoothing, 1);
379         if(f == 0)
380                 f = 1;
381         vf1 = v_forward * f;
382         vu1 = v_up * f;
383         makevectors(angles_save);
384         vf1 = vf1 + v_forward * (1 - f);
385         vu1 = vu1 + v_up * (1 - f);
386         smoothangles = vectoangles2(vf1, vu1);
387         self.angles_x = -smoothangles_x;
388         self.angles_z =  smoothangles_z;
389 }
390
391 void CPM_PM_Aircontrol(vector wishdir, float wishspeed)
392 {
393         float zspeed, xyspeed, dot, k;
394
395         if(self.movement_x == 0 || self.movement_y != 0)
396                 return; // can't control movement if not moving forward or backward
397
398         zspeed = self.velocity_z;
399         self.velocity_z = 0;
400         xyspeed = vlen(self.velocity);
401         self.velocity = normalize(self.velocity);
402
403         dot = self.velocity * wishdir;
404         k = 32;
405         k *= sv_aircontrol*dot*dot*frametime;
406
407         if(dot > 0) // we can't change direction while slowing down
408                 self.velocity = normalize(self.velocity * xyspeed + wishdir * k);
409
410         self.velocity = self.velocity * xyspeed;
411         self.velocity_z = zspeed;
412 }
413
414 void PM_Accelerate(vector wishdir, float wishspeed, float wishspeed0, float accel, float accelqw, float sidefric)
415 {
416         float vel_straight;
417         float vel_z;
418         vector vel_perpend;
419         float addspeed;
420         float savespeed;
421
422         if(cvar("sv_gameplayfix_q2airaccelerate"))
423                 wishspeed0 = wishspeed;
424
425         savespeed = self.velocity * self.velocity;
426
427         vel_straight = self.velocity * wishdir;
428         vel_z = self.velocity_z;
429         vel_perpend = self.velocity - vel_straight * wishdir - vel_z * '0 0 1';
430
431         addspeed = wishspeed - vel_straight;
432         if(addspeed > 0)
433                 vel_straight = vel_straight + min(addspeed, accel * frametime * wishspeed0) * accelqw;
434         if(wishspeed > 0)
435                 vel_straight = vel_straight + min(wishspeed, accel * frametime * wishspeed0) * (1 - accelqw);
436
437         if(sidefric < 0 && (vel_perpend*vel_perpend))
438         {
439                 float f, fmin;
440                 f = (1 + frametime * wishspeed * sidefric);
441                 fmin = (savespeed - vel_straight*vel_straight) / (vel_perpend*vel_perpend);
442                 if(fmin <= 0)
443                         vel_perpend = vel_perpend * f;
444                 else
445                         vel_perpend = vel_perpend * min(1, max(fmin, f));
446         }
447         else
448                 vel_perpend = vel_perpend * (1 - frametime * wishspeed * sidefric);
449
450         self.velocity = vel_straight * wishdir + vel_z * '0 0 1' + vel_perpend;
451 }
452
453 void PM_AirAccelerate(vector wishdir, float wishspeed)
454 {
455         vector curvel, wishvel, acceldir, curdir;
456         float addspeed, accelspeed, curspeed, f;
457         float dot;
458
459         if(wishspeed == 0)
460                 return;
461
462         curvel = self.velocity;
463         curvel_z = 0;
464         curspeed = vlen(curvel);
465
466         if(wishspeed > curspeed * 1.01)
467         {
468                 wishspeed = min(wishspeed, curspeed + sv_warsowbunny_airforwardaccel * sv_maxspeed * frametime);
469         }
470         else
471         {
472                 f = max(0, (sv_warsowbunny_topspeed - curspeed) / (sv_warsowbunny_topspeed - sv_maxspeed));
473                 wishspeed = max(curspeed, sv_maxspeed) + sv_warsowbunny_accel * f * sv_maxspeed * frametime;
474         }
475         wishvel = wishdir * wishspeed;
476         acceldir = wishvel - curvel;
477         addspeed = vlen(acceldir);
478         acceldir = normalize(acceldir);
479
480         accelspeed = min(addspeed, sv_warsowbunny_turnaccel * sv_maxspeed * frametime);
481
482         if(sv_warsowbunny_backtosideratio < 1)
483         {
484                 curdir = normalize(curvel);
485                 dot = acceldir * curdir;
486                 if(dot < 0)
487                         acceldir = acceldir - (1 - sv_warsowbunny_backtosideratio) * dot * curdir;
488         }
489
490         self.velocity += accelspeed * acceldir;
491 }
492
493 .vector movement_old;
494 .float buttons_old;
495 .vector v_angle_old;
496 .string lastclassname;
497
498 void Nixnex_GiveCurrentWeapon();
499 .float() PlayerPhysplug;
500
501 string specialcommand = "xwxwxsxsxaxdxaxdx1x ";
502 .float specialcommand_pos;
503 void SpecialCommand()
504 {
505 #ifdef TETRIS
506         TetrisImpulse();
507 #else
508         if(sv_cheats || self.maycheat)
509                 self.impulse = 99;
510         else
511                 print("A hollow voice says \"Plugh\".\n");
512 #endif
513 }
514
515 void SV_PlayerPhysics()
516 {
517         local vector wishvel, wishdir, v;
518         local float wishspeed, f, maxspd_mod, spd, maxairspd, airaccel, swampspd_mod, shtest_score, buttons;
519         string temps;
520         float buttons_prev;
521         float not_allowed_to_move;
522         string c;
523         
524         if(g_race || g_cts)
525         {
526                 // if record times matter
527                 // ensure nothing EVIL is being done (i.e. strafebot)
528                 // this hinders joystick users though
529                 // but it still gives SOME analog control
530                 // TODO implement this for engine cl_movement code too (basically, clipping to the four axes)
531                 wishvel_x = fabs(self.movement_x);
532                 wishvel_y = fabs(self.movement_y);
533                 if(wishvel_x != 0 && wishvel_y != 0 && wishvel_x != wishvel_y)
534                 {
535                         wishvel_z = 0;
536                         wishspeed = vlen(wishvel);
537                         if(wishvel_x >= 2 * wishvel_y)
538                         {
539                                 // pure X motion
540                                 if(self.movement_x > 0)
541                                         self.movement_x = wishspeed;
542                                 else
543                                         self.movement_x = -wishspeed;
544                                 self.movement_y = 0;
545                         }
546                         else if(wishvel_y >= 2 * wishvel_x)
547                         {
548                                 // pure Y motion
549                                 self.movement_x = 0;
550                                 if(self.movement_y > 0)
551                                         self.movement_y = wishspeed;
552                                 else
553                                         self.movement_y = -wishspeed;
554                         }
555                         else
556                         {
557                                 // diagonal
558                                 if(self.movement_x > 0)
559                                         self.movement_x = 0.70710678118654752440 * wishspeed;
560                                 else
561                                         self.movement_x = -0.70710678118654752440 * wishspeed;
562                                 if(self.movement_y > 0)
563                                         self.movement_y = 0.70710678118654752440 * wishspeed;
564                                 else
565                                         self.movement_y = -0.70710678118654752440 * wishspeed;
566                         }
567                 }
568         }
569
570         self.race_movetime_frac += frametime;
571         f = floor(self.race_movetime_frac);
572         self.race_movetime_frac -= f;
573         self.race_movetime_count += f;
574         self.race_movetime = self.race_movetime_frac + self.race_movetime_count;
575
576         buttons = self.BUTTON_ATCK + 2 * self.BUTTON_JUMP + 4 * self.BUTTON_ATCK2 + 8 * self.BUTTON_ZOOM + 16 * self.BUTTON_CROUCH + 32 * self.BUTTON_HOOK + 64 * self.BUTTON_USE + 128 * (self.movement_x < 0) + 256 * (self.movement_x > 0) + 512 * (self.movement_y < 0) + 1024 * (self.movement_y > 0);
577
578         if(!buttons)
579                 c = "x";
580         else if(buttons == 1)
581                 c = "1";
582         else if(buttons == 2)
583                 c = " ";
584         else if(buttons == 128)
585                 c = "s";
586         else if(buttons == 256)
587                 c = "w";
588         else if(buttons == 512)
589                 c = "a";
590         else if(buttons == 1024)
591                 c = "d";
592         else
593                 c = "?";
594
595         if(c == substring(specialcommand, self.specialcommand_pos, 1))
596         {
597                 self.specialcommand_pos += 1;
598                 if(self.specialcommand_pos >= strlen(specialcommand))
599                 {
600                         self.specialcommand_pos = 0;
601                         SpecialCommand();
602                         return;
603                 }
604         }
605         else if(self.specialcommand_pos && (c != substring(specialcommand, self.specialcommand_pos - 1, 1)))
606                 self.specialcommand_pos = 0;
607         
608     if(self.PlayerPhysplug)
609         if(self.PlayerPhysplug())
610             return;
611
612         if(!sv_maxidle_spectatorsareidle || self.movetype == MOVETYPE_WALK)
613         {
614                 if(buttons != self.buttons_old || self.movement != self.movement_old || self.v_angle != self.v_angle_old)
615                         self.parm_idlesince = time;
616         }
617         buttons_prev = self.buttons_old;
618         self.buttons_old = buttons;
619         self.movement_old = self.movement;
620         self.v_angle_old = self.v_angle;
621
622         if(time < self.nickspamtime)
623         if(self.nickspamcount >= cvar("g_nick_flood_penalty_yellow"))
624         {
625                 // slight annoyance for nick change scripts
626                 self.movement = -1 * self.movement;
627                 self.BUTTON_ATCK = self.BUTTON_JUMP = self.BUTTON_ATCK2 = self.BUTTON_ZOOM = self.BUTTON_CROUCH = self.BUTTON_HOOK = self.BUTTON_USE = 0;
628
629                 if(self.nickspamcount >= cvar("g_nick_flood_penalty_red")) // if you are persistent and the slight annoyance above does not stop you, I'll show you!
630                 {
631                         self.angles_x = random() * 360;
632                         self.angles_y = random() * 360;
633                         // at least I'm not forcing retardedview by also assigning to angles_z
634                         self.fixangle = 1;
635                 }
636         }
637
638         if(time > self.shtest_next)
639         {
640                 if(self.shtest_next > 0)
641                 {
642                         // self.shtest_accumulator:
643                         //   started at time - SHTEST_DELTA
644                         //   should be at SHTEST_DELTA
645                         shtest_score = self.shtest_accumulator / (SHTEST_DELTA + time - self.shtest_next);
646                         if(shtest_score > SHTEST_THRESHOLD)
647                                 print("TIME PARADOX: shtest for ", self.netname, " said ", ftos(shtest_score), "\n");
648                         else if(cvar("developer_shtest"))
649                                 dprint("okay: shtest for ", self.netname, " said ", ftos(shtest_score), "\n");
650                 }
651                 self.shtest_next = time + SHTEST_DELTA;
652                 self.shtest_accumulator = 0;
653         }
654         self.shtest_accumulator += frametime;
655
656         if (clienttype(self) == CLIENTTYPE_BOT)
657                 bot_think();
658
659         self.items &~= IT_USING_JETPACK;
660
661         if(self.classname == "player")
662         {
663                 if(self.race_penalty)
664                         if(time > self.race_penalty)
665                                 self.race_penalty = 0;
666
667                 not_allowed_to_move = 0;
668                 if(self.race_penalty)
669                         not_allowed_to_move = 1;
670                 if(!cvar("sv_ready_restart_after_countdown"))
671                 if(time < game_starttime)
672                         not_allowed_to_move = 1;
673
674                 if(not_allowed_to_move)
675                 {
676                         self.velocity = '0 0 0';
677                         self.movetype = MOVETYPE_NONE;
678                         self.disableclientprediction = 2;
679                 }
680                 else if(self.disableclientprediction == 2)
681                 {
682                         if(self.movetype == MOVETYPE_NONE)
683                                 self.movetype = MOVETYPE_WALK;
684                         self.disableclientprediction = 0;
685                 }
686         }
687
688         if (self.movetype == MOVETYPE_NONE)
689                 return;
690
691         if (self.punchangle != '0 0 0')
692         {
693                 f = vlen(self.punchangle) - 10 * frametime;
694                 if (f > 0)
695                         self.punchangle = normalize(self.punchangle) * f;
696                 else
697                         self.punchangle = '0 0 0';
698         }
699
700         if (self.punchvector != '0 0 0')
701         {
702                 f = vlen(self.punchvector) - 30 * frametime;
703                 if (f > 0)
704                         self.punchvector = normalize(self.punchvector) * f;
705                 else
706                         self.punchvector = '0 0 0';
707         }
708
709         maxspd_mod = 1;
710
711         if(g_runematch)
712         {
713                 if(self.runes & RUNE_SPEED)
714                 {
715                         if(self.runes & CURSE_SLOW)
716                                 maxspd_mod = maxspd_mod * cvar("g_balance_rune_speed_combo_moverate");
717                         else
718                                 maxspd_mod = maxspd_mod * cvar("g_balance_rune_speed_moverate");
719                 }
720                 else if(self.runes & CURSE_SLOW)
721                 {
722                         maxspd_mod = maxspd_mod * cvar("g_balance_curse_slow_moverate");
723                 }
724         }
725
726         if(g_minstagib && (self.items & IT_INVINCIBLE))
727         {
728                 maxspd_mod = cvar("g_minstagib_speed_moverate");
729         }
730
731         if(g_nexball && self.ballcarried)
732         {
733                 maxspd_mod = cvar("g_nexball_basketball_carrier_speed");
734         }
735
736         swampspd_mod = 1;
737         if(self.in_swamp) {
738                 swampspd_mod = self.swamp_slowdown; //cvar("g_balance_swamp_moverate");
739         }
740
741         if(self.classname != "player")
742         {
743                 maxspd_mod = cvar("sv_spectator_speed_multiplier");
744                 if(!self.spectatorspeed)
745                         self.spectatorspeed = maxspd_mod;
746                 if(self.impulse && self.impulse <= 19)
747                 {
748                         if(self.lastclassname != "player")
749                         {
750                                 if(self.impulse == 10 || self.impulse == 15 || self.impulse == 18)
751                                         self.spectatorspeed = bound(1, self.spectatorspeed + 0.5, 5);
752                                 else if(self.impulse == 11)
753                                         self.spectatorspeed = maxspd_mod;
754                                 else if(self.impulse == 12 || self.impulse == 16  || self.impulse == 19)
755                                         self.spectatorspeed = bound(1, self.spectatorspeed - 0.5, 5);
756                                 else if(self.impulse >= 1 && self.impulse <= 9)
757                                         self.spectatorspeed = 1 + 0.5 * (self.impulse - 1);
758                         } // otherwise just clear
759                         self.impulse = 0;
760                 }
761                 maxspd_mod = self.spectatorspeed;
762         }
763
764         spd = max(sv_maxspeed, sv_maxairspeed) * maxspd_mod * swampspd_mod;
765         if(self.speed != spd)
766         {
767                 self.speed = spd;
768                 temps = ftos(spd);
769                 stuffcmd(self, strcat("cl_forwardspeed ", temps, "\n"));
770                 stuffcmd(self, strcat("cl_backspeed ", temps, "\n"));
771                 stuffcmd(self, strcat("cl_sidespeed ", temps, "\n"));
772                 stuffcmd(self, strcat("cl_upspeed ", temps, "\n"));
773         }
774
775         maxspd_mod *= swampspd_mod; // only one common speed modder please!
776         swampspd_mod = 1;
777
778         // if dead, behave differently
779         if (self.deadflag)
780                 goto end;
781
782         if (!self.fixangle && !g_bugrigs)
783         {
784                 self.angles_x = 0;
785                 self.angles_y = self.v_angle_y;
786                 self.angles_z = 0;
787         }
788
789         if(self.flags & FL_ONGROUND)
790         if(self.wasFlying)
791         {
792                 self.wasFlying = 0;
793
794                 if(self.waterlevel < WATERLEVEL_SWIMMING)
795                 if(time >= self.ladder_time)
796                 if not(self.hook)
797                 {
798                         self.nextstep = time + 0.3 + random() * 0.1;
799                         trace_dphitq3surfaceflags = 0;
800                         tracebox(self.origin, self.mins, self.maxs, self.origin - '0 0 1', MOVE_NOMONSTERS, self);
801                         if not(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOSTEPS)
802                         {
803                                 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_METALSTEPS)
804                                         GlobalSound(globalsound_metalfall, CHAN_PLAYER, VOICETYPE_PLAYERSOUND);
805                                 else
806                                         GlobalSound(globalsound_fall, CHAN_PLAYER, VOICETYPE_PLAYERSOUND);
807                         }
808                 }
809         }
810
811         if(IsFlying(self))
812                 self.wasFlying = 1;
813
814         if(self.classname == "player")
815         {
816                 if(sv_doublejump)
817                 {
818                         self.flags &~= FL_ONGROUND;
819                         tracebox(self.origin + '0 0 1', self.mins, self.maxs, self.origin - '0 0 1', MOVE_NORMAL, self);
820                         if(trace_fraction < 1 && trace_plane_normal_z > 0.7)
821                                 self.flags |= FL_ONGROUND;
822                 }
823
824                 if (self.BUTTON_JUMP)
825                         PlayerJump ();
826                 else
827                         self.flags |= FL_JUMPRELEASED;
828
829                 if (self.waterlevel == WATERLEVEL_SWIMMING)
830                         CheckWaterJump ();
831         }
832
833         if (self.flags & FL_WATERJUMP )
834         {
835                 self.velocity_x = self.movedir_x;
836                 self.velocity_y = self.movedir_y;
837                 if (time > self.teleport_time || self.waterlevel == WATERLEVEL_NONE)
838                 {
839                         self.flags &~= FL_WATERJUMP;
840                         self.teleport_time = 0;
841                 }
842         }
843         else if (g_bugrigs && self.classname == "player")
844         {
845                 RaceCarPhysics();
846         }
847         else if (self.movetype == MOVETYPE_NOCLIP || self.movetype == MOVETYPE_FLY)
848         {
849                 // noclipping or flying
850                 self.flags &~= FL_ONGROUND;
851
852                 self.velocity = self.velocity * (1 - frametime * sv_friction);
853                 makevectors(self.v_angle);
854                 //wishvel = v_forward * self.movement_x + v_right * self.movement_y + v_up * self.movement_z;
855                 wishvel = v_forward * self.movement_x + v_right * self.movement_y + '0 0 1' * self.movement_z;
856                 // acceleration
857                 wishdir = normalize(wishvel);
858                 wishspeed = vlen(wishvel);
859                 if (wishspeed > sv_maxspeed*maxspd_mod)
860                         wishspeed = sv_maxspeed*maxspd_mod;
861                 if (time >= self.teleport_time)
862                         PM_Accelerate(wishdir, wishspeed, wishspeed, sv_accelerate*maxspd_mod, 1, 0);
863         }
864         else if (self.waterlevel >= WATERLEVEL_SWIMMING)
865         {
866                 // swimming
867                 self.flags &~= FL_ONGROUND;
868
869                 makevectors(self.v_angle);
870                 //wishvel = v_forward * self.movement_x + v_right * self.movement_y + v_up * self.movement_z;
871                 wishvel = v_forward * self.movement_x + v_right * self.movement_y + '0 0 1' * self.movement_z;
872                 if (wishvel == '0 0 0')
873                         wishvel = '0 0 -60'; // drift towards bottom
874
875                 wishdir = normalize(wishvel);
876                 wishspeed = vlen(wishvel);
877                 if (wishspeed > sv_maxspeed*maxspd_mod)
878                         wishspeed = sv_maxspeed*maxspd_mod;
879                 wishspeed = wishspeed * 0.7;
880
881                 // water friction
882                 self.velocity = self.velocity * (1 - frametime * sv_friction);
883
884                 // water acceleration
885                 PM_Accelerate(wishdir, wishspeed, wishspeed, sv_accelerate*maxspd_mod, 1, 0);
886         }
887         else if (time < self.ladder_time)
888         {
889                 // on a spawnfunc_func_ladder or swimming in spawnfunc_func_water
890                 self.flags &~= FL_ONGROUND;
891
892                 self.velocity = self.velocity * (1 - frametime * sv_friction);
893                 makevectors(self.v_angle);
894                 //wishvel = v_forward * self.movement_x + v_right * self.movement_y + v_up * self.movement_z;
895                 wishvel = v_forward * self.movement_x + v_right * self.movement_y + '0 0 1' * self.movement_z;
896                 if (self.gravity)
897                         self.velocity_z = self.velocity_z + self.gravity * sv_gravity * frametime;
898                 else
899                         self.velocity_z = self.velocity_z + sv_gravity * frametime;
900                 if (self.ladder_entity.classname == "func_water")
901                 {
902                         f = vlen(wishvel);
903                         if (f > self.ladder_entity.speed)
904                                 wishvel = wishvel * (self.ladder_entity.speed / f);
905
906                         self.watertype = self.ladder_entity.skin;
907                         f = self.ladder_entity.origin_z + self.ladder_entity.maxs_z;
908                         if ((self.origin_z + self.view_ofs_z) < f)
909                                 self.waterlevel = WATERLEVEL_SUBMERGED;
910                         else if ((self.origin_z + (self.mins_z + self.maxs_z) * 0.5) < f)
911                                 self.waterlevel = WATERLEVEL_SWIMMING;
912                         else if ((self.origin_z + self.mins_z + 1) < f)
913                                 self.waterlevel = WATERLEVEL_WETFEET;
914                         else
915                         {
916                                 self.waterlevel = WATERLEVEL_NONE;
917                                 self.watertype = CONTENT_EMPTY;
918                         }
919                 }
920                 // acceleration
921                 wishdir = normalize(wishvel);
922                 wishspeed = vlen(wishvel);
923                 if (wishspeed > sv_maxspeed*maxspd_mod)
924                         wishspeed = sv_maxspeed*maxspd_mod;
925                 if (time >= self.teleport_time)
926                 {
927                         // water acceleration
928                         PM_Accelerate(wishdir, wishspeed, wishspeed, sv_accelerate*maxspd_mod, 1, 0);
929                 }
930         }
931         else if ((self.items & IT_JETPACK) && self.BUTTON_HOOK && (!cvar("g_jetpack_fuel") || self.ammo_fuel >= 0.01 || self.items & IT_UNLIMITED_WEAPON_AMMO))
932         {
933                 //makevectors(self.v_angle_y * '0 1 0');
934                 makevectors(self.v_angle);
935                 wishvel = v_forward * self.movement_x + v_right * self.movement_y;
936                 // add remaining speed as Z component
937                 maxairspd = sv_maxairspeed*max(1, maxspd_mod);
938                 // fix speedhacks :P
939                 wishvel = normalize(wishvel) * min(vlen(wishvel) / maxairspd, 1);
940                 // add the unused velocity as up component
941                 wishvel_z = 0;
942
943                 // if(self.BUTTON_JUMP)
944                         wishvel_z = sqrt(max(0, 1 - wishvel * wishvel));
945
946                 // it is now normalized, so...
947                 float a_side, a_up, a_add, a_diff;
948                 a_side = cvar("g_jetpack_acceleration_side");
949                 a_up = cvar("g_jetpack_acceleration_up");
950                 a_add = cvar("g_jetpack_antigravity") * sv_gravity;
951
952                 wishvel_x *= a_side;
953                 wishvel_y *= a_side;
954                 wishvel_z *= a_up;
955                 wishvel_z += a_add;
956
957                 float best;
958                 best = 0;
959                 //////////////////////////////////////////////////////////////////////////////////////
960                 // finding the maximum over all vectors of above form
961                 // with wishvel having an absolute value of 1
962                 //////////////////////////////////////////////////////////////////////////////////////
963                 // we're finding the maximum over
964                 //   f(a_side, a_up, a_add, z) := a_side * (1 - z^2) + (a_add + a_up * z)^2;
965                 // for z in the range from -1 to 1
966                 //////////////////////////////////////////////////////////////////////////////////////
967                 // maximum is EITHER attained at the single extreme point:
968                 a_diff = a_side * a_side - a_up * a_up;
969                 if(a_diff != 0)
970                 {
971                         f = a_add * a_up / a_diff; // this is the zero of diff(f(a_side, a_up, a_add, z), z)
972                         if(f > -1 && f < 1) // can it be attained?
973                         {
974                                 best = (a_diff + a_add * a_add) * (a_diff + a_up * a_up) / a_diff;
975                                 //print("middle\n");
976                         }
977                 }
978                 // OR attained at z = 1:
979                 f = (a_up + a_add) * (a_up + a_add);
980                 if(f > best)
981                 {
982                         best = f;
983                         //print("top\n");
984                 }
985                 // OR attained at z = -1:
986                 f = (a_up - a_add) * (a_up - a_add);
987                 if(f > best)
988                 {
989                         best = f;
990                         //print("bottom\n");
991                 }
992                 best = sqrt(best);
993                 //////////////////////////////////////////////////////////////////////////////////////
994
995                 //print("best possible acceleration: ", ftos(best), "\n");
996
997                 float fxy, fz;
998                 fxy = bound(0, 1 - (self.velocity * normalize(wishvel_x * '1 0 0' + wishvel_y * '0 1 0')) / cvar("g_jetpack_maxspeed_side"), 1);
999                 if(wishvel_z - sv_gravity > 0)
1000                         fz = bound(0, 1 - self.velocity_z / cvar("g_jetpack_maxspeed_up"), 1);
1001                 else
1002                         fz = bound(0, 1 + self.velocity_z / cvar("g_jetpack_maxspeed_up"), 1);
1003
1004                 float fvel;
1005                 fvel = vlen(wishvel);
1006                 wishvel_x *= fxy;
1007                 wishvel_y *= fxy;
1008                 wishvel_z = (wishvel_z - sv_gravity) * fz + sv_gravity;
1009
1010                 fvel = min(1, vlen(wishvel) / best);
1011                 if(cvar("g_jetpack_fuel") && !(self.items & IT_UNLIMITED_WEAPON_AMMO))
1012                         f = min(1, self.ammo_fuel / (cvar("g_jetpack_fuel") * frametime * fvel));
1013                 else
1014                         f = 1;
1015
1016                 //print("this acceleration: ", ftos(vlen(wishvel) * f), "\n");
1017
1018                 if (f > 0 && wishvel != '0 0 0')
1019                 {
1020                         self.velocity = self.velocity + wishvel * f * frametime;
1021                         if not(self.items & IT_UNLIMITED_WEAPON_AMMO)
1022                                 self.ammo_fuel -= cvar("g_jetpack_fuel") * frametime * fvel * f;
1023                         self.flags &~= FL_ONGROUND;
1024                         self.items |= IT_USING_JETPACK;
1025
1026                         // jetpack also inhibits health regeneration, but only for 1 second
1027                         self.pauseregen_finished = max(self.pauseregen_finished, time + cvar("g_balance_pause_fuel_regen"));
1028                 }
1029         }
1030         else if (self.flags & FL_ONGROUND)
1031         {
1032                 // we get here if we ran out of ammo
1033                 if((self.items & IT_JETPACK) && self.BUTTON_HOOK && !(buttons_prev & 32))
1034                         sprint(self, "You don't have any fuel for the ^2Jetpack\n");
1035
1036                 // walking
1037                 makevectors(self.v_angle_y * '0 1 0');
1038                 wishvel = v_forward * self.movement_x + v_right * self.movement_y;
1039
1040                 if(!(self.lastflags & FL_ONGROUND))
1041                 {
1042                         if(cvar("speedmeter"))
1043                                 dprint(strcat("landing velocity: ", vtos(self.velocity), " (abs: ", ftos(vlen(self.velocity)), ")\n"));
1044                         if(self.lastground < time - 0.3)
1045                                 self.velocity = self.velocity * (1 - cvar("sv_friction_on_land"));
1046                         if(self.jumppadcount > 1)
1047                                 dprint(strcat(ftos(self.jumppadcount), "x jumppad combo\n"));
1048                         self.jumppadcount = 0;
1049                 }
1050
1051 #ifdef LETS_TEST_FTEQCC
1052                 if(self.velocity_x || self.velocity_y)
1053                 {
1054                         // good
1055                 }
1056                 else
1057                 {
1058                         if(self.velocity_x)
1059                                 checkclient();
1060                         if(self.velocity_y)
1061                                 checkclient();
1062                 }
1063 #endif
1064
1065                 v = self.velocity;
1066                 v_z = 0;
1067                 f = vlen(v);
1068                 if(f > 0)
1069                 {
1070                         if (f < sv_stopspeed)
1071                                 f = 1 - frametime * (sv_stopspeed / f) * sv_friction;
1072                         else
1073                                 f = 1 - frametime * sv_friction;
1074                         if (f > 0)
1075                                 self.velocity = self.velocity * f;
1076                         else
1077                                 self.velocity = '0 0 0';
1078                 }
1079
1080                 // acceleration
1081                 wishdir = normalize(wishvel);
1082                 wishspeed = vlen(wishvel);
1083                 if (wishspeed > sv_maxspeed*maxspd_mod)
1084                         wishspeed = sv_maxspeed*maxspd_mod;
1085                 if (self.crouch)
1086                         wishspeed = wishspeed * 0.5;
1087                 if (time >= self.teleport_time)
1088                         PM_Accelerate(wishdir, wishspeed, wishspeed, sv_accelerate*maxspd_mod, 1, 0);
1089         }
1090         else
1091         {
1092                 float wishspeed0;
1093                 // we get here if we ran out of ammo
1094                 if((self.items & IT_JETPACK) && self.BUTTON_HOOK && !(buttons_prev & 32))
1095                         sprint(self, "You don't have any fuel for the ^2Jetpack\n");
1096
1097                 if(maxspd_mod < 1)
1098                 {
1099                         maxairspd = sv_maxairspeed*maxspd_mod;
1100                         airaccel = sv_airaccelerate*maxspd_mod;
1101                 }
1102                 else
1103                 {
1104                         maxairspd = sv_maxairspeed;
1105                         airaccel = sv_airaccelerate;
1106                 }
1107                 // airborn
1108                 makevectors(self.v_angle_y * '0 1 0');
1109                 wishvel = v_forward * self.movement_x + v_right * self.movement_y;
1110                 // acceleration
1111                 wishdir = normalize(wishvel);
1112                 wishspeed = wishspeed0 = vlen(wishvel);
1113                 if (wishspeed0 > sv_maxspeed*maxspd_mod)
1114                         wishspeed0 = sv_maxspeed*maxspd_mod;
1115                 if (wishspeed > maxairspd)
1116                         wishspeed = maxairspd;
1117                 if (self.crouch)
1118                         wishspeed = wishspeed * 0.5;
1119                 if (time >= self.teleport_time)
1120                 {
1121                         float accelerating;
1122                         float wishspeed2;
1123                         float airaccelqw;
1124
1125                         airaccelqw = sv_airaccel_qw;
1126                         accelerating = (self.velocity * wishdir > 0);
1127                         wishspeed2 = wishspeed;
1128
1129                         // CPM
1130                         if(sv_airstopaccelerate)
1131                                 if(self.velocity * wishdir < 0)
1132                                         airaccel = sv_airstopaccelerate*maxspd_mod;
1133                         if(self.movement_x == 0 && self.movement_y != 0)
1134                         {
1135                                 if(sv_maxairstrafespeed)
1136                                 {
1137                                         wishspeed = min(wishspeed, sv_maxairstrafespeed*maxspd_mod);
1138                                         if(sv_maxairstrafespeed < sv_maxairspeed)
1139                                                 airaccelqw = 1;
1140                                 }
1141                                 if(sv_airstrafeaccelerate)
1142                                 {
1143                                         airaccel = sv_airstrafeaccelerate*maxspd_mod;
1144                                         if(sv_airstrafeaccelerate > sv_airaccelerate)
1145                                                 airaccelqw = 1;
1146                                 }
1147                         }
1148                         // !CPM
1149
1150                         if(sv_warsowbunny_turnaccel && accelerating && self.movement_y == 0 && self.movement_x != 0)
1151                                 PM_AirAccelerate(wishdir, wishspeed);
1152                         else
1153                                 PM_Accelerate(wishdir, wishspeed, wishspeed0, airaccel, airaccelqw, sv_airaccel_sideways_friction / maxairspd);
1154
1155                         if(sv_aircontrol)
1156                                 CPM_PM_Aircontrol(wishdir, wishspeed2);
1157                 }
1158         }
1159
1160 :end
1161         if(self.flags & FL_ONGROUND)
1162                 self.lastground = time;
1163
1164         self.lastflags = self.flags;
1165         self.lastclassname = self.classname;
1166 };