summaryrefslogtreecommitdiffstats
path: root/core/object/class_db.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix Unable to use ResourceLoader in C# after threaded load in GDScript #92798Hilderin2024-09-111-0/+4
|
* Fix editor needs restart after adding GDExtensionsHilderin2024-08-291-0/+1
|
* Merge pull request #91018 from ↵Rémi Verschelde2024-08-261-6/+15
|\ | | | | | | | | | | Daylily-Zeleen/daylily-zeleen/optionally_postinitialization_for_extension_owner Allow ClassDB to create a Object without postinitialization for GDExtension.
| * Allow ClassDB to create a Object without postinitialization for GDExtension.Daylily-Zeleen2024-08-201-6/+15
| |
* | Merge pull request #93602 from aaronp64/inspector_latencyRémi Verschelde2024-08-221-0/+1
|\ \ | |/ |/| | | Improve Editor Inspector/Theme item lookup performance
| * Improve Editor Inspector/Theme item lookup performanceaaronp642024-08-201-0/+1
| | | | | | | | | | | | | | | | | | | | | | Changes to reduce the latency between changing node selection in the editor and seeing the new node reflected in the Inspector tab - Use Vector instead of List for ThemeOwner::get_theme_type_dependencies and related functions - Use Vector instead of List for ThemeContext::themes, set_themes(), and get_themes() - Add ClassDB:get_inheritance_chain_nocheck to get all parent/ancestor classes at once, to avoid repeated ClassDB locking overhead - Update BIND_THEME_ITEM macros and ThemeDB::update_class_instance_items to use provided StringNames for call to ThemeItemSetter, instead of creating a new StringName in each call These changes reduce the time taken by EditorInspector::update_tree by around 30-35%
* | Merge pull request #93942 from MikeSchulze/73525Rémi Verschelde2024-07-111-0/+1
|\ \ | | | | | | | | | Fix GDScript analyzer error when instantiating EditorPlugins.
| * | Fix gdscript analyzer error when instantiating EditorPlugins.baptr2024-07-101-0/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Editor code is not instantiable outside of the editor (https://github.com/godotengine/godot/blob/1d14c054a12dacdc193b589e4afb0ef319ee2aae/core/object/class_db.cpp#L369). This is fine for editor plugins and the like, but the GDScript analyzer balks at it, causing F5 runs to fail: #73525. Instead, we really just want to know if the type is abstract - so add a new ClassDB method to check that and nothing else. Update core/object/class_db.cpp Apply code review comments Co-Authored-By: Bryce <1522777+baptr@users.noreply.github.com>
* / GDExtension: Fix setting base class properties on a runtime classDavid Snopek2024-07-081-0/+1
|/
* Core: Use `<type_traits>` where applicableThaddeus Crews2024-04-111-5/+5
|
* Merge pull request #89270 from Repiteo/enforce-typename-in-templatesRémi Verschelde2024-03-141-16/+16
|\ | | | | | | Enforce template syntax `typename` over `class`
| * Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-071-16/+16
| |
* | Add methods to get argument count of methodsA Thousand Ships2024-03-101-0/+1
|/ | | | | | | | Added to: * `Callable`s * `Object`s * `ClassDB` * `Script(Instance)`s
* Allow registering "runtime classes" in modules (not just GDExtension)David Snopek2024-02-221-0/+23
|
* Allow registering "runtime classes"David Snopek2024-02-201-0/+8
|
* Merge pull request #87758 from dsnopek/gdextension-register-virtual-methodRémi Verschelde2024-02-121-0/+1
|\ | | | | | | Allow GDExtensions to register virtual methods and call them on scripts
| * Allow GDExtensions to register virtual methods and call them on scriptsDavid Snopek2024-02-121-0/+1
| |
* | Use '_v' shorthand for type traits and 'if constexpr' where appropriatevittorioromeo2024-02-021-10/+10
|/
* Polish & fix editor help cache generationPedro J. Estébanez2023-11-021-0/+3
| | | | | | | - Isolated the generation of extensions's docs. They're now not cached and refreshed as needed. - Removed superfluous sorting of the class list. - Removed some superfluous/unused elements. - Renamed some items for clarity.
* Merge pull request #80527 from ↵Rémi Verschelde2023-09-261-0/+1
|\ | | | | | | | | | | raulsntos/dotnet/generate-compat-methods-from-classdb C#: Generate and use compat methods
| * C#: Generate and use compat methodsRaul Santos2023-09-191-0/+1
| | | | | | | | | | | | - Implements `ClassDB::get_method_list_with_compatibility` to retrieve all methods from a class including compat methods. - C# bindings generator now also generates compat methods. - All generated C# methods now use `ClassDB::get_method_with_compatibility`.
* | Implement reloading of GDExtensionsDavid Snopek2023-09-251-1/+3
| |
* | [Core] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-111-6/+6
| |
* | Allow GDExtension to register unexposed class.Daylily-Zeleen2023-09-041-0/+19
| |
* | Add check to ensure registered classes are declaredA Thousand Ships2023-08-281-0/+3
|/ | | | | Checks that all classes registered to `ClassDB` have been properly declared with `GDCLASS`
* Re-enable docs cache with fixesPedro J. Estébanez2023-07-051-2/+2
|
* Add a backwards-compatibility system for GDExtension methodJuan Linietsky2023-05-151-24/+50
| | | | | | | | | | | | | | | | | | | | 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.
* Improve reliability of editor docs cachePedro J. Estébanez2023-04-251-0/+1
|
* Avoid losing references to objects in the native-scripting boundaryPedro J. Estébanez2023-02-031-0/+29
|
* Merge pull request #64253 from heppocogne/Fix-native-enum-release-1Rémi Verschelde2023-01-061-14/+5
|\ | | | | | | Register enum type names in release build
| * Register native base class name of enum types when release buildheppocogne2022-12-301-14/+5
| |
* | One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* | Rename all gdnative occurences to gdextensionGilles Roudière2022-12-121-2/+2
|/ | | | | | | | | | | | | Non-exhaustive list of case-sensitive renames: GDExtension -> GDNative GDNATIVE -> GDEXTENSION gdextension -> gdnative ExtensionExtension ->Extension (for where there was GDNativeExtension) EXTENSION_EXTENSION ->EXTENSION (for where there was GDNATIVE_EXTENSION) gdnlib -> gdextension gdn_interface -> gde_interface gdni -> gde_interface
* Clean-up array editingreduz2022-08-021-0/+2
|
* Implement Feature Build Profilesreduz2022-07-221-7/+8
| | | | | | | | | | | | | | | | | | | | | This PR is a continuation of #50381 (which was implemented exactly a year ago!) * Add a visual interface to select which classes should not be built into Godot (well, they are built if something else uses them, but if not used the optimizer will remove them out). * Add a detection system to scan the project and figure out the actual classes used. * Added the ability for SCons to load build profiles. Obligatory Screen: A simple test with a couple of nodes in the scene resulted in a 25% reduction for the final binary size TODO: * Script languages need to implement used class detection (left for another PR). * Options to disable servers or server functionalities (like 2D or 3D physics, navigation, etc). Are missing, that should also greatly aid in reducing binary size. * Options to disable some modules would be desired. * More options to disable drivers (OpenGL, Vulkan, etc) would be desired. In general this PR is a starting point for more contributors to improve and enhance this functionality.
* Implement a BitField hintreduz2022-07-051-2/+15
| | | | Allows to specify the binder that an enum must be treated as a bitfield.
* Make enum/constant binds 64-bit.bruvzg2022-06-171-3/+3
|
* Add a new HashSet templatereduz2022-05-201-2/+3
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-5/+5
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Change D_METHOD to variadic templatekobewi2022-04-301-18/+12
|
* Remove argument name strings from release buildsGeorge Marques2022-04-051-0/+14
| | | | | They are not needed in release, so we can remove them to reduce the binary size.
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-2/+2
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Object: Remove unused category boilerplateRémi Verschelde2022-03-261-3/+0
| | | | | | | | | We might want to re-add something like this if/when we find a good use case for it and do the effort to categorize all objects in the API properly. Until then, it's better to remove that boilerplate since it's not needed. Closes #18711.
* Add static method support to ClassDBreduz2022-03-221-66/+18
| | | | | | | | | * Based on the work done for Variant in the past. * Added `ClassDB::bind_static_method` * Cleaned up ClassDB::bind_method to use variadic templates. This adds support for having static methods in Object derived classes. Note that this does not make it work yet in GDScript or Mono and, while it works for GDExtension, GodotCPP needs to be updated.
* Create GDExtension clases for PhysicsServer3Dreduz2022-03-151-0/+14
| | | | | | | * Allows creating a GDExtension based 3D Physics Server (for Bullet, PhysX, etc. support) * Some changes on native struct binding for PhysicsServer This allows a 3D Physics server created entirely from GDExtension. Once it works, the idea is to port the 2D one to it.
* Discern between virtual and abstract class bindingsreduz2022-03-101-5/+12
| | | | | | | | | | | | | | * Previous "virtual" classes (which can't be instantiated) are not corretly named "abstract". * Added a new "virtual" category for classes, they can't be instantiated from the editor, but can be inherited from script and extensions. * Converted a large amount of classes from "abstract" to "virtual" where it makes sense. Most classes that make sense have been converted. Missing: * Physics servers * VideoStream * Script* classes. which will go in a separate PR due to the complexity involved.
* Reorganize inspector layout workflow for Control nodesYuri Sizov2022-02-101-2/+2
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Change gdnative interface so that Godot object initialization should be ↵Gilles Roudière2021-11-301-2/+1
| | | | triggered from the extension side
* Remove ItemList editor and replace it by a property arrayGilles Roudière2021-10-281-1/+1
|