godot/core/extension
Juan Linietsky d8078d3f4c Add a backwards-compatibility system for GDExtension method
This adds a way to ensure that methods that were modified in the Godot API will continue working in older builds of GDExtension even if the new signature is different.

```C++
// New version (changed)
ClassDB::bind_method(D_METHOD("add_sphere","radius","position"),&MyShapes::add_sphere);
// Compatibility version (still available to extensions).
ClassDB::bind_compatibility_method(D_METHOD("add_sphere","radius"),&MyShapes::_compat_add_sphere);
```

**Q**: If I add an extra argument and provide a default value (hence can still be called the same), do I still have to provide the compatibility version?
**A**: Yes, you must still provide a compatibility method. Most language bindings use the raw method pointer to do the call and process the default parameters in the binding language, hence if the actual method signature changes it will no longer work.

**Q**: If I removed a method, can I still bind a compatibility version even though the main method no longer exists?
**A**: Yes, for methods that were removed or renamed, compatibility versions can still be provided.

**Q**: Would it be possible to automate checking that methods were removed by mistake?
**A**: Yes, as part of a future PR, the idea is to add a a command line option to Godot that can be run like : `$ godot --test-api-compatibility older_api_dump.json`, which will also be integrated to the CI runs.
2023-05-15 12:05:40 +02:00
..
extension_api_dump.cpp Add a backwards-compatibility system for GDExtension method 2023-05-15 12:05:40 +02:00
extension_api_dump.h Add a backwards-compatibility system for GDExtension method 2023-05-15 12:05:40 +02:00
gdextension_interface.cpp Add a backwards-compatibility system for GDExtension method 2023-05-15 12:05:40 +02:00
gdextension_interface.h GDExtension: array_set_typed() accepts enum instead of uint32_t 2023-02-08 23:24:56 +01:00
gdextension_manager.cpp Add support for icons in GDExtension classes 2023-03-31 21:39:02 +02:00
gdextension_manager.h Add support for icons in GDExtension classes 2023-03-31 21:39:02 +02:00
gdextension.cpp Add support for icons in GDExtension classes 2023-03-31 21:39:02 +02:00
gdextension.h Add support for icons in GDExtension classes 2023-03-31 21:39:02 +02:00
make_interface_dumper.py Fix crash when dumping extension API in a non-writable directory 2023-03-08 15:05:44 +08:00
make_wrappers.py [GDExtension] Use function names with underscore for TextServer extension, add macros to generate wrappers for module functions. 2022-09-28 10:04:11 +03:00
SCsub Rename all gdnative occurences to gdextension 2022-12-12 11:04:57 +01:00