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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#include "tier0/icommandline.h"
#include "dt_stack.h"
#include "client.h"
#include "host.h"
#include "utllinkedlist.h"
#include "server.h"
#include "server_class.h"
#include "eiface.h"
#include "demo.h"
#include "sv_packedentities.h"
#ifndef DEDICATED
#include "renamed_recvtable_compat.h"
#endif
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
extern CUtlLinkedList< CClientSendTable*, unsigned short > g_ClientSendTables;
extern CUtlLinkedList< CRecvDecoder *, unsigned short > g_RecvDecoders;
RecvTable* FindRecvTable( const char *pName );
RecvTable *DataTable_FindRenamedTable( const char *pOldTableName )
{
#ifdef DEDICATED
return NULL;
#else
extern IBaseClientDLL *g_ClientDLL;
if ( !g_ClientDLL )
return NULL;
// Get the renamed receive table list from the client DLL and see if we can find
// a new name (assuming it was renamed at all).
const CRenamedRecvTableInfo *pCur = g_ClientDLL->GetRenamedRecvTableInfos();
// This should be a very short list, so we'll do string compares until 2020 when
// someone finds this code and the list has grown to 10,000.
while ( pCur && pCur->m_pOldName && pCur->m_pNewName )
{
if ( !V_stricmp( pCur->m_pOldName, pOldTableName ) )
{
return FindRecvTable( pCur->m_pNewName );
}
pCur = pCur->m_pNext;
}
return NULL;
#endif
}
bool DataTable_SetupReceiveTableFromSendTable( SendTable *sendTable, bool bNeedsDecoder )
{
CClientSendTable *pClientSendTable = new CClientSendTable;
SendTable *pTable = &pClientSendTable->m_SendTable;
g_ClientSendTables.AddToTail( pClientSendTable );
// Read the name.
pTable->m_pNetTableName = COM_StringCopy( sendTable->m_pNetTableName );
// Create a decoder for it if necessary.
if ( bNeedsDecoder )
{
// Make a decoder for it.
CRecvDecoder *pDecoder = new CRecvDecoder;
g_RecvDecoders.AddToTail( pDecoder );
RecvTable *pRecvTable = FindRecvTable( pTable->m_pNetTableName );
if ( !pRecvTable )
{
// Attempt to find a renamed version of the table.
pRecvTable = DataTable_FindRenamedTable( pTable->m_pNetTableName );
if ( !pRecvTable )
{
DataTable_Warning( "No matching RecvTable for SendTable '%s'.\n", pTable->m_pNetTableName );
return false;
}
}
pRecvTable->m_pDecoder = pDecoder;
pDecoder->m_pTable = pRecvTable;
pDecoder->m_pClientSendTable = pClientSendTable;
pDecoder->m_Precalc.m_pSendTable = pClientSendTable->GetSendTable();
pClientSendTable->GetSendTable()->m_pPrecalc = &pDecoder->m_Precalc;
// Initialize array properties.
SetupArrayProps_R<RecvTable, RecvTable::PropType>( pRecvTable );
}
// Read the property list.
pTable->m_nProps = sendTable->m_nProps;
pTable->m_pProps = pTable->m_nProps ? new SendProp[ pTable->m_nProps ] : 0;
pClientSendTable->m_Props.SetSize( pTable->m_nProps );
for ( int iProp=0; iProp < pTable->m_nProps; iProp++ )
{
CClientSendProp *pClientProp = &pClientSendTable->m_Props[iProp];
SendProp *pProp = &pTable->m_pProps[iProp];
const SendProp *pSendTableProp = &sendTable->m_pProps[ iProp ];
pProp->m_Type = (SendPropType)pSendTableProp->m_Type;
pProp->m_pVarName = COM_StringCopy( pSendTableProp->GetName() );
pProp->SetFlags( pSendTableProp->GetFlags() );
if ( CommandLine()->FindParm("-dti" ) && pSendTableProp->GetParentArrayPropName() )
{
pProp->m_pParentArrayPropName = COM_StringCopy( pSendTableProp->GetParentArrayPropName() );
}
if ( pProp->m_Type == DPT_DataTable )
{
const char *pDTName = pSendTableProp->m_pExcludeDTName; // HACK
if ( pSendTableProp->GetDataTable() )
pDTName = pSendTableProp->GetDataTable()->m_pNetTableName;
Assert( pDTName && Q_strlen(pDTName) > 0 );
pClientProp->SetTableName( COM_StringCopy( pDTName ) );
// Normally we wouldn't care about this but we need to compare it against
// proxies in the server DLL in SendTable_BuildHierarchy.
pProp->SetDataTableProxyFn( pSendTableProp->GetDataTableProxyFn() );
pProp->SetOffset( pSendTableProp->GetOffset() );
}
else
{
if ( pProp->IsExcludeProp() )
{
pProp->m_pExcludeDTName = COM_StringCopy( pSendTableProp->GetExcludeDTName() );
}
else if ( pProp->GetType() == DPT_Array )
{
pProp->SetNumElements( pSendTableProp->GetNumElements() );
}
else
{
pProp->m_fLowValue = pSendTableProp->m_fLowValue;
pProp->m_fHighValue = pSendTableProp->m_fHighValue;
pProp->m_nBits = pSendTableProp->m_nBits;
}
}
}
return true;
}
// If the table's ID is -1, writes its info into the buffer and increments curID.
void DataTable_MaybeCreateReceiveTable( CUtlVector< SendTable * >& visited, SendTable *pTable, bool bNeedDecoder )
{
// Already sent?
if ( visited.Find( pTable ) != visited.InvalidIndex() )
return;
visited.AddToTail( pTable );
DataTable_SetupReceiveTableFromSendTable( pTable, bNeedDecoder );
}
void DataTable_MaybeCreateReceiveTable_R( CUtlVector< SendTable * >& visited, SendTable *pTable )
{
DataTable_MaybeCreateReceiveTable( visited, pTable, false );
// Make sure we send child send tables..
for(int i=0; i < pTable->m_nProps; i++)
{
SendProp *pProp = &pTable->m_pProps[i];
if( pProp->m_Type == DPT_DataTable )
{
DataTable_MaybeCreateReceiveTable_R( visited, pProp->GetDataTable() );
}
}
}
void DataTable_CreateClientTablesFromServerTables()
{
if ( !serverGameDLL )
{
Sys_Error( "DataTable_CreateClientTablesFromServerTables: No serverGameDLL loaded!" );
}
ServerClass *pClasses = serverGameDLL->GetAllServerClasses();
ServerClass *pCur;
CUtlVector< SendTable * > visited;
// First, we send all the leaf classes. These are the ones that will need decoders
// on the client.
for ( pCur=pClasses; pCur; pCur=pCur->m_pNext )
{
DataTable_MaybeCreateReceiveTable( visited, pCur->m_pTable, true );
}
// Now, we send their base classes. These don't need decoders on the client
// because we will never send these SendTables by themselves.
for ( pCur=pClasses; pCur; pCur=pCur->m_pNext )
{
DataTable_MaybeCreateReceiveTable_R( visited, pCur->m_pTable );
}
}
void DataTable_CreateClientClassInfosFromServerClasses( CBaseClientState *pState )
{
if ( !serverGameDLL )
{
Sys_Error( "DataTable_CreateClientClassInfosFromServerClasses: No serverGameDLL loaded!" );
}
ServerClass *pClasses = serverGameDLL->GetAllServerClasses();
// Count the number of classes.
int nClasses = 0;
for ( ServerClass *pCount=pClasses; pCount; pCount=pCount->m_pNext )
{
++nClasses;
}
// Remove old
if ( pState->m_pServerClasses )
{
delete [] pState->m_pServerClasses;
}
Assert( nClasses > 0 );
pState->m_nServerClasses = nClasses;
pState->m_pServerClasses = new C_ServerClassInfo[ pState->m_nServerClasses ];
if ( !pState->m_pServerClasses )
{
Host_EndGame(true, "CL_ParseClassInfo: can't allocate %d C_ServerClassInfos.\n", pState->m_nServerClasses);
return;
}
// Now fill in the entries
int curID = 0;
for ( ServerClass *pClass=pClasses; pClass; pClass=pClass->m_pNext )
{
Assert( pClass->m_ClassID >= 0 && pClass->m_ClassID < nClasses );
pClass->m_ClassID = curID++;
pState->m_pServerClasses[ pClass->m_ClassID ].m_ClassName = COM_StringCopy( pClass->m_pNetworkName );
pState->m_pServerClasses[ pClass->m_ClassID ].m_DatatableName = COM_StringCopy( pClass->m_pTable->GetName() );
}
}
// If the table's ID is -1, writes its info into the buffer and increments curID.
void DataTable_MaybeWriteSendTableBuffer( SendTable *pTable, bf_write *pBuf, bool bNeedDecoder )
{
// Already sent?
if ( pTable->GetWriteFlag() )
return;
pTable->SetWriteFlag( true );
pBuf->WriteOneBit( 1 ); // next SendTable follows
pBuf->WriteOneBit( bNeedDecoder?1:0 );
SendTable_WriteInfos( pTable, pBuf );
}
// Calls DataTable_MaybeWriteSendTable recursively.
void DataTable_MaybeWriteSendTableBuffer_R( SendTable *pTable, bf_write *pBuf )
{
DataTable_MaybeWriteSendTableBuffer( pTable, pBuf, false );
// Make sure we send child send tables..
for(int i=0; i < pTable->m_nProps; i++)
{
SendProp *pProp = &pTable->m_pProps[i];
if( pProp->m_Type == DPT_DataTable )
{
DataTable_MaybeWriteSendTableBuffer_R( pProp->GetDataTable(), pBuf );
}
}
}
void DataTable_ClearWriteFlags_R( SendTable *pTable )
{
pTable->SetWriteFlag( false );
for(int i=0; i < pTable->m_nProps; i++)
{
SendProp *pProp = &pTable->m_pProps[i];
if( pProp->m_Type == DPT_DataTable )
{
DataTable_ClearWriteFlags_R( pProp->GetDataTable() );
}
}
}
void DataTable_ClearWriteFlags( ServerClass *pClasses )
{
for ( ServerClass *pCur=pClasses; pCur; pCur=pCur->m_pNext )
{
DataTable_ClearWriteFlags_R( pCur->m_pTable );
}
}
void DataTable_WriteSendTablesBuffer( ServerClass *pClasses, bf_write *pBuf )
{
ServerClass *pCur;
DataTable_ClearWriteFlags( pClasses );
// First, we send all the leaf classes. These are the ones that will need decoders
// on the client.
for ( pCur=pClasses; pCur; pCur=pCur->m_pNext )
{
DataTable_MaybeWriteSendTableBuffer( pCur->m_pTable, pBuf, true );
}
// Now, we send their base classes. These don't need decoders on the client
// because we will never send these SendTables by themselves.
for ( pCur=pClasses; pCur; pCur=pCur->m_pNext )
{
DataTable_MaybeWriteSendTableBuffer_R( pCur->m_pTable, pBuf );
}
// Signal no more send tables
pBuf->WriteOneBit( 0 );
}
void DataTable_WriteClassInfosBuffer(ServerClass *pClasses, bf_write *pBuf )
{
int count = 0;
ServerClass *pClass = pClasses;
// first count total number of classes in list
while ( pClass != NULL )
{
pClass=pClass->m_pNext;
count++;
}
// write number of classes
pBuf->WriteShort( count );
pClass = pClasses; // go back to first class
// write each class info
while ( pClass != NULL )
{
pBuf->WriteShort( pClass->m_ClassID );
pBuf->WriteString( pClass->m_pNetworkName );
pBuf->WriteString( pClass->m_pTable->GetName() );
pClass=pClass->m_pNext;
}
}
bool DataTable_ParseClassInfosFromBuffer( CClientState *pState, bf_read *pBuf )
{
if(pState->m_pServerClasses)
{
delete [] pState->m_pServerClasses;
}
pState->m_nServerClasses = pBuf->ReadShort();
Assert( pState->m_nServerClasses );
pState->m_pServerClasses = new C_ServerClassInfo[pState->m_nServerClasses];
if ( !pState->m_pServerClasses )
{
Host_EndGame(true, "CL_ParseClassInfo: can't allocate %d C_ServerClassInfos.\n", pState->m_nServerClasses);
return false;
}
for ( int i = 0; i < pState->m_nServerClasses; i++ )
{
int classID = pBuf->ReadShort();
if( classID >= pState->m_nServerClasses )
{
Host_EndGame(true, "DataTable_ParseClassInfosFromBuffer: invalid class index (%d).\n", classID);
return false;
}
pState->m_pServerClasses[classID].m_ClassName = pBuf->ReadAndAllocateString();
pState->m_pServerClasses[classID].m_DatatableName = pBuf->ReadAndAllocateString();
}
return true;
}
bool DataTable_LoadDataTablesFromBuffer( bf_read *pBuf, int nDemoProtocol )
{
// Okay, read them out of the buffer since they weren't recorded into the main network stream during recording
// Create all of the send tables locally
// was DataTable_ParseClientTablesFromBuffer()
while ( pBuf->ReadOneBit() != 0 )
{
bool bNeedsDecoder = pBuf->ReadOneBit() != 0;
if ( !RecvTable_RecvClassInfos( pBuf, bNeedsDecoder, nDemoProtocol ) )
{
Host_Error( "DataTable_ParseClientTablesFromBuffer failed.\n" );
return false;
}
}
// Now create all of the server classes locally, too
return DataTable_ParseClassInfosFromBuffer( &cl, pBuf );
}
|