mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
f18e1366ba
It was hidden by qwaq-curses, but the switch to using qwaq-cmd made it pretty obvious.
43 lines
920 B
R
43 lines
920 B
R
#include "vkfieldauto.h"
|
|
#include "vkgen.h"
|
|
#include "vkstruct.h"
|
|
|
|
@implementation AutoField
|
|
|
|
-init:(PLItem *) item struct:(Struct *)strct field:(string)fname
|
|
{
|
|
self = [super init:item struct:strct field:fname];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
field = [strct findField:field_name];
|
|
|
|
return self;
|
|
}
|
|
|
|
-writeParseData
|
|
{
|
|
//printf("FieldDef: '%s' '%s'\n", struct_name, field_name);
|
|
return self;
|
|
}
|
|
|
|
-writeField
|
|
{
|
|
Type *field_type = [Type findType: field.type];
|
|
fprintf (output_file, "\t{\"%s\", field_offset (%s, %s), %s, %s, %s},\n",
|
|
field_name, struct_name, field_name,
|
|
[field_type parseType], [field_type parseFunc],
|
|
[field_type parseData]);
|
|
return self;
|
|
}
|
|
|
|
-writeSymbol
|
|
{
|
|
Type *field_type = [Type findType: field.type];
|
|
fprintf (output_file,
|
|
"\t{\"%s\", &%s, (void *) field_offset (%s, %s)},\n",
|
|
field_name, [field_type cexprType], struct_name, field_name);
|
|
return self;
|
|
}
|
|
|
|
@end
|