Nebula
Loading...
Searching...
No Matches
extrapolator.h
Go to the documentation of this file.
1
#pragma once
2
//------------------------------------------------------------------------------
17
#include "
timing/time.h
"
18
19
namespace
Math
20
{
21
template
<
class
TYPE>
class
Extrapolator
22
{
23
public
:
25
Extrapolator
();
27
virtual
~Extrapolator
();
29
bool
AddSample
(
Timing::Time
packetTime,
Timing::Time
curTime,
const
TYPE& pos);
31
bool
AddSample
(
Timing::Time
packetTime,
Timing::Time
curTime,
const
TYPE& pos,
const
TYPE& vel);
33
void
Reset
(
Timing::Time
packetTime,
Timing::Time
curTime,
const
TYPE& pos);
35
void
Reset
(
Timing::Time
packetTime,
Timing::Time
curTime,
const
TYPE& pos,
const
TYPE& vel);
39
bool
ReadValue
(
Timing::Time
forTime, TYPE& oPos)
const
;
43
bool
ReadValue
(
Timing::Time
forTime, TYPE& oPos, TYPE& oVel)
const
;
45
Timing::Time
EstimateLatency
()
const
;
47
Timing::Time
EstimateUpdateTime
()
const
;
48
49
private
:
51
bool
Estimates
(
Timing::Time
packetTime,
Timing::Time
curTime);
52
53
TYPE
snapPos
;
54
TYPE
snapVel
;
55
TYPE
aimPos
;
56
TYPE
lastPacketPos
;
// only used when re-constituting velocity
57
Timing::Time
snapTime
;
// related to this->snapPos
58
Timing::Time
aimTime
;
// related to this->aimPos
59
Timing::Time
lastPacketTime
;
// related to this->lastPacketPos
60
Timing::Time
latency
;
61
Timing::Time
updateTime
;
62
};
63
64
//------------------------------------------------------------------------------
67
template
<
class
TYPE>
68
Extrapolator<TYPE>::Extrapolator
()
69
{
70
this->
Reset
(0, 0, TYPE());
71
}
72
73
//------------------------------------------------------------------------------
76
template
<
class
TYPE>
77
Extrapolator<TYPE>::~Extrapolator
()
78
{
79
}
80
81
//------------------------------------------------------------------------------
84
template
<
class
TYPE>
bool
85
Extrapolator<TYPE>::AddSample
(
Timing::Time
packetTime,
Timing::Time
curTime,
const
TYPE& pos)
86
{
87
// The best guess I can make for velocity is the difference between
88
// this sample and the last registered sample.
89
// if you use this function, TYPE must implement zero assignment
90
TYPE vel(0);
91
if
(
Math::abs
(packetTime - this->
lastPacketTime
) >
N_TINY
)
//1e-4
92
{
93
float
dt = (float)(1.0 / (packetTime - this->
lastPacketTime
));
94
vel = (pos - this->
lastPacketPos
) * dt;
95
}
96
return
this->
AddSample
(packetTime, curTime, pos, vel);
97
}
98
99
//------------------------------------------------------------------------------
102
template
<
class
TYPE>
bool
103
Extrapolator<TYPE>::AddSample
(
Timing::Time
packetTime,
Timing::Time
curTime,
const
TYPE& pos,
const
TYPE& vel)
104
{
105
if
(!
Estimates
(packetTime, curTime)) {
106
return
false
;
107
}
108
this->
lastPacketPos
= pos;
109
this->
lastPacketTime
= packetTime;
110
this->
ReadValue
(curTime, this->
snapPos
);
111
this->
aimTime
= curTime + this->
updateTime
;
112
float
dt = (float)(this->
aimTime
- packetTime);
113
this->
snapTime
= curTime;
114
this->
aimPos
= pos + vel * dt;
115
116
// I now have two positions and two times:
117
// this->aimPos / this->aimTime
118
// this->snapPos / this->snapTime
119
// I must generate the interpolation velocity based on these two samples.
120
// However, if this->aimTime is the same as this->snapTime, I'm in trouble. In that
121
// case, use the supplied velocity.
122
if
(
Math::abs
(this->
aimTime
- this->
snapTime
) <
N_TINY
)
123
{
124
this->
snapVel
= vel;
125
}
126
else
127
{
128
float
dt = (float)(1.0 / (this->
aimTime
- this->
snapTime
));
129
this->
snapVel
= (this->
aimPos
- this->
snapPos
) * dt;
130
}
131
return
true
;
132
}
133
134
//------------------------------------------------------------------------------
137
template
<
class
TYPE>
void
138
Extrapolator<TYPE>::Reset
(
Timing::Time
packetTime,
Timing::Time
curTime,
const
TYPE& pos)
139
{
140
TYPE vel;
141
this->
Reset
(packetTime, curTime, pos, vel);
142
}
143
144
//------------------------------------------------------------------------------
147
template
<
class
TYPE>
void
148
Extrapolator<TYPE>::Reset
(
Timing::Time
packetTime,
Timing::Time
curTime,
const
TYPE& pos,
const
TYPE& vel)
149
{
150
n_assert
(packetTime <= curTime);
151
this->
lastPacketTime
= packetTime;
152
this->
lastPacketPos
= pos;
153
this->
snapTime
= curTime;
154
this->
snapPos
= pos;
155
this->
updateTime
= curTime - packetTime;
156
this->
latency
= this->
updateTime
;
157
this->
aimTime
= curTime + this->
updateTime
;
158
this->
snapVel
= vel;
159
this->
aimPos
= this->
snapPos
+ this->
snapVel
* (float)this->updateTime;
160
}
161
162
//------------------------------------------------------------------------------
165
template
<
class
TYPE>
bool
166
Extrapolator<TYPE>::ReadValue
(
Timing::Time
forTime, TYPE& oPos)
const
167
{
168
TYPE vel;
169
return
this->
ReadValue
(forTime, oPos, vel);
170
}
171
172
//------------------------------------------------------------------------------
175
template
<
class
TYPE>
bool
176
Extrapolator<TYPE>::ReadValue
(
Timing::Time
forTime, TYPE& oPos, TYPE& oVel)
const
177
{
178
bool
ok =
true
;
179
180
// asking for something before the allowable time?
181
if
(forTime < this->
snapTime
)
182
{
183
forTime = this->snapTime;
184
ok =
false
;
185
}
186
187
// asking for something very far in the future?
188
Timing::Time
maxRange = this->
aimTime
+ this->
updateTime
;
189
if
(forTime > maxRange)
190
{
191
forTime = maxRange;
192
ok =
false
;
193
}
194
195
// calculate the interpolated position
196
oVel = this->
snapVel
;
197
oPos = this->
snapPos
+ oVel * (float)(forTime - this->snapTime);
198
199
return
ok;
200
}
201
202
//------------------------------------------------------------------------------
205
template
<
class
TYPE>
Timing::Time
206
Extrapolator<TYPE>::EstimateLatency
()
const
207
{
208
return
this->
latency
;
209
}
210
211
//------------------------------------------------------------------------------
214
template
<
class
TYPE>
Timing::Time
215
Extrapolator<TYPE>::EstimateUpdateTime
()
const
216
{
217
return
this->
updateTime
;
218
}
219
220
//------------------------------------------------------------------------------
223
template
<
class
TYPE>
bool
224
Extrapolator<TYPE>::Estimates
(
Timing::Time
packet,
Timing::Time
cur)
225
{
226
if
(packet <= this->
lastPacketTime
)
227
{
228
return
false
;
229
}
230
231
// The theory is that, if latency increases, quickly
232
// compensate for it, but if latency decreases, be a
233
// little more resilient; this is intended to compensate
234
// for jittery delivery.
235
Timing::Time
lat = cur - packet;
236
if
(lat < 0) lat = 0;
237
if
(lat > this->
latency
)
238
{
239
this->
latency
= (this->
latency
+ lat) * 0.5;
240
}
241
else
242
{
243
this->
latency
= (this->
latency
* 7 + lat) * 0.125;
244
}
245
246
// Do the same running average for update time.
247
// Again, the theory is that a lossy connection wants
248
// an average of a higher update time.
249
Timing::Time
tick = packet - this->lastPacketTime;
250
if
(tick > this->
updateTime
)
251
{
252
this->
updateTime
= (this->
updateTime
+ tick) * 0.5;
253
}
254
else
255
{
256
this->
updateTime
= (this->
updateTime
* 7 + tick) * 0.125;
257
}
258
259
return
true
;
260
}
261
262
}
Math::Extrapolator::~Extrapolator
virtual ~Extrapolator()
destructor
Definition
extrapolator.h:77
Math::Extrapolator::latency
Timing::Time latency
Definition
extrapolator.h:60
Math::Extrapolator::lastPacketTime
Timing::Time lastPacketTime
Definition
extrapolator.h:59
Math::Extrapolator::EstimateUpdateTime
Timing::Time EstimateUpdateTime() const
Definition
extrapolator.h:215
Math::Extrapolator::lastPacketPos
TYPE lastPacketPos
Definition
extrapolator.h:56
Math::Extrapolator::aimTime
Timing::Time aimTime
Definition
extrapolator.h:58
Math::Extrapolator::ReadValue
bool ReadValue(Timing::Time forTime, TYPE &oPos) const
Return an estimate of the interpolated position at a given global time (which typically will be great...
Definition
extrapolator.h:166
Math::Extrapolator::EstimateLatency
Timing::Time EstimateLatency() const
Definition
extrapolator.h:206
Math::Extrapolator::Extrapolator
Extrapolator()
constructor
Definition
extrapolator.h:68
Math::Extrapolator::Reset
void Reset(Timing::Time packetTime, Timing::Time curTime, const TYPE &pos)
Re-set the Extrapolator's idea of time, velocity and position.
Definition
extrapolator.h:138
Math::Extrapolator::AddSample
bool AddSample(Timing::Time packetTime, Timing::Time curTime, const TYPE &pos)
add sample without velocity, velocity is compute from positions
Definition
extrapolator.h:85
Math::Extrapolator::snapVel
TYPE snapVel
Definition
extrapolator.h:54
Math::Extrapolator::updateTime
Timing::Time updateTime
Definition
extrapolator.h:61
Math::Extrapolator::Estimates
bool Estimates(Timing::Time packetTime, Timing::Time curTime)
is this packet newer than already received
Definition
extrapolator.h:224
Math::Extrapolator::snapPos
TYPE snapPos
Definition
extrapolator.h:53
Math::Extrapolator::snapTime
Timing::Time snapTime
Definition
extrapolator.h:57
Math::Extrapolator::aimPos
TYPE aimPos
Definition
extrapolator.h:55
n_assert
#define n_assert(exp)
Definition
debug.h:50
Math
Different curves.
Definition
angularpfeedbackloop.h:17
Math::abs
__forceinline scalar abs(scalar a)
Definition
scalar.h:441
Timing::Time
double Time
the time datatype
Definition
time.h:18
N_TINY
#define N_TINY
Definition
scalar.h:43
time.h
Typedefs for the Timing subsystem.
code
foundation
math
extrapolator.h
Generated on Tue Jan 28 2025 22:42:59 for Nebula. Dark theme by
Tilen Majerle
. All rights reserved.