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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "quakedef.h"
#include "precache.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
//-----------------------------------------------------------------------------
// Purpose: Print out flag names
// Input : flags -
// Output : char const
//-----------------------------------------------------------------------------
char const *GetFlagString( int flags )
{
static char ret[ 512 ];
ret[ 0 ] = 0;
bool first = true;
if ( !flags )
return "None";
if ( flags & RES_FATALIFMISSING )
{
if ( !first )
{
Q_strncat( ret, " | ", sizeof( ret ), COPY_ALL_CHARACTERS );
}
Q_strncat( ret, "RES_FATALIFMISSING", sizeof( ret ), COPY_ALL_CHARACTERS );
first = false;
}
if ( flags & RES_PRELOAD )
{
if ( !first )
{
Q_strncat( ret, " | ", sizeof( ret ), COPY_ALL_CHARACTERS );
}
Q_strncat( ret, "RES_PRELOAD", sizeof( ret ), COPY_ALL_CHARACTERS );
first = false;
}
return ret;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
CPrecacheItem::CPrecacheItem( void )
{
Init( TYPE_UNK, NULL );
ResetStats();
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CPrecacheItem::ResetStats( void )
{
m_uiRefcount = 0;
#if DEBUG_PRECACHE
m_flFirst = 0.0f;
m_flMostRecent = 0.0f;
#endif
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CPrecacheItem::Reference( void )
{
m_uiRefcount++;
#if DEBUG_PRECACHE
m_flMostRecent = realtime;
if ( !m_flFirst )
{
m_flFirst = realtime;
}
#endif
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : type -
// *ptr -
//-----------------------------------------------------------------------------
void CPrecacheItem::Init( int type, void const *ptr )
{
m_nType = type;
u.model = ( model_t * )ptr;
if ( ptr )
{
ResetStats();
}
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : model_t
//-----------------------------------------------------------------------------
model_t *CPrecacheItem::GetModel( void )
{
if ( !u.model )
return NULL;
Assert( m_nType == TYPE_MODEL );
Reference();
return u.model;
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : char const
//-----------------------------------------------------------------------------
char const *CPrecacheItem::GetGeneric( void )
{
if ( !u.generic )
return NULL;
Assert( m_nType == TYPE_GENERIC );
Reference();
return u.generic;
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : CSfxTable
//-----------------------------------------------------------------------------
CSfxTable *CPrecacheItem::GetSound( void )
{
if ( !u.sound )
return NULL;
Assert( m_nType == TYPE_SOUND );
Reference();
return u.sound;
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : char const
//-----------------------------------------------------------------------------
char const *CPrecacheItem::GetName( void )
{
if ( !u.name )
return NULL;
Assert( m_nType == TYPE_SOUND );
Reference();
return u.name;
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : char const
//-----------------------------------------------------------------------------
char const *CPrecacheItem::GetDecal( void )
{
if ( !u.name )
return NULL;
Assert( m_nType == TYPE_DECAL );
Reference();
return u.name;
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *pmodel -
//-----------------------------------------------------------------------------
void CPrecacheItem::SetModel( model_t const *pmodel )
{
Init( TYPE_MODEL, pmodel );
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *pname -
//-----------------------------------------------------------------------------
void CPrecacheItem::SetGeneric( char const *pname )
{
Init( TYPE_GENERIC, pname );
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *psound -
//-----------------------------------------------------------------------------
void CPrecacheItem::SetSound( CSfxTable const *psound )
{
Init( TYPE_SOUND, psound );
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *name -
//-----------------------------------------------------------------------------
void CPrecacheItem::SetName( char const *name )
{
Init( TYPE_SOUND, name );
}
//-----------------------------------------------------------------------------
// Purpose:
// Input : *decalname -
//-----------------------------------------------------------------------------
void CPrecacheItem::SetDecal( char const *decalname )
{
Init( TYPE_DECAL, decalname );
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : float
//-----------------------------------------------------------------------------
float CPrecacheItem::GetFirstReference( void )
{
#if DEBUG_PRECACHE
return m_flFirst;
#else
return 0;
#endif
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : float
//-----------------------------------------------------------------------------
float CPrecacheItem::GetMostRecentReference( void )
{
#if DEBUG_PRECACHE
return m_flMostRecent;
#else
return 0;
#endif
}
//-----------------------------------------------------------------------------
// Purpose:
// Output : unsigned int
//-----------------------------------------------------------------------------
unsigned int CPrecacheItem::GetReferenceCount( void )
{
return m_uiRefcount;
}
|