summaryrefslogblamecommitdiffstats
path: root/src/modelinfo/ModelIndices.cpp
blob: 83539404cc1f07f2252805ae880c6091ac7fca2f (plain) (tree)
1
2
3
4
5
6
7
8
9
                   
 
                    
                         
                 
 


                                      
                    
          



                      
                                
                    





                                                                  




                                                 
                      
                                                     






                           




                      
#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)
{
	;
}