2020-12-23 13:13:50 +00:00
|
|
|
#include <PropertyList.h>
|
|
|
|
|
|
|
|
#include "vkfieldstring.h"
|
|
|
|
#include "vkgen.h"
|
|
|
|
|
|
|
|
@implementation StringField
|
|
|
|
|
|
|
|
-init:(PLItem *) item struct:(Struct *)strct field:(string)fname
|
|
|
|
{
|
|
|
|
self = [super init:item struct:strct field:fname];
|
|
|
|
if (!self) {
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2023-02-09 02:32:38 +00:00
|
|
|
value_field = fname;
|
|
|
|
if (item) {
|
|
|
|
value_field = [[item getObjectForKey:"string"] string];
|
|
|
|
}
|
2020-12-23 13:13:50 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2023-02-09 02:32:38 +00:00
|
|
|
+fielddef:(PLItem *)item struct:(Struct *)strct field:(string)fname
|
|
|
|
{
|
|
|
|
return [[[StringField alloc] init:item struct:strct field:fname]
|
|
|
|
autorelease];
|
|
|
|
}
|
|
|
|
|
2020-12-23 13:13:50 +00:00
|
|
|
-writeParseData
|
|
|
|
{
|
|
|
|
fprintf (output_file, "static parse_string_t parse_%s_%s_data = {\n",
|
|
|
|
struct_name, field_name);
|
|
|
|
fprintf (output_file, "\tfield_offset (%s, %s),\n",
|
|
|
|
struct_name, value_field);
|
|
|
|
fprintf (output_file, "};\n");
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
-writeField
|
|
|
|
{
|
|
|
|
fprintf (output_file, "\t{\"%s\", 0, %s, parse_%s, &parse_%s_%s_data},\n",
|
|
|
|
field_name, "QFString", "string", struct_name, field_name);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|