engine.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. /**************************************************************************/
  2. /* engine.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 "engine.h"
  31. #include "core/authors.gen.h"
  32. #include "core/config/project_settings.h"
  33. #include "core/donors.gen.h"
  34. #include "core/license.gen.h"
  35. #include "core/variant/typed_array.h"
  36. #include "core/version.h"
  37. void Engine::set_physics_ticks_per_second(int p_ips) {
  38. ERR_FAIL_COND_MSG(p_ips <= 0, "Engine iterations per second must be greater than 0.");
  39. ips = p_ips;
  40. }
  41. int Engine::get_physics_ticks_per_second() const {
  42. return ips;
  43. }
  44. void Engine::set_max_physics_steps_per_frame(int p_max_physics_steps) {
  45. ERR_FAIL_COND_MSG(p_max_physics_steps <= 0, "Maximum number of physics steps per frame must be greater than 0.");
  46. max_physics_steps_per_frame = p_max_physics_steps;
  47. }
  48. int Engine::get_max_physics_steps_per_frame() const {
  49. return max_physics_steps_per_frame;
  50. }
  51. void Engine::set_physics_jitter_fix(double p_threshold) {
  52. if (p_threshold < 0) {
  53. p_threshold = 0;
  54. }
  55. physics_jitter_fix = p_threshold;
  56. }
  57. double Engine::get_physics_jitter_fix() const {
  58. return physics_jitter_fix;
  59. }
  60. void Engine::set_max_fps(int p_fps) {
  61. _max_fps = p_fps > 0 ? p_fps : 0;
  62. }
  63. int Engine::get_max_fps() const {
  64. return _max_fps;
  65. }
  66. void Engine::set_audio_output_latency(int p_msec) {
  67. _audio_output_latency = p_msec > 1 ? p_msec : 1;
  68. }
  69. int Engine::get_audio_output_latency() const {
  70. return _audio_output_latency;
  71. }
  72. uint64_t Engine::get_frames_drawn() {
  73. return frames_drawn;
  74. }
  75. void Engine::set_frame_delay(uint32_t p_msec) {
  76. _frame_delay = p_msec;
  77. }
  78. uint32_t Engine::get_frame_delay() const {
  79. return _frame_delay;
  80. }
  81. void Engine::set_time_scale(double p_scale) {
  82. _time_scale = p_scale;
  83. }
  84. double Engine::get_time_scale() const {
  85. return _time_scale;
  86. }
  87. Dictionary Engine::get_version_info() const {
  88. Dictionary dict;
  89. dict["major"] = VERSION_MAJOR;
  90. dict["minor"] = VERSION_MINOR;
  91. dict["patch"] = VERSION_PATCH;
  92. dict["hex"] = VERSION_HEX;
  93. dict["status"] = VERSION_STATUS;
  94. dict["build"] = VERSION_BUILD;
  95. dict["year"] = VERSION_YEAR;
  96. String hash = String(VERSION_HASH);
  97. dict["hash"] = hash.is_empty() ? String("unknown") : hash;
  98. String stringver = String(dict["major"]) + "." + String(dict["minor"]);
  99. if ((int)dict["patch"] != 0) {
  100. stringver += "." + String(dict["patch"]);
  101. }
  102. stringver += "-" + String(dict["status"]) + " (" + String(dict["build"]) + ")";
  103. dict["string"] = stringver;
  104. return dict;
  105. }
  106. static Array array_from_info(const char *const *info_list) {
  107. Array arr;
  108. for (int i = 0; info_list[i] != nullptr; i++) {
  109. arr.push_back(String::utf8(info_list[i]));
  110. }
  111. return arr;
  112. }
  113. static Array array_from_info_count(const char *const *info_list, int info_count) {
  114. Array arr;
  115. for (int i = 0; i < info_count; i++) {
  116. arr.push_back(String::utf8(info_list[i]));
  117. }
  118. return arr;
  119. }
  120. Dictionary Engine::get_author_info() const {
  121. Dictionary dict;
  122. dict["lead_developers"] = array_from_info(AUTHORS_LEAD_DEVELOPERS);
  123. dict["project_managers"] = array_from_info(AUTHORS_PROJECT_MANAGERS);
  124. dict["founders"] = array_from_info(AUTHORS_FOUNDERS);
  125. dict["developers"] = array_from_info(AUTHORS_DEVELOPERS);
  126. return dict;
  127. }
  128. TypedArray<Dictionary> Engine::get_copyright_info() const {
  129. TypedArray<Dictionary> components;
  130. for (int component_index = 0; component_index < COPYRIGHT_INFO_COUNT; component_index++) {
  131. const ComponentCopyright &cp_info = COPYRIGHT_INFO[component_index];
  132. Dictionary component_dict;
  133. component_dict["name"] = String::utf8(cp_info.name);
  134. Array parts;
  135. for (int i = 0; i < cp_info.part_count; i++) {
  136. const ComponentCopyrightPart &cp_part = cp_info.parts[i];
  137. Dictionary part_dict;
  138. part_dict["files"] = array_from_info_count(cp_part.files, cp_part.file_count);
  139. part_dict["copyright"] = array_from_info_count(cp_part.copyright_statements, cp_part.copyright_count);
  140. part_dict["license"] = String::utf8(cp_part.license);
  141. parts.push_back(part_dict);
  142. }
  143. component_dict["parts"] = parts;
  144. components.push_back(component_dict);
  145. }
  146. return components;
  147. }
  148. Dictionary Engine::get_donor_info() const {
  149. Dictionary donors;
  150. donors["patrons"] = array_from_info(DONORS_PATRONS);
  151. donors["platinum_sponsors"] = array_from_info(DONORS_SPONSORS_PLATINUM);
  152. donors["gold_sponsors"] = array_from_info(DONORS_SPONSORS_GOLD);
  153. donors["silver_sponsors"] = array_from_info(DONORS_SPONSORS_SILVER);
  154. donors["diamond_members"] = array_from_info(DONORS_MEMBERS_DIAMOND);
  155. donors["titanium_members"] = array_from_info(DONORS_MEMBERS_TITANIUM);
  156. donors["platinum_members"] = array_from_info(DONORS_MEMBERS_PLATINUM);
  157. donors["gold_members"] = array_from_info(DONORS_MEMBERS_GOLD);
  158. return donors;
  159. }
  160. Dictionary Engine::get_license_info() const {
  161. Dictionary licenses;
  162. for (int i = 0; i < LICENSE_COUNT; i++) {
  163. licenses[LICENSE_NAMES[i]] = LICENSE_BODIES[i];
  164. }
  165. return licenses;
  166. }
  167. String Engine::get_license_text() const {
  168. return String(GODOT_LICENSE_TEXT);
  169. }
  170. String Engine::get_architecture_name() const {
  171. #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__) || defined(_M_X64)
  172. return "x86_64";
  173. #elif defined(__i386) || defined(__i386__) || defined(_M_IX86)
  174. return "x86_32";
  175. #elif defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC)
  176. return "arm64";
  177. #elif defined(__arm__) || defined(_M_ARM)
  178. return "arm32";
  179. #elif defined(__riscv)
  180. #if __riscv_xlen == 8
  181. return "rv64";
  182. #else
  183. return "riscv";
  184. #endif
  185. #elif defined(__powerpc__)
  186. #if defined(__powerpc64__)
  187. return "ppc64";
  188. #else
  189. return "ppc";
  190. #endif
  191. #elif defined(__wasm__)
  192. #if defined(__wasm64__)
  193. return "wasm64";
  194. #elif defined(__wasm32__)
  195. return "wasm32";
  196. #endif
  197. #endif
  198. }
  199. bool Engine::is_abort_on_gpu_errors_enabled() const {
  200. return abort_on_gpu_errors;
  201. }
  202. int32_t Engine::get_gpu_index() const {
  203. return gpu_idx;
  204. }
  205. bool Engine::is_validation_layers_enabled() const {
  206. return use_validation_layers;
  207. }
  208. bool Engine::is_generate_spirv_debug_info_enabled() const {
  209. return generate_spirv_debug_info;
  210. }
  211. void Engine::set_print_error_messages(bool p_enabled) {
  212. CoreGlobals::print_error_enabled = p_enabled;
  213. }
  214. bool Engine::is_printing_error_messages() const {
  215. return CoreGlobals::print_error_enabled;
  216. }
  217. void Engine::add_singleton(const Singleton &p_singleton) {
  218. ERR_FAIL_COND_MSG(singleton_ptrs.has(p_singleton.name), vformat("Can't register singleton '%s' because it already exists.", p_singleton.name));
  219. singletons.push_back(p_singleton);
  220. singleton_ptrs[p_singleton.name] = p_singleton.ptr;
  221. }
  222. Object *Engine::get_singleton_object(const StringName &p_name) const {
  223. HashMap<StringName, Object *>::ConstIterator E = singleton_ptrs.find(p_name);
  224. ERR_FAIL_COND_V_MSG(!E, nullptr, vformat("Failed to retrieve non-existent singleton '%s'.", p_name));
  225. #ifdef TOOLS_ENABLED
  226. if (!is_editor_hint() && is_singleton_editor_only(p_name)) {
  227. ERR_FAIL_V_MSG(nullptr, vformat("Can't retrieve singleton '%s' outside of editor.", p_name));
  228. }
  229. #endif
  230. return E->value;
  231. }
  232. bool Engine::is_singleton_user_created(const StringName &p_name) const {
  233. ERR_FAIL_COND_V(!singleton_ptrs.has(p_name), false);
  234. for (const Singleton &E : singletons) {
  235. if (E.name == p_name && E.user_created) {
  236. return true;
  237. }
  238. }
  239. return false;
  240. }
  241. bool Engine::is_singleton_editor_only(const StringName &p_name) const {
  242. ERR_FAIL_COND_V(!singleton_ptrs.has(p_name), false);
  243. for (const Singleton &E : singletons) {
  244. if (E.name == p_name && E.editor_only) {
  245. return true;
  246. }
  247. }
  248. return false;
  249. }
  250. void Engine::remove_singleton(const StringName &p_name) {
  251. ERR_FAIL_COND(!singleton_ptrs.has(p_name));
  252. for (List<Singleton>::Element *E = singletons.front(); E; E = E->next()) {
  253. if (E->get().name == p_name) {
  254. singletons.erase(E);
  255. singleton_ptrs.erase(p_name);
  256. return;
  257. }
  258. }
  259. }
  260. bool Engine::has_singleton(const StringName &p_name) const {
  261. return singleton_ptrs.has(p_name);
  262. }
  263. void Engine::get_singletons(List<Singleton> *p_singletons) {
  264. for (const Singleton &E : singletons) {
  265. #ifdef TOOLS_ENABLED
  266. if (!is_editor_hint() && E.editor_only) {
  267. continue;
  268. }
  269. #endif
  270. p_singletons->push_back(E);
  271. }
  272. }
  273. String Engine::get_write_movie_path() const {
  274. return write_movie_path;
  275. }
  276. void Engine::set_write_movie_path(const String &p_path) {
  277. write_movie_path = p_path;
  278. }
  279. void Engine::set_shader_cache_path(const String &p_path) {
  280. shader_cache_path = p_path;
  281. }
  282. String Engine::get_shader_cache_path() const {
  283. return shader_cache_path;
  284. }
  285. Engine *Engine::singleton = nullptr;
  286. Engine *Engine::get_singleton() {
  287. return singleton;
  288. }
  289. Engine::Engine() {
  290. singleton = this;
  291. }
  292. Engine::Singleton::Singleton(const StringName &p_name, Object *p_ptr, const StringName &p_class_name) :
  293. name(p_name),
  294. ptr(p_ptr),
  295. class_name(p_class_name) {
  296. #ifdef DEBUG_ENABLED
  297. RefCounted *rc = Object::cast_to<RefCounted>(p_ptr);
  298. if (rc && !rc->is_referenced()) {
  299. WARN_PRINT("You must use Ref<> to ensure the lifetime of a RefCounted object intended to be used as a singleton.");
  300. }
  301. #endif
  302. }