forked from perilouswithadollarsign/cstrike15_src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapanimator.cpp
500 lines (407 loc) · 14.3 KB
/
mapanimator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "stdafx.h"
#include "GlobalFunctions.h"
#include "fgdlib/HelperInfo.h"
#include "MapAnimator.h"
#include "MapDoc.h"
#include "MapEntity.h"
#include "MapWorld.h"
#include "KeyFrame/KeyFrame.h"
// memdbgon must be the last include file in a .cpp file!!!
#include <tier0/memdbgon.h>
IMPLEMENT_MAPCLASS( CMapAnimator );
//-----------------------------------------------------------------------------
// Purpose: Factory function. Used for creating a CMapKeyFrame from a set
// of string parameters from the FGD file.
// Input : *pInfo - Pointer to helper info class which gives us information
// about how to create the class.
// Output : Returns a pointer to the class, NULL if an error occurs.
//-----------------------------------------------------------------------------
CMapClass *CMapAnimator::CreateMapAnimator(CHelperInfo *pHelperInfo, CMapEntity *pParent)
{
return(new CMapAnimator);
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
CMapAnimator::CMapAnimator()
{
m_CoordFrame.Identity();
m_bCurrentlyAnimating = false;
m_pCurrentKeyFrame = this;
m_iPositionInterpolator = m_iRotationInterpolator = m_iTimeModifier = 0;
m_nKeysChanged = 0;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
CMapAnimator::~CMapAnimator()
{
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : CMapClass *
//-----------------------------------------------------------------------------
CMapClass *CMapAnimator::Copy(bool bUpdateDependencies)
{
CMapAnimator *pNew = new CMapAnimator;
pNew->CopyFrom(this, bUpdateDependencies);
return pNew;
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *pObj -
// Output : CMapClass
//-----------------------------------------------------------------------------
CMapClass *CMapAnimator::CopyFrom(CMapClass *pObj, bool bUpdateDependencies)
{
CMapKeyFrame::CopyFrom(pObj, bUpdateDependencies);
CMapAnimator *pFrom = dynamic_cast<CMapAnimator*>( pObj );
Assert( pFrom != NULL );
memcpy( m_CoordFrame.Base(), pFrom->m_CoordFrame.Base(), sizeof(m_CoordFrame) );
m_bCurrentlyAnimating = false;
m_pCurrentKeyFrame = NULL; // keyframe it's currently at
m_iTimeModifier = pFrom->m_iTimeModifier;
m_iPositionInterpolator = pFrom->m_iPositionInterpolator;
m_iRotationInterpolator = pFrom->m_iRotationInterpolator;
return this;
}
//-----------------------------------------------------------------------------
// Purpose: Returns a coordinate frame to render in, if the entity is animating
// Input : matrix -
// Output : returns true if a new matrix is returned, false if it is invalid
//-----------------------------------------------------------------------------
bool CMapAnimator::GetTransformMatrix( VMatrix& matrix )
{
// are we currently animating?
if ( m_bCurrentlyAnimating )
{
matrix = m_CoordFrame;
return true;
}
return false;
}
//-----------------------------------------------------------------------------
// Purpose: Notifies that the entity this is attached to has had a key change
// Input : key -
// value -
//-----------------------------------------------------------------------------
void CMapAnimator::OnParentKeyChanged( const char* key, const char* value )
{
if ( !stricmp(key, "TimeModifier") )
{
m_iTimeModifier = atoi( value );
}
else if ( !stricmp(key, "PositionInterpolator") )
{
m_iPositionInterpolator = atoi( value );
// HACK: Force everything in the path to update. Better to follow our path and update only it.
UpdateAllDependencies(this);
}
else if ( !stricmp(key, "RotationInterpolator") )
{
m_iRotationInterpolator = atoi( value );
}
m_nKeysChanged++;
CMapKeyFrame::OnParentKeyChanged( key, value );
}
//-----------------------------------------------------------------------------
// Purpose: Gets the current and previous keyframes for a given time.
// Input : time - time into sequence
// pKeyFrame - receives current keyframe pointer
// pPrevKeyFrame - receives previous keyframe pointer
// Output : time remaining after the thing has reached this key
//-----------------------------------------------------------------------------
float CMapAnimator::GetKeyFramesAtTime( float time, CMapKeyFrame *&pKeyFrame, CMapKeyFrame *&pPrevKeyFrame )
{
pKeyFrame = this;
pPrevKeyFrame = this;
float outTime = time;
while ( pKeyFrame )
{
if ( pKeyFrame->MoveTime() > outTime )
{
break;
}
// make sure this anim has enough time
if ( pKeyFrame->MoveTime() < 0.01f )
{
outTime = 0.0f;
break;
}
outTime -= pKeyFrame->MoveTime();
pPrevKeyFrame = pKeyFrame;
pKeyFrame = pKeyFrame->NextKeyFrame();
}
return outTime;
}
//-----------------------------------------------------------------------------
// Purpose: creates a new keyframe at the specified time
// Input : time -
// Output : Returns true on success, false on failure.
//-----------------------------------------------------------------------------
CMapEntity *CMapAnimator::CreateNewKeyFrame( float time )
{
// work out where we are in the animation
CMapKeyFrame *key;
CMapKeyFrame *pPrevKey;
float partialTime = GetKeyFramesAtTime( time, key, pPrevKey );
CMapEntity *pCurrentEnt = dynamic_cast<CMapEntity*>( key->m_pParent );
// check to see if we're direction on a key frame
Vector posOffset( 0, 0, 0 );
if ( partialTime == 0 )
{
// create this new key frame slightly after the current one, and offset
posOffset[0] = 64;
}
// get our orientation and position at this time
Vector vOrigin;
QAngle angles;
Quaternion qAngles;
GetAnimationAtTime( key, pPrevKey, partialTime, vOrigin, qAngles, m_iPositionInterpolator, m_iRotationInterpolator );
QuaternionAngles( qAngles, angles );
// create the new map entity
CMapEntity *pNewEntity = new CMapEntity;
Vector newPos;
VectorAdd( vOrigin, posOffset, newPos );
pNewEntity->SetPlaceholder( TRUE );
pNewEntity->SetOrigin( newPos );
pNewEntity->SetClass( "keyframe_track" );
char buf[128];
sprintf( buf, "%f %f %f", angles[0], angles[1], angles[2] );
pNewEntity->SetKeyValue( "angles", buf );
// link it into the keyframe list
// take over this existing next keyframe pointer
const char *nextKeyName = pCurrentEnt->GetKeyValue( "NextKey" );
if ( nextKeyName )
{
pNewEntity->SetKeyValue( "NextKey", nextKeyName );
}
// create a new unique name for this ent
char newName[128];
const char *oldName = pCurrentEnt->GetKeyValue( "targetname" );
if ( !oldName || oldName[0] == 0 )
oldName = "keyframe";
CMapWorld *pWorld = GetWorldObject( this );
if ( pWorld )
{
pWorld->GenerateNewTargetname( oldName, newName, sizeof( newName ), true, NULL );
pNewEntity->SetKeyValue( "targetname", newName );
// point the current entity at the newly created one
pCurrentEnt->SetKeyValue( "NextKey", newName );
// copy any relevant values
const char *keyValue = pCurrentEnt->GetKeyValue( "parentname" );
if ( keyValue )
pNewEntity->SetKeyValue( "parentname", keyValue );
keyValue = pCurrentEnt->GetKeyValue( "MoveSpeed" );
if ( keyValue )
pNewEntity->SetKeyValue( "MoveSpeed", keyValue );
}
return(pNewEntity);
}
//-----------------------------------------------------------------------------
// Purpose: stops CMapKeyframe from doing it's auto-connect behavior when cloning
// Input : pClone -
//-----------------------------------------------------------------------------
void CMapAnimator::OnClone( CMapClass *pClone, CMapWorld *pWorld, const CMapObjectList &OriginalList, CMapObjectList &NewList )
{
CMapClass::OnClone( pClone, pWorld, OriginalList, NewList );
}
//-----------------------------------------------------------------------------
// Purpose: calculates the position of an animating object at a given time in
// it's animation sequence
// Input : animTime -
// *newOrigin -
// *newAngles -
//-----------------------------------------------------------------------------
void CMapAnimator::GetAnimationAtTime( float animTime, Vector& newOrigin, Quaternion &newAngles )
{
// setup the animation, given the time
// get our new position & orientation
float newTime, totalAnimTime = GetRemainingTime();
animTime /= totalAnimTime;
// don't use time modifier until we work out what we're going to do with it
//Motion_CalculateModifiedTime( animTime, m_iTimeModifier, &newTime );
newTime = animTime;
// find out where we are in the keyframe sequence based on the time
CMapKeyFrame *pPrevKeyFrame;
float posTime = GetKeyFramesAtTime( newTime * totalAnimTime, m_pCurrentKeyFrame, pPrevKeyFrame );
// find the position from that keyframe
GetAnimationAtTime( m_pCurrentKeyFrame, pPrevKeyFrame, posTime, newOrigin, newAngles, m_iPositionInterpolator, m_iRotationInterpolator );
}
//-----------------------------------------------------------------------------
// Purpose: calculates the position of the animating object between two keyframes
// Input : currentKey -
// pPrevKey -
// partialTime -
// newOrigin -
// newAngles -
// posInterpolator -
// rotInterpolator -
//-----------------------------------------------------------------------------
void CMapAnimator::GetAnimationAtTime( CMapKeyFrame *currentKey, CMapKeyFrame *pPrevKey, float partialTime, Vector& newOrigin, Quaternion &newAngles, int posInterpolator, int rotInterpolator )
{
// calculate the proportion of time to be spent on this keyframe
float animTime;
if ( currentKey->MoveTime() < 0.01 )
{
animTime = 1.0f;
}
else
{
animTime = partialTime / currentKey->MoveTime();
}
Assert( animTime >= 0.0f && animTime <= 1.0f );
IPositionInterpolator *pInterp = currentKey->SetupPositionInterpolator( posInterpolator );
// setup interpolation keyframes
Vector keyOrigin;
Quaternion keyAngles;
pPrevKey->GetOrigin( keyOrigin );
pPrevKey->GetQuatAngles( keyAngles );
pInterp->SetKeyPosition( -1, keyOrigin );
Motion_SetKeyAngles ( -1, keyAngles );
currentKey->GetOrigin( keyOrigin );
currentKey->GetQuatAngles( keyAngles );
pInterp->SetKeyPosition( 0, keyOrigin );
Motion_SetKeyAngles ( 0, keyAngles );
currentKey->NextKeyFrame()->GetOrigin( keyOrigin );
currentKey->NextKeyFrame()->GetQuatAngles( keyAngles );
pInterp->SetKeyPosition( 1, keyOrigin );
Motion_SetKeyAngles ( 1, keyAngles );
currentKey->NextKeyFrame()->NextKeyFrame()->GetOrigin( keyOrigin );
currentKey->NextKeyFrame()->NextKeyFrame()->GetQuatAngles( keyAngles );
pInterp->SetKeyPosition( 2, keyOrigin );
Motion_SetKeyAngles ( 2, keyAngles );
// get our new interpolated position
// HACK HACK - Hey Brian, look here!!!!
Vector hackOrigin;
pInterp->InterpolatePosition( animTime, hackOrigin );
newOrigin[0] = hackOrigin[0];
newOrigin[1] = hackOrigin[1];
newOrigin[2] = hackOrigin[2];
Motion_InterpolateRotation( animTime, rotInterpolator, newAngles );
}
//-----------------------------------------------------------------------------
// Purpose: Builds the animation transformation matrix for the entity if it's animating
//-----------------------------------------------------------------------------
void CMapAnimator::UpdateAnimation( float animTime )
{
// only animate if the doc is animating and we're selected
if ( !CMapDoc::GetActiveMapDoc()->IsAnimating() || !m_pParent->IsSelected() )
{
// we're not animating
m_bCurrentlyAnimating = false;
return;
}
m_bCurrentlyAnimating = true;
Vector newOrigin;
Quaternion newAngles;
GetAnimationAtTime( animTime, newOrigin, newAngles );
VMatrix mat, tmpMat;
Vector ourOrigin;
GetOrigin( ourOrigin );
mat.Identity();
// build us a matrix
// T(newOrigin)R(angle)T(-ourOrigin)
m_CoordFrame.Identity() ;
// transform back to the origin
for ( int i = 0; i < 3; i++ )
{
m_CoordFrame[i][3] = -ourOrigin[i];
}
// Apply interpolated Rotation
QuaternionMatrix( newAngles, mat.As3x4() );
m_CoordFrame = m_CoordFrame * mat;
// transform back to our new position
mat.Identity();
for ( int i = 0; i < 3; i++ )
{
mat[i][3] = newOrigin[i];
}
m_CoordFrame = m_CoordFrame * mat;
}
//-----------------------------------------------------------------------------
// Purpose: Rebuilds the line path between keyframe entities
// samples the interpolator function to get an approximation of the curve
//-----------------------------------------------------------------------------
void CMapAnimator::RebuildPath( void )
{
CMapWorld *pWorld = GetWorldObject( this );
if ( !pWorld )
{
// Sometimes the object isn't linked back into the world yet when RebuildPath()
// is called... we will be get called again when needed, but may cause an incorrect
// (linear-only) path to get drawn temporarily.
return;
}
//
// Build the path forward from the head. Keep a list of nodes we've visited to
// use in detecting circularities.
//
CMapObjectList VisitedList;
CMapKeyFrame *pCurKey = this;
while ( pCurKey != NULL )
{
VisitedList.AddToTail( pCurKey );
//
// Attach ourselves as this keyframe's animator.
//
pCurKey->SetAnimator( this );
//
// Get the entity parent of this keyframe so we can query keyvalues.
//
CMapEntity *pCurEnt = dynamic_cast<CMapEntity *>( pCurKey->GetParent() );
if ( !pCurEnt )
{
return;
}
//
// Find the next keyframe in the path.
//
CMapEntity *pNextEnt = pWorld->FindEntityByName( pCurEnt->GetKeyValue( "NextKey" ) );
CMapKeyFrame *pNextKey = NULL;
if ( pNextEnt )
{
pNextKey = pNextEnt->GetChildOfType( ( CMapKeyFrame * )NULL );
pCurKey->SetNextKeyFrame(pNextKey);
}
else
{
pCurKey->SetNextKeyFrame( NULL );
}
pCurKey = pNextKey;
//
// If we detect a circularity, stop.
//
if ( VisitedList.Find( pCurKey ) != -1 )
{
break;
}
}
//
// Now traverse the path again building the spline points, once again checking
// the visited list for circularities.
//
VisitedList.RemoveAll();
pCurKey = this;
CMapKeyFrame *pPrevKey = this;
while ( pCurKey != NULL )
{
VisitedList.AddToTail( pCurKey );
pCurKey->BuildPathSegment(pPrevKey);
pPrevKey = pCurKey;
pCurKey = pCurKey->m_pNextKeyFrame;
//
// If we detect a circularity, stop.
//
if ( VisitedList.Find( pCurKey ) != -1 )
{
break;
}
}
}