]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/csqcmodel/cl_player.qc
Fix some issues with movetype prediction, also make jumppads predicted
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / csqcmodel / cl_player.qc
1 /*
2  * Copyright (c) 2011 Rudolf Polzer
3  * Copyright (c) 2015 Micah Talkiewicz
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy
6  * of this software and associated documentation files (the "Software"), to
7  * deal in the Software without restriction, including without limitation the
8  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9  * sell copies of the Software, and to permit persons to whom the Software is
10  * furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  */
23 #include "cl_player.qh"
24
25 #include "cl_model.qh"
26 #include "common.qh"
27 #include "interpolate.qh"
28 #include "../../client/defs.qh"
29 #include "../../client/main.qh"
30 #include "../../common/constants.qh"
31 #include "../../common/physics.qh"
32 #include "../../common/stats.qh"
33 #include "../../common/triggers/trigger/viewloc.qh"
34 #include "../../common/util.qh"
35 #include "../../common/viewloc.qh"
36
37 float autocvar_cl_movement_errorcompensation = 0;
38
39 // engine stuff
40 float pmove_onground; // weird engine flag we shouldn't really use but have to for now
41
42 vector csqcplayer_origin, csqcplayer_velocity;
43 float csqcplayer_sequence;
44 int player_pmflags;
45 float csqcplayer_moveframe;
46 vector csqcplayer_predictionerroro;
47 vector csqcplayer_predictionerrorv;
48 float csqcplayer_predictionerrortime;
49 float csqcplayer_predictionerrorfactor;
50
51 vector CSQCPlayer_GetPredictionErrorO()
52 {
53         if (time >= csqcplayer_predictionerrortime) return '0 0 0';
54         return csqcplayer_predictionerroro * (csqcplayer_predictionerrortime - time) * csqcplayer_predictionerrorfactor;
55 }
56
57 vector CSQCPlayer_GetPredictionErrorV()
58 {
59         if (time >= csqcplayer_predictionerrortime) return '0 0 0';
60         return csqcplayer_predictionerrorv * (csqcplayer_predictionerrortime - time) * csqcplayer_predictionerrorfactor;
61 }
62
63 void CSQCPlayer_SetPredictionError(vector o, vector v, float onground_diff)
64 {
65         // error too big to compensate, we LIKELY hit a teleport or a
66         // jumppad, or it's a jump time disagreement that'll get fixed
67         // next frame
68
69         // FIXME we sometimes have disagreement in order of jump velocity. Do not act on them!
70         /*
71         // commented out as this one did not help
72         if(onground_diff)
73         {
74                 printf("ONGROUND MISMATCH: %d x=%v v=%v\n", onground_diff, o, v);
75                 return;
76         }
77         */
78         if(vlen(o) > 32 || vlen(v) > 192)
79         {
80                 //printf("TOO BIG: x=%v v=%v\n", o, v);
81                 return;
82         }
83
84         if(!autocvar_cl_movement_errorcompensation)
85         {
86                 csqcplayer_predictionerrorfactor = 0;
87                 return;
88         }
89
90         csqcplayer_predictionerroro = CSQCPlayer_GetPredictionErrorO() + o;
91         csqcplayer_predictionerrorv = CSQCPlayer_GetPredictionErrorV() + v;
92         csqcplayer_predictionerrorfactor = autocvar_cl_movement_errorcompensation / ticrate;
93         csqcplayer_predictionerrortime = time + 1.0 / csqcplayer_predictionerrorfactor;
94 }
95
96 void CSQCPlayer_Unpredict(entity this)
97 {
98         if (csqcplayer_status == CSQCPLAYERSTATUS_UNPREDICTED) return;
99         if (csqcplayer_status != CSQCPLAYERSTATUS_PREDICTED) LOG_FATALF("Cannot unpredict in current status (%d)\n", csqcplayer_status);
100         this.origin = csqcplayer_origin;
101         this.velocity = csqcplayer_velocity;
102         csqcplayer_moveframe = csqcplayer_sequence + 1; // + 1 because the recieved frame has the move already done (server side)
103         this.flags = player_pmflags;
104 }
105
106 void CSQCPlayer_SetMinsMaxs(entity this)
107 {
108         if (this.flags & FL_DUCKED)
109         {
110                 this.mins = PL_CROUCH_MIN;
111                 this.maxs = PL_CROUCH_MAX;
112                 this.view_ofs = PL_CROUCH_VIEW_OFS;
113         }
114         else
115         {
116                 this.mins = PL_MIN;
117                 this.maxs = PL_MAX;
118                 this.view_ofs = PL_VIEW_OFS;
119         }
120 }
121
122 void CSQCPlayer_SavePrediction(entity this)
123 {
124         player_pmflags = this.flags;
125         csqcplayer_origin = this.origin;
126         csqcplayer_velocity = this.velocity;
127         csqcplayer_sequence = servercommandframe;
128         csqcplayer_status = CSQCPLAYERSTATUS_PREDICTED;
129 }
130
131 void CSQC_ClientMovement_PlayerMove_Frame(entity this);
132 void _Movetype_Physics_ClientFrame(entity this, float movedt);
133
134 void Movetype_Physics_Spam(entity this)  // optimized
135 {
136         _Movetype_Physics_ClientFrame(this, PHYS_INPUT_TIMELENGTH);
137         if(wasfreed(this))
138                 return;
139
140         this.avelocity = this.move_avelocity;
141         this.velocity = this.move_velocity;
142         this.angles = this.move_angles;
143         this.flags = BITSET(this.flags, FL_ONGROUND, boolean(this.move_flags & FL_ONGROUND));
144         setorigin(this, this.move_origin);
145 }
146
147 void CSQCPlayer_Physics(entity this)
148 {
149         if(autocvar_cl_movement)
150         {
151                 CSQC_ClientMovement_PlayerMove_Frame(this);
152
153                 if(autocvar_cl_movement == 3)
154                 {
155                         this.move_origin = this.origin;
156                         this.move_angles = this.angles;
157                         //this.move_movetype = MOVETYPE_WALK; // temp
158                         this.move_velocity = this.velocity;
159                         this.move_avelocity = this.avelocity;
160                         this.move_flags = BITSET(this.move_flags, FL_ONGROUND, boolean(this.flags & FL_ONGROUND));
161                         Movetype_Physics_Spam(this);
162                 }
163         }
164 }
165
166 void CSQCPlayer_PredictTo(entity this, float endframe, bool apply_error)
167 {
168         CSQCPlayer_Unpredict(this);
169         if (apply_error)
170         {
171                 this.origin += CSQCPlayer_GetPredictionErrorO();
172                 this.velocity += CSQCPlayer_GetPredictionErrorV();
173         }
174         CSQCPlayer_SetMinsMaxs(this);
175
176         csqcplayer_status = CSQCPLAYERSTATUS_PREDICTED;
177
178 #if 0
179         // we don't need this
180         // darkplaces makes servercommandframe == 0 in these cases anyway
181         if (getstatf(STAT_HEALTH) <= 0)
182         {
183                 csqcplayer_moveframe = clientcommandframe;
184                 getinputstate(csqcplayer_moveframe-1);
185                 LOG_INFO("the Weird code path got hit\n");
186                 return;
187         }
188 #endif
189
190         if (csqcplayer_moveframe >= endframe)
191         {
192                 getinputstate(csqcplayer_moveframe - 1);
193         }
194         else
195         {
196                 do
197                 {
198                         if (!getinputstate(csqcplayer_moveframe)) break;
199                         CSQCPlayer_Physics(this);
200                         CSQCPlayer_SetMinsMaxs(this);
201                         ++csqcplayer_moveframe;
202                 }
203                 while (csqcplayer_moveframe < endframe);
204         }
205
206         // add in anything that was applied after (for low packet rate protocols)
207         input_angles = view_angles;
208 }
209
210 bool CSQCPlayer_IsLocalPlayer(entity this)
211 {
212         return (this == csqcplayer);
213 }
214
215 void CSQCPlayer_SetViewLocation()
216 {
217         viewloc_SetViewLocation();
218 }
219
220 /** Called once per CSQC_UpdateView() */
221 void CSQCPlayer_SetCamera()
222 {
223         const vector v0 = pmove_vel; // TRICK: pmove_vel is set by the engine when we get here. No need to network velocity
224         const float vh = getstati(STAT_VIEWHEIGHT);
225         const vector pl_viewofs = PL_VIEW_OFS;
226         const vector pl_viewofs_crouch = PL_CROUCH_VIEW_OFS;
227         const entity e = csqcplayer;
228         if (e)
229         {
230                 if (servercommandframe == 0 || clientcommandframe == 0)
231                 {
232                         InterpolateOrigin_Do(e);
233                         e.view_ofs = '0 0 1' * vh;
234
235                         // get crouch state from the server
236                         if (vh == pl_viewofs.z) e.flags &= ~FL_DUCKED;
237                         else if (vh == pl_viewofs_crouch.z) e.flags |= FL_DUCKED;
238
239                         // get onground state from the server
240                         e.flags = BITSET(e.flags, FL_ONGROUND, pmove_onground);
241
242                         CSQCPlayer_SetMinsMaxs(e);
243
244                         // override it back just in case
245                         e.view_ofs = '0 0 1' * vh;
246
247                         // set velocity
248                         e.velocity = v0;
249                 }
250                 else
251                 {
252                         const int flg = e.iflags; e.iflags &= ~(IFLAG_ORIGIN | IFLAG_ANGLES);
253                         InterpolateOrigin_Do(e);
254                         e.iflags = flg;
255
256                         if (csqcplayer_status == CSQCPLAYERSTATUS_FROMSERVER)
257                         {
258                                 const vector o = e.origin;
259                                 csqcplayer_status = CSQCPLAYERSTATUS_PREDICTED;
260                                 CSQCPlayer_PredictTo(e, servercommandframe + 1, false);
261                                 CSQCPlayer_SetPredictionError(e.origin - o, e.velocity - v0, pmove_onground - boolean(e.flags & FL_ONGROUND));
262                                 e.origin = o;
263                                 e.velocity = v0;
264
265                                 // get crouch state from the server
266                                 if (vh == pl_viewofs.z) e.flags &= ~FL_DUCKED;
267                                 else if(vh == pl_viewofs_crouch.z) e.flags |= FL_DUCKED;
268
269                                 // get onground state from the server
270                                 e.flags = BITSET(e.flags, FL_ONGROUND, pmove_onground);
271
272                                 CSQCPlayer_SavePrediction(e);
273                         }
274                         CSQCPlayer_PredictTo(e, clientcommandframe + 1, true);
275
276 #ifdef CSQCMODEL_SERVERSIDE_CROUCH
277                         // get crouch state from the server (LAG)
278                         if (vh == pl_viewofs.z) e.flags &= ~FL_DUCKED;
279                         else if (vh == pl_viewofs_crouch.z) e.flags |= FL_DUCKED;
280 #endif
281                         CSQCPlayer_SetMinsMaxs(e);
282
283                         e.angles_y = input_angles.y;
284                 }
285
286                 // relink
287                 setorigin(e, e.origin);
288         }
289
290         const entity view = CSQCModel_server2csqc(player_localentnum - 1);
291         if (view)
292         {
293                 if (view != csqcplayer)
294                 {
295                         InterpolateOrigin_Do(view);
296                         view.view_ofs = '0 0 1' * vh;
297                 }
298                 int refdefflags = 0;
299                 if (view.csqcmodel_teleported) refdefflags |= REFDEFFLAG_TELEPORTED;
300                 if (input_buttons & BIT(1)) refdefflags |= REFDEFFLAG_JUMPING;
301                 // note: these two only work in WIP2, but are harmless in WIP1
302                 if (getstati(STAT_HEALTH) <= 0) refdefflags |= REFDEFFLAG_DEAD;
303                 if (intermission) refdefflags |= REFDEFFLAG_INTERMISSION;
304                 V_CalcRefdef(view, refdefflags);
305         }
306         else
307         {
308                 // FIXME by CSQC spec we have to do this:
309                 // but it breaks chase cam
310                 /*
311                 setproperty(VF_ORIGIN, pmove_org + '0 0 1' * vh);
312                 setproperty(VF_ANGLES, view_angles);
313                 */
314         }
315         CSQCPLAYER_HOOK_POSTCAMERASETUP();
316 }
317
318 void CSQCPlayer_Remove()
319 {
320         csqcplayer = NULL;
321         cvar_settemp("cl_movement_replay", "1");
322 }
323
324 bool CSQCPlayer_PreUpdate(entity this)
325 {
326         if (this != csqcplayer) return false;
327         if (csqcplayer_status != CSQCPLAYERSTATUS_FROMSERVER) CSQCPlayer_Unpredict(this);
328         return true;
329 }
330
331 bool CSQCPlayer_PostUpdate(entity this)
332 {
333         if (this.entnum != player_localnum + 1) return false;
334         csqcplayer = this;
335         csqcplayer_status = CSQCPLAYERSTATUS_FROMSERVER;
336         cvar_settemp("cl_movement_replay", "0");
337         this.entremove = CSQCPlayer_Remove;
338         return true;
339 }