Files
Client/GameTools/Zallad3D SceneClass/Z3DAnimationController.cpp
LGram16 dd97ddec92 Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code:
- Client: Game client source (moved to Client/Client/)
- Server: Game server source
- GameTools: Development tools
- CryptoSource: Encryption utilities
- database: Database scripts
- Script: Game scripts
- rylCoder_16.02.2008_src: Legacy coder tools
- GMFont, Game: Additional resources

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 20:17:20 +09:00

176 lines
4.4 KiB
C++

// Z3DAnimationController.cpp: implementation of the CZ3DAnimationController class.
//
//////////////////////////////////////////////////////////////////////
#include "Z3DAnimationController.h"
#include "misc.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
void Z3DAnimationController::GetInterpolatedKeyframe(float t, vector3 &v, quaternion &q)
{
static int i;
static float f;
// over-the-end-of-the-data
if( t < m_pPosKeys[0].tick )
{
v = m_pPosKeys[0].pos;
}
else if( t >= m_pPosKeys[m_sPosKeyCount-1].tick ) // require pos-keyframe past the end of the data
{
v = m_pPosKeys[m_sPosKeyCount-1].pos;
}
else // do interpolation for inbetween keyframe
{
for( i = 0; i < m_sPosKeyCount-1; i++ ) // last item was processed by above portion of code
{
if( m_pPosKeys[i].tick == t )
{
v = m_pPosKeys[i].pos;
break;
}
else if( m_pPosKeys[i].tick < t && t < m_pPosKeys[i+1].tick )
{
f = (float)(t - m_pPosKeys[i].tick) /
(float)(m_pPosKeys[i+1].tick - m_pPosKeys[i].tick);
z3d::VectorLerp( v, m_pPosKeys[i].pos, m_pPosKeys[i+1].pos, f );
break;
}
}
}
if( t < m_pRotKeys[0].tick )
{
q = m_pRotKeys[0].rot;
}
else if( t >= m_pRotKeys[m_sRotKeyCount-1].tick ) // require rot-keyframe past the end of the data
{
q = m_pRotKeys[m_sRotKeyCount-1].rot;
}
else
{
for( i = 0; i < m_sRotKeyCount-1; i++ ) // last item was processed by above portion of code
{
if( m_pRotKeys[i].tick == t )
{
q = m_pRotKeys[i].rot;
break;
}
else if( m_pRotKeys[i].tick < t && t < m_pRotKeys[i+1].tick )
{
f = (float)(t - m_pRotKeys[i].tick) /
(float)(m_pRotKeys[i+1].tick - m_pRotKeys[i].tick);
z3d::QuaternionSlerp( q, m_pRotKeys[i].rot, m_pRotKeys[i+1].rot, f );
break;
}
}
}
}
// 이동값에 대해서만 이전 프레임과의 차이값을 반환한다.(회전은 GetInterpol..과 같음)
void Z3DAnimationController::GetDifferentiatedKeyframe( float t, float t_prev, vector3& vDiff,
quaternion& q )
{
static int i;
static float f;
vector3 v1, v2;
// 위치값 증감치 계산 - 현재 프레임의 위치값을 v1에 저장
if( t < m_pPosKeys[0].tick )
{
v1 = m_pPosKeys[0].pos;
}
else if( t >= m_pPosKeys[m_sPosKeyCount-1].tick ) // require pos-keyframe past the end of the data
{
v1 = m_pPosKeys[m_sPosKeyCount-1].pos;
}
else // do interpolation for inbetween keyframe
{
for( i = 0; i < m_sPosKeyCount-1; i++ ) // last item was processed by above portion of code
{
if( m_pPosKeys[i].tick == t )
{
v1 = m_pPosKeys[i].pos;
break;
}
else if( m_pPosKeys[i].tick < t && t < m_pPosKeys[i+1].tick )
{
f = (float)(t - m_pPosKeys[i].tick) /
(float)(m_pPosKeys[i+1].tick - m_pPosKeys[i].tick);
z3d::VectorLerp( v1, m_pPosKeys[i].pos, m_pPosKeys[i+1].pos, f );
break;
}
}
}
// 현재 틱 바로 앞의 틱에 대한 값을 v2에 저장
if( t_prev < m_pPosKeys[0].tick )
{
v2 = m_pPosKeys[0].pos;
}
else if( t_prev >= m_pPosKeys[m_sPosKeyCount-1].tick ) // require pos-keyframe past the end of the data
{
v2 = m_pPosKeys[m_sPosKeyCount-1].pos;
}
else // do interpolation for inbetween keyframe
{
for( i = 0; i < m_sPosKeyCount-1; i++ ) // last item was processed by above portion of code
{
if( m_pPosKeys[i].tick == t_prev )
{
v2 = m_pPosKeys[i].pos;
break;
}
else if( m_pPosKeys[i].tick < t_prev && t_prev < m_pPosKeys[i+1].tick )
{
f = (float)(t_prev - m_pPosKeys[i].tick) /
(float)(m_pPosKeys[i+1].tick - m_pPosKeys[i].tick);
z3d::VectorLerp( v2, m_pPosKeys[i].pos, m_pPosKeys[i+1].pos, f );
break;
}
}
}
// 차분
vDiff.x = v1.x - v2.x;
vDiff.y = v1.y;// - v2.y; y값은 *차분치가 아니다*
vDiff.z = v1.z - v2.z;
// 회전키 구함(GetInterpol.. 과 동일)
if( t < m_pRotKeys[0].tick )
{
q = m_pRotKeys[0].rot;
}
else if( t >= m_pRotKeys[m_sRotKeyCount-1].tick ) // require rot-keyframe past the end of the data
{
q = m_pRotKeys[m_sRotKeyCount-1].rot;
}
else
{
for( i = 0; i < m_sRotKeyCount-1; i++ ) // last item was processed by above portion of code
{
if( m_pRotKeys[i].tick == t )
{
q = m_pRotKeys[i].rot;
break;
}
else if( m_pRotKeys[i].tick < t && t < m_pRotKeys[i+1].tick )
{
f = (float)(t - m_pRotKeys[i].tick) /
(float)(m_pRotKeys[i+1].tick - m_pRotKeys[i].tick);
z3d::QuaternionSlerp( q, m_pRotKeys[i].rot, m_pRotKeys[i+1].rot, f );
break;
}
}
}
}