2010-09-01 10:37:10 +00:00
|
|
|
#ifndef EntityClass_h
|
|
|
|
#define EntityClass_h
|
|
|
|
|
2003-05-06 21:52:58 +00:00
|
|
|
#include <AppKit/AppKit.h>
|
2010-09-09 11:46:38 +00:00
|
|
|
|
|
|
|
#include "QF/mathlib.h"
|
2003-03-18 19:48:24 +00:00
|
|
|
|
|
|
|
typedef enum {esize_model, esize_fixed} esize_t;
|
|
|
|
|
|
|
|
#define MAX_FLAGS 8
|
|
|
|
|
2010-09-01 10:37:10 +00:00
|
|
|
@interface EntityClass : NSObject
|
2003-03-18 19:48:24 +00:00
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
esize_t esize;
|
|
|
|
vec3_t mins, maxs;
|
|
|
|
vec3_t color;
|
|
|
|
char *comments;
|
2010-09-09 11:46:38 +00:00
|
|
|
char *flagnames[MAX_FLAGS];
|
2003-03-18 19:48:24 +00:00
|
|
|
}
|
|
|
|
|
2010-09-09 11:46:38 +00:00
|
|
|
- initFromText: (const char *)text source: (const char *)filename;
|
2003-03-18 19:48:24 +00:00
|
|
|
- (char *)classname;
|
|
|
|
- (esize_t)esize;
|
|
|
|
- (float *)mins; // only for esize_fixed
|
|
|
|
- (float *)maxs; // only for esize_fixed
|
|
|
|
- (float *)drawColor;
|
|
|
|
- (char *)comments;
|
|
|
|
- (char *)flagName: (unsigned)flagnum;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
extern id entity_classes_i;
|
|
|
|
|
|
|
|
@interface EntityClassList : NSMutableArray
|
|
|
|
{
|
|
|
|
id nullclass;
|
|
|
|
char *source_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
- initForSourceDirectory: (char *)path;
|
|
|
|
- (id)classForName: (char *)name;
|
|
|
|
- (void)scanDirectory;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2010-09-01 10:37:10 +00:00
|
|
|
#endif//EntityClass_h
|