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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
//#include <strstrea.h>
#include "vraddll.h"
#include "bsplib.h"
#include "vrad.h"
#include "map_shared.h"
#include "lightmap.h"
#include "threads.h"
static CUtlVector<unsigned char> g_LastGoodLightData;
static CUtlVector<unsigned char> g_FacesTouched;
static CVRadDLL g_VRadDLL;
EXPOSE_SINGLE_INTERFACE_GLOBALVAR( CVRadDLL, IVRadDLL, VRAD_INTERFACE_VERSION, g_VRadDLL );
EXPOSE_SINGLE_INTERFACE_GLOBALVAR( CVRadDLL, ILaunchableDLL, LAUNCHABLE_DLL_INTERFACE_VERSION, g_VRadDLL );
// ---------------------------------------------------------------------------- //
// temporary static array data size tracking
// original data size = 143 megs
// - converting ddispindices, ddispverts, g_dispinfo, and dlightdata to CUtlVector
// - 51 megs
// ---------------------------------------------------------------------------- //
class dat
{
public:
char *name;
int size;
};
#define DATENTRY(name) {#name, sizeof(name)}
dat g_Dats[] =
{
DATENTRY(dmodels),
DATENTRY(dvisdata),
DATENTRY(dlightdataLDR),
DATENTRY(dlightdataHDR),
DATENTRY(dentdata),
DATENTRY(dleafs),
DATENTRY(dplanes),
DATENTRY(dvertexes),
DATENTRY(g_vertnormalindices),
DATENTRY(g_vertnormals),
DATENTRY(texinfo),
DATENTRY(dtexdata),
DATENTRY(g_dispinfo),
DATENTRY(dorigfaces),
DATENTRY(g_primitives),
DATENTRY(g_primverts),
DATENTRY(g_primindices),
DATENTRY(dfaces),
DATENTRY(dedges),
DATENTRY(dleaffaces),
DATENTRY(dleafbrushes),
DATENTRY(dsurfedges),
DATENTRY(dbrushes),
DATENTRY(dbrushsides),
DATENTRY(dareas),
DATENTRY(dareaportals),
DATENTRY(dworldlights),
DATENTRY(dleafwaterdata),
DATENTRY(g_ClipPortalVerts),
DATENTRY(g_CubemapSamples),
DATENTRY(g_TexDataStringData),
DATENTRY(g_TexDataStringTable),
DATENTRY(g_Overlays)
};
int CalcDatSize()
{
int ret = 0;
int count = sizeof( g_Dats ) / sizeof( g_Dats[0] );
int i;
for( i=1; i < count; i++ )
{
if( g_Dats[i-1].size > g_Dats[i].size )
{
dat temp = g_Dats[i-1];
g_Dats[i-1] = g_Dats[i];
g_Dats[i] = temp;
if( i > 1 )
i -= 2;
else
i -= 1;
}
}
for( i=0; i < count; i++ )
ret += g_Dats[i].size;
return ret;
}
int g_TotalDatSize = CalcDatSize();
int CVRadDLL::main( int argc, char **argv )
{
return VRAD_Main( argc, argv );
}
bool CVRadDLL::Init( char const *pFilename )
{
VRAD_Init();
// Set options and run vrad startup code.
do_fast = true;
g_bLowPriorityThreads = true;
g_pIncremental = GetIncremental();
VRAD_LoadBSP( pFilename );
return true;
}
void CVRadDLL::Release()
{
}
void CVRadDLL::GetBSPInfo( CBSPInfo *pInfo )
{
pInfo->dlightdata = pdlightdata->Base();
pInfo->lightdatasize = pdlightdata->Count();
pInfo->dfaces = dfaces;
pInfo->m_pFacesTouched = g_FacesTouched.Base();
pInfo->numfaces = numfaces;
pInfo->dvertexes = dvertexes;
pInfo->numvertexes = numvertexes;
pInfo->dedges = dedges;
pInfo->numedges = numedges;
pInfo->dsurfedges = dsurfedges;
pInfo->numsurfedges = numsurfedges;
pInfo->texinfo = texinfo.Base();
pInfo->numtexinfo = texinfo.Count();
pInfo->g_dispinfo = g_dispinfo.Base();
pInfo->g_numdispinfo = g_dispinfo.Count();
pInfo->dtexdata = dtexdata;
pInfo->numtexdata = numtexdata;
pInfo->texDataStringData = g_TexDataStringData.Base();
pInfo->nTexDataStringData = g_TexDataStringData.Count();
pInfo->texDataStringTable = g_TexDataStringTable.Base();
pInfo->nTexDataStringTable = g_TexDataStringTable.Count();
}
bool CVRadDLL::DoIncrementalLight( char const *pVMFFile )
{
char tempPath[MAX_PATH], tempFilename[MAX_PATH];
GetTempPath( sizeof( tempPath ), tempPath );
GetTempFileName( tempPath, "vmf_entities_", 0, tempFilename );
FileHandle_t fp = g_pFileSystem->Open( tempFilename, "wb" );
if( !fp )
return false;
g_pFileSystem->Write( pVMFFile, strlen(pVMFFile)+1, fp );
g_pFileSystem->Close( fp );
// Parse the new entities.
if( !LoadEntsFromMapFile( tempFilename ) )
return false;
// Create lights.
CreateDirectLights();
// set up sky cameras
ProcessSkyCameras();
g_bInterrupt = false;
if( RadWorld_Go() )
{
// Save off the last finished lighting results for the BSP.
g_LastGoodLightData.CopyArray( pdlightdata->Base(), pdlightdata->Count() );
if( g_pIncremental )
g_pIncremental->GetFacesTouched( g_FacesTouched );
return true;
}
else
{
g_iCurFace = 0;
return false;
}
}
bool CVRadDLL::Serialize()
{
if( !g_pIncremental )
return false;
if( g_LastGoodLightData.Count() > 0 )
{
pdlightdata->CopyArray( g_LastGoodLightData.Base(), g_LastGoodLightData.Count() );
if( g_pIncremental->Serialize() )
{
// Delete this so it doesn't keep re-saving it.
g_LastGoodLightData.Purge();
return true;
}
}
return false;
}
float CVRadDLL::GetPercentComplete()
{
return (float)g_iCurFace / numfaces;
}
void CVRadDLL::Interrupt()
{
g_bInterrupt = true;
}
|