summaryrefslogtreecommitdiff
path: root/movieobjects/dmedccmakefile.cpp
blob: 458fd33692448e62276b747e99f502f394167c13 (plain) (blame)
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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Describes an asset: something that is compiled from sources, 
// in potentially multiple steps, to a compiled resource
//
//=============================================================================


#include "movieobjects/dmedccmakefile.h"
#include "datamodel/dmelementfactoryhelper.h"
#include "tier2/fileutils.h"

// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"


//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeSourceDCCFile, CDmeSourceDCCFile );

				    
//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
void CDmeSourceDCCFile::OnConstruction()
{
	m_RootDCCObjects.Init( this, "rootDCCObjects" );
	m_ExportType.InitAndSet( this, "exportType", 0 );
	m_FrameStart.InitAndSet( this, "frameStart", 0.0f );
	m_FrameEnd.InitAndSet( this, "frameEnd", 0.0f );
	m_FrameIncrement.InitAndSet( this, "frameIncrement", 1.0f );
}

void CDmeSourceDCCFile::OnDestruction()
{
}


//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeSourceMayaFile, CDmeSourceMayaFile );
IMPLEMENT_ELEMENT_FACTORY( DmeSourceMayaModelFile, CDmeSourceMayaModelFile );
IMPLEMENT_ELEMENT_FACTORY( DmeSourceMayaAnimationFile, CDmeSourceMayaAnimationFile );


//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
void CDmeSourceMayaFile::OnConstruction()
{
}

void CDmeSourceMayaFile::OnDestruction()
{
}

void CDmeSourceMayaModelFile::OnConstruction()
{
	m_ExportType = 0;
}

void CDmeSourceMayaModelFile::OnDestruction()
{
}

void CDmeSourceMayaAnimationFile::OnConstruction()
{
	m_ExportType = 1;
}

void CDmeSourceMayaAnimationFile::OnDestruction()
{
}


//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeSourceXSIFile, CDmeSourceXSIFile );


//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
void CDmeSourceXSIFile::OnConstruction()
{
}

void CDmeSourceXSIFile::OnDestruction()
{
}


//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeDCCMakefile, CDmeDCCMakefile );


//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
void CDmeDCCMakefile::OnConstruction()
{
	m_bFlushFile = false;
}

void CDmeDCCMakefile::OnDestruction()
{
}


//-----------------------------------------------------------------------------
// Compile assets 
//-----------------------------------------------------------------------------
void CDmeDCCMakefile::GetOutputs( CUtlVector<CUtlString> &fullPaths )
{
	fullPaths.RemoveAll();

	char pOutputName[MAX_PATH];
	Q_FileBase( GetFileName(), pOutputName, sizeof(pOutputName) );
	if ( !pOutputName[0] )
		return;

	// FIXME: We need to come up with an appropriate directory structure for export
	char pOutputDir[MAX_PATH];
	GetMakefilePath( pOutputDir, sizeof(pOutputDir) );
	if ( !pOutputDir[0] )
		return;

	Q_StripTrailingSlash( pOutputDir );
	char pFullPath[MAX_PATH];
	Q_snprintf( pFullPath, sizeof(pFullPath), "%s\\%s.dmx", pOutputDir, pOutputName );
	fullPaths.AddToTail( pFullPath );
}

  
//-----------------------------------------------------------------------------
// Creates, destroys the output element associated with this makefile
//-----------------------------------------------------------------------------
CDmElement *CDmeDCCMakefile::CreateOutputElement( )
{
	if ( m_bFlushFile )
	{  
		m_bFlushFile = false;
		if ( GetFileId() != DMFILEID_INVALID )
		{
			// NOTE: CDmeHandles will correctly re-hook up to the new makefile after load
			// If the file fails to load, we have the copy. If the file correctly has the make in it
			// it will replace this copy I made
			CDmeHandle< CDmeDCCMakefile > hMakefileOld;
			hMakefileOld = this;

			// NOTE NOTE NOTE
			// UnloadFile essentially calls delete this!
			// So don't refer to any state in this DmElement after that
			DmFileId_t fileId = GetFileId(); 
			g_pDataModel->UnloadFile( fileId );

			CDmElement *pRoot = NULL;
			if ( g_pDataModel->RestoreFromFile( g_pDataModel->GetFileName( fileId ), NULL, NULL, &pRoot, CR_DELETE_OLD ) != DMFILEID_INVALID )
			{
				// NOTE: Unload/restore kills the this pointer, we need to redo this
				if ( hMakefileOld.Get() )
				{
					hMakefileOld->SetDirty( false );
					return hMakefileOld->CreateOutputElement();
				}
			}

			// NOTE: We expect file backup prior to compile to avoid really fatal errors
			// This case happens if the file failed to load. In this case, we must use
			// the copy of the makefile
			Assert( 0 );
			return NULL;
		}
	}

	// The output element is the root element containing the makefile
	return FindReferringElement< CDmElement >( this, "makefile" );
}

void CDmeDCCMakefile::DestroyOutputElement( CDmElement *pOutput )
{
	m_bFlushFile = true;
}


//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeMayaMakefile, CDmeMayaMakefile );
IMPLEMENT_ELEMENT_FACTORY( DmeMayaModelMakefile, CDmeMayaModelMakefile );
IMPLEMENT_ELEMENT_FACTORY( DmeMayaAnimationMakefile, CDmeMayaAnimationMakefile );


//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
void CDmeMayaMakefile::OnConstruction()
{
}

void CDmeMayaMakefile::OnDestruction()
{
}

void CDmeMayaModelMakefile::OnConstruction()
{
}

void CDmeMayaModelMakefile::OnDestruction()
{
}

void CDmeMayaAnimationMakefile::OnConstruction()
{
}

void CDmeMayaAnimationMakefile::OnDestruction()
{
}


//-----------------------------------------------------------------------------
// Returns source types
//-----------------------------------------------------------------------------
static DmeMakefileType_t s_pMayaModelSourceTypes[] = 
{
	{ "DmeSourceMayaModelFile", "Maya Model File", true, "makefiledir:../maya", "*.ma;*.mb", "Maya File (*.ma,*.mb)" },
	{ NULL, NULL, false, NULL, NULL, NULL },
};

DmeMakefileType_t* CDmeMayaModelMakefile::GetSourceTypes()
{
	return s_pMayaModelSourceTypes;
}

static DmeMakefileType_t s_pMayaAnimationSourceTypes[] = 
{
	{ "DmeSourceMayaAnimationFile", "Maya Animation File", true, "makefiledir:../maya", "*.ma;*.mb", "Maya File (*.ma,*.mb)" },
	{ NULL, NULL, false, NULL, NULL, NULL },
};

DmeMakefileType_t* CDmeMayaAnimationMakefile::GetSourceTypes()
{
	return s_pMayaAnimationSourceTypes;
}


//-----------------------------------------------------------------------------
// Makefile type 
//-----------------------------------------------------------------------------
static DmeMakefileType_t s_MayaModelMakefileType = 
{
	"DmeMayaModelMakefile", "Maya Model Component", true, "contentdir:models", "*.dmx", "DMX File (*.dmx)"
};

DmeMakefileType_t *CDmeMayaModelMakefile::GetMakefileType()
{
	return &s_MayaModelMakefileType;
}

static DmeMakefileType_t s_MayaAnimationMakefileType = 
{
	"DmeMayaAnimationMakefile", "Maya Animation Component", true, "contentdir:models", "*.dmx", "DMX File (*.dmx)"
};

DmeMakefileType_t *CDmeMayaAnimationMakefile::GetMakefileType()
{
	return &s_MayaAnimationMakefileType;
}


//-----------------------------------------------------------------------------
// Hook into datamodel
//-----------------------------------------------------------------------------
IMPLEMENT_ELEMENT_FACTORY( DmeXSIMakefile, CDmeXSIMakefile );


//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
void CDmeXSIMakefile::OnConstruction()
{
}

void CDmeXSIMakefile::OnDestruction()
{
}


//-----------------------------------------------------------------------------
// Returns source types
//-----------------------------------------------------------------------------
static DmeMakefileType_t s_pXSISourceTypes[] = 
{
	{ "DmeSourceXSIFile", "XSI File", true, "makefiledir:../xsi", "*.xsi", "XSI File (*.xsi)" },
	{ NULL, NULL, false, NULL, NULL, NULL },
};

DmeMakefileType_t* CDmeXSIMakefile::GetSourceTypes()
{
	return s_pXSISourceTypes;
}


//-----------------------------------------------------------------------------
// Makefile type 
//-----------------------------------------------------------------------------
static DmeMakefileType_t s_XSIMakefileType = 
{
	"DmeXSIMakefile", "XSI Model Component", true, "contentdir:models", "*.dmx", "DMX File (*.dmx)",
};

DmeMakefileType_t *CDmeXSIMakefile::GetMakefileType()
{
	return &s_XSIMakefileType;
}