pluginscript_script.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. /*************************************************************************/
  2. /* pluginscript_script.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. // Godot imports
  31. #include "core/io/file_access.h"
  32. // PluginScript imports
  33. #include "pluginscript_instance.h"
  34. #include "pluginscript_script.h"
  35. #include <stdint.h>
  36. #ifdef DEBUG_ENABLED
  37. #define __ASSERT_SCRIPT_REASON "Cannot retrieve PluginScript class for this script, is your code correct?"
  38. #define ASSERT_SCRIPT_VALID() \
  39. { \
  40. ERR_FAIL_COND_MSG(!can_instantiate(), __ASSERT_SCRIPT_REASON); \
  41. }
  42. #define ASSERT_SCRIPT_VALID_V(ret) \
  43. { \
  44. ERR_FAIL_COND_V_MSG(!can_instantiate(), ret, __ASSERT_SCRIPT_REASON); \
  45. }
  46. #else
  47. #define ASSERT_SCRIPT_VALID()
  48. #define ASSERT_SCRIPT_VALID_V(ret)
  49. #endif
  50. void PluginScript::_bind_methods() {
  51. ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "new", &PluginScript::_new, MethodInfo("new"));
  52. }
  53. PluginScriptInstance *PluginScript::_create_instance(const Variant **p_args, int p_argcount, Object *p_owner, Callable::CallError &r_error) {
  54. r_error.error = Callable::CallError::CALL_OK;
  55. // Create instance
  56. PluginScriptInstance *instance = memnew(PluginScriptInstance());
  57. if (instance->init(this, p_owner)) {
  58. _language->lock();
  59. _instances.insert(instance->get_owner());
  60. _language->unlock();
  61. } else {
  62. r_error.error = Callable::CallError::CALL_ERROR_INSTANCE_IS_NULL;
  63. memdelete(instance);
  64. ERR_FAIL_V(nullptr);
  65. }
  66. // Construct
  67. // TODO: Support arguments in the constructor?
  68. // There is currently no way to get the constructor function name of the script.
  69. // instance->call("__init__", p_args, p_argcount, r_error);
  70. if (p_argcount > 0) {
  71. WARN_PRINT("PluginScript doesn't support arguments in the constructor");
  72. }
  73. return instance;
  74. }
  75. Variant PluginScript::_new(const Variant **p_args, int p_argcount, Callable::CallError &r_error) {
  76. r_error.error = Callable::CallError::CALL_OK;
  77. if (!_valid) {
  78. r_error.error = Callable::CallError::CALL_ERROR_INVALID_METHOD;
  79. return Variant();
  80. }
  81. REF ref;
  82. Object *owner = nullptr;
  83. if (get_instance_base_type() == "") {
  84. owner = memnew(RefCounted);
  85. } else {
  86. owner = ClassDB::instantiate(get_instance_base_type());
  87. }
  88. if (!owner) {
  89. r_error.error = Callable::CallError::CALL_ERROR_INSTANCE_IS_NULL;
  90. return Variant();
  91. }
  92. RefCounted *r = Object::cast_to<RefCounted>(owner);
  93. if (r) {
  94. ref = REF(r);
  95. }
  96. PluginScriptInstance *instance = _create_instance(p_args, p_argcount, owner, r_error);
  97. if (!instance) {
  98. if (ref.is_null()) {
  99. memdelete(owner); //no owner, sorry
  100. }
  101. return Variant();
  102. }
  103. if (ref.is_valid()) {
  104. return ref;
  105. } else {
  106. return owner;
  107. }
  108. }
  109. #ifdef TOOLS_ENABLED
  110. void PluginScript::_placeholder_erased(PlaceHolderScriptInstance *p_placeholder) {
  111. placeholders.erase(p_placeholder);
  112. }
  113. #endif
  114. bool PluginScript::can_instantiate() const {
  115. bool can = _valid || (!_tool && !ScriptServer::is_scripting_enabled());
  116. return can;
  117. }
  118. bool PluginScript::inherits_script(const Ref<Script> &p_script) const {
  119. Ref<PluginScript> ps = p_script;
  120. if (ps.is_null()) {
  121. return false;
  122. }
  123. const PluginScript *s = this;
  124. while (s) {
  125. if (s == p_script.ptr()) {
  126. return true;
  127. }
  128. s = Object::cast_to<PluginScript>(s->_ref_base_parent.ptr());
  129. }
  130. return false;
  131. }
  132. Ref<Script> PluginScript::get_base_script() const {
  133. if (_ref_base_parent.is_valid()) {
  134. return Ref<PluginScript>(_ref_base_parent);
  135. } else {
  136. return Ref<Script>();
  137. }
  138. }
  139. StringName PluginScript::get_instance_base_type() const {
  140. if (_native_parent) {
  141. return _native_parent;
  142. }
  143. if (_ref_base_parent.is_valid()) {
  144. return _ref_base_parent->get_instance_base_type();
  145. }
  146. return StringName();
  147. }
  148. void PluginScript::update_exports() {
  149. #ifdef TOOLS_ENABLED
  150. ASSERT_SCRIPT_VALID();
  151. if (placeholders.size()) {
  152. //update placeholders if any
  153. Map<StringName, Variant> propdefvalues;
  154. List<PropertyInfo> propinfos;
  155. get_script_property_list(&propinfos);
  156. for (Set<PlaceHolderScriptInstance *>::Element *E = placeholders.front(); E; E = E->next()) {
  157. E->get()->update(propinfos, _properties_default_values);
  158. }
  159. }
  160. #endif
  161. }
  162. // TODO: rename p_this "p_owner" ?
  163. ScriptInstance *PluginScript::instance_create(Object *p_this) {
  164. ASSERT_SCRIPT_VALID_V(nullptr);
  165. // TODO check script validity ?
  166. if (!_tool && !ScriptServer::is_scripting_enabled()) {
  167. #ifdef TOOLS_ENABLED
  168. // Instance a fake script for editing the values
  169. PlaceHolderScriptInstance *si = memnew(PlaceHolderScriptInstance(get_language(), Ref<Script>(this), p_this));
  170. placeholders.insert(si);
  171. update_exports();
  172. return si;
  173. #else
  174. return nullptr;
  175. #endif
  176. }
  177. StringName base_type = get_instance_base_type();
  178. if (base_type) {
  179. if (!ClassDB::is_parent_class(p_this->get_class_name(), base_type)) {
  180. String msg = "Script inherits from native type '" + String(base_type) + "', so it can't be instantiated in object of type: '" + p_this->get_class() + "'";
  181. // TODO: implement PluginscriptLanguage::debug_break_parse
  182. // if (EngineDebugger::is_active()) {
  183. // _language->debug_break_parse(get_path(), 0, msg);
  184. // }
  185. ERR_FAIL_V_MSG(nullptr, msg);
  186. }
  187. }
  188. Callable::CallError unchecked_error;
  189. return _create_instance(nullptr, 0, p_this, unchecked_error);
  190. }
  191. bool PluginScript::instance_has(const Object *p_this) const {
  192. ERR_FAIL_COND_V(!_language, false);
  193. _language->lock();
  194. bool hasit = _instances.has((Object *)p_this);
  195. _language->unlock();
  196. return hasit;
  197. }
  198. bool PluginScript::has_source_code() const {
  199. bool has = _source != "";
  200. return has;
  201. }
  202. String PluginScript::get_source_code() const {
  203. return _source;
  204. }
  205. void PluginScript::set_source_code(const String &p_code) {
  206. if (_source == p_code) {
  207. return;
  208. }
  209. _source = p_code;
  210. }
  211. Error PluginScript::reload(bool p_keep_state) {
  212. ERR_FAIL_COND_V(!_language, ERR_UNCONFIGURED);
  213. _language->lock();
  214. ERR_FAIL_COND_V(!p_keep_state && _instances.size(), ERR_ALREADY_IN_USE);
  215. _language->unlock();
  216. _valid = false;
  217. String basedir = _path;
  218. if (basedir == "") {
  219. basedir = get_path();
  220. }
  221. if (basedir != "") {
  222. basedir = basedir.get_base_dir();
  223. }
  224. if (_data) {
  225. _desc->finish(_data);
  226. }
  227. Error err;
  228. godot_pluginscript_script_manifest manifest = _desc->init(
  229. _language->_data,
  230. (godot_string *)&_path,
  231. (godot_string *)&_source,
  232. (godot_error *)&err);
  233. // Manifest's attributes must be explicitly freed
  234. #define FREE_SCRIPT_MANIFEST(manifest) \
  235. { \
  236. godot_string_name_destroy(&manifest.name); \
  237. godot_string_name_destroy(&manifest.base); \
  238. godot_dictionary_destroy(&manifest.member_lines); \
  239. godot_array_destroy(&manifest.methods); \
  240. godot_array_destroy(&manifest.signals); \
  241. godot_array_destroy(&manifest.properties); \
  242. }
  243. if (err) {
  244. FREE_SCRIPT_MANIFEST(manifest);
  245. // TODO: GDscript uses `ScriptDebugger` here to jump into the parsing error
  246. return err;
  247. }
  248. // Script's parent is passed as base_name which can make reference to a
  249. // ClassDB name (i.e. `Node2D`) or a resource path (i.e. `res://foo/bar.gd`)
  250. StringName *base_name = (StringName *)&manifest.base;
  251. if (*base_name) {
  252. if (ClassDB::class_exists(*base_name)) {
  253. _native_parent = *base_name;
  254. } else {
  255. Ref<Script> res = ResourceLoader::load(*base_name);
  256. if (res.is_valid()) {
  257. _ref_base_parent = res;
  258. } else {
  259. String name = *(StringName *)&manifest.name;
  260. FREE_SCRIPT_MANIFEST(manifest);
  261. ERR_FAIL_V_MSG(ERR_PARSE_ERROR, _path + ": Script '" + name + "' has an invalid parent '" + *base_name + "'.");
  262. }
  263. }
  264. }
  265. _valid = true;
  266. // Use the manifest to configure this script object
  267. _data = manifest.data;
  268. _name = *(StringName *)&manifest.name;
  269. _tool = manifest.is_tool;
  270. _icon_path = *(String *)&manifest.icon_path;
  271. Dictionary *members = (Dictionary *)&manifest.member_lines;
  272. for (const Variant *key = members->next(); key != nullptr; key = members->next(key)) {
  273. _member_lines[*key] = (*members)[*key];
  274. }
  275. Array *methods = (Array *)&manifest.methods;
  276. _rpc_methods.clear();
  277. if (_ref_base_parent.is_valid()) {
  278. /// XXX TODO Should this be _rpc_methods.append_array(...)
  279. _rpc_methods = _ref_base_parent->get_rpc_methods();
  280. }
  281. for (int i = 0; i < methods->size(); ++i) {
  282. Dictionary v = (*methods)[i];
  283. MethodInfo mi = MethodInfo::from_dict(v);
  284. _methods_info[mi.name] = mi;
  285. // rpc_mode is passed as an optional field and is not part of MethodInfo
  286. Variant var = v["rpc_mode"];
  287. if (var != Variant()) {
  288. Multiplayer::RPCConfig nd;
  289. nd.name = mi.name;
  290. nd.rpc_mode = Multiplayer::RPCMode(int(var));
  291. // TODO Transfer Channel
  292. if (_rpc_methods.find(nd) == -1) {
  293. _rpc_methods.push_back(nd);
  294. }
  295. }
  296. }
  297. // Sort so we are 100% that they are always the same.
  298. _rpc_methods.sort_custom<Multiplayer::SortRPCConfig>();
  299. Array *signals = (Array *)&manifest.signals;
  300. for (int i = 0; i < signals->size(); ++i) {
  301. Variant v = (*signals)[i];
  302. MethodInfo mi = MethodInfo::from_dict(v);
  303. _signals_info[mi.name] = mi;
  304. }
  305. Array *properties = (Array *)&manifest.properties;
  306. for (int i = 0; i < properties->size(); ++i) {
  307. Dictionary v = (*properties)[i];
  308. PropertyInfo pi = PropertyInfo::from_dict(v);
  309. _properties_info[pi.name] = pi;
  310. _properties_default_values[pi.name] = v["default_value"];
  311. }
  312. #ifdef TOOLS_ENABLED
  313. /*for (Set<PlaceHolderScriptInstance*>::Element *E=placeholders.front();E;E=E->next()) {
  314. _update_placeholder(E->get());
  315. }*/
  316. #endif
  317. FREE_SCRIPT_MANIFEST(manifest);
  318. return OK;
  319. #undef FREE_SCRIPT_MANIFEST
  320. }
  321. void PluginScript::get_script_method_list(List<MethodInfo> *r_methods) const {
  322. ASSERT_SCRIPT_VALID();
  323. for (Map<StringName, MethodInfo>::Element *e = _methods_info.front(); e != nullptr; e = e->next()) {
  324. r_methods->push_back(e->get());
  325. }
  326. }
  327. void PluginScript::get_script_property_list(List<PropertyInfo> *r_properties) const {
  328. ASSERT_SCRIPT_VALID();
  329. for (Map<StringName, PropertyInfo>::Element *e = _properties_info.front(); e != nullptr; e = e->next()) {
  330. r_properties->push_back(e->get());
  331. }
  332. }
  333. bool PluginScript::has_method(const StringName &p_method) const {
  334. ASSERT_SCRIPT_VALID_V(false);
  335. return _methods_info.has(p_method);
  336. }
  337. MethodInfo PluginScript::get_method_info(const StringName &p_method) const {
  338. ASSERT_SCRIPT_VALID_V(MethodInfo());
  339. const Map<StringName, MethodInfo>::Element *e = _methods_info.find(p_method);
  340. if (e != nullptr) {
  341. return e->get();
  342. } else {
  343. return MethodInfo();
  344. }
  345. }
  346. bool PluginScript::has_property(const StringName &p_method) const {
  347. ASSERT_SCRIPT_VALID_V(false);
  348. return _properties_info.has(p_method);
  349. }
  350. PropertyInfo PluginScript::get_property_info(const StringName &p_property) const {
  351. ASSERT_SCRIPT_VALID_V(PropertyInfo());
  352. const Map<StringName, PropertyInfo>::Element *e = _properties_info.find(p_property);
  353. if (e != nullptr) {
  354. return e->get();
  355. } else {
  356. return PropertyInfo();
  357. }
  358. }
  359. bool PluginScript::get_property_default_value(const StringName &p_property, Variant &r_value) const {
  360. ASSERT_SCRIPT_VALID_V(false);
  361. #ifdef TOOLS_ENABLED
  362. const Map<StringName, Variant>::Element *e = _properties_default_values.find(p_property);
  363. if (e != nullptr) {
  364. r_value = e->get();
  365. return true;
  366. } else {
  367. return false;
  368. }
  369. #endif
  370. return false;
  371. }
  372. ScriptLanguage *PluginScript::get_language() const {
  373. return _language;
  374. }
  375. Error PluginScript::load_source_code(const String &p_path) {
  376. Vector<uint8_t> sourcef;
  377. Error err;
  378. FileAccess *f = FileAccess::open(p_path, FileAccess::READ, &err);
  379. ERR_FAIL_COND_V_MSG(err, err, "Cannot open file '" + p_path + "'.");
  380. uint64_t len = f->get_length();
  381. sourcef.resize(len + 1);
  382. uint8_t *w = sourcef.ptrw();
  383. uint64_t r = f->get_buffer(w, len);
  384. f->close();
  385. memdelete(f);
  386. ERR_FAIL_COND_V(r != len, ERR_CANT_OPEN);
  387. w[len] = 0;
  388. String s;
  389. if (s.parse_utf8((const char *)w)) {
  390. ERR_FAIL_V_MSG(ERR_INVALID_DATA, "Script '" + p_path + "' contains invalid unicode (UTF-8), so it was not loaded. Please ensure that scripts are saved in valid UTF-8 unicode.");
  391. }
  392. _source = s;
  393. #ifdef TOOLS_ENABLED
  394. // source_changed_cache=true;
  395. #endif
  396. _path = p_path;
  397. return OK;
  398. }
  399. bool PluginScript::has_script_signal(const StringName &p_signal) const {
  400. ASSERT_SCRIPT_VALID_V(false);
  401. return _signals_info.has(p_signal);
  402. }
  403. void PluginScript::get_script_signal_list(List<MethodInfo> *r_signals) const {
  404. ASSERT_SCRIPT_VALID();
  405. for (Map<StringName, MethodInfo>::Element *e = _signals_info.front(); e != nullptr; e = e->next()) {
  406. r_signals->push_back(e->get());
  407. }
  408. }
  409. int PluginScript::get_member_line(const StringName &p_member) const {
  410. #ifdef TOOLS_ENABLED
  411. if (_member_lines.has(p_member)) {
  412. return _member_lines[p_member];
  413. }
  414. #endif
  415. return -1;
  416. }
  417. const Vector<Multiplayer::RPCConfig> PluginScript::get_rpc_methods() const {
  418. return _rpc_methods;
  419. }
  420. PluginScript::PluginScript() :
  421. _script_list(this) {
  422. }
  423. void PluginScript::init(PluginScriptLanguage *language) {
  424. _desc = &language->_desc.script_desc;
  425. _language = language;
  426. #ifdef DEBUG_ENABLED
  427. _language->lock();
  428. _language->_script_list.add(&_script_list);
  429. _language->unlock();
  430. #endif
  431. }
  432. PluginScript::~PluginScript() {
  433. if (_desc && _data) {
  434. _desc->finish(_data);
  435. }
  436. #ifdef DEBUG_ENABLED
  437. if (_language) {
  438. _language->lock();
  439. _language->_script_list.remove(&_script_list);
  440. _language->unlock();
  441. }
  442. #endif
  443. }