script_language.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  1. /**************************************************************************/
  2. /* script_language.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 "script_language.h"
  31. #include "core/config/project_settings.h"
  32. #include "core/core_string_names.h"
  33. #include "core/debugger/engine_debugger.h"
  34. #include "core/debugger/script_debugger.h"
  35. #include <stdint.h>
  36. ScriptLanguage *ScriptServer::_languages[MAX_LANGUAGES];
  37. int ScriptServer::_language_count = 0;
  38. bool ScriptServer::scripting_enabled = true;
  39. bool ScriptServer::reload_scripts_on_save = false;
  40. SafeFlag ScriptServer::languages_finished; // Used until GH-76581 is fixed properly.
  41. ScriptEditRequestFunction ScriptServer::edit_request_func = nullptr;
  42. void Script::_notification(int p_what) {
  43. switch (p_what) {
  44. case NOTIFICATION_POSTINITIALIZE: {
  45. if (EngineDebugger::is_active()) {
  46. EngineDebugger::get_script_debugger()->set_break_language(get_language());
  47. }
  48. } break;
  49. }
  50. }
  51. Variant Script::_get_property_default_value(const StringName &p_property) {
  52. Variant ret;
  53. get_property_default_value(p_property, ret);
  54. return ret;
  55. }
  56. TypedArray<Dictionary> Script::_get_script_property_list() {
  57. TypedArray<Dictionary> ret;
  58. List<PropertyInfo> list;
  59. get_script_property_list(&list);
  60. for (const PropertyInfo &E : list) {
  61. ret.append(E.operator Dictionary());
  62. }
  63. return ret;
  64. }
  65. TypedArray<Dictionary> Script::_get_script_method_list() {
  66. TypedArray<Dictionary> ret;
  67. List<MethodInfo> list;
  68. get_script_method_list(&list);
  69. for (const MethodInfo &E : list) {
  70. ret.append(E.operator Dictionary());
  71. }
  72. return ret;
  73. }
  74. TypedArray<Dictionary> Script::_get_script_signal_list() {
  75. TypedArray<Dictionary> ret;
  76. List<MethodInfo> list;
  77. get_script_signal_list(&list);
  78. for (const MethodInfo &E : list) {
  79. ret.append(E.operator Dictionary());
  80. }
  81. return ret;
  82. }
  83. Dictionary Script::_get_script_constant_map() {
  84. Dictionary ret;
  85. HashMap<StringName, Variant> map;
  86. get_constants(&map);
  87. for (const KeyValue<StringName, Variant> &E : map) {
  88. ret[E.key] = E.value;
  89. }
  90. return ret;
  91. }
  92. #ifdef TOOLS_ENABLED
  93. PropertyInfo Script::get_class_category() const {
  94. String path = get_path();
  95. String scr_name;
  96. if (is_built_in()) {
  97. if (get_name().is_empty()) {
  98. scr_name = TTR("Built-in script");
  99. } else {
  100. scr_name = vformat("%s (%s)", get_name(), TTR("Built-in"));
  101. }
  102. } else {
  103. if (get_name().is_empty()) {
  104. scr_name = path.get_file();
  105. } else {
  106. scr_name = get_name();
  107. }
  108. }
  109. return PropertyInfo(Variant::NIL, scr_name, PROPERTY_HINT_NONE, path, PROPERTY_USAGE_CATEGORY);
  110. }
  111. #endif // TOOLS_ENABLED
  112. void Script::_bind_methods() {
  113. ClassDB::bind_method(D_METHOD("can_instantiate"), &Script::can_instantiate);
  114. //ClassDB::bind_method(D_METHOD("instance_create","base_object"),&Script::instance_create);
  115. ClassDB::bind_method(D_METHOD("instance_has", "base_object"), &Script::instance_has);
  116. ClassDB::bind_method(D_METHOD("has_source_code"), &Script::has_source_code);
  117. ClassDB::bind_method(D_METHOD("get_source_code"), &Script::get_source_code);
  118. ClassDB::bind_method(D_METHOD("set_source_code", "source"), &Script::set_source_code);
  119. ClassDB::bind_method(D_METHOD("reload", "keep_state"), &Script::reload, DEFVAL(false));
  120. ClassDB::bind_method(D_METHOD("get_base_script"), &Script::get_base_script);
  121. ClassDB::bind_method(D_METHOD("get_instance_base_type"), &Script::get_instance_base_type);
  122. ClassDB::bind_method(D_METHOD("has_script_signal", "signal_name"), &Script::has_script_signal);
  123. ClassDB::bind_method(D_METHOD("get_script_property_list"), &Script::_get_script_property_list);
  124. ClassDB::bind_method(D_METHOD("get_script_method_list"), &Script::_get_script_method_list);
  125. ClassDB::bind_method(D_METHOD("get_script_signal_list"), &Script::_get_script_signal_list);
  126. ClassDB::bind_method(D_METHOD("get_script_constant_map"), &Script::_get_script_constant_map);
  127. ClassDB::bind_method(D_METHOD("get_property_default_value", "property"), &Script::_get_property_default_value);
  128. ClassDB::bind_method(D_METHOD("is_tool"), &Script::is_tool);
  129. ClassDB::bind_method(D_METHOD("is_abstract"), &Script::is_abstract);
  130. ADD_PROPERTY(PropertyInfo(Variant::STRING, "source_code", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NONE), "set_source_code", "get_source_code");
  131. }
  132. void ScriptServer::set_scripting_enabled(bool p_enabled) {
  133. scripting_enabled = p_enabled;
  134. }
  135. bool ScriptServer::is_scripting_enabled() {
  136. return scripting_enabled;
  137. }
  138. ScriptLanguage *ScriptServer::get_language(int p_idx) {
  139. ERR_FAIL_INDEX_V(p_idx, _language_count, nullptr);
  140. return _languages[p_idx];
  141. }
  142. Error ScriptServer::register_language(ScriptLanguage *p_language) {
  143. ERR_FAIL_NULL_V(p_language, ERR_INVALID_PARAMETER);
  144. ERR_FAIL_COND_V_MSG(_language_count >= MAX_LANGUAGES, ERR_UNAVAILABLE, "Script languages limit has been reach, cannot register more.");
  145. for (int i = 0; i < _language_count; i++) {
  146. const ScriptLanguage *other_language = _languages[i];
  147. ERR_FAIL_COND_V_MSG(other_language->get_extension() == p_language->get_extension(), ERR_ALREADY_EXISTS, "A script language with extension '" + p_language->get_extension() + "' is already registered.");
  148. ERR_FAIL_COND_V_MSG(other_language->get_name() == p_language->get_name(), ERR_ALREADY_EXISTS, "A script language with name '" + p_language->get_name() + "' is already registered.");
  149. ERR_FAIL_COND_V_MSG(other_language->get_type() == p_language->get_type(), ERR_ALREADY_EXISTS, "A script language with type '" + p_language->get_type() + "' is already registered.");
  150. }
  151. _languages[_language_count++] = p_language;
  152. return OK;
  153. }
  154. Error ScriptServer::unregister_language(const ScriptLanguage *p_language) {
  155. for (int i = 0; i < _language_count; i++) {
  156. if (_languages[i] == p_language) {
  157. _language_count--;
  158. if (i < _language_count) {
  159. SWAP(_languages[i], _languages[_language_count]);
  160. }
  161. return OK;
  162. }
  163. }
  164. return ERR_DOES_NOT_EXIST;
  165. }
  166. void ScriptServer::init_languages() {
  167. { // Load global classes.
  168. global_classes_clear();
  169. #ifndef DISABLE_DEPRECATED
  170. if (ProjectSettings::get_singleton()->has_setting("_global_script_classes")) {
  171. Array script_classes = GLOBAL_GET("_global_script_classes");
  172. for (int i = 0; i < script_classes.size(); i++) {
  173. Dictionary c = script_classes[i];
  174. if (!c.has("class") || !c.has("language") || !c.has("path") || !c.has("base")) {
  175. continue;
  176. }
  177. add_global_class(c["class"], c["base"], c["language"], c["path"]);
  178. }
  179. ProjectSettings::get_singleton()->clear("_global_script_classes");
  180. }
  181. #endif
  182. Array script_classes = ProjectSettings::get_singleton()->get_global_class_list();
  183. for (int i = 0; i < script_classes.size(); i++) {
  184. Dictionary c = script_classes[i];
  185. if (!c.has("class") || !c.has("language") || !c.has("path") || !c.has("base")) {
  186. continue;
  187. }
  188. add_global_class(c["class"], c["base"], c["language"], c["path"]);
  189. }
  190. }
  191. for (int i = 0; i < _language_count; i++) {
  192. _languages[i]->init();
  193. }
  194. }
  195. void ScriptServer::finish_languages() {
  196. for (int i = 0; i < _language_count; i++) {
  197. _languages[i]->finish();
  198. }
  199. global_classes_clear();
  200. languages_finished.set();
  201. }
  202. void ScriptServer::set_reload_scripts_on_save(bool p_enable) {
  203. reload_scripts_on_save = p_enable;
  204. }
  205. bool ScriptServer::is_reload_scripts_on_save_enabled() {
  206. return reload_scripts_on_save;
  207. }
  208. void ScriptServer::thread_enter() {
  209. if (!languages_finished.is_set()) {
  210. return;
  211. }
  212. for (int i = 0; i < _language_count; i++) {
  213. _languages[i]->thread_enter();
  214. }
  215. }
  216. void ScriptServer::thread_exit() {
  217. if (!languages_finished.is_set()) {
  218. return;
  219. }
  220. for (int i = 0; i < _language_count; i++) {
  221. _languages[i]->thread_exit();
  222. }
  223. }
  224. HashMap<StringName, ScriptServer::GlobalScriptClass> ScriptServer::global_classes;
  225. HashMap<StringName, Vector<StringName>> ScriptServer::inheriters_cache;
  226. bool ScriptServer::inheriters_cache_dirty = true;
  227. void ScriptServer::global_classes_clear() {
  228. global_classes.clear();
  229. inheriters_cache.clear();
  230. }
  231. void ScriptServer::add_global_class(const StringName &p_class, const StringName &p_base, const StringName &p_language, const String &p_path) {
  232. ERR_FAIL_COND_MSG(p_class == p_base || (global_classes.has(p_base) && get_global_class_native_base(p_base) == p_class), "Cyclic inheritance in script class.");
  233. GlobalScriptClass g;
  234. g.language = p_language;
  235. g.path = p_path;
  236. g.base = p_base;
  237. global_classes[p_class] = g;
  238. inheriters_cache_dirty = true;
  239. }
  240. void ScriptServer::remove_global_class(const StringName &p_class) {
  241. global_classes.erase(p_class);
  242. inheriters_cache_dirty = true;
  243. }
  244. void ScriptServer::get_inheriters_list(const StringName &p_base_type, List<StringName> *r_classes) {
  245. if (inheriters_cache_dirty) {
  246. inheriters_cache.clear();
  247. for (const KeyValue<StringName, GlobalScriptClass> &K : global_classes) {
  248. if (!inheriters_cache.has(K.value.base)) {
  249. inheriters_cache[K.value.base] = Vector<StringName>();
  250. }
  251. inheriters_cache[K.value.base].push_back(K.key);
  252. }
  253. for (KeyValue<StringName, Vector<StringName>> &K : inheriters_cache) {
  254. K.value.sort_custom<StringName::AlphCompare>();
  255. }
  256. inheriters_cache_dirty = false;
  257. }
  258. if (!inheriters_cache.has(p_base_type)) {
  259. return;
  260. }
  261. const Vector<StringName> &v = inheriters_cache[p_base_type];
  262. for (int i = 0; i < v.size(); i++) {
  263. r_classes->push_back(v[i]);
  264. }
  265. }
  266. void ScriptServer::remove_global_class_by_path(const String &p_path) {
  267. for (const KeyValue<StringName, GlobalScriptClass> &kv : global_classes) {
  268. if (kv.value.path == p_path) {
  269. global_classes.erase(kv.key);
  270. inheriters_cache_dirty = true;
  271. return;
  272. }
  273. }
  274. }
  275. bool ScriptServer::is_global_class(const StringName &p_class) {
  276. return global_classes.has(p_class);
  277. }
  278. StringName ScriptServer::get_global_class_language(const StringName &p_class) {
  279. ERR_FAIL_COND_V(!global_classes.has(p_class), StringName());
  280. return global_classes[p_class].language;
  281. }
  282. String ScriptServer::get_global_class_path(const String &p_class) {
  283. ERR_FAIL_COND_V(!global_classes.has(p_class), String());
  284. return global_classes[p_class].path;
  285. }
  286. StringName ScriptServer::get_global_class_base(const String &p_class) {
  287. ERR_FAIL_COND_V(!global_classes.has(p_class), String());
  288. return global_classes[p_class].base;
  289. }
  290. StringName ScriptServer::get_global_class_native_base(const String &p_class) {
  291. ERR_FAIL_COND_V(!global_classes.has(p_class), String());
  292. String base = global_classes[p_class].base;
  293. while (global_classes.has(base)) {
  294. base = global_classes[base].base;
  295. }
  296. return base;
  297. }
  298. void ScriptServer::get_global_class_list(List<StringName> *r_global_classes) {
  299. List<StringName> classes;
  300. for (const KeyValue<StringName, GlobalScriptClass> &E : global_classes) {
  301. classes.push_back(E.key);
  302. }
  303. classes.sort_custom<StringName::AlphCompare>();
  304. for (const StringName &E : classes) {
  305. r_global_classes->push_back(E);
  306. }
  307. }
  308. void ScriptServer::save_global_classes() {
  309. Dictionary class_icons;
  310. Array script_classes = ProjectSettings::get_singleton()->get_global_class_list();
  311. for (int i = 0; i < script_classes.size(); i++) {
  312. Dictionary d = script_classes[i];
  313. if (!d.has("name") || !d.has("icon")) {
  314. continue;
  315. }
  316. class_icons[d["name"]] = d["icon"];
  317. }
  318. List<StringName> gc;
  319. get_global_class_list(&gc);
  320. Array gcarr;
  321. for (const StringName &E : gc) {
  322. Dictionary d;
  323. d["class"] = E;
  324. d["language"] = global_classes[E].language;
  325. d["path"] = global_classes[E].path;
  326. d["base"] = global_classes[E].base;
  327. d["icon"] = class_icons.get(E, "");
  328. gcarr.push_back(d);
  329. }
  330. ProjectSettings::get_singleton()->store_global_class_list(gcarr);
  331. }
  332. String ScriptServer::get_global_class_cache_file_path() {
  333. return ProjectSettings::get_singleton()->get_global_class_list_path();
  334. }
  335. ////////////////////
  336. ScriptCodeCompletionCache *ScriptCodeCompletionCache::singleton = nullptr;
  337. ScriptCodeCompletionCache::ScriptCodeCompletionCache() {
  338. singleton = this;
  339. }
  340. void ScriptLanguage::get_core_type_words(List<String> *p_core_type_words) const {
  341. p_core_type_words->push_back("String");
  342. p_core_type_words->push_back("Vector2");
  343. p_core_type_words->push_back("Vector2i");
  344. p_core_type_words->push_back("Rect2");
  345. p_core_type_words->push_back("Rect2i");
  346. p_core_type_words->push_back("Vector3");
  347. p_core_type_words->push_back("Vector3i");
  348. p_core_type_words->push_back("Transform2D");
  349. p_core_type_words->push_back("Vector4");
  350. p_core_type_words->push_back("Vector4i");
  351. p_core_type_words->push_back("Plane");
  352. p_core_type_words->push_back("Quaternion");
  353. p_core_type_words->push_back("AABB");
  354. p_core_type_words->push_back("Basis");
  355. p_core_type_words->push_back("Transform3D");
  356. p_core_type_words->push_back("Projection");
  357. p_core_type_words->push_back("Color");
  358. p_core_type_words->push_back("StringName");
  359. p_core_type_words->push_back("NodePath");
  360. p_core_type_words->push_back("RID");
  361. p_core_type_words->push_back("Callable");
  362. p_core_type_words->push_back("Signal");
  363. p_core_type_words->push_back("Dictionary");
  364. p_core_type_words->push_back("Array");
  365. p_core_type_words->push_back("PackedByteArray");
  366. p_core_type_words->push_back("PackedInt32Array");
  367. p_core_type_words->push_back("PackedInt64Array");
  368. p_core_type_words->push_back("PackedFloat32Array");
  369. p_core_type_words->push_back("PackedFloat64Array");
  370. p_core_type_words->push_back("PackedStringArray");
  371. p_core_type_words->push_back("PackedVector2Array");
  372. p_core_type_words->push_back("PackedVector3Array");
  373. p_core_type_words->push_back("PackedColorArray");
  374. }
  375. void ScriptLanguage::frame() {
  376. }
  377. TypedArray<int> ScriptLanguage::CodeCompletionOption::get_option_characteristics(const String &p_base) {
  378. // Return characacteristics of the match found by order of importance.
  379. // Matches will be ranked by a lexicographical order on the vector returned by this function.
  380. // The lower values indicate better matches and that they should go before in the order of appearance.
  381. if (last_matches == matches) {
  382. return charac;
  383. }
  384. charac.clear();
  385. // Ensure base is not empty and at the same time that matches is not empty too.
  386. if (p_base.length() == 0) {
  387. last_matches = matches;
  388. charac.push_back(location);
  389. return charac;
  390. }
  391. charac.push_back(matches.size());
  392. charac.push_back((matches[0].first == 0) ? 0 : 1);
  393. const char32_t *target_char = &p_base[0];
  394. int bad_case = 0;
  395. for (const Pair<int, int> &match_segment : matches) {
  396. const char32_t *string_to_complete_char = &display[match_segment.first];
  397. for (int j = 0; j < match_segment.second; j++, string_to_complete_char++, target_char++) {
  398. if (*string_to_complete_char != *target_char) {
  399. bad_case++;
  400. }
  401. }
  402. }
  403. charac.push_back(bad_case);
  404. charac.push_back(location);
  405. charac.push_back(matches[0].first);
  406. last_matches = matches;
  407. return charac;
  408. }
  409. void ScriptLanguage::CodeCompletionOption::clear_characteristics() {
  410. charac = TypedArray<int>();
  411. }
  412. TypedArray<int> ScriptLanguage::CodeCompletionOption::get_option_cached_characteristics() const {
  413. // Only returns the cached value and warns if it was not updated since the last change of matches.
  414. if (last_matches != matches) {
  415. WARN_PRINT("Characteristics are not up to date.");
  416. }
  417. return charac;
  418. }
  419. bool PlaceHolderScriptInstance::set(const StringName &p_name, const Variant &p_value) {
  420. if (script->is_placeholder_fallback_enabled()) {
  421. return false;
  422. }
  423. if (values.has(p_name)) {
  424. Variant defval;
  425. if (script->get_property_default_value(p_name, defval)) {
  426. // The evaluate function ensures that a NIL variant is equal to e.g. an empty Resource.
  427. // Simply doing defval == p_value does not do this.
  428. if (Variant::evaluate(Variant::OP_EQUAL, defval, p_value)) {
  429. values.erase(p_name);
  430. return true;
  431. }
  432. }
  433. values[p_name] = p_value;
  434. return true;
  435. } else {
  436. Variant defval;
  437. if (script->get_property_default_value(p_name, defval)) {
  438. if (Variant::evaluate(Variant::OP_NOT_EQUAL, defval, p_value)) {
  439. values[p_name] = p_value;
  440. }
  441. return true;
  442. }
  443. }
  444. return false;
  445. }
  446. bool PlaceHolderScriptInstance::get(const StringName &p_name, Variant &r_ret) const {
  447. if (values.has(p_name)) {
  448. r_ret = values[p_name];
  449. return true;
  450. }
  451. if (constants.has(p_name)) {
  452. r_ret = constants[p_name];
  453. return true;
  454. }
  455. if (!script->is_placeholder_fallback_enabled()) {
  456. Variant defval;
  457. if (script->get_property_default_value(p_name, defval)) {
  458. r_ret = defval;
  459. return true;
  460. }
  461. }
  462. return false;
  463. }
  464. void PlaceHolderScriptInstance::get_property_list(List<PropertyInfo> *p_properties) const {
  465. if (script->is_placeholder_fallback_enabled()) {
  466. for (const PropertyInfo &E : properties) {
  467. p_properties->push_back(E);
  468. }
  469. } else {
  470. for (const PropertyInfo &E : properties) {
  471. PropertyInfo pinfo = E;
  472. if (!values.has(pinfo.name)) {
  473. pinfo.usage |= PROPERTY_USAGE_SCRIPT_DEFAULT_VALUE;
  474. }
  475. p_properties->push_back(E);
  476. }
  477. }
  478. }
  479. Variant::Type PlaceHolderScriptInstance::get_property_type(const StringName &p_name, bool *r_is_valid) const {
  480. if (values.has(p_name)) {
  481. if (r_is_valid) {
  482. *r_is_valid = true;
  483. }
  484. return values[p_name].get_type();
  485. }
  486. if (constants.has(p_name)) {
  487. if (r_is_valid) {
  488. *r_is_valid = true;
  489. }
  490. return constants[p_name].get_type();
  491. }
  492. if (r_is_valid) {
  493. *r_is_valid = false;
  494. }
  495. return Variant::NIL;
  496. }
  497. void PlaceHolderScriptInstance::get_method_list(List<MethodInfo> *p_list) const {
  498. if (script->is_placeholder_fallback_enabled()) {
  499. return;
  500. }
  501. if (script.is_valid()) {
  502. script->get_script_method_list(p_list);
  503. }
  504. }
  505. bool PlaceHolderScriptInstance::has_method(const StringName &p_method) const {
  506. if (script->is_placeholder_fallback_enabled()) {
  507. return false;
  508. }
  509. if (script.is_valid()) {
  510. return script->has_method(p_method);
  511. }
  512. return false;
  513. }
  514. void PlaceHolderScriptInstance::update(const List<PropertyInfo> &p_properties, const HashMap<StringName, Variant> &p_values) {
  515. HashSet<StringName> new_values;
  516. for (const PropertyInfo &E : p_properties) {
  517. StringName n = E.name;
  518. new_values.insert(n);
  519. if (!values.has(n) || values[n].get_type() != E.type) {
  520. if (p_values.has(n)) {
  521. values[n] = p_values[n];
  522. }
  523. }
  524. }
  525. properties = p_properties;
  526. List<StringName> to_remove;
  527. for (KeyValue<StringName, Variant> &E : values) {
  528. if (!new_values.has(E.key)) {
  529. to_remove.push_back(E.key);
  530. }
  531. Variant defval;
  532. if (script->get_property_default_value(E.key, defval)) {
  533. //remove because it's the same as the default value
  534. if (defval == E.value) {
  535. to_remove.push_back(E.key);
  536. }
  537. }
  538. }
  539. while (to_remove.size()) {
  540. values.erase(to_remove.front()->get());
  541. to_remove.pop_front();
  542. }
  543. if (owner && owner->get_script_instance() == this) {
  544. owner->notify_property_list_changed();
  545. }
  546. //change notify
  547. constants.clear();
  548. script->get_constants(&constants);
  549. }
  550. void PlaceHolderScriptInstance::property_set_fallback(const StringName &p_name, const Variant &p_value, bool *r_valid) {
  551. if (script->is_placeholder_fallback_enabled()) {
  552. HashMap<StringName, Variant>::Iterator E = values.find(p_name);
  553. if (E) {
  554. E->value = p_value;
  555. } else {
  556. values.insert(p_name, p_value);
  557. }
  558. bool found = false;
  559. for (const PropertyInfo &F : properties) {
  560. if (F.name == p_name) {
  561. found = true;
  562. break;
  563. }
  564. }
  565. if (!found) {
  566. properties.push_back(PropertyInfo(p_value.get_type(), p_name, PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR | PROPERTY_USAGE_SCRIPT_VARIABLE));
  567. }
  568. }
  569. if (r_valid) {
  570. *r_valid = false; // Cannot change the value in either case
  571. }
  572. }
  573. Variant PlaceHolderScriptInstance::property_get_fallback(const StringName &p_name, bool *r_valid) {
  574. if (script->is_placeholder_fallback_enabled()) {
  575. HashMap<StringName, Variant>::ConstIterator E = values.find(p_name);
  576. if (E) {
  577. if (r_valid) {
  578. *r_valid = true;
  579. }
  580. return E->value;
  581. }
  582. E = constants.find(p_name);
  583. if (E) {
  584. if (r_valid) {
  585. *r_valid = true;
  586. }
  587. return E->value;
  588. }
  589. }
  590. if (r_valid) {
  591. *r_valid = false;
  592. }
  593. return Variant();
  594. }
  595. PlaceHolderScriptInstance::PlaceHolderScriptInstance(ScriptLanguage *p_language, Ref<Script> p_script, Object *p_owner) :
  596. owner(p_owner),
  597. language(p_language),
  598. script(p_script) {
  599. }
  600. PlaceHolderScriptInstance::~PlaceHolderScriptInstance() {
  601. if (script.is_valid()) {
  602. script->_placeholder_erased(this);
  603. }
  604. }