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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
//=============================================================================
#include <windows.h>
// Valve includes
#include "itemtest/itemtest.h"
#include "p4lib/ip4.h"
#include "tier0/icommandline.h"
// Local includes
#include "itemtestapp.h"
#include "runexe.h"
// Last include
#include <tier0/memdbgon.h>
//=============================================================================
//
//=============================================================================
class CItemTestConApp : public CItemTestApp
{
typedef CItemTestApp BaseClass;
public:
// Methods of IApplication
virtual bool Create();
virtual int Main();
protected:
static bool DoSteamId();
static bool DoHelp();
};
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
DEFINE_CONSOLE_STEAM_APPLICATION_OBJECT( CItemTestConApp );
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
bool CItemTestConApp::Create()
{
AppSystemInfo_t appSystems[] =
{
{ "", "" } // Required to terminate the list
};
if ( FindParam( kDev ) && !FindParam( kNoP4 ) )
{
AppModule_t p4Module = LoadModule( "p4lib.dll" );
AddSystem( p4Module, P4_INTERFACE_VERSION );
}
return AddSystems( appSystems );
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
bool View( CAsset &asset )
{
CUtlString sBinDir;
if ( !CItemUpload::GetBinDirectory( sBinDir ) )
{
Warning( "Cannot determine bin directory\n" );
return false;
}
CSmartPtr< CTargetMDL > pTargetMDL = asset.GetTargetMDL();
if ( !pTargetMDL.IsValid() )
{
Warning( "No target MDL\n" );
return false;
}
CUtlString sMdlPath;
if ( !pTargetMDL->GetOutputPath( sMdlPath ) )
{
Warning( "Cannot determine path to MDL\n" );
return false;
}
CFmtStrMax sHlmvCmd;
if ( CItemUpload::GetDevMode() )
{
sHlmvCmd.sprintf( "\"%s\\hlmv.exe\" \"%s\"", sBinDir.Get(), sMdlPath.Get() );
}
else
{
CUtlString sVProjectDir;
if ( CItemUpload::GetVProjectDir( sVProjectDir ) )
{
sHlmvCmd.sprintf( "\"%s\\hlmv.exe\" -allowdebug -game \"%s\" -nop4 \"%s\"", sBinDir.Get(), sVProjectDir.Get(), sMdlPath.Get() );
}
else
{
Warning( "Cannot determine VPROJECT (gamedir)\n" );
return false;
}
}
char szBinLaunchDir[ MAX_PATH ];
V_ExtractFilePath( sBinDir.String(), szBinLaunchDir, ARRAYSIZE( szBinLaunchDir ) );
return CItemUpload::RunCommandLine( sHlmvCmd.String(), szBinLaunchDir, false );
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
bool Explore( CAsset &asset )
{
CUtlString sBinDir;
if ( !CItemUpload::GetBinDirectory( sBinDir ) )
{
Warning( "Cannot determine bin directory\n" );
return false;
}
CUtlString sDir;
asset.GetAbsoluteDir( sDir, NULL, &asset );
char szBuf[ MAX_PATH ];
V_FixupPathName( szBuf, ARRAYSIZE( szBuf ), sDir.Get() );
char szBinLaunchDir[ MAX_PATH ];
V_ExtractFilePath( sBinDir.String(), szBinLaunchDir, ARRAYSIZE( szBinLaunchDir ) );
ShellExecute( NULL, "explore", NULL, NULL, szBuf, SW_SHOWNORMAL );
return true;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
int CItemTestConApp::Main()
{
if ( DoHelp() )
return 0;
if ( DoSteamId() )
return 0;
CItemUpload::InitManifest();
// If launched with -batch stay in console app and run from parameters specified on the command line only
const bool bListMats = FindParam( kListMats );
if ( bListMats || FindParam( kBatch ) )
{
CAssetTF assetTF;
if ( !ProcessCommandLine( &assetTF, bListMats ) )
return 1;
if ( !bListMats )
{
if ( !assetTF.Compile() )
{
Warning( "Error! Compile Failed\n" );
return 1;
}
Msg( "Compile OK!\n" );
if ( FindParam( kView ) )
{
View( assetTF );
}
if ( FindParam( kExplore ) )
{
Explore( assetTF );
}
}
}
else
{
// If launched without -batch then launch the .exe with the same name in the same directory as this .com executable
RunExe();
}
return 0;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
bool CItemTestConApp::DoHelp()
{
if ( !FindParam( kHelp ) )
return false;
PrintHelp();
return true;
}
//-----------------------------------------------------------------------------
//
//-----------------------------------------------------------------------------
bool CItemTestConApp::DoSteamId()
{
if ( !FindParam( kSteamId ) )
return false;
CUtlString sSteamId;
if ( CItemUpload::GetSteamId( sSteamId ) )
{
Msg( "%s\n", sSteamId.String() );
}
else
{
Warning( "Error! Couldn't determine SteamId\n" );
}
return true;
}
|