2022-01-26 04:28:10 +01:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
from extract_structs import *
|
2022-01-26 05:28:34 +01:00
|
|
|
from common import *
|
2022-01-26 04:28:10 +01:00
|
|
|
|
|
|
|
in_files = [
|
|
|
|
'include/types.h',
|
|
|
|
'src/game/area.h',
|
|
|
|
'src/game/camera.h',
|
2022-01-26 05:28:34 +01:00
|
|
|
'src/game/characters.h',
|
|
|
|
'src/engine/surface_collision.h'
|
2022-01-26 04:28:10 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
smlua_cobject_autogen = 'src/pc/lua/smlua_cobject_autogen'
|
|
|
|
|
2022-01-26 05:28:34 +01:00
|
|
|
c_template = """/* THIS FILE IS AUTOGENERATED */
|
|
|
|
/* SHOULD NOT BE MANUALLY CHANGED */
|
|
|
|
$[INCLUDES]
|
2022-01-26 04:28:10 +01:00
|
|
|
$[BODY]
|
|
|
|
struct LuaObjectField* smlua_get_object_field_autogen(u16 lot, const char* key) {
|
|
|
|
struct LuaObjectTable* ot = &sLuaObjectAutogenTable[lot - LOT_AUTOGEN_MIN - 1];
|
|
|
|
// TODO: change this to binary search or hash table or something
|
|
|
|
for (int i = 0; i < ot->fieldCount; i++) {
|
|
|
|
if (!strcmp(ot->fields[i].key, key)) {
|
|
|
|
return &ot->fields[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2022-01-26 05:28:34 +01:00
|
|
|
h_template = """/* THIS FILE IS AUTOGENERATED */
|
|
|
|
/* SHOULD NOT BE MANUALLY CHANGED */
|
|
|
|
#ifndef SMLUA_COBJECT_AUTOGEN_H
|
2022-01-26 04:28:10 +01:00
|
|
|
#define SMLUA_COBJECT_AUTOGEN_H
|
|
|
|
|
|
|
|
$[BODY]
|
|
|
|
struct LuaObjectField* smlua_get_object_field_autogen(u16 lot, const char* key);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
"""
|
|
|
|
|
|
|
|
override_field_names = {
|
|
|
|
"Animation": { "unk02": "animYTransDivisor", "unk04": "startFrame", "unk06": "loopStart", "unk08": "loopEnd", "unk0A": "unusedBoneCount" },
|
|
|
|
"GraphNodeObject": { "unk38": "animInfo" },
|
|
|
|
}
|
|
|
|
|
|
|
|
override_field_types = {
|
|
|
|
"Surface": { "normal": "Vec3f" },
|
|
|
|
}
|
|
|
|
|
2022-01-26 05:28:34 +01:00
|
|
|
override_field_immutable = {
|
|
|
|
"MarioState": [ "playerIndex" ],
|
|
|
|
"Character": [ "*" ],
|
|
|
|
}
|
2022-01-26 04:28:10 +01:00
|
|
|
|
2022-01-26 05:28:34 +01:00
|
|
|
############################################################################
|
2022-01-26 04:28:10 +01:00
|
|
|
|
|
|
|
def strip_internal_blocks(body):
|
|
|
|
# strip internal structs/enums/etc
|
|
|
|
tmp = body
|
|
|
|
body = ''
|
|
|
|
inside = 0
|
|
|
|
for character in tmp:
|
|
|
|
if character == '{':
|
|
|
|
body += '{ ... }'
|
|
|
|
inside += 1
|
|
|
|
|
|
|
|
if inside == 0:
|
|
|
|
body += character
|
|
|
|
|
|
|
|
if character == '}':
|
|
|
|
inside -= 1
|
|
|
|
|
|
|
|
return body
|
|
|
|
|
|
|
|
def identifier_to_caps(identifier):
|
|
|
|
caps = ''
|
|
|
|
was_cap = True
|
|
|
|
for c in identifier:
|
|
|
|
if c >= 'A' and c <= 'Z':
|
|
|
|
if not was_cap:
|
|
|
|
caps += '_'
|
|
|
|
was_cap = True
|
|
|
|
else:
|
|
|
|
was_cap = False
|
|
|
|
caps += c.upper()
|
|
|
|
return caps
|
|
|
|
|
|
|
|
def table_to_string(table):
|
|
|
|
count = 0
|
|
|
|
columns = 0
|
|
|
|
column_width = []
|
|
|
|
for c in table[0]:
|
|
|
|
column_width.append(0)
|
|
|
|
columns += 1
|
|
|
|
|
|
|
|
for row in table:
|
|
|
|
for i in range(columns):
|
|
|
|
if len(row[i]) > column_width[i]:
|
|
|
|
column_width[i] = len(row[i])
|
|
|
|
|
|
|
|
s = ''
|
|
|
|
for row in table:
|
|
|
|
line = ''
|
|
|
|
for i in range(columns):
|
|
|
|
line += row[i].ljust(column_width[i])
|
|
|
|
if '???' in line:
|
|
|
|
line = '//' + line[2:] + ' <--- UNIMPLEMENTED'
|
|
|
|
else:
|
|
|
|
count += 1
|
|
|
|
s += line + '\n'
|
|
|
|
return s, count
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
def parse_struct(struct_str):
|
|
|
|
struct = {}
|
|
|
|
identifier = struct_str.split(' ')[1]
|
|
|
|
struct['identifier'] = identifier
|
|
|
|
|
|
|
|
body = struct_str.split('{', 1)[1].rsplit('}', 1)[0]
|
|
|
|
body = strip_internal_blocks(body)
|
|
|
|
|
|
|
|
struct['fields'] = []
|
|
|
|
field_strs = body.split(';')
|
|
|
|
for field_str in field_strs:
|
|
|
|
if len(field_str.strip()) == 0:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if '*' in field_str:
|
|
|
|
field_type, field_id = field_str.strip().rsplit('*', 1)
|
|
|
|
field_type = field_type.strip() + '*'
|
|
|
|
else:
|
|
|
|
field_type, field_id = field_str.strip().rsplit(' ', 1)
|
|
|
|
|
|
|
|
if '[' in field_id:
|
|
|
|
array_str = '[' + field_id.split('[', 1)[1]
|
|
|
|
field_id = field_id.split('[', 1)[0]
|
|
|
|
if array_str != '[1]':
|
|
|
|
field_type += ' ' + array_str
|
|
|
|
|
|
|
|
field = {}
|
|
|
|
field['type'] = field_type.strip()
|
|
|
|
field['identifier'] = field_id.strip()
|
|
|
|
field['field_str'] = field_str
|
|
|
|
|
|
|
|
struct['fields'].append(field)
|
|
|
|
|
|
|
|
return struct
|
|
|
|
|
|
|
|
def parse_structs(struct_strs):
|
|
|
|
structs = []
|
|
|
|
for struct_str in struct_strs:
|
|
|
|
structs.append(parse_struct(struct_str))
|
|
|
|
return structs
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
sLuaObjectTable = []
|
|
|
|
sLotAutoGenList = []
|
|
|
|
|
|
|
|
def build_struct(struct):
|
|
|
|
sid = struct['identifier']
|
|
|
|
|
|
|
|
# build up table and track column width
|
|
|
|
field_table = []
|
|
|
|
for field in struct['fields']:
|
|
|
|
fid = field['identifier']
|
|
|
|
ftype = field['type']
|
|
|
|
|
|
|
|
if sid in override_field_names and fid in override_field_names[sid]:
|
|
|
|
fid = override_field_names[sid][fid]
|
|
|
|
|
|
|
|
if sid in override_field_types and fid in override_field_types[sid]:
|
|
|
|
ftype = override_field_types[sid][fid]
|
|
|
|
|
|
|
|
lvt = translate_type_to_lvt(ftype)
|
|
|
|
lot = translate_type_to_lot(ftype)
|
2022-01-27 05:35:13 +01:00
|
|
|
fimmutable = str(lvt == 'LVT_COBJECT' or lvt == 'LVT_COBJECT_P').lower()
|
2022-01-26 05:28:34 +01:00
|
|
|
|
|
|
|
if sid in override_field_immutable:
|
|
|
|
if fid in override_field_immutable[sid] or '*' in override_field_immutable[sid]:
|
|
|
|
fimmutable = 'true'
|
|
|
|
|
2022-01-26 04:28:10 +01:00
|
|
|
row = []
|
2022-01-26 05:28:34 +01:00
|
|
|
row.append(' { ' )
|
|
|
|
row.append('"%s", ' % fid )
|
|
|
|
row.append('%s, ' % lvt )
|
|
|
|
row.append('offsetof(struct %s, %s), ' % (sid, field['identifier']) )
|
|
|
|
row.append('%s, ' % fimmutable )
|
|
|
|
row.append("%s" % lot )
|
|
|
|
row.append(' },' )
|
2022-01-26 04:28:10 +01:00
|
|
|
field_table.append(row)
|
|
|
|
|
|
|
|
field_table_str, field_count = table_to_string(field_table)
|
|
|
|
field_count_define = 'LUA_%s_FIELD_COUNT' % identifier_to_caps(sid)
|
|
|
|
struct_lot = 'LOT_%s' % sid.upper()
|
|
|
|
|
|
|
|
s = "#define %s $[STRUCTFIELDCOUNT]\n" % field_count_define
|
|
|
|
s += "static struct LuaObjectField s%sFields[%s] = {\n" % (sid, field_count_define)
|
|
|
|
s += field_table_str
|
|
|
|
s += '};\n'
|
|
|
|
|
|
|
|
s = s.replace('$[STRUCTFIELDCOUNT]', str(field_count))
|
|
|
|
|
|
|
|
global sLuaObjectTable
|
|
|
|
struct_row = []
|
|
|
|
struct_row.append(' { ' )
|
|
|
|
struct_row.append('%s, ' % struct_lot )
|
|
|
|
struct_row.append('s%sFields, ' % sid )
|
|
|
|
struct_row.append('%s ' % field_count_define )
|
|
|
|
struct_row.append('},' )
|
|
|
|
sLuaObjectTable.append(struct_row)
|
|
|
|
|
|
|
|
global sLotAutoGenList
|
|
|
|
sLotAutoGenList.append(struct_lot)
|
|
|
|
|
|
|
|
return s
|
|
|
|
|
|
|
|
def build_structs(structs):
|
|
|
|
global sLuaObjectTable
|
|
|
|
sLuaObjectTable = []
|
|
|
|
|
|
|
|
global sLotAutoGenList
|
|
|
|
sLotAutoGenList = []
|
|
|
|
|
|
|
|
s = ''
|
|
|
|
for struct in structs:
|
|
|
|
if struct['identifier'] in exclude_structs:
|
|
|
|
continue
|
|
|
|
s += build_struct(struct) + '\n'
|
|
|
|
return s
|
|
|
|
|
|
|
|
def build_body(parsed):
|
|
|
|
built = build_structs(parsed)
|
|
|
|
obj_table_row_built, obj_table_count = table_to_string(sLuaObjectTable)
|
|
|
|
|
|
|
|
obj_table_built = 'struct LuaObjectTable sLuaObjectAutogenTable[LOT_AUTOGEN_MAX - LOT_AUTOGEN_MIN] = {\n'
|
|
|
|
obj_table_built += obj_table_row_built
|
|
|
|
obj_table_built += '};\n'
|
|
|
|
|
|
|
|
return built + obj_table_built
|
|
|
|
|
|
|
|
def build_lot_enum():
|
|
|
|
s = 'enum LuaObjectAutogenType {\n'
|
|
|
|
s += ' LOT_AUTOGEN_MIN = 1000,\n'
|
|
|
|
|
|
|
|
global sLotAutoGenList
|
|
|
|
for lot in sLotAutoGenList:
|
|
|
|
s += ' ' + lot + ',\n'
|
|
|
|
|
|
|
|
s += ' LOT_AUTOGEN_MAX,\n'
|
|
|
|
s += '};\n'
|
|
|
|
return s
|
|
|
|
|
|
|
|
def build_includes():
|
|
|
|
s = '#include "smlua.h"\n'
|
|
|
|
for in_file in in_files:
|
|
|
|
s += '#include "%s"\n' % in_file
|
|
|
|
return s
|
|
|
|
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
def build_files():
|
|
|
|
extracted = []
|
|
|
|
for in_file in in_files:
|
|
|
|
path = get_path(in_file)
|
|
|
|
extracted.extend(extract_structs(path))
|
|
|
|
|
|
|
|
parsed = parse_structs(extracted)
|
|
|
|
built_body = build_body(parsed)
|
|
|
|
built_enum = build_lot_enum()
|
|
|
|
built_include = build_includes()
|
|
|
|
|
|
|
|
out_c_filename = get_path(smlua_cobject_autogen + '.c')
|
|
|
|
with open(out_c_filename, 'w') as out:
|
|
|
|
out.write(c_template.replace("$[BODY]", built_body).replace('$[INCLUDES]', built_include))
|
|
|
|
|
|
|
|
out_h_filename = get_path(smlua_cobject_autogen + '.h')
|
|
|
|
with open(out_h_filename, 'w') as out:
|
|
|
|
out.write(h_template.replace("$[BODY]", built_enum))
|
|
|
|
|
2022-01-26 05:28:34 +01:00
|
|
|
############################################################################
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
build_files()
|