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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// Defines the entry point for the application.
//
//===========================================================================//
#if defined( _WIN32 ) && !defined( _X360 )
#include <windows.h>
#include "shlwapi.h" // registry stuff
#include <direct.h>
#elif defined ( LINUX ) || defined( OSX )
#define O_EXLOCK 0
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <locale.h>
#elif defined ( _X360 )
#else
#error
#endif
#include "appframework/ilaunchermgr.h"
#include <stdio.h>
#include "tier0/icommandline.h"
#include "engine_launcher_api.h"
#include "tier0/vcrmode.h"
#include "ifilesystem.h"
#include "tier1/interface.h"
#include "tier0/dbg.h"
#include "iregistry.h"
#include "appframework/IAppSystem.h"
#include "appframework/AppFramework.h"
#include <vgui/VGUI.h>
#include <vgui/ISurface.h>
#include "tier0/platform.h"
#include "tier0/memalloc.h"
#include "filesystem.h"
#include "tier1/utlrbtree.h"
#include "materialsystem/imaterialsystem.h"
#include "istudiorender.h"
#include "vgui/IVGui.h"
#include "IHammer.h"
#include "datacache/idatacache.h"
#include "datacache/imdlcache.h"
#include "vphysics_interface.h"
#include "filesystem_init.h"
#include "vstdlib/iprocessutils.h"
#include "video/ivideoservices.h"
#include "tier1/tier1.h"
#include "tier2/tier2.h"
#include "tier3/tier3.h"
#include "p4lib/ip4.h"
#include "inputsystem/iinputsystem.h"
#include "filesystem/IQueuedLoader.h"
#include "reslistgenerator.h"
#include "tier1/fmtstr.h"
#include "sourcevr/isourcevirtualreality.h"
#define VERSION_SAFE_STEAM_API_INTERFACES
#include "steam/steam_api.h"
#if defined( _X360 )
#include "xbox/xbox_win32stubs.h"
#include "xbox/xbox_console.h"
#include "xbox/xbox_launch.h"
#endif
#if defined( USE_SDL )
#include "SDL.h"
#if !defined( _WIN32 )
#define MB_OK 0x00000001
#define MB_SYSTEMMODAL 0x00000002
#define MB_ICONERROR 0x00000004
int MessageBox( HWND hWnd, const char *message, const char *header, unsigned uType );
#endif // _WIN32
#endif // USE_SDL
#if defined( POSIX )
#define RELAUNCH_FILE "/tmp/hl2_relaunch"
#endif
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
#define DEFAULT_HL2_GAMEDIR "hl2"
#if defined( USE_SDL )
extern void* CreateSDLMgr();
#endif
//-----------------------------------------------------------------------------
// Modules...
//-----------------------------------------------------------------------------
static IEngineAPI *g_pEngineAPI;
static IHammer *g_pHammer;
bool g_bTextMode = false;
static char g_szBasedir[MAX_PATH];
static char g_szGamedir[MAX_PATH];
// copied from sys.h
struct FileAssociationInfo
{
char const *extension;
char const *command_to_issue;
};
static FileAssociationInfo g_FileAssociations[] =
{
{ ".dem", "playdemo" },
{ ".sav", "load" },
{ ".bsp", "map" },
};
#ifdef _WIN32
#pragma warning(disable:4073)
#pragma init_seg(lib)
#endif
class CLeakDump
{
public:
CLeakDump()
: m_bCheckLeaks( false )
{
}
~CLeakDump()
{
if ( m_bCheckLeaks )
{
MemAlloc_DumpStats();
}
}
bool m_bCheckLeaks;
} g_LeakDump;
//-----------------------------------------------------------------------------
// Spew function!
//-----------------------------------------------------------------------------
SpewRetval_t LauncherDefaultSpewFunc( SpewType_t spewType, char const *pMsg )
{
#ifndef _CERT
#ifdef WIN32
OutputDebugStringA( pMsg );
#else
fprintf( stderr, "%s", pMsg );
#endif
switch( spewType )
{
case SPEW_MESSAGE:
case SPEW_LOG:
return SPEW_CONTINUE;
case SPEW_WARNING:
if ( !stricmp( GetSpewOutputGroup(), "init" ) )
{
#if defined( WIN32 ) || defined( USE_SDL )
::MessageBox( NULL, pMsg, "Warning!", MB_OK | MB_SYSTEMMODAL | MB_ICONERROR );
#endif
}
return SPEW_CONTINUE;
case SPEW_ASSERT:
if ( !ShouldUseNewAssertDialog() )
{
#if defined( WIN32 ) || defined( USE_SDL )
::MessageBox( NULL, pMsg, "Assert!", MB_OK | MB_SYSTEMMODAL | MB_ICONERROR );
#endif
}
return SPEW_DEBUGGER;
case SPEW_ERROR:
default:
#if defined( WIN32 ) || defined( USE_SDL )
::MessageBox( NULL, pMsg, "Error!", MB_OK | MB_SYSTEMMODAL | MB_ICONERROR );
#endif
_exit( 1 );
}
#else
if ( spewType != SPEW_ERROR)
return SPEW_CONTINUE;
_exit( 1 );
#endif
}
//-----------------------------------------------------------------------------
// Implementation of VCRHelpers.
//-----------------------------------------------------------------------------
class CVCRHelpers : public IVCRHelpers
{
public:
virtual void ErrorMessage( const char *pMsg )
{
#if defined( WIN32 ) || defined( LINUX )
NOVCR( ::MessageBox( NULL, pMsg, "VCR Error", MB_OK ) );
#endif
}
virtual void* GetMainWindow()
{
return NULL;
}
};
static CVCRHelpers g_VCRHelpers;
//-----------------------------------------------------------------------------
// Purpose: Return the game directory
// Output : char
//-----------------------------------------------------------------------------
char *GetGameDirectory( void )
{
return g_szGamedir;
}
void SetGameDirectory( const char *game )
{
Q_strncpy( g_szGamedir, game, sizeof(g_szGamedir) );
}
//-----------------------------------------------------------------------------
// Gets the executable name
//-----------------------------------------------------------------------------
bool GetExecutableName( char *out, int outSize )
{
#ifdef WIN32
if ( !::GetModuleFileName( ( HINSTANCE )GetModuleHandle( NULL ), out, outSize ) )
{
return false;
}
return true;
#else
return false;
#endif
}
//-----------------------------------------------------------------------------
// Purpose: Return the base directory
// Output : char
//-----------------------------------------------------------------------------
char *GetBaseDirectory( void )
{
return g_szBasedir;
}
//-----------------------------------------------------------------------------
// Purpose: Determine the directory where this .exe is running from
//-----------------------------------------------------------------------------
void UTIL_ComputeBaseDir()
{
g_szBasedir[0] = 0;
if ( IsX360() )
{
char const *pBaseDir = CommandLine()->ParmValue( "-basedir" );
if ( pBaseDir )
{
strcpy( g_szBasedir, pBaseDir );
}
}
if ( !g_szBasedir[0] && GetExecutableName( g_szBasedir, sizeof( g_szBasedir ) ) )
{
char *pBuffer = strrchr( g_szBasedir, '\\' );
if ( *pBuffer )
{
*(pBuffer+1) = '\0';
}
int j = strlen( g_szBasedir );
if (j > 0)
{
if ( ( g_szBasedir[j-1] == '\\' ) ||
( g_szBasedir[j-1] == '/' ) )
{
g_szBasedir[j-1] = 0;
}
}
}
if ( IsPC() )
{
char const *pOverrideDir = CommandLine()->CheckParm( "-basedir" );
if ( pOverrideDir )
{
strcpy( g_szBasedir, pOverrideDir );
}
}
#ifdef WIN32
Q_strlower( g_szBasedir );
#endif
Q_FixSlashes( g_szBasedir );
}
#ifdef WIN32
BOOL WINAPI MyHandlerRoutine( DWORD dwCtrlType )
{
#if !defined( _X360 )
TerminateProcess( GetCurrentProcess(), 2 );
#endif
return TRUE;
}
#endif
void InitTextMode()
{
#ifdef WIN32
#if !defined( _X360 )
AllocConsole();
SetConsoleCtrlHandler( MyHandlerRoutine, TRUE );
freopen( "CONIN$", "rb", stdin ); // reopen stdin handle as console window input
freopen( "CONOUT$", "wb", stdout ); // reopen stout handle as console window output
freopen( "CONOUT$", "wb", stderr ); // reopen stderr handle as console window output
#else
XBX_Error( "%s %s: Not Supported", __FILE__, __LINE__ );
#endif
#endif
}
void SortResList( char const *pchFileName, char const *pchSearchPath );
#define ALL_RESLIST_FILE "all.lst"
#define ENGINE_RESLIST_FILE "engine.lst"
// create file to dump out to
class CLogAllFiles
{
public:
CLogAllFiles();
void Init();
void Shutdown();
void LogFile( const char *fullPathFileName, const char *options );
private:
static void LogAllFilesFunc( const char *fullPathFileName, const char *options );
void LogToAllReslist( char const *line );
bool m_bActive;
char m_szCurrentDir[_MAX_PATH];
// persistent across restarts
CUtlRBTree< CUtlString, int > m_Logged;
CUtlString m_sResListDir;
CUtlString m_sFullGamePath;
};
static CLogAllFiles g_LogFiles;
static bool AllLogLessFunc( CUtlString const &pLHS, CUtlString const &pRHS )
{
return CaselessStringLessThan( pLHS.Get(), pRHS.Get() );
}
CLogAllFiles::CLogAllFiles() :
m_bActive( false ),
m_Logged( 0, 0, AllLogLessFunc )
{
MEM_ALLOC_CREDIT();
m_sResListDir = "reslists";
}
void CLogAllFiles::Init()
{
if ( IsX360() )
{
return;
}
// Can't do this in edit mode
if ( CommandLine()->CheckParm( "-edit" ) )
{
return;
}
if ( !CommandLine()->CheckParm( "-makereslists" ) )
{
return;
}
m_bActive = true;
char const *pszDir = NULL;
if ( CommandLine()->CheckParm( "-reslistdir", &pszDir ) && pszDir )
{
char szDir[ MAX_PATH ];
Q_strncpy( szDir, pszDir, sizeof( szDir ) );
Q_StripTrailingSlash( szDir );
#ifdef WIN32
Q_strlower( szDir );
#endif
Q_FixSlashes( szDir );
if ( Q_strlen( szDir ) > 0 )
{
m_sResListDir = szDir;
}
}
// game directory has not been established yet, must derive ourselves
char path[MAX_PATH];
Q_snprintf( path, sizeof(path), "%s/%s", GetBaseDirectory(), CommandLine()->ParmValue( "-game", "hl2" ) );
Q_FixSlashes( path );
#ifdef WIN32
Q_strlower( path );
#endif
m_sFullGamePath = path;
// create file to dump out to
char szDir[ MAX_PATH ];
V_snprintf( szDir, sizeof( szDir ), "%s\\%s", m_sFullGamePath.String(), m_sResListDir.String() );
g_pFullFileSystem->CreateDirHierarchy( szDir, "GAME" );
g_pFullFileSystem->AddLoggingFunc( &LogAllFilesFunc );
if ( !CommandLine()->FindParm( "-startmap" ) && !CommandLine()->FindParm( "-startstage" ) )
{
m_Logged.RemoveAll();
g_pFullFileSystem->RemoveFile( CFmtStr( "%s\\%s\\%s", m_sFullGamePath.String(), m_sResListDir.String(), ALL_RESLIST_FILE ), "GAME" );
}
#ifdef WIN32
::GetCurrentDirectory( sizeof(m_szCurrentDir), m_szCurrentDir );
Q_strncat( m_szCurrentDir, "\\", sizeof(m_szCurrentDir), 1 );
_strlwr( m_szCurrentDir );
#else
getcwd( m_szCurrentDir, sizeof(m_szCurrentDir) );
Q_strncat( m_szCurrentDir, "/", sizeof(m_szCurrentDir), 1 );
#endif
}
void CLogAllFiles::Shutdown()
{
if ( !m_bActive )
return;
m_bActive = false;
if ( CommandLine()->CheckParm( "-makereslists" ) )
{
g_pFullFileSystem->RemoveLoggingFunc( &LogAllFilesFunc );
}
// Now load and sort all.lst
SortResList( CFmtStr( "%s\\%s\\%s", m_sFullGamePath.String(), m_sResListDir.String(), ALL_RESLIST_FILE ), "GAME" );
// Now load and sort engine.lst
SortResList( CFmtStr( "%s\\%s\\%s", m_sFullGamePath.String(), m_sResListDir.String(), ENGINE_RESLIST_FILE ), "GAME" );
m_Logged.Purge();
}
void CLogAllFiles::LogToAllReslist( char const *line )
{
// Open for append, write data, close.
FileHandle_t fh = g_pFullFileSystem->Open( CFmtStr( "%s\\%s\\%s", m_sFullGamePath.String(), m_sResListDir.String(), ALL_RESLIST_FILE ), "at", "GAME" );
if ( fh != FILESYSTEM_INVALID_HANDLE )
{
g_pFullFileSystem->Write("\"", 1, fh);
g_pFullFileSystem->Write( line, Q_strlen(line), fh );
g_pFullFileSystem->Write("\"\n", 2, fh);
g_pFullFileSystem->Close( fh );
}
}
void CLogAllFiles::LogFile(const char *fullPathFileName, const char *options)
{
if ( !m_bActive )
{
Assert( 0 );
return;
}
// write out to log file
Assert( fullPathFileName[1] == ':' );
int idx = m_Logged.Find( fullPathFileName );
if ( idx != m_Logged.InvalidIndex() )
{
return;
}
m_Logged.Insert( fullPathFileName );
// make it relative to our root directory
const char *relative = Q_stristr( fullPathFileName, GetBaseDirectory() );
if ( relative )
{
relative += ( Q_strlen( GetBaseDirectory() ) + 1 );
char rel[ MAX_PATH ];
Q_strncpy( rel, relative, sizeof( rel ) );
#ifdef WIN32
Q_strlower( rel );
#endif
Q_FixSlashes( rel );
LogToAllReslist( rel );
}
}
//-----------------------------------------------------------------------------
// Purpose: callback function from filesystem
//-----------------------------------------------------------------------------
void CLogAllFiles::LogAllFilesFunc(const char *fullPathFileName, const char *options)
{
g_LogFiles.LogFile( fullPathFileName, options );
}
//-----------------------------------------------------------------------------
// Purpose: This is a bit of a hack because it appears
// Output : Returns true on success, false on failure.
//-----------------------------------------------------------------------------
static bool IsWin98OrOlder()
{
bool retval = false;
#if defined( WIN32 ) && !defined( _X360 )
OSVERSIONINFOEX osvi;
ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX));
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
BOOL bOsVersionInfoEx = GetVersionEx ((OSVERSIONINFO *) &osvi);
if( !bOsVersionInfoEx )
{
// If OSVERSIONINFOEX doesn't work, try OSVERSIONINFO.
osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
if ( !GetVersionEx ( (OSVERSIONINFO *) &osvi) )
{
Error( "IsWin98OrOlder: Unable to get OS version information" );
}
}
switch (osvi.dwPlatformId)
{
case VER_PLATFORM_WIN32_NT:
// NT, XP, Win2K, etc. all OK for SSE
break;
case VER_PLATFORM_WIN32_WINDOWS:
// Win95, 98, Me can't do SSE
retval = true;
break;
case VER_PLATFORM_WIN32s:
// Can't really run this way I don't think...
retval = true;
break;
default:
break;
}
#endif
return retval;
}
//-----------------------------------------------------------------------------
// Purpose: Figure out if Steam is running, then load the GameOverlayRenderer.dll
//-----------------------------------------------------------------------------
void TryToLoadSteamOverlayDLL()
{
#if defined( WIN32 ) && !defined( _X360 )
// First, check if the module is already loaded, perhaps because we were run from Steam directly
HMODULE hMod = GetModuleHandle( "GameOverlayRenderer" DLL_EXT_STRING );
if ( hMod )
{
return;
}
if ( 0 == GetEnvironmentVariableA( "SteamGameId", NULL, 0 ) )
{
// Initializing the Steam client API has the side effect of setting up the AppId
// which is immediately queried in GameOverlayRenderer.dll's DllMain entry point
if( SteamAPI_InitSafe() )
{
const char *pchSteamInstallPath = SteamAPI_GetSteamInstallPath();
if ( pchSteamInstallPath )
{
char rgchSteamPath[MAX_PATH];
V_ComposeFileName( pchSteamInstallPath, "GameOverlayRenderer" DLL_EXT_STRING, rgchSteamPath, Q_ARRAYSIZE(rgchSteamPath) );
// This could fail, but we can't fix it if it does so just ignore failures
LoadLibrary( rgchSteamPath );
}
SteamAPI_Shutdown();
}
}
#endif
}
//-----------------------------------------------------------------------------
// Inner loop: initialize, shutdown main systems, load steam to
//-----------------------------------------------------------------------------
class CSourceAppSystemGroup : public CSteamAppSystemGroup
{
public:
// Methods of IApplication
virtual bool Create();
virtual bool PreInit();
virtual int Main();
virtual void PostShutdown();
virtual void Destroy();
private:
const char *DetermineDefaultMod();
const char *DetermineDefaultGame();
bool m_bEditMode;
};
//-----------------------------------------------------------------------------
// The dirty disk error report function
//-----------------------------------------------------------------------------
void ReportDirtyDiskNoMaterialSystem()
{
#ifdef _X360
for ( int i = 0; i < 4; ++i )
{
if ( XUserGetSigninState( i ) != eXUserSigninState_NotSignedIn )
{
XShowDirtyDiscErrorUI( i );
return;
}
}
XShowDirtyDiscErrorUI( 0 );
#endif
}
//-----------------------------------------------------------------------------
// Instantiate all main libraries
//-----------------------------------------------------------------------------
bool CSourceAppSystemGroup::Create()
{
IFileSystem *pFileSystem = (IFileSystem*)FindSystem( FILESYSTEM_INTERFACE_VERSION );
pFileSystem->InstallDirtyDiskReportFunc( ReportDirtyDiskNoMaterialSystem );
#ifdef WIN32
CoInitialize( NULL );
#endif
// Are we running in edit mode?
m_bEditMode = CommandLine()->CheckParm( "-edit" );
double st = Plat_FloatTime();
AppSystemInfo_t appSystems[] =
{
{ "engine" DLL_EXT_STRING, CVAR_QUERY_INTERFACE_VERSION }, // NOTE: This one must be first!!
{ "inputsystem" DLL_EXT_STRING, INPUTSYSTEM_INTERFACE_VERSION },
{ "materialsystem" DLL_EXT_STRING, MATERIAL_SYSTEM_INTERFACE_VERSION },
{ "datacache" DLL_EXT_STRING, DATACACHE_INTERFACE_VERSION },
{ "datacache" DLL_EXT_STRING, MDLCACHE_INTERFACE_VERSION },
{ "datacache" DLL_EXT_STRING, STUDIO_DATA_CACHE_INTERFACE_VERSION },
{ "studiorender" DLL_EXT_STRING, STUDIO_RENDER_INTERFACE_VERSION },
{ "vphysics" DLL_EXT_STRING, VPHYSICS_INTERFACE_VERSION },
{ "video_services" DLL_EXT_STRING, VIDEO_SERVICES_INTERFACE_VERSION },
// NOTE: This has to occur before vgui2.dll so it replaces vgui2's surface implementation
{ "vguimatsurface" DLL_EXT_STRING, VGUI_SURFACE_INTERFACE_VERSION },
{ "vgui2" DLL_EXT_STRING, VGUI_IVGUI_INTERFACE_VERSION },
{ "engine" DLL_EXT_STRING, VENGINE_LAUNCHER_API_VERSION },
{ "", "" } // Required to terminate the list
};
#if defined( USE_SDL )
AddSystem( (IAppSystem *)CreateSDLMgr(), SDLMGR_INTERFACE_VERSION );
#endif
if ( !AddSystems( appSystems ) )
return false;
// This will be NULL for games that don't support VR. That's ok. Just don't load the DLL
AppModule_t sourceVRModule = LoadModule( "sourcevr" DLL_EXT_STRING );
if( sourceVRModule != APP_MODULE_INVALID )
{
AddSystem( sourceVRModule, SOURCE_VIRTUAL_REALITY_INTERFACE_VERSION );
}
// pull in our filesystem dll to pull the queued loader from it, we need to do it this way due to the
// steam/stdio split for our steam filesystem
char pFileSystemDLL[MAX_PATH];
bool bSteam;
if ( FileSystem_GetFileSystemDLLName( pFileSystemDLL, MAX_PATH, bSteam ) != FS_OK )
return false;
AppModule_t fileSystemModule = LoadModule( pFileSystemDLL );
AddSystem( fileSystemModule, QUEUEDLOADER_INTERFACE_VERSION );
// Hook in datamodel and p4 control if we're running with -tools
if ( IsPC() && ( ( CommandLine()->FindParm( "-tools" ) && !CommandLine()->FindParm( "-nop4" ) ) || CommandLine()->FindParm( "-p4" ) ) )
{
#ifdef STAGING_ONLY
AppModule_t p4libModule = LoadModule( "p4lib" DLL_EXT_STRING );
IP4 *p4 = (IP4*)AddSystem( p4libModule, P4_INTERFACE_VERSION );
// If we are running with -steam then that means the tools are being used by an SDK user. Don't exit in this case!
if ( !p4 && !CommandLine()->FindParm( "-steam" ) )
{
return false;
}
#endif // STAGING_ONLY
AppModule_t vstdlibModule = LoadModule( "vstdlib" DLL_EXT_STRING );
IProcessUtils *processUtils = ( IProcessUtils* )AddSystem( vstdlibModule, PROCESS_UTILS_INTERFACE_VERSION );
if ( !processUtils )
return false;
}
// Connect to iterfaces loaded in AddSystems that we need locally
IMaterialSystem *pMaterialSystem = (IMaterialSystem*)FindSystem( MATERIAL_SYSTEM_INTERFACE_VERSION );
if ( !pMaterialSystem )
return false;
g_pEngineAPI = (IEngineAPI*)FindSystem( VENGINE_LAUNCHER_API_VERSION );
// Load the hammer DLL if we're in editor mode
#if defined( _WIN32 ) && defined( STAGING_ONLY )
if ( m_bEditMode )
{
AppModule_t hammerModule = LoadModule( "hammer_dll" DLL_EXT_STRING );
g_pHammer = (IHammer*)AddSystem( hammerModule, INTERFACEVERSION_HAMMER );
if ( !g_pHammer )
{
return false;
}
}
#endif // defined( _WIN32 ) && defined( STAGING_ONLY )
// Load up the appropriate shader DLL
// This has to be done before connection.
char const* pDLLName = "shaderapidx9" DLL_EXT_STRING;
if ( CommandLine()->FindParm( "-noshaderapi" ) )
{
pDLLName = "shaderapiempty" DLL_EXT_STRING;
}
pMaterialSystem->SetShaderAPI( pDLLName );
double elapsed = Plat_FloatTime() - st;
COM_TimestampedLog( "LoadAppSystems: Took %.4f secs to load libraries and get factories.", (float)elapsed );
return true;
}
bool CSourceAppSystemGroup::PreInit()
{
CreateInterfaceFn factory = GetFactory();
ConnectTier1Libraries( &factory, 1 );
ConVar_Register( );
ConnectTier2Libraries( &factory, 1 );
ConnectTier3Libraries( &factory, 1 );
if ( !g_pFullFileSystem || !g_pMaterialSystem )
return false;
CFSSteamSetupInfo steamInfo;
steamInfo.m_bToolsMode = false;
steamInfo.m_bSetSteamDLLPath = false;
steamInfo.m_bSteam = g_pFullFileSystem->IsSteam();
steamInfo.m_bOnlyUseDirectoryName = true;
steamInfo.m_pDirectoryName = DetermineDefaultMod();
if ( !steamInfo.m_pDirectoryName )
{
steamInfo.m_pDirectoryName = DetermineDefaultGame();
if ( !steamInfo.m_pDirectoryName )
{
Error( "FileSystem_LoadFileSystemModule: no -defaultgamedir or -game specified." );
}
}
if ( FileSystem_SetupSteamEnvironment( steamInfo ) != FS_OK )
return false;
CFSMountContentInfo fsInfo;
fsInfo.m_pFileSystem = g_pFullFileSystem;
fsInfo.m_bToolsMode = m_bEditMode;
fsInfo.m_pDirectoryName = steamInfo.m_GameInfoPath;
if ( FileSystem_MountContent( fsInfo ) != FS_OK )
return false;
if ( IsPC() || !IsX360() )
{
fsInfo.m_pFileSystem->AddSearchPath( "platform", "PLATFORM" );
}
else
{
// 360 needs absolute paths
FileSystem_AddSearchPath_Platform( g_pFullFileSystem, steamInfo.m_GameInfoPath );
}
if ( IsPC() )
{
// This will get called multiple times due to being here, but only the first one will do anything
reslistgenerator->Init( GetBaseDirectory(), CommandLine()->ParmValue( "-game", "hl2" ) );
// This will also get called each time, but will actually fix up the command line as needed
reslistgenerator->SetupCommandLine();
}
// FIXME: Logfiles is mod-specific, needs to move into the engine.
g_LogFiles.Init();
// Required to run through the editor
if ( m_bEditMode )
{
g_pMaterialSystem->EnableEditorMaterials();
}
StartupInfo_t info;
info.m_pInstance = GetAppInstance();
info.m_pBaseDirectory = GetBaseDirectory();
info.m_pInitialMod = DetermineDefaultMod();
info.m_pInitialGame = DetermineDefaultGame();
info.m_pParentAppSystemGroup = this;
info.m_bTextMode = g_bTextMode;
g_pEngineAPI->SetStartupInfo( info );
return true;
}
int CSourceAppSystemGroup::Main()
{
return g_pEngineAPI->Run();
}
void CSourceAppSystemGroup::PostShutdown()
{
// FIXME: Logfiles is mod-specific, needs to move into the engine.
g_LogFiles.Shutdown();
reslistgenerator->Shutdown();
DisconnectTier3Libraries();
DisconnectTier2Libraries();
ConVar_Unregister( );
DisconnectTier1Libraries();
}
void CSourceAppSystemGroup::Destroy()
{
g_pEngineAPI = NULL;
g_pMaterialSystem = NULL;
g_pHammer = NULL;
#ifdef WIN32
CoUninitialize();
#endif
}
//-----------------------------------------------------------------------------
// Determines the initial mod to use at load time.
// We eventually (hopefully) will be able to switch mods at runtime
// because the engine/hammer integration really wants this feature.
//-----------------------------------------------------------------------------
const char *CSourceAppSystemGroup::DetermineDefaultMod()
{
if ( !m_bEditMode )
{
return CommandLine()->ParmValue( "-game", DEFAULT_HL2_GAMEDIR );
}
return g_pHammer->GetDefaultMod();
}
const char *CSourceAppSystemGroup::DetermineDefaultGame()
{
if ( !m_bEditMode )
{
return CommandLine()->ParmValue( "-defaultgamedir", DEFAULT_HL2_GAMEDIR );
}
return g_pHammer->GetDefaultGame();
}
//-----------------------------------------------------------------------------
// MessageBox for SDL/OSX
//-----------------------------------------------------------------------------
#if defined( USE_SDL ) && !defined( _WIN32 )
int MessageBox( HWND hWnd, const char *message, const char *header, unsigned uType )
{
SDL_ShowSimpleMessageBox( 0, header, message, GetAssertDialogParent() );
return 0;
}
#endif
//-----------------------------------------------------------------------------
// Allow only one windowed source app to run at a time
//-----------------------------------------------------------------------------
#ifdef WIN32
HANDLE g_hMutex = NULL;
#elif defined(POSIX)
int g_lockfd = -1;
char g_lockFilename[MAX_PATH];
#endif
bool GrabSourceMutex()
{
#ifdef WIN32
if ( IsPC() )
{
// don't allow more than one instance to run
g_hMutex = ::CreateMutex(NULL, FALSE, TEXT("hl2_singleton_mutex"));
unsigned int waitResult = ::WaitForSingleObject(g_hMutex, 0);
// Here, we have the mutex
if (waitResult == WAIT_OBJECT_0 || waitResult == WAIT_ABANDONED)
return true;
// couldn't get the mutex, we must be running another instance
::CloseHandle(g_hMutex);
return false;
}
#elif defined(POSIX)
// Under OSX use flock in /tmp/source_engine_<game>.lock, create the file if it doesn't exist
const char *pchGameParam = CommandLine()->ParmValue( "-game", DEFAULT_HL2_GAMEDIR );
CRC32_t gameCRC;
CRC32_Init(&gameCRC);
CRC32_ProcessBuffer( &gameCRC, (void *)pchGameParam, Q_strlen( pchGameParam ) );
CRC32_Final( &gameCRC );
#ifdef LINUX
/*
* Linux
*/
// Check TMPDIR environment variable for temp directory.
char *tmpdir = getenv( "TMPDIR" );
// If it's NULL, or it doesn't exist, or it isn't a directory, fallback to /tmp.
struct stat buf;
if( !tmpdir || stat( tmpdir, &buf ) || !S_ISDIR ( buf.st_mode ) )
tmpdir = "/tmp";
V_snprintf( g_lockFilename, sizeof(g_lockFilename), "%s/source_engine_%u.lock", tmpdir, gameCRC );
g_lockfd = open( g_lockFilename, O_WRONLY | O_CREAT, 0666 );
if ( g_lockfd == -1 )
{
printf( "open(%s) failed\n", g_lockFilename );
return false;
}
struct flock fl;
fl.l_type = F_WRLCK;
fl.l_whence = SEEK_SET;
fl.l_start = 0;
fl.l_len = 1;
if ( fcntl ( g_lockfd, F_SETLK, &fl ) == -1 )
{
printf( "fcntl(%d) for %s failed\n", g_lockfd, g_lockFilename );
return false;
}
return true;
#else
/*
* OSX
*/
V_snprintf( g_lockFilename, sizeof(g_lockFilename), "/tmp/source_engine_%u.lock", gameCRC );
g_lockfd = open( g_lockFilename, O_CREAT | O_WRONLY | O_EXLOCK | O_NONBLOCK | O_TRUNC, 0777 );
if (g_lockfd >= 0)
{
// make sure we give full perms to the file, we only one instance per machine
fchmod( g_lockfd, 0777 );
// we leave the file open, under unix rules when we die we'll automatically close and remove the locks
return true;
}
// We were unable to open the file, it should be because we are unable to retain a lock
if ( errno != EWOULDBLOCK)
{
fprintf( stderr, "unexpected error %d trying to exclusively lock %s\n", errno, g_lockFilename );
}
return false;
#endif // OSX
#endif // POSIX
return true;
}
void ReleaseSourceMutex()
{
#ifdef WIN32
if ( IsPC() && g_hMutex )
{
::ReleaseMutex( g_hMutex );
::CloseHandle( g_hMutex );
g_hMutex = NULL;
}
#elif defined(POSIX)
if ( g_lockfd != -1 )
{
close( g_lockfd );
g_lockfd = -1;
unlink( g_lockFilename );
}
#endif
}
// Remove all but the last -game parameter.
// This is for mods based off something other than Half-Life 2 (like HL2MP mods).
// The Steam UI does 'steam -applaunch 320 -game c:\steam\steamapps\sourcemods\modname', but applaunch inserts
// its own -game parameter, which would supercede the one we really want if we didn't intercede here.
void RemoveSpuriousGameParameters()
{
// Find the last -game parameter.
int nGameArgs = 0;
char lastGameArg[MAX_PATH];
for ( int i=0; i < CommandLine()->ParmCount()-1; i++ )
{
if ( Q_stricmp( CommandLine()->GetParm( i ), "-game" ) == 0 )
{
Q_snprintf( lastGameArg, sizeof( lastGameArg ), "\"%s\"", CommandLine()->GetParm( i+1 ) );
++nGameArgs;
++i;
}
}
// We only care if > 1 was specified.
if ( nGameArgs > 1 )
{
CommandLine()->RemoveParm( "-game" );
CommandLine()->AppendParm( "-game", lastGameArg );
}
}
/*
============
va
does a varargs printf into a temp buffer, so I don't need to have
varargs versions of all text functions.
============
*/
static char *va( char *format, ... )
{
va_list argptr;
static char string[8][512];
static int curstring = 0;
curstring = ( curstring + 1 ) % 8;
va_start (argptr, format);
Q_vsnprintf( string[curstring], sizeof( string[curstring] ), format, argptr );
va_end (argptr);
return string[curstring];
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *param -
// Output : static char const
//-----------------------------------------------------------------------------
static char const *Cmd_TranslateFileAssociation(char const *param )
{
static char sz[ 512 ];
char *retval = NULL;
char temp[ 512 ];
Q_strncpy( temp, param, sizeof( temp ) );
Q_FixSlashes( temp );
#ifdef WIN32
Q_strlower( temp );
#endif
const char *extension = V_GetFileExtension(temp);
// must have an extension to map
if (!extension)
return retval;
extension--; // back up so we have the . in the extension
int c = ARRAYSIZE( g_FileAssociations );
for ( int i = 0; i < c; i++ )
{
FileAssociationInfo& info = g_FileAssociations[ i ];
if ( ! Q_strcmp( extension, info.extension ) &&
! CommandLine()->FindParm(va( "+%s", info.command_to_issue ) ) )
{
// Translate if haven't already got one of these commands
Q_strncpy( sz, temp, sizeof( sz ) );
Q_FileBase( sz, temp, sizeof( sz ) );
Q_snprintf( sz, sizeof( sz ), "%s %s", info.command_to_issue, temp );
retval = sz;
break;
}
}
// return null if no translation, otherwise return commands
return retval;
}
//-----------------------------------------------------------------------------
// Purpose: Converts all the convar args into a convar command
// Input : none
// Output : const char * series of convars
//-----------------------------------------------------------------------------
static const char *BuildCommand()
{
static CUtlBuffer build( 0, 0, CUtlBuffer::TEXT_BUFFER );
build.Clear();
// arg[0] is the executable name
for ( int i=1; i < CommandLine()->ParmCount(); i++ )
{
const char *szParm = CommandLine()->GetParm(i);
if (!szParm) continue;
if (szParm[0] == '-')
{
// skip -XXX options and eat their args
const char *szValue = CommandLine()->ParmValue(szParm);
if ( szValue ) i++;
continue;
}
if (szParm[0] == '+')
{
// convert +XXX options and stuff them into the build buffer
const char *szValue = CommandLine()->ParmValue(szParm);
if (szValue)
{
build.PutString(va("%s %s;", szParm+1, szValue));
i++;
}
else
{
build.PutString(szParm+1);
build.PutChar(';');
}
}
else
{
// singleton values, convert to command
char const *translated = Cmd_TranslateFileAssociation( CommandLine()->GetParm( i ) );
if (translated)
{
build.PutString(translated);
build.PutChar(';');
}
}
}
build.PutChar( '\0' );
return (const char *)build.Base();
}
//-----------------------------------------------------------------------------
// Purpose: The real entry point for the application
// Input : hInstance -
// hPrevInstance -
// lpCmdLine -
// nCmdShow -
// Output : int APIENTRY
//-----------------------------------------------------------------------------
#ifdef WIN32
extern "C" __declspec(dllexport) int LauncherMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow )
#else
DLL_EXPORT int LauncherMain( int argc, char **argv )
#endif
{
#ifdef LINUX
// Temporary fix to stop us from crashing in printf/sscanf functions that don't expect
// localization to mess with your "." and "," float seperators. Mac OSX also sets LANG
// to en_US.UTF-8 before starting up (in info.plist I believe).
// We need to double check that localization for libcef is handled correctly
// when we slam things to en_US.UTF-8.
// Also check if C.UTF-8 exists and use it? This file: /usr/lib/locale/C.UTF-8.
// It looks like it's only installed on Debian distros right now though.
const char en_US[] = "en_US.UTF-8";
setenv( "LC_ALL", en_US, 1 );
setlocale( LC_ALL, en_US );
const char *CurrentLocale = setlocale( LC_ALL, NULL );
if ( Q_stricmp( CurrentLocale, en_US ) )
{
Warning( "WARNING: setlocale('%s') failed, using locale:'%s'. International characters may not work.\n", en_US, CurrentLocale );
}
#endif // LINUX
#ifdef WIN32
SetAppInstance( hInstance );
#elif defined( POSIX )
// Store off command line for argument searching
Plat_SetCommandLine( BuildCmdLine( argc, argv, false ) );
if( CommandLine()->CheckParm( "-sleepatstartup" ) )
{
// When launching from Steam, it can be difficult to get a debugger attached when you're
// crashing quickly at startup. So add a -sleepatstartup command line and sleep for 5
// seconds which should allow time to attach a debugger.
sleep( 5 );
}
#endif
// Hook the debug output stuff.
SpewOutputFunc( LauncherDefaultSpewFunc );
if ( 0 && IsWin98OrOlder() )
{
Error( "This build does not currently run under Windows 98/Me." );
return -1;
}
// Quickly check the hardware key, essentially a warning shot.
if ( !Plat_VerifyHardwareKeyPrompt() )
{
return -1;
}
const char *filename;
#ifdef WIN32
CommandLine()->CreateCmdLine( IsPC() ? VCRHook_GetCommandLine() : lpCmdLine );
#else
CommandLine()->CreateCmdLine( argc, argv );
#endif
// No -dxlevel or +mat_hdr_level allowed on POSIX
#ifdef POSIX
CommandLine()->RemoveParm( "-dxlevel" );
CommandLine()->RemoveParm( "+mat_hdr_level" );
CommandLine()->RemoveParm( "+mat_dxlevel" );
#endif
// If we're using -default command line parameters, get rid of DX8 settings.
if ( CommandLine()->CheckParm( "-default" ) )
{
CommandLine()->RemoveParm( "-dxlevel" );
CommandLine()->RemoveParm( "-maxdxlevel" );
CommandLine()->RemoveParm( "+mat_dxlevel" );
}
// Figure out the directory the executable is running from
UTIL_ComputeBaseDir();
#if defined( _X360 )
bool bSpewDllInfo = CommandLine()->CheckParm( "-dllinfo" );
bool bWaitForConsole = CommandLine()->CheckParm( "-vxconsole" );
XboxConsoleInit();
XBX_InitConsoleMonitor( bWaitForConsole || bSpewDllInfo );
#endif
#if defined( _X360 )
if ( bWaitForConsole )
COM_TimestampedLog( "LauncherMain: Application Start - %s", CommandLine()->GetCmdLine() );
if ( bSpewDllInfo )
{
XBX_DumpDllInfo( GetBaseDirectory() );
Error( "Stopped!\n" );
}
int storageID = XboxLaunch()->GetStorageID();
if ( storageID != XBX_INVALID_STORAGE_ID && storageID != XBX_STORAGE_DECLINED )
{
// Validate the storage device
XDEVICE_DATA deviceData;
DWORD ret = XContentGetDeviceData( storageID, &deviceData );
if ( ret != ERROR_SUCCESS )
{
// Device was removed
storageID = XBX_INVALID_STORAGE_ID;
XBX_QueueEvent( XEV_LISTENER_NOTIFICATION, WM_SYS_STORAGEDEVICESCHANGED, 0, 0 );
}
}
XBX_SetStorageDeviceId( storageID );
int userID = XboxLaunch()->GetUserID();
if ( !IsRetail() && userID == XBX_INVALID_USER_ID )
{
// didn't come from appchooser, try find a valid user id for dev purposes
XUSER_SIGNIN_INFO info;
for ( int i = 0; i < 4; ++i )
{
if ( ERROR_NO_SUCH_USER != XUserGetSigninInfo( i, 0, &info ) )
{
userID = i;
break;
}
}
}
XBX_SetPrimaryUserId( userID );
#endif // defined( _X360 )
#ifdef POSIX
{
struct stat st;
if ( stat( RELAUNCH_FILE, &st ) == 0 )
{
unlink( RELAUNCH_FILE );
}
}
#endif
// This call is to emulate steam's injection of the GameOverlay DLL into our process if we
// are running from the command line directly, this allows the same experience the user gets
// to be present when running from perforce, the call has no effect on X360
TryToLoadSteamOverlayDLL();
// Start VCR mode?
if ( CommandLine()->CheckParm( "-vcrrecord", &filename ) )
{
if ( !VCRStart( filename, true, &g_VCRHelpers ) )
{
Error( "-vcrrecord: can't open '%s' for writing.\n", filename );
return -1;
}
}
else if ( CommandLine()->CheckParm( "-vcrplayback", &filename ) )
{
if ( !VCRStart( filename, false, &g_VCRHelpers ) )
{
Error( "-vcrplayback: can't open '%s' for reading.\n", filename );
return -1;
}
}
// See the function for why we do this.
RemoveSpuriousGameParameters();
#ifdef WIN32
if ( IsPC() )
{
// initialize winsock
WSAData wsaData;
int nError = ::WSAStartup( MAKEWORD(2,0), &wsaData );
if ( nError )
{
Msg( "Warning! Failed to start Winsock via WSAStartup = 0x%x.\n", nError);
}
}
#endif
// Run in text mode? (No graphics or sound).
if ( CommandLine()->CheckParm( "-textmode" ) )
{
g_bTextMode = true;
InitTextMode();
}
#ifdef WIN32
else
{
int retval = -1;
// Can only run one windowed source app at a time
if ( !GrabSourceMutex() )
{
// Allow the user to explicitly say they want to be able to run multiple instances of the source mutex.
// Useful for side-by-side comparisons of different renderers.
bool multiRun = CommandLine()->CheckParm( "-multirun" ) != NULL;
// We're going to hijack the existing session and load a new savegame into it. This will mainly occur when users click on links in Bugzilla that will automatically copy saves and load them
// directly from the web browser. The -hijack command prevents the launcher from objecting that there is already an instance of the game.
if (CommandLine()->CheckParm( "-hijack" ))
{
HWND hwndEngine = FindWindow( "Valve001", NULL );
// Can't find the engine
if ( hwndEngine == NULL )
{
::MessageBox( NULL, "The modified entity keyvalues could not be sent to the Source Engine because the engine does not appear to be running.", "Source Engine Not Running", MB_OK | MB_ICONEXCLAMATION );
}
else
{
const char *szCommand = BuildCommand();
//
// Fill out the data structure to send to the engine.
//
COPYDATASTRUCT copyData;
copyData.cbData = strlen( szCommand ) + 1;
copyData.dwData = 0;
copyData.lpData = ( void * )szCommand;
if ( !::SendMessage( hwndEngine, WM_COPYDATA, 0, (LPARAM)©Data ) )
{
::MessageBox( NULL, "The Source Engine was found running, but did not accept the request to load a savegame. It may be an old version of the engine that does not support this functionality.", "Source Engine Declined Request", MB_OK | MB_ICONEXCLAMATION );
}
else
{
retval = 0;
}
free((void *)szCommand);
}
}
else
{
if (!multiRun) {
::MessageBox(NULL, "Only one instance of the game can be running at one time.", "Source - Warning", MB_ICONINFORMATION | MB_OK);
}
}
if (!multiRun) {
return retval;
}
}
}
#elif defined( POSIX )
else
{
if ( !GrabSourceMutex() )
{
::MessageBox(NULL, "Only one instance of the game can be running at one time.", "Source - Warning", 0 );
return -1;
}
}
#endif
#ifdef WIN32
// Make low priority?
if ( CommandLine()->CheckParm( "-low" ) )
{
SetPriorityClass( GetCurrentProcess(), IDLE_PRIORITY_CLASS );
}
else if ( CommandLine()->CheckParm( "-high" ) )
{
SetPriorityClass( GetCurrentProcess(), HIGH_PRIORITY_CLASS );
}
#endif
// If game is not run from Steam then add -insecure in order to avoid client timeout message
if ( NULL == CommandLine()->CheckParm( "-steam" ) )
{
CommandLine()->AppendParm( "-insecure", NULL );
}
// Figure out the directory the executable is running from
// and make that be the current working directory
_chdir( GetBaseDirectory() );
g_LeakDump.m_bCheckLeaks = CommandLine()->CheckParm( "-leakcheck" ) ? true : false;
bool bRestart = true;
while ( bRestart )
{
bRestart = false;
CSourceAppSystemGroup sourceSystems;
CSteamApplication steamApplication( &sourceSystems );
int nRetval = steamApplication.Run();
if ( steamApplication.GetErrorStage() == CSourceAppSystemGroup::INITIALIZATION )
{
bRestart = (nRetval == INIT_RESTART);
}
else if ( nRetval == RUN_RESTART )
{
bRestart = true;
}
bool bReslistCycle = false;
if ( !bRestart )
{
bReslistCycle = reslistgenerator->ShouldContinue();
bRestart = bReslistCycle;
}
if ( !bReslistCycle )
{
// Remove any overrides in case settings changed
CommandLine()->RemoveParm( "-w" );
CommandLine()->RemoveParm( "-h" );
CommandLine()->RemoveParm( "-width" );
CommandLine()->RemoveParm( "-height" );
CommandLine()->RemoveParm( "-sw" );
CommandLine()->RemoveParm( "-startwindowed" );
CommandLine()->RemoveParm( "-windowed" );
CommandLine()->RemoveParm( "-window" );
CommandLine()->RemoveParm( "-full" );
CommandLine()->RemoveParm( "-fullscreen" );
CommandLine()->RemoveParm( "-dxlevel" );
CommandLine()->RemoveParm( "-autoconfig" );
CommandLine()->RemoveParm( "+mat_hdr_level" );
}
}
#ifdef WIN32
if ( IsPC() )
{
// shutdown winsock
int nError = ::WSACleanup();
if ( nError )
{
Msg( "Warning! Failed to complete WSACleanup = 0x%x.\n", nError );
}
}
#endif
// Allow other source apps to run
ReleaseSourceMutex();
#if defined( WIN32 ) && !defined( _X360 )
// Now that the mutex has been released, check HKEY_CURRENT_USER\Software\Valve\Source\Relaunch URL. If there is a URL here, exec it.
// This supports the capability of immediately re-launching the the game via Steam in a different audio language
HKEY hKey;
if ( RegOpenKeyEx( HKEY_CURRENT_USER, "Software\\Valve\\Source", NULL, KEY_ALL_ACCESS, &hKey) == ERROR_SUCCESS )
{
char szValue[MAX_PATH];
DWORD dwValueLen = MAX_PATH;
if ( RegQueryValueEx( hKey, "Relaunch URL", NULL, NULL, (unsigned char*)szValue, &dwValueLen ) == ERROR_SUCCESS )
{
ShellExecute (0, "open", szValue, 0, 0, SW_SHOW);
RegDeleteValue( hKey, "Relaunch URL" );
}
RegCloseKey(hKey);
}
#elif defined( OSX ) || defined( LINUX )
struct stat st;
if ( stat( RELAUNCH_FILE, &st ) == 0 )
{
FILE *fp = fopen( RELAUNCH_FILE, "r" );
if ( fp )
{
char szCmd[256];
int nChars = fread( szCmd, 1, sizeof(szCmd), fp );
if ( nChars > 0 )
{
if ( nChars > (sizeof(szCmd)-1) )
{
nChars = (sizeof(szCmd)-1);
}
szCmd[nChars] = 0;
char szOpenLine[ MAX_PATH ];
#if defined( LINUX )
Q_snprintf( szOpenLine, sizeof(szOpenLine), "xdg-open \"%s\"", szCmd );
#else
Q_snprintf( szOpenLine, sizeof(szOpenLine), "open \"%s\"", szCmd );
#endif
system( szOpenLine );
}
fclose( fp );
unlink( RELAUNCH_FILE );
}
}
#elif defined( _X360 )
#else
#error
#endif
return 0;
}
|