forked from XutaxKamay/css_enhanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdmetransforminput.cpp
98 lines (76 loc) · 2.21 KB
/
dmetransforminput.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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#include "movieobjects/dmetransforminput.h"
#include "movieobjects_interfaces.h"
#include "datamodel/dmelementfactoryhelper.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
//-----------------------------------------------------------------------------
// Expose this class to the scene database
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeTranslationInput, CDmeTranslationInput );
void CDmeTranslationInput::OnConstruction()
{
m_translation.Init( this, "translation" );
}
void CDmeTranslationInput::OnDestruction()
{
}
bool CDmeTranslationInput::IsDirty()
{
return true;
}
void CDmeTranslationInput::Operate()
{
}
void CDmeTranslationInput::GetInputAttributes( CUtlVector< CDmAttribute * > &attrs )
{
}
void CDmeTranslationInput::GetOutputAttributes( CUtlVector< CDmAttribute * > &attrs )
{
attrs.AddToTail( m_translation.GetAttribute() );
}
//-----------------------------------------------------------------------------
// Expose this class to the scene database
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeRotationInput, CDmeRotationInput );
void CDmeRotationInput::OnConstruction()
{
m_orientation.Init( this, "orientation" );
m_angles.Init( this, "angles" );
}
void CDmeRotationInput::OnDestruction()
{
}
bool CDmeRotationInput::IsDirty()
{
return true;
}
void CDmeRotationInput::Operate()
{
}
void CDmeRotationInput::GetInputAttributes( CUtlVector< CDmAttribute * > &attrs )
{
}
void CDmeRotationInput::GetOutputAttributes( CUtlVector< CDmAttribute * > &attrs )
{
attrs.AddToTail( m_orientation.GetAttribute() );
attrs.AddToTail( m_angles.GetAttribute() );
}
void CDmeRotationInput::SetRotation( const Quaternion& quat )
{
QAngle qangle;
QuaternionAngles( quat, qangle );
m_angles = qangle;
m_orientation = quat;
}
void CDmeRotationInput::SetRotation( const QAngle& qangle )
{
Quaternion quat;
AngleQuaternion( qangle, quat );
m_orientation = quat;
m_angles = qangle;
}