class_db.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. /*************************************************************************/
  2. /* class_db.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef CLASS_DB_H
  31. #define CLASS_DB_H
  32. #include "core/method_bind.h"
  33. #include "core/object.h"
  34. #include "core/print_string.h"
  35. /** To bind more then 6 parameters include this:
  36. * #include "core/method_bind_ext.gen.inc"
  37. */
  38. #define DEFVAL(m_defval) (m_defval)
  39. //#define SIMPLE_METHODDEF
  40. #ifdef DEBUG_METHODS_ENABLED
  41. struct MethodDefinition {
  42. StringName name;
  43. Vector<StringName> args;
  44. MethodDefinition() {}
  45. MethodDefinition(const char *p_name) :
  46. name(p_name) {}
  47. MethodDefinition(const StringName &p_name) :
  48. name(p_name) {}
  49. };
  50. MethodDefinition D_METHOD(const char *p_name);
  51. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1);
  52. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2);
  53. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3);
  54. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4);
  55. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5);
  56. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5, const char *p_arg6);
  57. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5, const char *p_arg6, const char *p_arg7);
  58. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5, const char *p_arg6, const char *p_arg7, const char *p_arg8);
  59. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5, const char *p_arg6, const char *p_arg7, const char *p_arg8, const char *p_arg9);
  60. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5, const char *p_arg6, const char *p_arg7, const char *p_arg8, const char *p_arg9, const char *p_arg10);
  61. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5, const char *p_arg6, const char *p_arg7, const char *p_arg8, const char *p_arg9, const char *p_arg10, const char *p_arg11);
  62. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5, const char *p_arg6, const char *p_arg7, const char *p_arg8, const char *p_arg9, const char *p_arg10, const char *p_arg11, const char *p_arg12);
  63. MethodDefinition D_METHOD(const char *p_name, const char *p_arg1, const char *p_arg2, const char *p_arg3, const char *p_arg4, const char *p_arg5, const char *p_arg6, const char *p_arg7, const char *p_arg8, const char *p_arg9, const char *p_arg10, const char *p_arg11, const char *p_arg12, const char *p_arg13);
  64. #else
  65. //#define NO_VARIADIC_MACROS
  66. #ifdef NO_VARIADIC_MACROS
  67. static _FORCE_INLINE_ const char *D_METHOD(const char *m_name, ...) {
  68. return m_name;
  69. }
  70. #else
  71. // When DEBUG_METHODS_ENABLED is set this will let the engine know
  72. // the argument names for easier debugging.
  73. #define D_METHOD(m_c, ...) m_c
  74. #endif
  75. #endif
  76. class ClassDB {
  77. public:
  78. enum APIType {
  79. API_CORE,
  80. API_EDITOR,
  81. API_NONE
  82. };
  83. public:
  84. struct PropertySetGet {
  85. int index;
  86. StringName setter;
  87. StringName getter;
  88. MethodBind *_setptr;
  89. MethodBind *_getptr;
  90. Variant::Type type;
  91. };
  92. struct ClassInfo {
  93. APIType api;
  94. ClassInfo *inherits_ptr;
  95. void *class_ptr;
  96. HashMap<StringName, MethodBind *> method_map;
  97. HashMap<StringName, int> constant_map;
  98. HashMap<StringName, List<StringName> > enum_map;
  99. HashMap<StringName, MethodInfo> signal_map;
  100. List<PropertyInfo> property_list;
  101. #ifdef DEBUG_METHODS_ENABLED
  102. List<StringName> constant_order;
  103. List<StringName> method_order;
  104. Set<StringName> methods_in_properties;
  105. List<MethodInfo> virtual_methods;
  106. StringName category;
  107. #endif
  108. HashMap<StringName, PropertySetGet> property_setget;
  109. StringName inherits;
  110. StringName name;
  111. bool disabled;
  112. bool exposed;
  113. Object *(*creation_func)();
  114. ClassInfo();
  115. ~ClassInfo();
  116. };
  117. template <class T>
  118. static Object *creator() {
  119. return memnew(T);
  120. }
  121. static RWLock lock;
  122. static HashMap<StringName, ClassInfo> classes;
  123. static HashMap<StringName, StringName> resource_base_extensions;
  124. static HashMap<StringName, StringName> compat_classes;
  125. #ifdef DEBUG_METHODS_ENABLED
  126. static MethodBind *bind_methodfi(uint32_t p_flags, MethodBind *p_bind, const MethodDefinition &method_name, const Variant **p_defs, int p_defcount);
  127. #else
  128. static MethodBind *bind_methodfi(uint32_t p_flags, MethodBind *p_bind, const char *method_name, const Variant **p_defs, int p_defcount);
  129. #endif
  130. static APIType current_api;
  131. static void _add_class2(const StringName &p_class, const StringName &p_inherits);
  132. static HashMap<StringName, HashMap<StringName, Variant> > default_values;
  133. static Set<StringName> default_values_cached;
  134. private:
  135. // Non-locking variants of get_parent_class and is_parent_class.
  136. static StringName _get_parent_class(const StringName &p_class);
  137. static bool _is_parent_class(const StringName &p_class, const StringName &p_inherits);
  138. public:
  139. // DO NOT USE THIS!!!!!! NEEDS TO BE PUBLIC BUT DO NOT USE NO MATTER WHAT!!!
  140. template <class T>
  141. static void _add_class() {
  142. _add_class2(T::get_class_static(), T::get_parent_class_static());
  143. }
  144. template <class T>
  145. static void register_class() {
  146. GLOBAL_LOCK_FUNCTION;
  147. T::initialize_class();
  148. ClassInfo *t = classes.getptr(T::get_class_static());
  149. ERR_FAIL_COND(!t);
  150. t->creation_func = &creator<T>;
  151. t->exposed = true;
  152. t->class_ptr = T::get_class_ptr_static();
  153. T::register_custom_data_to_otdb();
  154. }
  155. template <class T>
  156. static void register_virtual_class() {
  157. GLOBAL_LOCK_FUNCTION;
  158. T::initialize_class();
  159. ClassInfo *t = classes.getptr(T::get_class_static());
  160. ERR_FAIL_COND(!t);
  161. t->exposed = true;
  162. t->class_ptr = T::get_class_ptr_static();
  163. //nothing
  164. }
  165. template <class T>
  166. static Object *_create_ptr_func() {
  167. return T::create();
  168. }
  169. template <class T>
  170. static void register_custom_instance_class() {
  171. GLOBAL_LOCK_FUNCTION;
  172. T::initialize_class();
  173. ClassInfo *t = classes.getptr(T::get_class_static());
  174. ERR_FAIL_COND(!t);
  175. t->creation_func = &_create_ptr_func<T>;
  176. t->exposed = true;
  177. t->class_ptr = T::get_class_ptr_static();
  178. T::register_custom_data_to_otdb();
  179. }
  180. static void get_class_list(List<StringName> *p_classes);
  181. static void get_inheriters_from_class(const StringName &p_class, List<StringName> *p_classes);
  182. static void get_direct_inheriters_from_class(const StringName &p_class, List<StringName> *p_classes);
  183. static StringName get_parent_class_nocheck(const StringName &p_class);
  184. static StringName get_parent_class(const StringName &p_class);
  185. static bool class_exists(const StringName &p_class);
  186. static bool is_parent_class(const StringName &p_class, const StringName &p_inherits);
  187. static bool can_instance(const StringName &p_class);
  188. static Object *instance(const StringName &p_class);
  189. static APIType get_api_type(const StringName &p_class);
  190. static uint64_t get_api_hash(APIType p_api);
  191. template <class N, class M>
  192. static MethodBind *bind_method(N p_method_name, M p_method) {
  193. MethodBind *bind = create_method_bind(p_method);
  194. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, NULL, 0); //use static function, much smaller binary usage
  195. }
  196. template <class N, class M>
  197. static MethodBind *bind_method(N p_method_name, M p_method, const Variant &p_def1) {
  198. MethodBind *bind = create_method_bind(p_method);
  199. const Variant *ptr[1] = { &p_def1 };
  200. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, ptr, 1);
  201. }
  202. template <class N, class M>
  203. static MethodBind *bind_method(N p_method_name, M p_method, const Variant &p_def1, const Variant &p_def2) {
  204. MethodBind *bind = create_method_bind(p_method);
  205. const Variant *ptr[2] = { &p_def1, &p_def2 };
  206. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, ptr, 2);
  207. }
  208. template <class N, class M>
  209. static MethodBind *bind_method(N p_method_name, M p_method, const Variant &p_def1, const Variant &p_def2, const Variant &p_def3) {
  210. MethodBind *bind = create_method_bind(p_method);
  211. const Variant *ptr[3] = { &p_def1, &p_def2, &p_def3 };
  212. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, ptr, 3);
  213. }
  214. template <class N, class M>
  215. static MethodBind *bind_method(N p_method_name, M p_method, const Variant &p_def1, const Variant &p_def2, const Variant &p_def3, const Variant &p_def4) {
  216. MethodBind *bind = create_method_bind(p_method);
  217. const Variant *ptr[4] = { &p_def1, &p_def2, &p_def3, &p_def4 };
  218. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, ptr, 4);
  219. }
  220. template <class N, class M>
  221. static MethodBind *bind_method(N p_method_name, M p_method, const Variant &p_def1, const Variant &p_def2, const Variant &p_def3, const Variant &p_def4, const Variant &p_def5) {
  222. MethodBind *bind = create_method_bind(p_method);
  223. const Variant *ptr[5] = { &p_def1, &p_def2, &p_def3, &p_def4, &p_def5 };
  224. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, ptr, 5);
  225. }
  226. template <class N, class M>
  227. static MethodBind *bind_method(N p_method_name, M p_method, const Variant &p_def1, const Variant &p_def2, const Variant &p_def3, const Variant &p_def4, const Variant &p_def5, const Variant &p_def6) {
  228. MethodBind *bind = create_method_bind(p_method);
  229. const Variant *ptr[6] = { &p_def1, &p_def2, &p_def3, &p_def4, &p_def5, &p_def6 };
  230. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, ptr, 6);
  231. }
  232. template <class N, class M>
  233. static MethodBind *bind_method(N p_method_name, M p_method, const Variant &p_def1, const Variant &p_def2, const Variant &p_def3, const Variant &p_def4, const Variant &p_def5, const Variant &p_def6, const Variant &p_def7) {
  234. MethodBind *bind = create_method_bind(p_method);
  235. const Variant *ptr[7] = { &p_def1, &p_def2, &p_def3, &p_def4, &p_def5, &p_def6, &p_def7 };
  236. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, ptr, 7);
  237. }
  238. template <class N, class M>
  239. static MethodBind *bind_method(N p_method_name, M p_method, const Variant &p_def1, const Variant &p_def2, const Variant &p_def3, const Variant &p_def4, const Variant &p_def5, const Variant &p_def6, const Variant &p_def7, const Variant &p_def8) {
  240. MethodBind *bind = create_method_bind(p_method);
  241. const Variant *ptr[8] = { &p_def1, &p_def2, &p_def3, &p_def4, &p_def5, &p_def6, &p_def7, &p_def8 };
  242. return bind_methodfi(METHOD_FLAGS_DEFAULT, bind, p_method_name, ptr, 8);
  243. }
  244. template <class M>
  245. static MethodBind *bind_vararg_method(uint32_t p_flags, StringName p_name, M p_method, const MethodInfo &p_info = MethodInfo(), const Vector<Variant> &p_default_args = Vector<Variant>(), bool p_return_nil_is_variant = true) {
  246. GLOBAL_LOCK_FUNCTION;
  247. MethodBind *bind = create_vararg_method_bind(p_method, p_info, p_return_nil_is_variant);
  248. ERR_FAIL_COND_V(!bind, NULL);
  249. bind->set_name(p_name);
  250. bind->set_default_arguments(p_default_args);
  251. String instance_type = bind->get_instance_class();
  252. ClassInfo *type = classes.getptr(instance_type);
  253. if (!type) {
  254. memdelete(bind);
  255. ERR_FAIL_COND_V(!type, NULL);
  256. }
  257. if (type->method_map.has(p_name)) {
  258. memdelete(bind);
  259. // overloading not supported
  260. ERR_FAIL_V_MSG(NULL, "Method already bound: " + instance_type + "::" + p_name + ".");
  261. }
  262. type->method_map[p_name] = bind;
  263. #ifdef DEBUG_METHODS_ENABLED
  264. // FIXME: <reduz> set_return_type is no longer in MethodBind, so I guess it should be moved to vararg method bind
  265. //bind->set_return_type("Variant");
  266. type->method_order.push_back(p_name);
  267. #endif
  268. return bind;
  269. }
  270. static void add_signal(StringName p_class, const MethodInfo &p_signal);
  271. static bool has_signal(StringName p_class, StringName p_signal);
  272. static bool get_signal(StringName p_class, StringName p_signal, MethodInfo *r_signal);
  273. static void get_signal_list(StringName p_class, List<MethodInfo> *p_signals, bool p_no_inheritance = false);
  274. static void add_property_group(StringName p_class, const String &p_name, const String &p_prefix = "");
  275. static void add_property(StringName p_class, const PropertyInfo &p_pinfo, const StringName &p_setter, const StringName &p_getter, int p_index = -1);
  276. static void set_property_default_value(StringName p_class, const StringName &p_name, const Variant &p_default);
  277. static void get_property_list(StringName p_class, List<PropertyInfo> *p_list, bool p_no_inheritance = false, const Object *p_validator = NULL);
  278. static bool set_property(Object *p_object, const StringName &p_property, const Variant &p_value, bool *r_valid = NULL);
  279. static bool get_property(Object *p_object, const StringName &p_property, Variant &r_value);
  280. static bool has_property(const StringName &p_class, const StringName &p_property, bool p_no_inheritance = false);
  281. static int get_property_index(const StringName &p_class, const StringName &p_property, bool *r_is_valid = NULL);
  282. static Variant::Type get_property_type(const StringName &p_class, const StringName &p_property, bool *r_is_valid = NULL);
  283. static StringName get_property_setter(StringName p_class, const StringName &p_property);
  284. static StringName get_property_getter(StringName p_class, const StringName &p_property);
  285. static bool has_method(StringName p_class, StringName p_method, bool p_no_inheritance = false);
  286. static void set_method_flags(StringName p_class, StringName p_method, int p_flags);
  287. static void get_method_list(StringName p_class, List<MethodInfo> *p_methods, bool p_no_inheritance = false, bool p_exclude_from_properties = false);
  288. static MethodBind *get_method(StringName p_class, StringName p_name);
  289. static void add_virtual_method(const StringName &p_class, const MethodInfo &p_method, bool p_virtual = true);
  290. static void get_virtual_methods(const StringName &p_class, List<MethodInfo> *p_methods, bool p_no_inheritance = false);
  291. static void bind_integer_constant(const StringName &p_class, const StringName &p_enum, const StringName &p_name, int p_constant);
  292. static void get_integer_constant_list(const StringName &p_class, List<String> *p_constants, bool p_no_inheritance = false);
  293. static int get_integer_constant(const StringName &p_class, const StringName &p_name, bool *p_success = NULL);
  294. static StringName get_integer_constant_enum(const StringName &p_class, const StringName &p_name, bool p_no_inheritance = false);
  295. static void get_enum_list(const StringName &p_class, List<StringName> *p_enums, bool p_no_inheritance = false);
  296. static void get_enum_constants(const StringName &p_class, const StringName &p_enum, List<StringName> *p_constants, bool p_no_inheritance = false);
  297. static Variant class_get_default_property_value(const StringName &p_class, const StringName &p_property, bool *r_valid = NULL);
  298. static StringName get_category(const StringName &p_node);
  299. static void set_class_enabled(StringName p_class, bool p_enable);
  300. static bool is_class_enabled(StringName p_class);
  301. static bool is_class_exposed(StringName p_class);
  302. static void add_resource_base_extension(const StringName &p_extension, const StringName &p_class);
  303. static void get_resource_base_extensions(List<String> *p_extensions);
  304. static void get_extensions_for_type(const StringName &p_class, List<String> *p_extensions);
  305. static void add_compatibility_class(const StringName &p_class, const StringName &p_fallback);
  306. static void set_current_api(APIType p_api);
  307. static APIType get_current_api();
  308. static void cleanup_defaults();
  309. static void cleanup();
  310. };
  311. #ifdef DEBUG_METHODS_ENABLED
  312. #define BIND_CONSTANT(m_constant) \
  313. ClassDB::bind_integer_constant(get_class_static(), StringName(), #m_constant, m_constant);
  314. #define BIND_ENUM_CONSTANT(m_constant) \
  315. ClassDB::bind_integer_constant(get_class_static(), __constant_get_enum_name(m_constant, #m_constant), #m_constant, m_constant);
  316. #else
  317. #define BIND_CONSTANT(m_constant) \
  318. ClassDB::bind_integer_constant(get_class_static(), StringName(), #m_constant, m_constant);
  319. #define BIND_ENUM_CONSTANT(m_constant) \
  320. ClassDB::bind_integer_constant(get_class_static(), StringName(), #m_constant, m_constant);
  321. #endif
  322. #ifdef TOOLS_ENABLED
  323. #define BIND_VMETHOD(m_method) \
  324. ClassDB::add_virtual_method(get_class_static(), m_method);
  325. #else
  326. #define BIND_VMETHOD(m_method)
  327. #endif
  328. #endif // CLASS_DB_H