core_bind.cpp 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. /**************************************************************************/
  2. /* core_bind.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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. #include "core_bind.h"
  31. #include "core/config/project_settings.h"
  32. #include "core/crypto/crypto_core.h"
  33. #include "core/debugger/engine_debugger.h"
  34. #include "core/io/file_access_compressed.h"
  35. #include "core/io/file_access_encrypted.h"
  36. #include "core/io/marshalls.h"
  37. #include "core/math/geometry_2d.h"
  38. #include "core/math/geometry_3d.h"
  39. #include "core/os/keyboard.h"
  40. #include "core/variant/typed_array.h"
  41. namespace core_bind {
  42. ////// ResourceLoader //////
  43. ResourceLoader *ResourceLoader::singleton = nullptr;
  44. Error ResourceLoader::load_threaded_request(const String &p_path, const String &p_type_hint, bool p_use_sub_threads, CacheMode p_cache_mode) {
  45. return ::ResourceLoader::load_threaded_request(p_path, p_type_hint, p_use_sub_threads, ResourceFormatLoader::CacheMode(p_cache_mode));
  46. }
  47. ResourceLoader::ThreadLoadStatus ResourceLoader::load_threaded_get_status(const String &p_path, Array r_progress) {
  48. float progress = 0;
  49. ::ResourceLoader::ThreadLoadStatus tls = ::ResourceLoader::load_threaded_get_status(p_path, &progress);
  50. r_progress.resize(1);
  51. r_progress[0] = progress;
  52. return (ThreadLoadStatus)tls;
  53. }
  54. Ref<Resource> ResourceLoader::load_threaded_get(const String &p_path) {
  55. Error error;
  56. Ref<Resource> res = ::ResourceLoader::load_threaded_get(p_path, &error);
  57. return res;
  58. }
  59. Ref<Resource> ResourceLoader::load(const String &p_path, const String &p_type_hint, CacheMode p_cache_mode) {
  60. Error err = OK;
  61. Ref<Resource> ret = ::ResourceLoader::load(p_path, p_type_hint, ResourceFormatLoader::CacheMode(p_cache_mode), &err);
  62. ERR_FAIL_COND_V_MSG(err != OK, ret, "Error loading resource: '" + p_path + "'.");
  63. return ret;
  64. }
  65. Vector<String> ResourceLoader::get_recognized_extensions_for_type(const String &p_type) {
  66. List<String> exts;
  67. ::ResourceLoader::get_recognized_extensions_for_type(p_type, &exts);
  68. Vector<String> ret;
  69. for (const String &E : exts) {
  70. ret.push_back(E);
  71. }
  72. return ret;
  73. }
  74. void ResourceLoader::add_resource_format_loader(Ref<ResourceFormatLoader> p_format_loader, bool p_at_front) {
  75. ::ResourceLoader::add_resource_format_loader(p_format_loader, p_at_front);
  76. }
  77. void ResourceLoader::remove_resource_format_loader(Ref<ResourceFormatLoader> p_format_loader) {
  78. ::ResourceLoader::remove_resource_format_loader(p_format_loader);
  79. }
  80. void ResourceLoader::set_abort_on_missing_resources(bool p_abort) {
  81. ::ResourceLoader::set_abort_on_missing_resources(p_abort);
  82. }
  83. PackedStringArray ResourceLoader::get_dependencies(const String &p_path) {
  84. List<String> deps;
  85. ::ResourceLoader::get_dependencies(p_path, &deps);
  86. PackedStringArray ret;
  87. for (const String &E : deps) {
  88. ret.push_back(E);
  89. }
  90. return ret;
  91. }
  92. bool ResourceLoader::has_cached(const String &p_path) {
  93. String local_path = ProjectSettings::get_singleton()->localize_path(p_path);
  94. return ResourceCache::has(local_path);
  95. }
  96. bool ResourceLoader::exists(const String &p_path, const String &p_type_hint) {
  97. return ::ResourceLoader::exists(p_path, p_type_hint);
  98. }
  99. ResourceUID::ID ResourceLoader::get_resource_uid(const String &p_path) {
  100. return ::ResourceLoader::get_resource_uid(p_path);
  101. }
  102. void ResourceLoader::_bind_methods() {
  103. ClassDB::bind_method(D_METHOD("load_threaded_request", "path", "type_hint", "use_sub_threads", "cache_mode"), &ResourceLoader::load_threaded_request, DEFVAL(""), DEFVAL(false), DEFVAL(CACHE_MODE_REUSE));
  104. ClassDB::bind_method(D_METHOD("load_threaded_get_status", "path", "progress"), &ResourceLoader::load_threaded_get_status, DEFVAL(Array()));
  105. ClassDB::bind_method(D_METHOD("load_threaded_get", "path"), &ResourceLoader::load_threaded_get);
  106. ClassDB::bind_method(D_METHOD("load", "path", "type_hint", "cache_mode"), &ResourceLoader::load, DEFVAL(""), DEFVAL(CACHE_MODE_REUSE));
  107. ClassDB::bind_method(D_METHOD("get_recognized_extensions_for_type", "type"), &ResourceLoader::get_recognized_extensions_for_type);
  108. ClassDB::bind_method(D_METHOD("add_resource_format_loader", "format_loader", "at_front"), &ResourceLoader::add_resource_format_loader, DEFVAL(false));
  109. ClassDB::bind_method(D_METHOD("remove_resource_format_loader", "format_loader"), &ResourceLoader::remove_resource_format_loader);
  110. ClassDB::bind_method(D_METHOD("set_abort_on_missing_resources", "abort"), &ResourceLoader::set_abort_on_missing_resources);
  111. ClassDB::bind_method(D_METHOD("get_dependencies", "path"), &ResourceLoader::get_dependencies);
  112. ClassDB::bind_method(D_METHOD("has_cached", "path"), &ResourceLoader::has_cached);
  113. ClassDB::bind_method(D_METHOD("exists", "path", "type_hint"), &ResourceLoader::exists, DEFVAL(""));
  114. ClassDB::bind_method(D_METHOD("get_resource_uid", "path"), &ResourceLoader::get_resource_uid);
  115. BIND_ENUM_CONSTANT(THREAD_LOAD_INVALID_RESOURCE);
  116. BIND_ENUM_CONSTANT(THREAD_LOAD_IN_PROGRESS);
  117. BIND_ENUM_CONSTANT(THREAD_LOAD_FAILED);
  118. BIND_ENUM_CONSTANT(THREAD_LOAD_LOADED);
  119. BIND_ENUM_CONSTANT(CACHE_MODE_IGNORE);
  120. BIND_ENUM_CONSTANT(CACHE_MODE_REUSE);
  121. BIND_ENUM_CONSTANT(CACHE_MODE_REPLACE);
  122. }
  123. ////// ResourceSaver //////
  124. Error ResourceSaver::save(const Ref<Resource> &p_resource, const String &p_path, BitField<SaverFlags> p_flags) {
  125. ERR_FAIL_COND_V_MSG(p_resource.is_null(), ERR_INVALID_PARAMETER, "Can't save empty resource to path '" + p_path + "'.");
  126. return ::ResourceSaver::save(p_resource, p_path, p_flags);
  127. }
  128. Vector<String> ResourceSaver::get_recognized_extensions(const Ref<Resource> &p_resource) {
  129. ERR_FAIL_COND_V_MSG(p_resource.is_null(), Vector<String>(), "It's not a reference to a valid Resource object.");
  130. List<String> exts;
  131. ::ResourceSaver::get_recognized_extensions(p_resource, &exts);
  132. Vector<String> ret;
  133. for (const String &E : exts) {
  134. ret.push_back(E);
  135. }
  136. return ret;
  137. }
  138. void ResourceSaver::add_resource_format_saver(Ref<ResourceFormatSaver> p_format_saver, bool p_at_front) {
  139. ::ResourceSaver::add_resource_format_saver(p_format_saver, p_at_front);
  140. }
  141. void ResourceSaver::remove_resource_format_saver(Ref<ResourceFormatSaver> p_format_saver) {
  142. ::ResourceSaver::remove_resource_format_saver(p_format_saver);
  143. }
  144. ResourceSaver *ResourceSaver::singleton = nullptr;
  145. void ResourceSaver::_bind_methods() {
  146. ClassDB::bind_method(D_METHOD("save", "resource", "path", "flags"), &ResourceSaver::save, DEFVAL(""), DEFVAL((uint32_t)FLAG_NONE));
  147. ClassDB::bind_method(D_METHOD("get_recognized_extensions", "type"), &ResourceSaver::get_recognized_extensions);
  148. ClassDB::bind_method(D_METHOD("add_resource_format_saver", "format_saver", "at_front"), &ResourceSaver::add_resource_format_saver, DEFVAL(false));
  149. ClassDB::bind_method(D_METHOD("remove_resource_format_saver", "format_saver"), &ResourceSaver::remove_resource_format_saver);
  150. BIND_BITFIELD_FLAG(FLAG_NONE);
  151. BIND_BITFIELD_FLAG(FLAG_RELATIVE_PATHS);
  152. BIND_BITFIELD_FLAG(FLAG_BUNDLE_RESOURCES);
  153. BIND_BITFIELD_FLAG(FLAG_CHANGE_PATH);
  154. BIND_BITFIELD_FLAG(FLAG_OMIT_EDITOR_PROPERTIES);
  155. BIND_BITFIELD_FLAG(FLAG_SAVE_BIG_ENDIAN);
  156. BIND_BITFIELD_FLAG(FLAG_COMPRESS);
  157. BIND_BITFIELD_FLAG(FLAG_REPLACE_SUBRESOURCE_PATHS);
  158. }
  159. ////// OS //////
  160. PackedStringArray OS::get_connected_midi_inputs() {
  161. return ::OS::get_singleton()->get_connected_midi_inputs();
  162. }
  163. void OS::open_midi_inputs() {
  164. ::OS::get_singleton()->open_midi_inputs();
  165. }
  166. void OS::close_midi_inputs() {
  167. ::OS::get_singleton()->close_midi_inputs();
  168. }
  169. void OS::set_use_file_access_save_and_swap(bool p_enable) {
  170. FileAccess::set_backup_save(p_enable);
  171. }
  172. void OS::set_low_processor_usage_mode(bool p_enabled) {
  173. ::OS::get_singleton()->set_low_processor_usage_mode(p_enabled);
  174. }
  175. bool OS::is_in_low_processor_usage_mode() const {
  176. return ::OS::get_singleton()->is_in_low_processor_usage_mode();
  177. }
  178. void OS::set_low_processor_usage_mode_sleep_usec(int p_usec) {
  179. ::OS::get_singleton()->set_low_processor_usage_mode_sleep_usec(p_usec);
  180. }
  181. int OS::get_low_processor_usage_mode_sleep_usec() const {
  182. return ::OS::get_singleton()->get_low_processor_usage_mode_sleep_usec();
  183. }
  184. void OS::alert(const String &p_alert, const String &p_title) {
  185. ::OS::get_singleton()->alert(p_alert, p_title);
  186. }
  187. void OS::crash(const String &p_message) {
  188. CRASH_NOW_MSG(p_message);
  189. }
  190. Vector<String> OS::get_system_fonts() const {
  191. return ::OS::get_singleton()->get_system_fonts();
  192. }
  193. String OS::get_system_font_path(const String &p_font_name, int p_weight, int p_stretch, bool p_italic) const {
  194. return ::OS::get_singleton()->get_system_font_path(p_font_name, p_weight, p_stretch, p_italic);
  195. }
  196. Vector<String> OS::get_system_font_path_for_text(const String &p_font_name, const String &p_text, const String &p_locale, const String &p_script, int p_weight, int p_stretch, bool p_italic) const {
  197. return ::OS::get_singleton()->get_system_font_path_for_text(p_font_name, p_text, p_locale, p_script, p_weight, p_stretch, p_italic);
  198. }
  199. String OS::get_executable_path() const {
  200. return ::OS::get_singleton()->get_executable_path();
  201. }
  202. Error OS::shell_open(String p_uri) {
  203. if (p_uri.begins_with("res://")) {
  204. WARN_PRINT("Attempting to open an URL with the \"res://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Godot-specific path to a system path before opening it with `OS.shell_open()`.");
  205. } else if (p_uri.begins_with("user://")) {
  206. WARN_PRINT("Attempting to open an URL with the \"user://\" protocol. Use `ProjectSettings.globalize_path()` to convert a Godot-specific path to a system path before opening it with `OS.shell_open()`.");
  207. }
  208. return ::OS::get_singleton()->shell_open(p_uri);
  209. }
  210. String OS::read_string_from_stdin() {
  211. return ::OS::get_singleton()->get_stdin_string();
  212. }
  213. int OS::execute(const String &p_path, const Vector<String> &p_arguments, Array r_output, bool p_read_stderr, bool p_open_console) {
  214. List<String> args;
  215. for (int i = 0; i < p_arguments.size(); i++) {
  216. args.push_back(p_arguments[i]);
  217. }
  218. String pipe;
  219. int exitcode = 0;
  220. Error err = ::OS::get_singleton()->execute(p_path, args, &pipe, &exitcode, p_read_stderr, nullptr, p_open_console);
  221. r_output.push_back(pipe);
  222. if (err != OK) {
  223. return -1;
  224. }
  225. return exitcode;
  226. }
  227. int OS::create_instance(const Vector<String> &p_arguments) {
  228. List<String> args;
  229. for (int i = 0; i < p_arguments.size(); i++) {
  230. args.push_back(p_arguments[i]);
  231. }
  232. ::OS::ProcessID pid = 0;
  233. Error err = ::OS::get_singleton()->create_instance(args, &pid);
  234. if (err != OK) {
  235. return -1;
  236. }
  237. return pid;
  238. }
  239. int OS::create_process(const String &p_path, const Vector<String> &p_arguments, bool p_open_console) {
  240. List<String> args;
  241. for (int i = 0; i < p_arguments.size(); i++) {
  242. args.push_back(p_arguments[i]);
  243. }
  244. ::OS::ProcessID pid = 0;
  245. Error err = ::OS::get_singleton()->create_process(p_path, args, &pid, p_open_console);
  246. if (err != OK) {
  247. return -1;
  248. }
  249. return pid;
  250. }
  251. Error OS::kill(int p_pid) {
  252. return ::OS::get_singleton()->kill(p_pid);
  253. }
  254. bool OS::is_process_running(int p_pid) const {
  255. return ::OS::get_singleton()->is_process_running(p_pid);
  256. }
  257. int OS::get_process_id() const {
  258. return ::OS::get_singleton()->get_process_id();
  259. }
  260. bool OS::has_environment(const String &p_var) const {
  261. return ::OS::get_singleton()->has_environment(p_var);
  262. }
  263. String OS::get_environment(const String &p_var) const {
  264. return ::OS::get_singleton()->get_environment(p_var);
  265. }
  266. void OS::set_environment(const String &p_var, const String &p_value) const {
  267. ::OS::get_singleton()->set_environment(p_var, p_value);
  268. }
  269. void OS::unset_environment(const String &p_var) const {
  270. ::OS::get_singleton()->unset_environment(p_var);
  271. }
  272. String OS::get_name() const {
  273. return ::OS::get_singleton()->get_name();
  274. }
  275. String OS::get_distribution_name() const {
  276. return ::OS::get_singleton()->get_distribution_name();
  277. }
  278. String OS::get_version() const {
  279. return ::OS::get_singleton()->get_version();
  280. }
  281. Vector<String> OS::get_video_adapter_driver_info() const {
  282. return ::OS::get_singleton()->get_video_adapter_driver_info();
  283. }
  284. Vector<String> OS::get_cmdline_args() {
  285. List<String> cmdline = ::OS::get_singleton()->get_cmdline_args();
  286. Vector<String> cmdlinev;
  287. for (const String &E : cmdline) {
  288. cmdlinev.push_back(E);
  289. }
  290. return cmdlinev;
  291. }
  292. Vector<String> OS::get_cmdline_user_args() {
  293. List<String> cmdline = ::OS::get_singleton()->get_cmdline_user_args();
  294. Vector<String> cmdlinev;
  295. for (const String &E : cmdline) {
  296. cmdlinev.push_back(E);
  297. }
  298. return cmdlinev;
  299. }
  300. void OS::set_restart_on_exit(bool p_restart, const Vector<String> &p_restart_arguments) {
  301. List<String> args_list;
  302. for (const String &restart_argument : p_restart_arguments) {
  303. args_list.push_back(restart_argument);
  304. }
  305. ::OS::get_singleton()->set_restart_on_exit(p_restart, args_list);
  306. }
  307. bool OS::is_restart_on_exit_set() const {
  308. return ::OS::get_singleton()->is_restart_on_exit_set();
  309. }
  310. Vector<String> OS::get_restart_on_exit_arguments() const {
  311. List<String> args = ::OS::get_singleton()->get_restart_on_exit_arguments();
  312. Vector<String> args_vector;
  313. for (List<String>::Element *E = args.front(); E; E = E->next()) {
  314. args_vector.push_back(E->get());
  315. }
  316. return args_vector;
  317. }
  318. String OS::get_locale() const {
  319. return ::OS::get_singleton()->get_locale();
  320. }
  321. String OS::get_locale_language() const {
  322. return ::OS::get_singleton()->get_locale_language();
  323. }
  324. String OS::get_model_name() const {
  325. return ::OS::get_singleton()->get_model_name();
  326. }
  327. Error OS::set_thread_name(const String &p_name) {
  328. return ::Thread::set_name(p_name);
  329. }
  330. ::Thread::ID OS::get_thread_caller_id() const {
  331. return ::Thread::get_caller_id();
  332. };
  333. ::Thread::ID OS::get_main_thread_id() const {
  334. return ::Thread::get_main_id();
  335. };
  336. bool OS::has_feature(const String &p_feature) const {
  337. return ::OS::get_singleton()->has_feature(p_feature);
  338. }
  339. uint64_t OS::get_static_memory_usage() const {
  340. return ::OS::get_singleton()->get_static_memory_usage();
  341. }
  342. uint64_t OS::get_static_memory_peak_usage() const {
  343. return ::OS::get_singleton()->get_static_memory_peak_usage();
  344. }
  345. /** This method uses a signed argument for better error reporting as it's used from the scripting API. */
  346. void OS::delay_usec(int p_usec) const {
  347. ERR_FAIL_COND_MSG(
  348. p_usec < 0,
  349. vformat("Can't sleep for %d microseconds. The delay provided must be greater than or equal to 0 microseconds.", p_usec));
  350. ::OS::get_singleton()->delay_usec(p_usec);
  351. }
  352. /** This method uses a signed argument for better error reporting as it's used from the scripting API. */
  353. void OS::delay_msec(int p_msec) const {
  354. ERR_FAIL_COND_MSG(
  355. p_msec < 0,
  356. vformat("Can't sleep for %d milliseconds. The delay provided must be greater than or equal to 0 milliseconds.", p_msec));
  357. ::OS::get_singleton()->delay_usec(int64_t(p_msec) * 1000);
  358. }
  359. bool OS::is_userfs_persistent() const {
  360. return ::OS::get_singleton()->is_userfs_persistent();
  361. }
  362. int OS::get_processor_count() const {
  363. return ::OS::get_singleton()->get_processor_count();
  364. }
  365. String OS::get_processor_name() const {
  366. return ::OS::get_singleton()->get_processor_name();
  367. }
  368. bool OS::is_stdout_verbose() const {
  369. return ::OS::get_singleton()->is_stdout_verbose();
  370. }
  371. Error OS::move_to_trash(const String &p_path) const {
  372. return ::OS::get_singleton()->move_to_trash(p_path);
  373. }
  374. String OS::get_user_data_dir() const {
  375. return ::OS::get_singleton()->get_user_data_dir();
  376. }
  377. String OS::get_config_dir() const {
  378. // Exposed as `get_config_dir()` instead of `get_config_path()` for consistency with other exposed OS methods.
  379. return ::OS::get_singleton()->get_config_path();
  380. }
  381. String OS::get_data_dir() const {
  382. // Exposed as `get_data_dir()` instead of `get_data_path()` for consistency with other exposed OS methods.
  383. return ::OS::get_singleton()->get_data_path();
  384. }
  385. String OS::get_cache_dir() const {
  386. // Exposed as `get_cache_dir()` instead of `get_cache_path()` for consistency with other exposed OS methods.
  387. return ::OS::get_singleton()->get_cache_path();
  388. }
  389. bool OS::is_debug_build() const {
  390. #ifdef DEBUG_ENABLED
  391. return true;
  392. #else
  393. return false;
  394. #endif
  395. }
  396. String OS::get_system_dir(SystemDir p_dir, bool p_shared_storage) const {
  397. return ::OS::get_singleton()->get_system_dir(::OS::SystemDir(p_dir), p_shared_storage);
  398. }
  399. String OS::get_keycode_string(Key p_code) const {
  400. return ::keycode_get_string(p_code);
  401. }
  402. bool OS::is_keycode_unicode(char32_t p_unicode) const {
  403. return ::keycode_has_unicode((Key)p_unicode);
  404. }
  405. Key OS::find_keycode_from_string(const String &p_code) const {
  406. return find_keycode(p_code);
  407. }
  408. bool OS::request_permission(const String &p_name) {
  409. return ::OS::get_singleton()->request_permission(p_name);
  410. }
  411. bool OS::request_permissions() {
  412. return ::OS::get_singleton()->request_permissions();
  413. }
  414. Vector<String> OS::get_granted_permissions() const {
  415. return ::OS::get_singleton()->get_granted_permissions();
  416. }
  417. String OS::get_unique_id() const {
  418. return ::OS::get_singleton()->get_unique_id();
  419. }
  420. OS *OS::singleton = nullptr;
  421. void OS::_bind_methods() {
  422. ClassDB::bind_method(D_METHOD("get_connected_midi_inputs"), &OS::get_connected_midi_inputs);
  423. ClassDB::bind_method(D_METHOD("open_midi_inputs"), &OS::open_midi_inputs);
  424. ClassDB::bind_method(D_METHOD("close_midi_inputs"), &OS::close_midi_inputs);
  425. ClassDB::bind_method(D_METHOD("alert", "text", "title"), &OS::alert, DEFVAL("Alert!"));
  426. ClassDB::bind_method(D_METHOD("crash", "message"), &OS::crash);
  427. ClassDB::bind_method(D_METHOD("set_low_processor_usage_mode", "enable"), &OS::set_low_processor_usage_mode);
  428. ClassDB::bind_method(D_METHOD("is_in_low_processor_usage_mode"), &OS::is_in_low_processor_usage_mode);
  429. ClassDB::bind_method(D_METHOD("set_low_processor_usage_mode_sleep_usec", "usec"), &OS::set_low_processor_usage_mode_sleep_usec);
  430. ClassDB::bind_method(D_METHOD("get_low_processor_usage_mode_sleep_usec"), &OS::get_low_processor_usage_mode_sleep_usec);
  431. ClassDB::bind_method(D_METHOD("get_processor_count"), &OS::get_processor_count);
  432. ClassDB::bind_method(D_METHOD("get_processor_name"), &OS::get_processor_name);
  433. ClassDB::bind_method(D_METHOD("get_system_fonts"), &OS::get_system_fonts);
  434. ClassDB::bind_method(D_METHOD("get_system_font_path", "font_name", "weight", "stretch", "italic"), &OS::get_system_font_path, DEFVAL(400), DEFVAL(100), DEFVAL(false));
  435. ClassDB::bind_method(D_METHOD("get_system_font_path_for_text", "font_name", "text", "locale", "script", "weight", "stretch", "italic"), &OS::get_system_font_path_for_text, DEFVAL(String()), DEFVAL(String()), DEFVAL(400), DEFVAL(100), DEFVAL(false));
  436. ClassDB::bind_method(D_METHOD("get_executable_path"), &OS::get_executable_path);
  437. ClassDB::bind_method(D_METHOD("read_string_from_stdin"), &OS::read_string_from_stdin);
  438. ClassDB::bind_method(D_METHOD("execute", "path", "arguments", "output", "read_stderr", "open_console"), &OS::execute, DEFVAL(Array()), DEFVAL(false), DEFVAL(false));
  439. ClassDB::bind_method(D_METHOD("create_process", "path", "arguments", "open_console"), &OS::create_process, DEFVAL(false));
  440. ClassDB::bind_method(D_METHOD("create_instance", "arguments"), &OS::create_instance);
  441. ClassDB::bind_method(D_METHOD("kill", "pid"), &OS::kill);
  442. ClassDB::bind_method(D_METHOD("shell_open", "uri"), &OS::shell_open);
  443. ClassDB::bind_method(D_METHOD("is_process_running", "pid"), &OS::is_process_running);
  444. ClassDB::bind_method(D_METHOD("get_process_id"), &OS::get_process_id);
  445. ClassDB::bind_method(D_METHOD("has_environment", "variable"), &OS::has_environment);
  446. ClassDB::bind_method(D_METHOD("get_environment", "variable"), &OS::get_environment);
  447. ClassDB::bind_method(D_METHOD("set_environment", "variable", "value"), &OS::set_environment);
  448. ClassDB::bind_method(D_METHOD("unset_environment", "variable"), &OS::unset_environment);
  449. ClassDB::bind_method(D_METHOD("get_name"), &OS::get_name);
  450. ClassDB::bind_method(D_METHOD("get_distribution_name"), &OS::get_distribution_name);
  451. ClassDB::bind_method(D_METHOD("get_version"), &OS::get_version);
  452. ClassDB::bind_method(D_METHOD("get_cmdline_args"), &OS::get_cmdline_args);
  453. ClassDB::bind_method(D_METHOD("get_cmdline_user_args"), &OS::get_cmdline_user_args);
  454. ClassDB::bind_method(D_METHOD("get_video_adapter_driver_info"), &OS::get_video_adapter_driver_info);
  455. ClassDB::bind_method(D_METHOD("set_restart_on_exit", "restart", "arguments"), &OS::set_restart_on_exit, DEFVAL(Vector<String>()));
  456. ClassDB::bind_method(D_METHOD("is_restart_on_exit_set"), &OS::is_restart_on_exit_set);
  457. ClassDB::bind_method(D_METHOD("get_restart_on_exit_arguments"), &OS::get_restart_on_exit_arguments);
  458. ClassDB::bind_method(D_METHOD("delay_usec", "usec"), &OS::delay_usec);
  459. ClassDB::bind_method(D_METHOD("delay_msec", "msec"), &OS::delay_msec);
  460. ClassDB::bind_method(D_METHOD("get_locale"), &OS::get_locale);
  461. ClassDB::bind_method(D_METHOD("get_locale_language"), &OS::get_locale_language);
  462. ClassDB::bind_method(D_METHOD("get_model_name"), &OS::get_model_name);
  463. ClassDB::bind_method(D_METHOD("is_userfs_persistent"), &OS::is_userfs_persistent);
  464. ClassDB::bind_method(D_METHOD("is_stdout_verbose"), &OS::is_stdout_verbose);
  465. ClassDB::bind_method(D_METHOD("is_debug_build"), &OS::is_debug_build);
  466. ClassDB::bind_method(D_METHOD("get_static_memory_usage"), &OS::get_static_memory_usage);
  467. ClassDB::bind_method(D_METHOD("get_static_memory_peak_usage"), &OS::get_static_memory_peak_usage);
  468. ClassDB::bind_method(D_METHOD("move_to_trash", "path"), &OS::move_to_trash);
  469. ClassDB::bind_method(D_METHOD("get_user_data_dir"), &OS::get_user_data_dir);
  470. ClassDB::bind_method(D_METHOD("get_system_dir", "dir", "shared_storage"), &OS::get_system_dir, DEFVAL(true));
  471. ClassDB::bind_method(D_METHOD("get_config_dir"), &OS::get_config_dir);
  472. ClassDB::bind_method(D_METHOD("get_data_dir"), &OS::get_data_dir);
  473. ClassDB::bind_method(D_METHOD("get_cache_dir"), &OS::get_cache_dir);
  474. ClassDB::bind_method(D_METHOD("get_unique_id"), &OS::get_unique_id);
  475. ClassDB::bind_method(D_METHOD("get_keycode_string", "code"), &OS::get_keycode_string);
  476. ClassDB::bind_method(D_METHOD("is_keycode_unicode", "code"), &OS::is_keycode_unicode);
  477. ClassDB::bind_method(D_METHOD("find_keycode_from_string", "string"), &OS::find_keycode_from_string);
  478. ClassDB::bind_method(D_METHOD("set_use_file_access_save_and_swap", "enabled"), &OS::set_use_file_access_save_and_swap);
  479. ClassDB::bind_method(D_METHOD("set_thread_name", "name"), &OS::set_thread_name);
  480. ClassDB::bind_method(D_METHOD("get_thread_caller_id"), &OS::get_thread_caller_id);
  481. ClassDB::bind_method(D_METHOD("get_main_thread_id"), &OS::get_main_thread_id);
  482. ClassDB::bind_method(D_METHOD("has_feature", "tag_name"), &OS::has_feature);
  483. ClassDB::bind_method(D_METHOD("request_permission", "name"), &OS::request_permission);
  484. ClassDB::bind_method(D_METHOD("request_permissions"), &OS::request_permissions);
  485. ClassDB::bind_method(D_METHOD("get_granted_permissions"), &OS::get_granted_permissions);
  486. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "low_processor_usage_mode"), "set_low_processor_usage_mode", "is_in_low_processor_usage_mode");
  487. ADD_PROPERTY(PropertyInfo(Variant::INT, "low_processor_usage_mode_sleep_usec"), "set_low_processor_usage_mode_sleep_usec", "get_low_processor_usage_mode_sleep_usec");
  488. // Those default values need to be specified for the docs generator,
  489. // to avoid using values from the documentation writer's own OS instance.
  490. ADD_PROPERTY_DEFAULT("low_processor_usage_mode", false);
  491. ADD_PROPERTY_DEFAULT("low_processor_usage_mode_sleep_usec", 6900);
  492. BIND_ENUM_CONSTANT(RENDERING_DRIVER_VULKAN);
  493. BIND_ENUM_CONSTANT(RENDERING_DRIVER_OPENGL3);
  494. BIND_ENUM_CONSTANT(SYSTEM_DIR_DESKTOP);
  495. BIND_ENUM_CONSTANT(SYSTEM_DIR_DCIM);
  496. BIND_ENUM_CONSTANT(SYSTEM_DIR_DOCUMENTS);
  497. BIND_ENUM_CONSTANT(SYSTEM_DIR_DOWNLOADS);
  498. BIND_ENUM_CONSTANT(SYSTEM_DIR_MOVIES);
  499. BIND_ENUM_CONSTANT(SYSTEM_DIR_MUSIC);
  500. BIND_ENUM_CONSTANT(SYSTEM_DIR_PICTURES);
  501. BIND_ENUM_CONSTANT(SYSTEM_DIR_RINGTONES);
  502. }
  503. ////// Geometry2D //////
  504. Geometry2D *Geometry2D::singleton = nullptr;
  505. Geometry2D *Geometry2D::get_singleton() {
  506. return singleton;
  507. }
  508. bool Geometry2D::is_point_in_circle(const Vector2 &p_point, const Vector2 &p_circle_pos, real_t p_circle_radius) {
  509. return ::Geometry2D::is_point_in_circle(p_point, p_circle_pos, p_circle_radius);
  510. }
  511. real_t Geometry2D::segment_intersects_circle(const Vector2 &p_from, const Vector2 &p_to, const Vector2 &p_circle_pos, real_t p_circle_radius) {
  512. return ::Geometry2D::segment_intersects_circle(p_from, p_to, p_circle_pos, p_circle_radius);
  513. }
  514. Variant Geometry2D::segment_intersects_segment(const Vector2 &p_from_a, const Vector2 &p_to_a, const Vector2 &p_from_b, const Vector2 &p_to_b) {
  515. Vector2 result;
  516. if (::Geometry2D::segment_intersects_segment(p_from_a, p_to_a, p_from_b, p_to_b, &result)) {
  517. return result;
  518. } else {
  519. return Variant();
  520. }
  521. }
  522. Variant Geometry2D::line_intersects_line(const Vector2 &p_from_a, const Vector2 &p_dir_a, const Vector2 &p_from_b, const Vector2 &p_dir_b) {
  523. Vector2 result;
  524. if (::Geometry2D::line_intersects_line(p_from_a, p_dir_a, p_from_b, p_dir_b, result)) {
  525. return result;
  526. } else {
  527. return Variant();
  528. }
  529. }
  530. Vector<Vector2> Geometry2D::get_closest_points_between_segments(const Vector2 &p1, const Vector2 &q1, const Vector2 &p2, const Vector2 &q2) {
  531. Vector2 r1, r2;
  532. ::Geometry2D::get_closest_points_between_segments(p1, q1, p2, q2, r1, r2);
  533. Vector<Vector2> r = { r1, r2 };
  534. return r;
  535. }
  536. Vector2 Geometry2D::get_closest_point_to_segment(const Vector2 &p_point, const Vector2 &p_a, const Vector2 &p_b) {
  537. Vector2 s[2] = { p_a, p_b };
  538. return ::Geometry2D::get_closest_point_to_segment(p_point, s);
  539. }
  540. Vector2 Geometry2D::get_closest_point_to_segment_uncapped(const Vector2 &p_point, const Vector2 &p_a, const Vector2 &p_b) {
  541. Vector2 s[2] = { p_a, p_b };
  542. return ::Geometry2D::get_closest_point_to_segment_uncapped(p_point, s);
  543. }
  544. bool Geometry2D::point_is_inside_triangle(const Vector2 &s, const Vector2 &a, const Vector2 &b, const Vector2 &c) const {
  545. return ::Geometry2D::is_point_in_triangle(s, a, b, c);
  546. }
  547. bool Geometry2D::is_polygon_clockwise(const Vector<Vector2> &p_polygon) {
  548. return ::Geometry2D::is_polygon_clockwise(p_polygon);
  549. }
  550. bool Geometry2D::is_point_in_polygon(const Point2 &p_point, const Vector<Vector2> &p_polygon) {
  551. return ::Geometry2D::is_point_in_polygon(p_point, p_polygon);
  552. }
  553. Vector<int> Geometry2D::triangulate_polygon(const Vector<Vector2> &p_polygon) {
  554. return ::Geometry2D::triangulate_polygon(p_polygon);
  555. }
  556. Vector<int> Geometry2D::triangulate_delaunay(const Vector<Vector2> &p_points) {
  557. return ::Geometry2D::triangulate_delaunay(p_points);
  558. }
  559. Vector<Point2> Geometry2D::convex_hull(const Vector<Point2> &p_points) {
  560. return ::Geometry2D::convex_hull(p_points);
  561. }
  562. TypedArray<PackedVector2Array> Geometry2D::decompose_polygon_in_convex(const Vector<Vector2> &p_polygon) {
  563. Vector<Vector<Point2>> decomp = ::Geometry2D::decompose_polygon_in_convex(p_polygon);
  564. TypedArray<PackedVector2Array> ret;
  565. for (int i = 0; i < decomp.size(); ++i) {
  566. ret.push_back(decomp[i]);
  567. }
  568. return ret;
  569. }
  570. TypedArray<PackedVector2Array> Geometry2D::merge_polygons(const Vector<Vector2> &p_polygon_a, const Vector<Vector2> &p_polygon_b) {
  571. Vector<Vector<Point2>> polys = ::Geometry2D::merge_polygons(p_polygon_a, p_polygon_b);
  572. TypedArray<PackedVector2Array> ret;
  573. for (int i = 0; i < polys.size(); ++i) {
  574. ret.push_back(polys[i]);
  575. }
  576. return ret;
  577. }
  578. TypedArray<PackedVector2Array> Geometry2D::clip_polygons(const Vector<Vector2> &p_polygon_a, const Vector<Vector2> &p_polygon_b) {
  579. Vector<Vector<Point2>> polys = ::Geometry2D::clip_polygons(p_polygon_a, p_polygon_b);
  580. TypedArray<PackedVector2Array> ret;
  581. for (int i = 0; i < polys.size(); ++i) {
  582. ret.push_back(polys[i]);
  583. }
  584. return ret;
  585. }
  586. TypedArray<PackedVector2Array> Geometry2D::intersect_polygons(const Vector<Vector2> &p_polygon_a, const Vector<Vector2> &p_polygon_b) {
  587. Vector<Vector<Point2>> polys = ::Geometry2D::intersect_polygons(p_polygon_a, p_polygon_b);
  588. TypedArray<PackedVector2Array> ret;
  589. for (int i = 0; i < polys.size(); ++i) {
  590. ret.push_back(polys[i]);
  591. }
  592. return ret;
  593. }
  594. TypedArray<PackedVector2Array> Geometry2D::exclude_polygons(const Vector<Vector2> &p_polygon_a, const Vector<Vector2> &p_polygon_b) {
  595. Vector<Vector<Point2>> polys = ::Geometry2D::exclude_polygons(p_polygon_a, p_polygon_b);
  596. TypedArray<PackedVector2Array> ret;
  597. for (int i = 0; i < polys.size(); ++i) {
  598. ret.push_back(polys[i]);
  599. }
  600. return ret;
  601. }
  602. TypedArray<PackedVector2Array> Geometry2D::clip_polyline_with_polygon(const Vector<Vector2> &p_polyline, const Vector<Vector2> &p_polygon) {
  603. Vector<Vector<Point2>> polys = ::Geometry2D::clip_polyline_with_polygon(p_polyline, p_polygon);
  604. TypedArray<PackedVector2Array> ret;
  605. for (int i = 0; i < polys.size(); ++i) {
  606. ret.push_back(polys[i]);
  607. }
  608. return ret;
  609. }
  610. TypedArray<PackedVector2Array> Geometry2D::intersect_polyline_with_polygon(const Vector<Vector2> &p_polyline, const Vector<Vector2> &p_polygon) {
  611. Vector<Vector<Point2>> polys = ::Geometry2D::intersect_polyline_with_polygon(p_polyline, p_polygon);
  612. TypedArray<PackedVector2Array> ret;
  613. for (int i = 0; i < polys.size(); ++i) {
  614. ret.push_back(polys[i]);
  615. }
  616. return ret;
  617. }
  618. TypedArray<PackedVector2Array> Geometry2D::offset_polygon(const Vector<Vector2> &p_polygon, real_t p_delta, PolyJoinType p_join_type) {
  619. Vector<Vector<Point2>> polys = ::Geometry2D::offset_polygon(p_polygon, p_delta, ::Geometry2D::PolyJoinType(p_join_type));
  620. TypedArray<PackedVector2Array> ret;
  621. for (int i = 0; i < polys.size(); ++i) {
  622. ret.push_back(polys[i]);
  623. }
  624. return ret;
  625. }
  626. TypedArray<PackedVector2Array> Geometry2D::offset_polyline(const Vector<Vector2> &p_polygon, real_t p_delta, PolyJoinType p_join_type, PolyEndType p_end_type) {
  627. Vector<Vector<Point2>> polys = ::Geometry2D::offset_polyline(p_polygon, p_delta, ::Geometry2D::PolyJoinType(p_join_type), ::Geometry2D::PolyEndType(p_end_type));
  628. TypedArray<PackedVector2Array> ret;
  629. for (int i = 0; i < polys.size(); ++i) {
  630. ret.push_back(polys[i]);
  631. }
  632. return ret;
  633. }
  634. Dictionary Geometry2D::make_atlas(const Vector<Size2> &p_rects) {
  635. Dictionary ret;
  636. Vector<Size2i> rects;
  637. for (int i = 0; i < p_rects.size(); i++) {
  638. rects.push_back(p_rects[i]);
  639. }
  640. Vector<Point2i> result;
  641. Size2i size;
  642. ::Geometry2D::make_atlas(rects, result, size);
  643. Vector<Point2> r_result;
  644. for (int i = 0; i < result.size(); i++) {
  645. r_result.push_back(result[i]);
  646. }
  647. ret["points"] = r_result;
  648. ret["size"] = size;
  649. return ret;
  650. }
  651. void Geometry2D::_bind_methods() {
  652. ClassDB::bind_method(D_METHOD("is_point_in_circle", "point", "circle_position", "circle_radius"), &Geometry2D::is_point_in_circle);
  653. ClassDB::bind_method(D_METHOD("segment_intersects_circle", "segment_from", "segment_to", "circle_position", "circle_radius"), &Geometry2D::segment_intersects_circle);
  654. ClassDB::bind_method(D_METHOD("segment_intersects_segment", "from_a", "to_a", "from_b", "to_b"), &Geometry2D::segment_intersects_segment);
  655. ClassDB::bind_method(D_METHOD("line_intersects_line", "from_a", "dir_a", "from_b", "dir_b"), &Geometry2D::line_intersects_line);
  656. ClassDB::bind_method(D_METHOD("get_closest_points_between_segments", "p1", "q1", "p2", "q2"), &Geometry2D::get_closest_points_between_segments);
  657. ClassDB::bind_method(D_METHOD("get_closest_point_to_segment", "point", "s1", "s2"), &Geometry2D::get_closest_point_to_segment);
  658. ClassDB::bind_method(D_METHOD("get_closest_point_to_segment_uncapped", "point", "s1", "s2"), &Geometry2D::get_closest_point_to_segment_uncapped);
  659. ClassDB::bind_method(D_METHOD("point_is_inside_triangle", "point", "a", "b", "c"), &Geometry2D::point_is_inside_triangle);
  660. ClassDB::bind_method(D_METHOD("is_polygon_clockwise", "polygon"), &Geometry2D::is_polygon_clockwise);
  661. ClassDB::bind_method(D_METHOD("is_point_in_polygon", "point", "polygon"), &Geometry2D::is_point_in_polygon);
  662. ClassDB::bind_method(D_METHOD("triangulate_polygon", "polygon"), &Geometry2D::triangulate_polygon);
  663. ClassDB::bind_method(D_METHOD("triangulate_delaunay", "points"), &Geometry2D::triangulate_delaunay);
  664. ClassDB::bind_method(D_METHOD("convex_hull", "points"), &Geometry2D::convex_hull);
  665. ClassDB::bind_method(D_METHOD("decompose_polygon_in_convex", "polygon"), &Geometry2D::decompose_polygon_in_convex);
  666. ClassDB::bind_method(D_METHOD("merge_polygons", "polygon_a", "polygon_b"), &Geometry2D::merge_polygons);
  667. ClassDB::bind_method(D_METHOD("clip_polygons", "polygon_a", "polygon_b"), &Geometry2D::clip_polygons);
  668. ClassDB::bind_method(D_METHOD("intersect_polygons", "polygon_a", "polygon_b"), &Geometry2D::intersect_polygons);
  669. ClassDB::bind_method(D_METHOD("exclude_polygons", "polygon_a", "polygon_b"), &Geometry2D::exclude_polygons);
  670. ClassDB::bind_method(D_METHOD("clip_polyline_with_polygon", "polyline", "polygon"), &Geometry2D::clip_polyline_with_polygon);
  671. ClassDB::bind_method(D_METHOD("intersect_polyline_with_polygon", "polyline", "polygon"), &Geometry2D::intersect_polyline_with_polygon);
  672. ClassDB::bind_method(D_METHOD("offset_polygon", "polygon", "delta", "join_type"), &Geometry2D::offset_polygon, DEFVAL(JOIN_SQUARE));
  673. ClassDB::bind_method(D_METHOD("offset_polyline", "polyline", "delta", "join_type", "end_type"), &Geometry2D::offset_polyline, DEFVAL(JOIN_SQUARE), DEFVAL(END_SQUARE));
  674. ClassDB::bind_method(D_METHOD("make_atlas", "sizes"), &Geometry2D::make_atlas);
  675. BIND_ENUM_CONSTANT(OPERATION_UNION);
  676. BIND_ENUM_CONSTANT(OPERATION_DIFFERENCE);
  677. BIND_ENUM_CONSTANT(OPERATION_INTERSECTION);
  678. BIND_ENUM_CONSTANT(OPERATION_XOR);
  679. BIND_ENUM_CONSTANT(JOIN_SQUARE);
  680. BIND_ENUM_CONSTANT(JOIN_ROUND);
  681. BIND_ENUM_CONSTANT(JOIN_MITER);
  682. BIND_ENUM_CONSTANT(END_POLYGON);
  683. BIND_ENUM_CONSTANT(END_JOINED);
  684. BIND_ENUM_CONSTANT(END_BUTT);
  685. BIND_ENUM_CONSTANT(END_SQUARE);
  686. BIND_ENUM_CONSTANT(END_ROUND);
  687. }
  688. ////// Geometry3D //////
  689. Geometry3D *Geometry3D::singleton = nullptr;
  690. Geometry3D *Geometry3D::get_singleton() {
  691. return singleton;
  692. }
  693. TypedArray<Plane> Geometry3D::build_box_planes(const Vector3 &p_extents) {
  694. Variant ret = ::Geometry3D::build_box_planes(p_extents);
  695. return ret;
  696. }
  697. TypedArray<Plane> Geometry3D::build_cylinder_planes(float p_radius, float p_height, int p_sides, Vector3::Axis p_axis) {
  698. Variant ret = ::Geometry3D::build_cylinder_planes(p_radius, p_height, p_sides, p_axis);
  699. return ret;
  700. }
  701. TypedArray<Plane> Geometry3D::build_capsule_planes(float p_radius, float p_height, int p_sides, int p_lats, Vector3::Axis p_axis) {
  702. Variant ret = ::Geometry3D::build_capsule_planes(p_radius, p_height, p_sides, p_lats, p_axis);
  703. return ret;
  704. }
  705. Vector<Vector3> Geometry3D::get_closest_points_between_segments(const Vector3 &p1, const Vector3 &p2, const Vector3 &q1, const Vector3 &q2) {
  706. Vector3 r1, r2;
  707. ::Geometry3D::get_closest_points_between_segments(p1, p2, q1, q2, r1, r2);
  708. Vector<Vector3> r = { r1, r2 };
  709. return r;
  710. }
  711. Vector3 Geometry3D::get_closest_point_to_segment(const Vector3 &p_point, const Vector3 &p_a, const Vector3 &p_b) {
  712. Vector3 s[2] = { p_a, p_b };
  713. return ::Geometry3D::get_closest_point_to_segment(p_point, s);
  714. }
  715. Vector3 Geometry3D::get_closest_point_to_segment_uncapped(const Vector3 &p_point, const Vector3 &p_a, const Vector3 &p_b) {
  716. Vector3 s[2] = { p_a, p_b };
  717. return ::Geometry3D::get_closest_point_to_segment_uncapped(p_point, s);
  718. }
  719. Variant Geometry3D::ray_intersects_triangle(const Vector3 &p_from, const Vector3 &p_dir, const Vector3 &p_v0, const Vector3 &p_v1, const Vector3 &p_v2) {
  720. Vector3 res;
  721. if (::Geometry3D::ray_intersects_triangle(p_from, p_dir, p_v0, p_v1, p_v2, &res)) {
  722. return res;
  723. } else {
  724. return Variant();
  725. }
  726. }
  727. Variant Geometry3D::segment_intersects_triangle(const Vector3 &p_from, const Vector3 &p_to, const Vector3 &p_v0, const Vector3 &p_v1, const Vector3 &p_v2) {
  728. Vector3 res;
  729. if (::Geometry3D::segment_intersects_triangle(p_from, p_to, p_v0, p_v1, p_v2, &res)) {
  730. return res;
  731. } else {
  732. return Variant();
  733. }
  734. }
  735. Vector<Vector3> Geometry3D::segment_intersects_sphere(const Vector3 &p_from, const Vector3 &p_to, const Vector3 &p_sphere_pos, real_t p_sphere_radius) {
  736. Vector<Vector3> r;
  737. Vector3 res, norm;
  738. if (!::Geometry3D::segment_intersects_sphere(p_from, p_to, p_sphere_pos, p_sphere_radius, &res, &norm)) {
  739. return r;
  740. }
  741. r.resize(2);
  742. r.set(0, res);
  743. r.set(1, norm);
  744. return r;
  745. }
  746. Vector<Vector3> Geometry3D::segment_intersects_cylinder(const Vector3 &p_from, const Vector3 &p_to, float p_height, float p_radius) {
  747. Vector<Vector3> r;
  748. Vector3 res, norm;
  749. if (!::Geometry3D::segment_intersects_cylinder(p_from, p_to, p_height, p_radius, &res, &norm)) {
  750. return r;
  751. }
  752. r.resize(2);
  753. r.set(0, res);
  754. r.set(1, norm);
  755. return r;
  756. }
  757. Vector<Vector3> Geometry3D::segment_intersects_convex(const Vector3 &p_from, const Vector3 &p_to, const Vector<Plane> &p_planes) {
  758. Vector<Vector3> r;
  759. Vector3 res, norm;
  760. if (!::Geometry3D::segment_intersects_convex(p_from, p_to, p_planes.ptr(), p_planes.size(), &res, &norm)) {
  761. return r;
  762. }
  763. r.resize(2);
  764. r.set(0, res);
  765. r.set(1, norm);
  766. return r;
  767. }
  768. Vector<Vector3> Geometry3D::clip_polygon(const Vector<Vector3> &p_points, const Plane &p_plane) {
  769. return ::Geometry3D::clip_polygon(p_points, p_plane);
  770. }
  771. void Geometry3D::_bind_methods() {
  772. ClassDB::bind_method(D_METHOD("build_box_planes", "extents"), &Geometry3D::build_box_planes);
  773. ClassDB::bind_method(D_METHOD("build_cylinder_planes", "radius", "height", "sides", "axis"), &Geometry3D::build_cylinder_planes, DEFVAL(Vector3::AXIS_Z));
  774. ClassDB::bind_method(D_METHOD("build_capsule_planes", "radius", "height", "sides", "lats", "axis"), &Geometry3D::build_capsule_planes, DEFVAL(Vector3::AXIS_Z));
  775. ClassDB::bind_method(D_METHOD("get_closest_points_between_segments", "p1", "p2", "q1", "q2"), &Geometry3D::get_closest_points_between_segments);
  776. ClassDB::bind_method(D_METHOD("get_closest_point_to_segment", "point", "s1", "s2"), &Geometry3D::get_closest_point_to_segment);
  777. ClassDB::bind_method(D_METHOD("get_closest_point_to_segment_uncapped", "point", "s1", "s2"), &Geometry3D::get_closest_point_to_segment_uncapped);
  778. ClassDB::bind_method(D_METHOD("ray_intersects_triangle", "from", "dir", "a", "b", "c"), &Geometry3D::ray_intersects_triangle);
  779. ClassDB::bind_method(D_METHOD("segment_intersects_triangle", "from", "to", "a", "b", "c"), &Geometry3D::segment_intersects_triangle);
  780. ClassDB::bind_method(D_METHOD("segment_intersects_sphere", "from", "to", "sphere_position", "sphere_radius"), &Geometry3D::segment_intersects_sphere);
  781. ClassDB::bind_method(D_METHOD("segment_intersects_cylinder", "from", "to", "height", "radius"), &Geometry3D::segment_intersects_cylinder);
  782. ClassDB::bind_method(D_METHOD("segment_intersects_convex", "from", "to", "planes"), &Geometry3D::segment_intersects_convex);
  783. ClassDB::bind_method(D_METHOD("clip_polygon", "points", "plane"), &Geometry3D::clip_polygon);
  784. }
  785. ////// Marshalls //////
  786. Marshalls *Marshalls::singleton = nullptr;
  787. Marshalls *Marshalls::get_singleton() {
  788. return singleton;
  789. }
  790. String Marshalls::variant_to_base64(const Variant &p_var, bool p_full_objects) {
  791. int len;
  792. Error err = encode_variant(p_var, nullptr, len, p_full_objects);
  793. ERR_FAIL_COND_V_MSG(err != OK, "", "Error when trying to encode Variant.");
  794. Vector<uint8_t> buff;
  795. buff.resize(len);
  796. uint8_t *w = buff.ptrw();
  797. err = encode_variant(p_var, &w[0], len, p_full_objects);
  798. ERR_FAIL_COND_V_MSG(err != OK, "", "Error when trying to encode Variant.");
  799. String ret = CryptoCore::b64_encode_str(&w[0], len);
  800. ERR_FAIL_COND_V(ret.is_empty(), ret);
  801. return ret;
  802. }
  803. Variant Marshalls::base64_to_variant(const String &p_str, bool p_allow_objects) {
  804. int strlen = p_str.length();
  805. CharString cstr = p_str.ascii();
  806. Vector<uint8_t> buf;
  807. buf.resize(strlen / 4 * 3 + 1);
  808. uint8_t *w = buf.ptrw();
  809. size_t len = 0;
  810. ERR_FAIL_COND_V(CryptoCore::b64_decode(&w[0], buf.size(), &len, (unsigned char *)cstr.get_data(), strlen) != OK, Variant());
  811. Variant v;
  812. Error err = decode_variant(v, &w[0], len, nullptr, p_allow_objects);
  813. ERR_FAIL_COND_V_MSG(err != OK, Variant(), "Error when trying to decode Variant.");
  814. return v;
  815. }
  816. String Marshalls::raw_to_base64(const Vector<uint8_t> &p_arr) {
  817. String ret = CryptoCore::b64_encode_str(p_arr.ptr(), p_arr.size());
  818. ERR_FAIL_COND_V(ret.is_empty(), ret);
  819. return ret;
  820. }
  821. Vector<uint8_t> Marshalls::base64_to_raw(const String &p_str) {
  822. int strlen = p_str.length();
  823. CharString cstr = p_str.ascii();
  824. size_t arr_len = 0;
  825. Vector<uint8_t> buf;
  826. {
  827. buf.resize(strlen / 4 * 3 + 1);
  828. uint8_t *w = buf.ptrw();
  829. ERR_FAIL_COND_V(CryptoCore::b64_decode(&w[0], buf.size(), &arr_len, (unsigned char *)cstr.get_data(), strlen) != OK, Vector<uint8_t>());
  830. }
  831. buf.resize(arr_len);
  832. return buf;
  833. }
  834. String Marshalls::utf8_to_base64(const String &p_str) {
  835. CharString cstr = p_str.utf8();
  836. String ret = CryptoCore::b64_encode_str((unsigned char *)cstr.get_data(), cstr.length());
  837. ERR_FAIL_COND_V(ret.is_empty(), ret);
  838. return ret;
  839. }
  840. String Marshalls::base64_to_utf8(const String &p_str) {
  841. int strlen = p_str.length();
  842. CharString cstr = p_str.ascii();
  843. Vector<uint8_t> buf;
  844. buf.resize(strlen / 4 * 3 + 1 + 1);
  845. uint8_t *w = buf.ptrw();
  846. size_t len = 0;
  847. ERR_FAIL_COND_V(CryptoCore::b64_decode(&w[0], buf.size(), &len, (unsigned char *)cstr.get_data(), strlen) != OK, String());
  848. w[len] = 0;
  849. String ret = String::utf8((char *)&w[0]);
  850. return ret;
  851. }
  852. void Marshalls::_bind_methods() {
  853. ClassDB::bind_method(D_METHOD("variant_to_base64", "variant", "full_objects"), &Marshalls::variant_to_base64, DEFVAL(false));
  854. ClassDB::bind_method(D_METHOD("base64_to_variant", "base64_str", "allow_objects"), &Marshalls::base64_to_variant, DEFVAL(false));
  855. ClassDB::bind_method(D_METHOD("raw_to_base64", "array"), &Marshalls::raw_to_base64);
  856. ClassDB::bind_method(D_METHOD("base64_to_raw", "base64_str"), &Marshalls::base64_to_raw);
  857. ClassDB::bind_method(D_METHOD("utf8_to_base64", "utf8_str"), &Marshalls::utf8_to_base64);
  858. ClassDB::bind_method(D_METHOD("base64_to_utf8", "base64_str"), &Marshalls::base64_to_utf8);
  859. }
  860. ////// Semaphore //////
  861. void Semaphore::wait() {
  862. semaphore.wait();
  863. }
  864. bool Semaphore::try_wait() {
  865. return semaphore.try_wait();
  866. }
  867. void Semaphore::post() {
  868. semaphore.post();
  869. }
  870. void Semaphore::_bind_methods() {
  871. ClassDB::bind_method(D_METHOD("wait"), &Semaphore::wait);
  872. ClassDB::bind_method(D_METHOD("try_wait"), &Semaphore::try_wait);
  873. ClassDB::bind_method(D_METHOD("post"), &Semaphore::post);
  874. }
  875. ////// Mutex //////
  876. void Mutex::lock() {
  877. mutex.lock();
  878. }
  879. bool Mutex::try_lock() {
  880. return mutex.try_lock();
  881. }
  882. void Mutex::unlock() {
  883. mutex.unlock();
  884. }
  885. void Mutex::_bind_methods() {
  886. ClassDB::bind_method(D_METHOD("lock"), &Mutex::lock);
  887. ClassDB::bind_method(D_METHOD("try_lock"), &Mutex::try_lock);
  888. ClassDB::bind_method(D_METHOD("unlock"), &Mutex::unlock);
  889. }
  890. ////// Thread //////
  891. void Thread::_start_func(void *ud) {
  892. Ref<Thread> *tud = (Ref<Thread> *)ud;
  893. Ref<Thread> t = *tud;
  894. memdelete(tud);
  895. Object *target_instance = t->target_callable.get_object();
  896. if (!target_instance) {
  897. t->running.clear();
  898. ERR_FAIL_MSG(vformat("Could not call function '%s' on previously freed instance to start thread %s.", t->target_callable.get_method(), t->get_id()));
  899. }
  900. String func_name = t->target_callable.is_custom() ? t->target_callable.get_custom()->get_as_text() : String(t->target_callable.get_method());
  901. ::Thread::set_name(func_name);
  902. Callable::CallError ce;
  903. t->target_callable.callp(nullptr, 0, t->ret, ce);
  904. if (ce.error != Callable::CallError::CALL_OK) {
  905. t->running.clear();
  906. ERR_FAIL_MSG("Could not call function '" + func_name + "' to start thread " + t->get_id() + ": " + Variant::get_callable_error_text(t->target_callable, nullptr, 0, ce) + ".");
  907. }
  908. t->running.clear();
  909. }
  910. Error Thread::start(const Callable &p_callable, Priority p_priority) {
  911. ERR_FAIL_COND_V_MSG(is_started(), ERR_ALREADY_IN_USE, "Thread already started.");
  912. ERR_FAIL_COND_V(!p_callable.is_valid(), ERR_INVALID_PARAMETER);
  913. ERR_FAIL_INDEX_V(p_priority, PRIORITY_MAX, ERR_INVALID_PARAMETER);
  914. ret = Variant();
  915. target_callable = p_callable;
  916. running.set();
  917. Ref<Thread> *ud = memnew(Ref<Thread>(this));
  918. ::Thread::Settings s;
  919. s.priority = (::Thread::Priority)p_priority;
  920. thread.start(_start_func, ud, s);
  921. return OK;
  922. }
  923. String Thread::get_id() const {
  924. return itos(thread.get_id());
  925. }
  926. bool Thread::is_started() const {
  927. return thread.is_started();
  928. }
  929. bool Thread::is_alive() const {
  930. return running.is_set();
  931. }
  932. Variant Thread::wait_to_finish() {
  933. ERR_FAIL_COND_V_MSG(!is_started(), Variant(), "Thread must have been started to wait for its completion.");
  934. thread.wait_to_finish();
  935. Variant r = ret;
  936. target_callable = Callable();
  937. return r;
  938. }
  939. void Thread::_bind_methods() {
  940. ClassDB::bind_method(D_METHOD("start", "callable", "priority"), &Thread::start, DEFVAL(PRIORITY_NORMAL));
  941. ClassDB::bind_method(D_METHOD("get_id"), &Thread::get_id);
  942. ClassDB::bind_method(D_METHOD("is_started"), &Thread::is_started);
  943. ClassDB::bind_method(D_METHOD("is_alive"), &Thread::is_alive);
  944. ClassDB::bind_method(D_METHOD("wait_to_finish"), &Thread::wait_to_finish);
  945. BIND_ENUM_CONSTANT(PRIORITY_LOW);
  946. BIND_ENUM_CONSTANT(PRIORITY_NORMAL);
  947. BIND_ENUM_CONSTANT(PRIORITY_HIGH);
  948. }
  949. namespace special {
  950. ////// ClassDB //////
  951. PackedStringArray ClassDB::get_class_list() const {
  952. List<StringName> classes;
  953. ::ClassDB::get_class_list(&classes);
  954. PackedStringArray ret;
  955. ret.resize(classes.size());
  956. int idx = 0;
  957. for (const StringName &E : classes) {
  958. ret.set(idx++, E);
  959. }
  960. return ret;
  961. }
  962. PackedStringArray ClassDB::get_inheriters_from_class(const StringName &p_class) const {
  963. List<StringName> classes;
  964. ::ClassDB::get_inheriters_from_class(p_class, &classes);
  965. PackedStringArray ret;
  966. ret.resize(classes.size());
  967. int idx = 0;
  968. for (const StringName &E : classes) {
  969. ret.set(idx++, E);
  970. }
  971. return ret;
  972. }
  973. StringName ClassDB::get_parent_class(const StringName &p_class) const {
  974. return ::ClassDB::get_parent_class(p_class);
  975. }
  976. bool ClassDB::class_exists(const StringName &p_class) const {
  977. return ::ClassDB::class_exists(p_class);
  978. }
  979. bool ClassDB::is_parent_class(const StringName &p_class, const StringName &p_inherits) const {
  980. return ::ClassDB::is_parent_class(p_class, p_inherits);
  981. }
  982. bool ClassDB::can_instantiate(const StringName &p_class) const {
  983. return ::ClassDB::can_instantiate(p_class);
  984. }
  985. Variant ClassDB::instantiate(const StringName &p_class) const {
  986. Object *obj = ::ClassDB::instantiate(p_class);
  987. if (!obj) {
  988. return Variant();
  989. }
  990. RefCounted *r = Object::cast_to<RefCounted>(obj);
  991. if (r) {
  992. return Ref<RefCounted>(r);
  993. } else {
  994. return obj;
  995. }
  996. }
  997. bool ClassDB::has_signal(StringName p_class, StringName p_signal) const {
  998. return ::ClassDB::has_signal(p_class, p_signal);
  999. }
  1000. Dictionary ClassDB::get_signal(StringName p_class, StringName p_signal) const {
  1001. MethodInfo signal;
  1002. if (::ClassDB::get_signal(p_class, p_signal, &signal)) {
  1003. return signal.operator Dictionary();
  1004. } else {
  1005. return Dictionary();
  1006. }
  1007. }
  1008. TypedArray<Dictionary> ClassDB::get_signal_list(StringName p_class, bool p_no_inheritance) const {
  1009. List<MethodInfo> signals;
  1010. ::ClassDB::get_signal_list(p_class, &signals, p_no_inheritance);
  1011. TypedArray<Dictionary> ret;
  1012. for (const MethodInfo &E : signals) {
  1013. ret.push_back(E.operator Dictionary());
  1014. }
  1015. return ret;
  1016. }
  1017. TypedArray<Dictionary> ClassDB::get_property_list(StringName p_class, bool p_no_inheritance) const {
  1018. List<PropertyInfo> plist;
  1019. ::ClassDB::get_property_list(p_class, &plist, p_no_inheritance);
  1020. TypedArray<Dictionary> ret;
  1021. for (const PropertyInfo &E : plist) {
  1022. ret.push_back(E.operator Dictionary());
  1023. }
  1024. return ret;
  1025. }
  1026. Variant ClassDB::get_property(Object *p_object, const StringName &p_property) const {
  1027. Variant ret;
  1028. ::ClassDB::get_property(p_object, p_property, ret);
  1029. return ret;
  1030. }
  1031. Error ClassDB::set_property(Object *p_object, const StringName &p_property, const Variant &p_value) const {
  1032. Variant ret;
  1033. bool valid;
  1034. if (!::ClassDB::set_property(p_object, p_property, p_value, &valid)) {
  1035. return ERR_UNAVAILABLE;
  1036. } else if (!valid) {
  1037. return ERR_INVALID_DATA;
  1038. }
  1039. return OK;
  1040. }
  1041. bool ClassDB::has_method(StringName p_class, StringName p_method, bool p_no_inheritance) const {
  1042. return ::ClassDB::has_method(p_class, p_method, p_no_inheritance);
  1043. }
  1044. TypedArray<Dictionary> ClassDB::get_method_list(StringName p_class, bool p_no_inheritance) const {
  1045. List<MethodInfo> methods;
  1046. ::ClassDB::get_method_list(p_class, &methods, p_no_inheritance);
  1047. TypedArray<Dictionary> ret;
  1048. for (const MethodInfo &E : methods) {
  1049. #ifdef DEBUG_METHODS_ENABLED
  1050. ret.push_back(E.operator Dictionary());
  1051. #else
  1052. Dictionary dict;
  1053. dict["name"] = E.name;
  1054. ret.push_back(dict);
  1055. #endif
  1056. }
  1057. return ret;
  1058. }
  1059. PackedStringArray ClassDB::get_integer_constant_list(const StringName &p_class, bool p_no_inheritance) const {
  1060. List<String> constants;
  1061. ::ClassDB::get_integer_constant_list(p_class, &constants, p_no_inheritance);
  1062. PackedStringArray ret;
  1063. ret.resize(constants.size());
  1064. int idx = 0;
  1065. for (const String &E : constants) {
  1066. ret.set(idx++, E);
  1067. }
  1068. return ret;
  1069. }
  1070. bool ClassDB::has_integer_constant(const StringName &p_class, const StringName &p_name) const {
  1071. bool success;
  1072. ::ClassDB::get_integer_constant(p_class, p_name, &success);
  1073. return success;
  1074. }
  1075. int64_t ClassDB::get_integer_constant(const StringName &p_class, const StringName &p_name) const {
  1076. bool found;
  1077. int64_t c = ::ClassDB::get_integer_constant(p_class, p_name, &found);
  1078. ERR_FAIL_COND_V(!found, 0);
  1079. return c;
  1080. }
  1081. bool ClassDB::has_enum(const StringName &p_class, const StringName &p_name, bool p_no_inheritance) const {
  1082. return ::ClassDB::has_enum(p_class, p_name, p_no_inheritance);
  1083. }
  1084. PackedStringArray ClassDB::get_enum_list(const StringName &p_class, bool p_no_inheritance) const {
  1085. List<StringName> enums;
  1086. ::ClassDB::get_enum_list(p_class, &enums, p_no_inheritance);
  1087. PackedStringArray ret;
  1088. ret.resize(enums.size());
  1089. int idx = 0;
  1090. for (const StringName &E : enums) {
  1091. ret.set(idx++, E);
  1092. }
  1093. return ret;
  1094. }
  1095. PackedStringArray ClassDB::get_enum_constants(const StringName &p_class, const StringName &p_enum, bool p_no_inheritance) const {
  1096. List<StringName> constants;
  1097. ::ClassDB::get_enum_constants(p_class, p_enum, &constants, p_no_inheritance);
  1098. PackedStringArray ret;
  1099. ret.resize(constants.size());
  1100. int idx = 0;
  1101. for (const StringName &E : constants) {
  1102. ret.set(idx++, E);
  1103. }
  1104. return ret;
  1105. }
  1106. StringName ClassDB::get_integer_constant_enum(const StringName &p_class, const StringName &p_name, bool p_no_inheritance) const {
  1107. return ::ClassDB::get_integer_constant_enum(p_class, p_name, p_no_inheritance);
  1108. }
  1109. bool ClassDB::is_class_enabled(StringName p_class) const {
  1110. return ::ClassDB::is_class_enabled(p_class);
  1111. }
  1112. void ClassDB::_bind_methods() {
  1113. ::ClassDB::bind_method(D_METHOD("get_class_list"), &ClassDB::get_class_list);
  1114. ::ClassDB::bind_method(D_METHOD("get_inheriters_from_class", "class"), &ClassDB::get_inheriters_from_class);
  1115. ::ClassDB::bind_method(D_METHOD("get_parent_class", "class"), &ClassDB::get_parent_class);
  1116. ::ClassDB::bind_method(D_METHOD("class_exists", "class"), &ClassDB::class_exists);
  1117. ::ClassDB::bind_method(D_METHOD("is_parent_class", "class", "inherits"), &ClassDB::is_parent_class);
  1118. ::ClassDB::bind_method(D_METHOD("can_instantiate", "class"), &ClassDB::can_instantiate);
  1119. ::ClassDB::bind_method(D_METHOD("instantiate", "class"), &ClassDB::instantiate);
  1120. ::ClassDB::bind_method(D_METHOD("class_has_signal", "class", "signal"), &ClassDB::has_signal);
  1121. ::ClassDB::bind_method(D_METHOD("class_get_signal", "class", "signal"), &ClassDB::get_signal);
  1122. ::ClassDB::bind_method(D_METHOD("class_get_signal_list", "class", "no_inheritance"), &ClassDB::get_signal_list, DEFVAL(false));
  1123. ::ClassDB::bind_method(D_METHOD("class_get_property_list", "class", "no_inheritance"), &ClassDB::get_property_list, DEFVAL(false));
  1124. ::ClassDB::bind_method(D_METHOD("class_get_property", "object", "property"), &ClassDB::get_property);
  1125. ::ClassDB::bind_method(D_METHOD("class_set_property", "object", "property", "value"), &ClassDB::set_property);
  1126. ::ClassDB::bind_method(D_METHOD("class_has_method", "class", "method", "no_inheritance"), &ClassDB::has_method, DEFVAL(false));
  1127. ::ClassDB::bind_method(D_METHOD("class_get_method_list", "class", "no_inheritance"), &ClassDB::get_method_list, DEFVAL(false));
  1128. ::ClassDB::bind_method(D_METHOD("class_get_integer_constant_list", "class", "no_inheritance"), &ClassDB::get_integer_constant_list, DEFVAL(false));
  1129. ::ClassDB::bind_method(D_METHOD("class_has_integer_constant", "class", "name"), &ClassDB::has_integer_constant);
  1130. ::ClassDB::bind_method(D_METHOD("class_get_integer_constant", "class", "name"), &ClassDB::get_integer_constant);
  1131. ::ClassDB::bind_method(D_METHOD("class_has_enum", "class", "name", "no_inheritance"), &ClassDB::has_enum, DEFVAL(false));
  1132. ::ClassDB::bind_method(D_METHOD("class_get_enum_list", "class", "no_inheritance"), &ClassDB::get_enum_list, DEFVAL(false));
  1133. ::ClassDB::bind_method(D_METHOD("class_get_enum_constants", "class", "enum", "no_inheritance"), &ClassDB::get_enum_constants, DEFVAL(false));
  1134. ::ClassDB::bind_method(D_METHOD("class_get_integer_constant_enum", "class", "name", "no_inheritance"), &ClassDB::get_integer_constant_enum, DEFVAL(false));
  1135. ::ClassDB::bind_method(D_METHOD("is_class_enabled", "class"), &ClassDB::is_class_enabled);
  1136. }
  1137. } // namespace special
  1138. ////// Engine //////
  1139. void Engine::set_physics_ticks_per_second(int p_ips) {
  1140. ::Engine::get_singleton()->set_physics_ticks_per_second(p_ips);
  1141. }
  1142. int Engine::get_physics_ticks_per_second() const {
  1143. return ::Engine::get_singleton()->get_physics_ticks_per_second();
  1144. }
  1145. void Engine::set_max_physics_steps_per_frame(int p_max_physics_steps) {
  1146. ::Engine::get_singleton()->set_max_physics_steps_per_frame(p_max_physics_steps);
  1147. }
  1148. int Engine::get_max_physics_steps_per_frame() const {
  1149. return ::Engine::get_singleton()->get_max_physics_steps_per_frame();
  1150. }
  1151. void Engine::set_physics_jitter_fix(double p_threshold) {
  1152. ::Engine::get_singleton()->set_physics_jitter_fix(p_threshold);
  1153. }
  1154. double Engine::get_physics_jitter_fix() const {
  1155. return ::Engine::get_singleton()->get_physics_jitter_fix();
  1156. }
  1157. double Engine::get_physics_interpolation_fraction() const {
  1158. return ::Engine::get_singleton()->get_physics_interpolation_fraction();
  1159. }
  1160. void Engine::set_max_fps(int p_fps) {
  1161. ::Engine::get_singleton()->set_max_fps(p_fps);
  1162. }
  1163. int Engine::get_max_fps() const {
  1164. return ::Engine::get_singleton()->get_max_fps();
  1165. }
  1166. double Engine::get_frames_per_second() const {
  1167. return ::Engine::get_singleton()->get_frames_per_second();
  1168. }
  1169. uint64_t Engine::get_physics_frames() const {
  1170. return ::Engine::get_singleton()->get_physics_frames();
  1171. }
  1172. uint64_t Engine::get_process_frames() const {
  1173. return ::Engine::get_singleton()->get_process_frames();
  1174. }
  1175. void Engine::set_time_scale(double p_scale) {
  1176. ::Engine::get_singleton()->set_time_scale(p_scale);
  1177. }
  1178. double Engine::get_time_scale() {
  1179. return ::Engine::get_singleton()->get_time_scale();
  1180. }
  1181. int Engine::get_frames_drawn() {
  1182. return ::Engine::get_singleton()->get_frames_drawn();
  1183. }
  1184. MainLoop *Engine::get_main_loop() const {
  1185. // Needs to remain in OS, since it's actually OS that interacts with it, but it's better exposed here
  1186. return ::OS::get_singleton()->get_main_loop();
  1187. }
  1188. Dictionary Engine::get_version_info() const {
  1189. return ::Engine::get_singleton()->get_version_info();
  1190. }
  1191. Dictionary Engine::get_author_info() const {
  1192. return ::Engine::get_singleton()->get_author_info();
  1193. }
  1194. TypedArray<Dictionary> Engine::get_copyright_info() const {
  1195. return ::Engine::get_singleton()->get_copyright_info();
  1196. }
  1197. Dictionary Engine::get_donor_info() const {
  1198. return ::Engine::get_singleton()->get_donor_info();
  1199. }
  1200. Dictionary Engine::get_license_info() const {
  1201. return ::Engine::get_singleton()->get_license_info();
  1202. }
  1203. String Engine::get_license_text() const {
  1204. return ::Engine::get_singleton()->get_license_text();
  1205. }
  1206. String Engine::get_architecture_name() const {
  1207. return ::Engine::get_singleton()->get_architecture_name();
  1208. }
  1209. bool Engine::is_in_physics_frame() const {
  1210. return ::Engine::get_singleton()->is_in_physics_frame();
  1211. }
  1212. bool Engine::has_singleton(const StringName &p_name) const {
  1213. return ::Engine::get_singleton()->has_singleton(p_name);
  1214. }
  1215. Object *Engine::get_singleton_object(const StringName &p_name) const {
  1216. return ::Engine::get_singleton()->get_singleton_object(p_name);
  1217. }
  1218. void Engine::register_singleton(const StringName &p_name, Object *p_object) {
  1219. ERR_FAIL_COND_MSG(has_singleton(p_name), "Singleton already registered: " + String(p_name));
  1220. ERR_FAIL_COND_MSG(!String(p_name).is_valid_identifier(), "Singleton name is not a valid identifier: " + p_name);
  1221. ::Engine::Singleton s;
  1222. s.class_name = p_name;
  1223. s.name = p_name;
  1224. s.ptr = p_object;
  1225. s.user_created = true;
  1226. ::Engine::get_singleton()->add_singleton(s);
  1227. }
  1228. void Engine::unregister_singleton(const StringName &p_name) {
  1229. ERR_FAIL_COND_MSG(!has_singleton(p_name), "Attempt to remove unregistered singleton: " + String(p_name));
  1230. ERR_FAIL_COND_MSG(!::Engine::get_singleton()->is_singleton_user_created(p_name), "Attempt to remove non-user created singleton: " + String(p_name));
  1231. ::Engine::get_singleton()->remove_singleton(p_name);
  1232. }
  1233. Vector<String> Engine::get_singleton_list() const {
  1234. List<::Engine::Singleton> singletons;
  1235. ::Engine::get_singleton()->get_singletons(&singletons);
  1236. Vector<String> ret;
  1237. for (List<::Engine::Singleton>::Element *E = singletons.front(); E; E = E->next()) {
  1238. ret.push_back(E->get().name);
  1239. }
  1240. return ret;
  1241. }
  1242. Error Engine::register_script_language(ScriptLanguage *p_language) {
  1243. return ScriptServer::register_language(p_language);
  1244. }
  1245. Error Engine::unregister_script_language(const ScriptLanguage *p_language) {
  1246. return ScriptServer::unregister_language(p_language);
  1247. }
  1248. int Engine::get_script_language_count() {
  1249. return ScriptServer::get_language_count();
  1250. }
  1251. ScriptLanguage *Engine::get_script_language(int p_index) const {
  1252. return ScriptServer::get_language(p_index);
  1253. }
  1254. void Engine::set_editor_hint(bool p_enabled) {
  1255. ::Engine::get_singleton()->set_editor_hint(p_enabled);
  1256. }
  1257. bool Engine::is_editor_hint() const {
  1258. return ::Engine::get_singleton()->is_editor_hint();
  1259. }
  1260. String Engine::get_write_movie_path() const {
  1261. return ::Engine::get_singleton()->get_write_movie_path();
  1262. }
  1263. void Engine::set_print_error_messages(bool p_enabled) {
  1264. ::Engine::get_singleton()->set_print_error_messages(p_enabled);
  1265. }
  1266. bool Engine::is_printing_error_messages() const {
  1267. return ::Engine::get_singleton()->is_printing_error_messages();
  1268. }
  1269. void Engine::_bind_methods() {
  1270. ClassDB::bind_method(D_METHOD("set_physics_ticks_per_second", "physics_ticks_per_second"), &Engine::set_physics_ticks_per_second);
  1271. ClassDB::bind_method(D_METHOD("get_physics_ticks_per_second"), &Engine::get_physics_ticks_per_second);
  1272. ClassDB::bind_method(D_METHOD("set_max_physics_steps_per_frame", "max_physics_steps"), &Engine::set_max_physics_steps_per_frame);
  1273. ClassDB::bind_method(D_METHOD("get_max_physics_steps_per_frame"), &Engine::get_max_physics_steps_per_frame);
  1274. ClassDB::bind_method(D_METHOD("set_physics_jitter_fix", "physics_jitter_fix"), &Engine::set_physics_jitter_fix);
  1275. ClassDB::bind_method(D_METHOD("get_physics_jitter_fix"), &Engine::get_physics_jitter_fix);
  1276. ClassDB::bind_method(D_METHOD("get_physics_interpolation_fraction"), &Engine::get_physics_interpolation_fraction);
  1277. ClassDB::bind_method(D_METHOD("set_max_fps", "max_fps"), &Engine::set_max_fps);
  1278. ClassDB::bind_method(D_METHOD("get_max_fps"), &Engine::get_max_fps);
  1279. ClassDB::bind_method(D_METHOD("set_time_scale", "time_scale"), &Engine::set_time_scale);
  1280. ClassDB::bind_method(D_METHOD("get_time_scale"), &Engine::get_time_scale);
  1281. ClassDB::bind_method(D_METHOD("get_frames_drawn"), &Engine::get_frames_drawn);
  1282. ClassDB::bind_method(D_METHOD("get_frames_per_second"), &Engine::get_frames_per_second);
  1283. ClassDB::bind_method(D_METHOD("get_physics_frames"), &Engine::get_physics_frames);
  1284. ClassDB::bind_method(D_METHOD("get_process_frames"), &Engine::get_process_frames);
  1285. ClassDB::bind_method(D_METHOD("get_main_loop"), &Engine::get_main_loop);
  1286. ClassDB::bind_method(D_METHOD("get_version_info"), &Engine::get_version_info);
  1287. ClassDB::bind_method(D_METHOD("get_author_info"), &Engine::get_author_info);
  1288. ClassDB::bind_method(D_METHOD("get_copyright_info"), &Engine::get_copyright_info);
  1289. ClassDB::bind_method(D_METHOD("get_donor_info"), &Engine::get_donor_info);
  1290. ClassDB::bind_method(D_METHOD("get_license_info"), &Engine::get_license_info);
  1291. ClassDB::bind_method(D_METHOD("get_license_text"), &Engine::get_license_text);
  1292. ClassDB::bind_method(D_METHOD("get_architecture_name"), &Engine::get_architecture_name);
  1293. ClassDB::bind_method(D_METHOD("is_in_physics_frame"), &Engine::is_in_physics_frame);
  1294. ClassDB::bind_method(D_METHOD("has_singleton", "name"), &Engine::has_singleton);
  1295. ClassDB::bind_method(D_METHOD("get_singleton", "name"), &Engine::get_singleton_object);
  1296. ClassDB::bind_method(D_METHOD("register_singleton", "name", "instance"), &Engine::register_singleton);
  1297. ClassDB::bind_method(D_METHOD("unregister_singleton", "name"), &Engine::unregister_singleton);
  1298. ClassDB::bind_method(D_METHOD("get_singleton_list"), &Engine::get_singleton_list);
  1299. ClassDB::bind_method(D_METHOD("register_script_language", "language"), &Engine::register_script_language);
  1300. ClassDB::bind_method(D_METHOD("unregister_script_language", "language"), &Engine::unregister_script_language);
  1301. ClassDB::bind_method(D_METHOD("get_script_language_count"), &Engine::get_script_language_count);
  1302. ClassDB::bind_method(D_METHOD("get_script_language", "index"), &Engine::get_script_language);
  1303. ClassDB::bind_method(D_METHOD("is_editor_hint"), &Engine::is_editor_hint);
  1304. ClassDB::bind_method(D_METHOD("get_write_movie_path"), &Engine::get_write_movie_path);
  1305. ClassDB::bind_method(D_METHOD("set_print_error_messages", "enabled"), &Engine::set_print_error_messages);
  1306. ClassDB::bind_method(D_METHOD("is_printing_error_messages"), &Engine::is_printing_error_messages);
  1307. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "print_error_messages"), "set_print_error_messages", "is_printing_error_messages");
  1308. ADD_PROPERTY(PropertyInfo(Variant::INT, "physics_ticks_per_second"), "set_physics_ticks_per_second", "get_physics_ticks_per_second");
  1309. ADD_PROPERTY(PropertyInfo(Variant::INT, "max_physics_steps_per_frame"), "set_max_physics_steps_per_frame", "get_max_physics_steps_per_frame");
  1310. ADD_PROPERTY(PropertyInfo(Variant::INT, "max_fps"), "set_max_fps", "get_max_fps");
  1311. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "time_scale"), "set_time_scale", "get_time_scale");
  1312. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "physics_jitter_fix"), "set_physics_jitter_fix", "get_physics_jitter_fix");
  1313. }
  1314. Engine *Engine::singleton = nullptr;
  1315. ////// EngineDebugger //////
  1316. bool EngineDebugger::is_active() {
  1317. return ::EngineDebugger::is_active();
  1318. }
  1319. void EngineDebugger::register_profiler(const StringName &p_name, Ref<EngineProfiler> p_profiler) {
  1320. ERR_FAIL_COND(p_profiler.is_null());
  1321. ERR_FAIL_COND_MSG(p_profiler->is_bound(), "Profiler already registered.");
  1322. ERR_FAIL_COND_MSG(profilers.has(p_name) || has_profiler(p_name), "Profiler name already in use: " + p_name);
  1323. Error err = p_profiler->bind(p_name);
  1324. ERR_FAIL_COND_MSG(err != OK, "Profiler failed to register with error: " + itos(err));
  1325. profilers.insert(p_name, p_profiler);
  1326. }
  1327. void EngineDebugger::unregister_profiler(const StringName &p_name) {
  1328. ERR_FAIL_COND_MSG(!profilers.has(p_name), "Profiler not registered: " + p_name);
  1329. profilers[p_name]->unbind();
  1330. profilers.erase(p_name);
  1331. }
  1332. bool EngineDebugger::is_profiling(const StringName &p_name) {
  1333. return ::EngineDebugger::is_profiling(p_name);
  1334. }
  1335. bool EngineDebugger::has_profiler(const StringName &p_name) {
  1336. return ::EngineDebugger::has_profiler(p_name);
  1337. }
  1338. void EngineDebugger::profiler_add_frame_data(const StringName &p_name, const Array &p_data) {
  1339. ::EngineDebugger::profiler_add_frame_data(p_name, p_data);
  1340. }
  1341. void EngineDebugger::profiler_enable(const StringName &p_name, bool p_enabled, const Array &p_opts) {
  1342. if (::EngineDebugger::get_singleton()) {
  1343. ::EngineDebugger::get_singleton()->profiler_enable(p_name, p_enabled, p_opts);
  1344. }
  1345. }
  1346. void EngineDebugger::register_message_capture(const StringName &p_name, const Callable &p_callable) {
  1347. ERR_FAIL_COND_MSG(captures.has(p_name) || has_capture(p_name), "Capture already registered: " + p_name);
  1348. captures.insert(p_name, p_callable);
  1349. Callable &c = captures[p_name];
  1350. ::EngineDebugger::Capture capture(&c, &EngineDebugger::call_capture);
  1351. ::EngineDebugger::register_message_capture(p_name, capture);
  1352. }
  1353. void EngineDebugger::unregister_message_capture(const StringName &p_name) {
  1354. ERR_FAIL_COND_MSG(!captures.has(p_name), "Capture not registered: " + p_name);
  1355. ::EngineDebugger::unregister_message_capture(p_name);
  1356. captures.erase(p_name);
  1357. }
  1358. bool EngineDebugger::has_capture(const StringName &p_name) {
  1359. return ::EngineDebugger::has_capture(p_name);
  1360. }
  1361. void EngineDebugger::send_message(const String &p_msg, const Array &p_data) {
  1362. ERR_FAIL_COND_MSG(!::EngineDebugger::is_active(), "Can't send message. No active debugger");
  1363. ::EngineDebugger::get_singleton()->send_message(p_msg, p_data);
  1364. }
  1365. Error EngineDebugger::call_capture(void *p_user, const String &p_cmd, const Array &p_data, bool &r_captured) {
  1366. Callable &capture = *(Callable *)p_user;
  1367. if (capture.is_null()) {
  1368. return FAILED;
  1369. }
  1370. Variant cmd = p_cmd, data = p_data;
  1371. const Variant *args[2] = { &cmd, &data };
  1372. Variant retval;
  1373. Callable::CallError err;
  1374. capture.callp(args, 2, retval, err);
  1375. ERR_FAIL_COND_V_MSG(err.error != Callable::CallError::CALL_OK, FAILED, "Error calling 'capture' to callable: " + Variant::get_callable_error_text(capture, args, 2, err));
  1376. ERR_FAIL_COND_V_MSG(retval.get_type() != Variant::BOOL, FAILED, "Error calling 'capture' to callable: " + String(capture) + ". Return type is not bool.");
  1377. r_captured = retval;
  1378. return OK;
  1379. }
  1380. EngineDebugger::~EngineDebugger() {
  1381. for (const KeyValue<StringName, Callable> &E : captures) {
  1382. ::EngineDebugger::unregister_message_capture(E.key);
  1383. }
  1384. captures.clear();
  1385. }
  1386. EngineDebugger *EngineDebugger::singleton = nullptr;
  1387. void EngineDebugger::_bind_methods() {
  1388. ClassDB::bind_method(D_METHOD("is_active"), &EngineDebugger::is_active);
  1389. ClassDB::bind_method(D_METHOD("register_profiler", "name", "profiler"), &EngineDebugger::register_profiler);
  1390. ClassDB::bind_method(D_METHOD("unregister_profiler", "name"), &EngineDebugger::unregister_profiler);
  1391. ClassDB::bind_method(D_METHOD("is_profiling", "name"), &EngineDebugger::is_profiling);
  1392. ClassDB::bind_method(D_METHOD("has_profiler", "name"), &EngineDebugger::has_profiler);
  1393. ClassDB::bind_method(D_METHOD("profiler_add_frame_data", "name", "data"), &EngineDebugger::profiler_add_frame_data);
  1394. ClassDB::bind_method(D_METHOD("profiler_enable", "name", "enable", "arguments"), &EngineDebugger::profiler_enable, DEFVAL(Array()));
  1395. ClassDB::bind_method(D_METHOD("register_message_capture", "name", "callable"), &EngineDebugger::register_message_capture);
  1396. ClassDB::bind_method(D_METHOD("unregister_message_capture", "name"), &EngineDebugger::unregister_message_capture);
  1397. ClassDB::bind_method(D_METHOD("has_capture", "name"), &EngineDebugger::has_capture);
  1398. ClassDB::bind_method(D_METHOD("send_message", "message", "data"), &EngineDebugger::send_message);
  1399. }
  1400. } // namespace core_bind