From f0cbd25230ad7e151fef5bb668e003f0c6b3d73b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Sat, 23 Sep 2023 23:11:56 +0200 Subject: [PATCH] vrclient: Generate the .h and .cpp files separately. CW-Bug-Id: #22729 --- vrclient_x64/gen_wrapper.py | 77 ++++++++++++++++++++++--------------- 1 file changed, 47 insertions(+), 30 deletions(-) diff --git a/vrclient_x64/gen_wrapper.py b/vrclient_x64/gen_wrapper.py index 24c5ae6a..e2f54d8d 100755 --- a/vrclient_x64/gen_wrapper.py +++ b/vrclient_x64/gen_wrapper.py @@ -780,7 +780,54 @@ def get_capi_thunk_params(method): is_4th_float = param_count >= 4 and param_types[3].spelling == "float" return "%s, %s, %s" % (param_count, toBOOL(has_float_params), toBOOL(is_4th_float)) + def handle_class(klass): + cppname = f"cpp{klass.spelling}_{klass.version}" + + with open(f"vrclient_x64/{cppname}.h", "w") as file: + out = file.write + + out(u'#ifdef __cplusplus\n') + out(u'extern "C" {\n') + out(u'#endif\n') + + for method in klass.methods: + if type(method) is Destructor: + continue + handle_method_hpp(method, cppname, out) + + out(u'#ifdef __cplusplus') + out(u'\n}') + out(u'\n#endif\n') + + with open(f"vrclient_x64/{cppname}.cpp", "w") as file: + out = file.write + + out(u'#include "vrclient_private.h"\n') + out(u'#include "vrclient_defs.h"\n') + if os.path.isfile(f"openvr_{klass._sdkver}/ivrclientcore.h"): + out(f'#include "openvr_{klass._sdkver}/ivrclientcore.h"\n') + else: + out(f'#include "openvr_{klass._sdkver}/openvr.h"\n') + out(u'using namespace vr;\n') + out(u'extern "C" {\n') + out(u'#include "struct_converters.h"\n') + out(u'}\n') + out(f'#include "{cppname}.h"\n') + out(u'#ifdef __cplusplus\n') + out(u'extern "C" {\n') + out(u'#endif\n') + + for method in klass.methods: + if type(method) is Destructor: + continue + handle_method_cpp(method, klass.spelling, cppname, out) + + out(u'#ifdef __cplusplus\n') + out(u'}\n') + out(u'#endif\n') + + file_exists = os.path.isfile(f"vrclient_x64/win{klass.spelling}.c") cfile = open(f"vrclient_x64/win{klass.spelling}.c", "a") if not file_exists: @@ -806,23 +853,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(vrclient); """) - cppname = f"cpp{klass.spelling}_{klass.version}" - cpp = open("vrclient_x64/%s.cpp" % cppname, "w") - cpp.write("#include \"vrclient_private.h\"\n") - cpp.write("#include \"vrclient_defs.h\"\n") - if os.path.isfile("openvr_%s/ivrclientcore.h" % sdkver): - cpp.write("#include \"openvr_%s/ivrclientcore.h\"\n" % sdkver) - else: - cpp.write("#include \"openvr_%s/openvr.h\"\n" % sdkver) - cpp.write("using namespace vr;\n") - cpp.write("extern \"C\" {\n") - cpp.write("#include \"struct_converters.h\"\n") - cpp.write("}\n") - cpp.write("#include \"%s.h\"\n" % cppname) - cpp.write("#ifdef __cplusplus\nextern \"C\" {\n#endif\n") - - cpp_h = open("vrclient_x64/%s.h" % cppname, "w") - cpp_h.write("#ifdef __cplusplus\nextern \"C\" {\n#endif\n") winclassname = f"win{klass.spelling}_{klass.version}" cfile.write("#include \"%s.h\"\n\n" % cppname) @@ -839,16 +869,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(vrclient); handle_thiscall_wrapper(klass, method, cfile.write) cfile.write('\n') - for method in klass.methods: - if type(method) is Destructor: - continue - handle_method_hpp(method, cppname, cpp_h.write) - - for method in klass.methods: - if type(method) is Destructor: - continue - handle_method_cpp(method, klass.spelling, cppname, cpp.write) - for method in klass.methods: if type(method) is Destructor: continue @@ -910,9 +930,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(vrclient); cfile.write(" HeapFree(GetProcessHeap(), 0, win_object->vtable);\n") cfile.write(" HeapFree(GetProcessHeap(), 0, win_object);\n}\n\n") - cpp.write("#ifdef __cplusplus\n}\n#endif\n") - cpp_h.write("#ifdef __cplusplus\n}\n#endif\n") - constructors = open("vrclient_x64/win_constructors.h", "a") constructors.write("extern void *create_%s(void *);\n" % winclassname) constructors.write("extern void *create_%s_FnTable(void *);\n" % winclassname)