-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdmemdlmakefile.cpp
288 lines (229 loc) · 8.22 KB
/
dmemdlmakefile.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
//====== Copyright © 1996-2008, Valve Corporation, All rights reserved. =======
//
// Describes an asset: something that is compiled from sources,
// in potentially multiple steps, to a compiled resource
//
//=============================================================================
#include "movieobjects/dmemdlmakefile.h"
#include "movieobjects/dmedag.h"
#include "movieobjects/dmemdl.h"
#include "datamodel/dmelementfactoryhelper.h"
#include "datacache/imdlcache.h"
#include "filesystem.h"
#include "tier3/tier3.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeSourceSkin, CDmeSourceSkin );
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CDmeSourceSkin::OnConstruction()
{
m_SkinName.Init( this, "skinName" );
m_bFlipTriangles.Init( this, "flipTriangles" );
m_bQuadSubd.Init( this, "quadSubd" );
m_flScale.InitAndSet( this, "scale", 1.0f );
}
void CDmeSourceSkin::OnDestruction()
{
}
//-----------------------------------------------------------------------------
// These can be built from DCC makefiles
//-----------------------------------------------------------------------------
static const char *s_pSkinMakeFiles[] =
{
"DmeMayaModelMakefile",
"DmeXSIModelMakefile",
NULL
};
const char **CDmeSourceSkin::GetSourceMakefileTypes()
{
return s_pSkinMakeFiles;
}
//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeSourceCollisionModel, CDmeSourceCollisionModel );
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CDmeSourceCollisionModel::OnConstruction()
{
}
void CDmeSourceCollisionModel::OnDestruction()
{
}
//-----------------------------------------------------------------------------
// These can be built from DCC makefiles
//-----------------------------------------------------------------------------
const char **CDmeSourceCollisionModel::GetSourceMakefileTypes()
{
return s_pSkinMakeFiles;
}
//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeSourceAnimation, CDmeSourceAnimation );
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CDmeSourceAnimation::OnConstruction()
{
m_AnimationName.Init( this, "animationName" );
m_SourceAnimationName.Init( this, "sourceAnimationName" );
}
void CDmeSourceAnimation::OnDestruction()
{
}
//-----------------------------------------------------------------------------
// These can be built from DCC makefiles
//-----------------------------------------------------------------------------
static const char *s_pAnimationMakeFiles[] =
{
"DmeMayaAnimationMakefile",
"DmeXSIAnimationMakefile",
NULL
};
const char **CDmeSourceAnimation::GetSourceMakefileTypes()
{
return s_pAnimationMakeFiles;
}
//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeMDLMakefile, CDmeMDLMakefile );
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CDmeMDLMakefile::OnConstruction()
{
m_hMDL = CreateElement< CDmeMDL >( "MDLMakefile Preview", DMFILEID_INVALID );
m_bFlushMDL = false;
}
void CDmeMDLMakefile::OnDestruction()
{
DestroyElement( m_hMDL.Get() );
}
//-----------------------------------------------------------------------------
// Returns source types
//-----------------------------------------------------------------------------
static DmeMakefileType_t s_pSourceTypes[] =
{
{ "DmeSourceSkin", "Skin", true, "makefiledir:models\\dmx", "*.dmx", "Valve DMX File (*.dmx)" },
{ "DmeSourceAnimation", "Animation", false, "makefiledir:animations\\dmx", "*.dmx", "Valve DMX File (*.dmx)" },
{ "DmeSourceCollisionModel", "Collision Model", true, "makefiledir:models\\dmx", "*.dmx", "Valve DMX File (*.dmx)" },
{ NULL, NULL, false, NULL, NULL, NULL },
};
DmeMakefileType_t* CDmeMDLMakefile::GetSourceTypes()
{
return s_pSourceTypes;
}
//-----------------------------------------------------------------------------
// Makefile type
//-----------------------------------------------------------------------------
static DmeMakefileType_t s_MakefileType =
{
"DmeMDLMakefile", "Model", true, "contentdir:models", "*.dmx", "Valve Model MakeFile (*.dmx)"
};
DmeMakefileType_t *CDmeMDLMakefile::GetMakefileType()
{
return &s_MakefileType;
}
//-----------------------------------------------------------------------------
// Add, remove sources
//-----------------------------------------------------------------------------
void CDmeMDLMakefile::SetSkin( const char *pFullPath )
{
RemoveAllSources( "DmeSourceSkin" );
AddSource( "DmeSourceSkin", pFullPath );
}
void CDmeMDLMakefile::AddAnimation( const char *pFullPath )
{
AddSource( "animation", pFullPath );
}
void CDmeMDLMakefile::RemoveAnimation( const char *pFullPath )
{
RemoveSource( "animation", pFullPath );
}
void CDmeMDLMakefile::RemoveAllAnimations( )
{
RemoveAllSources( "animation" );
}
//-----------------------------------------------------------------------------
// Inherited classes should re-implement these methods
//-----------------------------------------------------------------------------
CDmElement *CDmeMDLMakefile::CreateOutputElement( )
{
if ( m_bFlushMDL )
{
// Flush the model out of the cache; detach it from the MDL
MDLHandle_t h = m_hMDL->GetMDL();
if ( h != MDLHANDLE_INVALID )
{
g_pMDLCache->Flush( h );
}
m_bFlushMDL = false;
}
m_hMDL->SetMDL( MDLHANDLE_INVALID );
// FIXME: Should we ask the tool (studiomdl) for this?
// Should we have output type names? Not sure yet..
// Doing the simplest thing first.
char pOutputName[MAX_PATH];
Q_FileBase( GetFileName(), pOutputName, sizeof(pOutputName) );
if ( !pOutputName[0] )
return m_hMDL.Get();
char pOutputDir[MAX_PATH];
GetOutputDirectory( pOutputDir, sizeof(pOutputDir) );
if ( !pOutputDir[0] )
return m_hMDL.Get();
Q_StripTrailingSlash( pOutputDir );
char pFullPath[MAX_PATH];
Q_snprintf( pFullPath, sizeof(pFullPath), "%s\\%s.mdl", pOutputDir, pOutputName );
char pRelativePath[MAX_PATH];
g_pFullFileSystem->FullPathToRelativePathEx( pFullPath, "GAME", pRelativePath, sizeof( pRelativePath ) );
MDLHandle_t h = g_pMDLCache->FindMDL( pRelativePath );
m_hMDL->SetMDL( h );
return m_hMDL.Get();
}
void CDmeMDLMakefile::DestroyOutputElement( CDmElement *pOutput )
{
m_bFlushMDL = true;
}
//-----------------------------------------------------------------------------
// Compile assets
//-----------------------------------------------------------------------------
static const char *s_pOutputExtensions[] =
{
"dx80.vtx",
"dx90.vtx",
"sw.vtx",
"mdl",
"vvd",
"phy",
NULL
};
void CDmeMDLMakefile::GetOutputs( CUtlVector<CUtlString> &fullPaths )
{
fullPaths.RemoveAll();
// FIXME: Should we ask the tool (studiomdl) for this?
// Should we have output type names? Not sure yet..
// Doing the simplest thing first.
char pOutputName[MAX_PATH];
Q_FileBase( GetFileName(), pOutputName, sizeof(pOutputName) );
if ( !pOutputName[0] )
return;
char pOutputDir[MAX_PATH];
GetOutputDirectory( pOutputDir, sizeof(pOutputDir) );
if ( !pOutputDir[0] )
return;
Q_StripTrailingSlash( pOutputDir );
char pFullPath[MAX_PATH];
for ( int i = 0; s_pOutputExtensions[i]; ++i )
{
Q_snprintf( pFullPath, sizeof(pFullPath), "%s\\%s.%s", pOutputDir, pOutputName, s_pOutputExtensions[i] );
fullPaths.AddToTail( pFullPath );
}
}