blob: 83539404cc1f07f2252805ae880c6091ac7fca2f (
plain) (
blame)
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
|
#include "common.h"
#include "General.h"
#include "ModelIndices.h"
#include "main.h"
CModelIndices *gpModelIndices;
/*#define X(name, var) int16 var = -1;
MODELINDICES
#undef X*/
void
InitModelIndices(void)
{
/*#define X(name, var) var = -1;
MODELINDICES
#undef X*/
if (gMakeResources)
{
gpModelIndices = new CModelIndices;
memset(gpModelIndices, -1, sizeof(CModelIndices));
}
}
void
MatchModelString(const char *modelname, int16 id)
{
#define X(name, var) \
if(!CGeneral::faststrcmp(name, modelname)){ \
var = id; \
return; \
}
MODELINDICES
#undef X
}
void
TestModelIndices(void)
{
;
}
|