123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862 |
- #include "csharp_script.h"
- #include <mono/metadata/threads.h>
- #include "core/io/json.h"
- #include "core/os/file_access.h"
- #include "core/os/os.h"
- #include "core/os/thread.h"
- #include "core/project_settings.h"
- #ifdef TOOLS_ENABLED
- #include "editor/bindings_generator.h"
- #include "editor/csharp_project.h"
- #include "editor/editor_node.h"
- #include "editor/godotsharp_editor.h"
- #endif
- #include "godotsharp_dirs.h"
- #include "mono_gd/gd_mono_class.h"
- #include "mono_gd/gd_mono_marshal.h"
- #include "signal_awaiter_utils.h"
- #include "utils/macros.h"
- #include "utils/mutex_utils.h"
- #include "utils/string_utils.h"
- #include "utils/thread_local.h"
- #define CACHED_STRING_NAME(m_var) (CSharpLanguage::get_singleton()->get_string_names().m_var)
- #ifdef TOOLS_ENABLED
- static bool _create_project_solution_if_needed() {
- String sln_path = GodotSharpDirs::get_project_sln_path();
- String csproj_path = GodotSharpDirs::get_project_csproj_path();
- if (!FileAccess::exists(sln_path) || !FileAccess::exists(csproj_path)) {
-
- CRASH_COND(GodotSharpEditor::get_singleton() == NULL);
- return GodotSharpEditor::get_singleton()->call("_create_project_solution");
- }
- return true;
- }
- #endif
- CSharpLanguage *CSharpLanguage::singleton = NULL;
- String CSharpLanguage::get_name() const {
- return "C#";
- }
- String CSharpLanguage::get_type() const {
- return "CSharpScript";
- }
- String CSharpLanguage::get_extension() const {
- return "cs";
- }
- Error CSharpLanguage::execute_file(const String &p_path) {
-
- return OK;
- }
- #ifdef TOOLS_ENABLED
- void gdsharp_editor_init_callback() {
- EditorNode *editor = EditorNode::get_singleton();
- editor->add_child(memnew(GodotSharpEditor(editor)));
- }
- #endif
- void CSharpLanguage::init() {
- gdmono = memnew(GDMono);
- gdmono->initialize();
- #ifndef MONO_GLUE_ENABLED
- WARN_PRINT("This binary is built with `mono_glue=no` and cannot be used for scripting");
- #endif
- #if defined(TOOLS_ENABLED) && defined(DEBUG_METHODS_ENABLED)
- if (gdmono->get_editor_tools_assembly() != NULL) {
- List<String> cmdline_args = OS::get_singleton()->get_cmdline_args();
- BindingsGenerator::handle_cmdline_args(cmdline_args);
- }
- #endif
- #ifdef TOOLS_ENABLED
- EditorNode::add_init_callback(&gdsharp_editor_init_callback);
- GLOBAL_DEF("mono/export/include_scripts_content", false);
- #endif
- }
- void CSharpLanguage::finish() {
- finalizing = true;
- #ifdef TOOLS_ENABLED
-
- if (BindingsGenerator::singleton) {
- memdelete(BindingsGenerator::singleton);
- BindingsGenerator::singleton = NULL;
- }
- #endif
-
- script_bindings.clear();
- if (gdmono) {
- memdelete(gdmono);
- gdmono = NULL;
- }
- finalizing = false;
- }
- void CSharpLanguage::get_reserved_words(List<String> *p_words) const {
- static const char *_reserved_words[] = {
-
- "abstract",
- "as",
- "base",
- "bool",
- "break",
- "byte",
- "case",
- "catch",
- "char",
- "checked",
- "class",
- "const",
- "continue",
- "decimal",
- "default",
- "delegate",
- "do",
- "double",
- "else",
- "enum",
- "event",
- "explicit",
- "extern",
- "false",
- "finally",
- "fixed",
- "float",
- "for",
- "foreach",
- "goto",
- "if",
- "implicit",
- "in",
- "int",
- "interface",
- "internal",
- "is",
- "lock",
- "long",
- "namespace",
- "new",
- "null",
- "object",
- "operator",
- "out",
- "override",
- "params",
- "private",
- "protected",
- "public",
- "readonly",
- "ref",
- "return",
- "sbyte",
- "sealed",
- "short",
- "sizeof",
- "stackalloc",
- "static",
- "string",
- "struct",
- "switch",
- "this",
- "throw",
- "true",
- "try",
- "typeof",
- "uint",
- "ulong",
- "unchecked",
- "unsafe",
- "ushort",
- "using",
- "virtual",
- "void",
- "volatile",
- "while",
-
-
- "add",
- "alias",
- "ascending",
- "async",
- "await",
- "by",
- "descending",
- "dynamic",
- "equals",
- "from",
- "get",
- "global",
- "group",
- "into",
- "join",
- "let",
- "nameof",
- "on",
- "orderby",
- "partial",
- "remove",
- "select",
- "set",
- "value",
- "var",
- "when",
- "where",
- "yield",
- 0
- };
- const char **w = _reserved_words;
- while (*w) {
- p_words->push_back(*w);
- w++;
- }
- }
- void CSharpLanguage::get_comment_delimiters(List<String> *p_delimiters) const {
- p_delimiters->push_back("//");
- p_delimiters->push_back("/* */");
- }
- void CSharpLanguage::get_string_delimiters(List<String> *p_delimiters) const {
- p_delimiters->push_back("' '");
- p_delimiters->push_back("\" \"");
- p_delimiters->push_back("@\" \"");
- }
- static String get_base_class_name(const String &p_base_class_name, const String p_class_name) {
- String base_class = p_base_class_name;
- if (p_class_name == base_class) {
- base_class = "Godot." + base_class;
- }
- return base_class;
- }
- Ref<Script> CSharpLanguage::get_template(const String &p_class_name, const String &p_base_class_name) const {
- String script_template = "using " BINDINGS_NAMESPACE ";\n"
- "using System;\n"
- "\n"
- "public class %CLASS% : %BASE%\n"
- "{\n"
- " // Declare member variables here. Examples:\n"
- " // private int a = 2;\n"
- " // private string b = \"text\";\n"
- "\n"
- " // Called when the node enters the scene tree for the first time.\n"
- " public override void _Ready()\n"
- " {\n"
- " \n"
- " }\n"
- "\n"
- "// // Called every frame. 'delta' is the elapsed time since the previous frame.\n"
- "// public override void _Process(float delta)\n"
- "// {\n"
- "// \n"
- "// }\n"
- "}\n";
- String base_class_name = get_base_class_name(p_base_class_name, p_class_name);
- script_template = script_template.replace("%BASE%", base_class_name)
- .replace("%CLASS%", p_class_name);
- Ref<CSharpScript> script;
- script.instance();
- script->set_source_code(script_template);
- script->set_name(p_class_name);
- return script;
- }
- bool CSharpLanguage::is_using_templates() {
- return true;
- }
- void CSharpLanguage::make_template(const String &p_class_name, const String &p_base_class_name, Ref<Script> &p_script) {
- String src = p_script->get_source_code();
- String base_class_name = get_base_class_name(p_base_class_name, p_class_name);
- src = src.replace("%BASE%", base_class_name)
- .replace("%CLASS%", p_class_name)
- .replace("%TS%", _get_indentation());
- p_script->set_source_code(src);
- }
- String CSharpLanguage::validate_path(const String &p_path) const {
- String class_name = p_path.get_file().get_basename();
- List<String> keywords;
- get_reserved_words(&keywords);
- if (keywords.find(class_name)) {
- return TTR("Class name can't be a reserved keyword");
- }
- return "";
- }
- Script *CSharpLanguage::create_script() const {
- return memnew(CSharpScript);
- }
- bool CSharpLanguage::has_named_classes() const {
- return false;
- }
- bool CSharpLanguage::supports_builtin_mode() const {
- return false;
- }
- #ifdef TOOLS_ENABLED
- static String variant_type_to_managed_name(const String &p_var_type_name) {
- if (p_var_type_name.empty())
- return "object";
- if (!ClassDB::class_exists(p_var_type_name)) {
- return p_var_type_name;
- }
- if (p_var_type_name == Variant::get_type_name(Variant::OBJECT))
- return "Godot.Object";
- if (p_var_type_name == Variant::get_type_name(Variant::REAL)) {
- #ifdef REAL_T_IS_DOUBLE
- return "double";
- #else
- return "float";
- #endif
- }
- if (p_var_type_name == Variant::get_type_name(Variant::STRING))
- return "string";
- if (p_var_type_name == Variant::get_type_name(Variant::DICTIONARY))
- return "Collections.Dictionary";
- if (p_var_type_name == Variant::get_type_name(Variant::ARRAY))
- return "Collections.Array";
- if (p_var_type_name == Variant::get_type_name(Variant::POOL_BYTE_ARRAY))
- return "byte[]";
- if (p_var_type_name == Variant::get_type_name(Variant::POOL_INT_ARRAY))
- return "int[]";
- if (p_var_type_name == Variant::get_type_name(Variant::POOL_REAL_ARRAY)) {
- #ifdef REAL_T_IS_DOUBLE
- return "double[]";
- #else
- return "float[]";
- #endif
- }
- if (p_var_type_name == Variant::get_type_name(Variant::POOL_STRING_ARRAY))
- return "string[]";
- if (p_var_type_name == Variant::get_type_name(Variant::POOL_VECTOR2_ARRAY))
- return "Vector2[]";
- if (p_var_type_name == Variant::get_type_name(Variant::POOL_VECTOR3_ARRAY))
- return "Vector3[]";
- if (p_var_type_name == Variant::get_type_name(Variant::POOL_COLOR_ARRAY))
- return "Color[]";
- Variant::Type var_types[] = {
- Variant::BOOL,
- Variant::INT,
- Variant::VECTOR2,
- Variant::RECT2,
- Variant::VECTOR3,
- Variant::TRANSFORM2D,
- Variant::PLANE,
- Variant::QUAT,
- Variant::AABB,
- Variant::BASIS,
- Variant::TRANSFORM,
- Variant::COLOR,
- Variant::NODE_PATH,
- Variant::_RID
- };
- for (int i = 0; i < sizeof(var_types) / sizeof(Variant::Type); i++) {
- if (p_var_type_name == Variant::get_type_name(var_types[i]))
- return p_var_type_name;
- }
- return "object";
- }
- String CSharpLanguage::make_function(const String &, const String &p_name, const PoolStringArray &p_args) const {
-
-
-
- String s = "private void " + p_name + "(";
- for (int i = 0; i < p_args.size(); i++) {
- const String &arg = p_args[i];
- if (i > 0)
- s += ", ";
- s += variant_type_to_managed_name(arg.get_slice(":", 1)) + " " + escape_csharp_keyword(arg.get_slice(":", 0));
- }
- s += ")\n{\n // Replace with function body.\n}\n";
- return s;
- }
- #else
- String CSharpLanguage::make_function(const String &, const String &, const PoolStringArray &) const {
- return String();
- }
- #endif
- String CSharpLanguage::_get_indentation() const {
- #ifdef TOOLS_ENABLED
- if (Engine::get_singleton()->is_editor_hint()) {
- bool use_space_indentation = EDITOR_DEF("text_editor/indent/type", 0);
- if (use_space_indentation) {
- int indent_size = EDITOR_DEF("text_editor/indent/size", 4);
- String space_indent = "";
- for (int i = 0; i < indent_size; i++) {
- space_indent += " ";
- }
- return space_indent;
- }
- }
- #endif
- return "\t";
- }
- Vector<ScriptLanguage::StackInfo> CSharpLanguage::debug_get_current_stack_info() {
- #ifdef DEBUG_ENABLED
- _TLS_RECURSION_GUARD_V_(Vector<StackInfo>());
- if (!gdmono->is_runtime_initialized() || !GDMono::get_singleton()->get_core_api_assembly() || !GDMonoUtils::mono_cache.corlib_cache_updated)
- return Vector<StackInfo>();
- MonoObject *stack_trace = mono_object_new(mono_domain_get(), CACHED_CLASS(System_Diagnostics_StackTrace)->get_mono_ptr());
- MonoBoolean need_file_info = true;
- void *ctor_args[1] = { &need_file_info };
- CACHED_METHOD(System_Diagnostics_StackTrace, ctor_bool)->invoke_raw(stack_trace, ctor_args);
- Vector<StackInfo> si;
- si = stack_trace_get_info(stack_trace);
- return si;
- #else
- return Vector<StackInfo>();
- #endif
- }
- #ifdef DEBUG_ENABLED
- Vector<ScriptLanguage::StackInfo> CSharpLanguage::stack_trace_get_info(MonoObject *p_stack_trace) {
- _TLS_RECURSION_GUARD_V_(Vector<StackInfo>());
- MonoException *exc = NULL;
- MonoArray *frames = invoke_method_thunk(CACHED_METHOD_THUNK(System_Diagnostics_StackTrace, GetFrames), p_stack_trace, (MonoObject **)&exc);
- if (exc) {
- GDMonoUtils::debug_print_unhandled_exception(exc);
- return Vector<StackInfo>();
- }
- int frame_count = mono_array_length(frames);
- if (frame_count <= 0)
- return Vector<StackInfo>();
- GDMonoUtils::DebugUtils_StackFrameInfo get_sf_info = CACHED_METHOD_THUNK(DebuggingUtils, GetStackFrameInfo);
- Vector<StackInfo> si;
- si.resize(frame_count);
- for (int i = 0; i < frame_count; i++) {
- StackInfo &sif = si.write[i];
- MonoObject *frame = mono_array_get(frames, MonoObject *, i);
- MonoString *file_name;
- int file_line_num;
- MonoString *method_decl;
- invoke_method_thunk(get_sf_info, frame, &file_name, &file_line_num, &method_decl, (MonoObject **)&exc);
- if (exc) {
- GDMonoUtils::debug_print_unhandled_exception(exc);
- return Vector<StackInfo>();
- }
-
-
-
- sif.file = GDMonoMarshal::mono_string_to_godot(file_name);
- sif.line = file_line_num;
- sif.func = GDMonoMarshal::mono_string_to_godot(method_decl);
- }
- return si;
- }
- #endif
- void CSharpLanguage::frame() {
- if (gdmono && gdmono->is_runtime_initialized() && gdmono->get_core_api_assembly() != NULL) {
- const Ref<MonoGCHandle> &task_scheduler_handle = GDMonoUtils::mono_cache.task_scheduler_handle;
- if (task_scheduler_handle.is_valid()) {
- MonoObject *task_scheduler = task_scheduler_handle->get_target();
- if (task_scheduler) {
- MonoException *exc = NULL;
- invoke_method_thunk(CACHED_METHOD_THUNK(GodotTaskScheduler, Activate), task_scheduler, (MonoObject **)&exc);
- if (exc) {
- GDMonoUtils::debug_unhandled_exception(exc);
- _UNREACHABLE_();
- }
- }
- }
- }
- }
- struct CSharpScriptDepSort {
-
- bool operator()(const Ref<CSharpScript> &A, const Ref<CSharpScript> &B) const {
- if (A == B)
- return false;
- GDMonoClass *I = B->base;
- while (I) {
- if (I == A->script_class) {
-
- return true;
- }
- I = I->get_parent_class();
- }
- return false;
- }
- };
- void CSharpLanguage::reload_all_scripts() {
- #ifdef DEBUG_ENABLED
- List<Ref<CSharpScript> > scripts;
- {
- SCOPED_MUTEX_LOCK(script_instances_mutex);
- SelfList<CSharpScript> *elem = script_list.first();
- while (elem) {
- if (elem->self()->get_path().is_resource_file()) {
- scripts.push_back(Ref<CSharpScript>(elem->self()));
- }
- elem = elem->next();
- }
- }
-
- scripts.sort_custom<CSharpScriptDepSort>();
- for (List<Ref<CSharpScript> >::Element *E = scripts.front(); E; E = E->next()) {
- E->get()->load_source_code(E->get()->get_path());
- E->get()->reload(true);
- }
- #endif
- }
- void CSharpLanguage::reload_tool_script(const Ref<Script> &p_script, bool p_soft_reload) {
- (void)p_script;
- #ifdef TOOLS_ENABLED
- MonoReloadNode::get_singleton()->restart_reload_timer();
- if (is_assembly_reloading_needed()) {
- reload_assemblies(p_soft_reload);
- }
- #endif
- }
- #ifdef TOOLS_ENABLED
- bool CSharpLanguage::is_assembly_reloading_needed() {
- if (!gdmono->is_runtime_initialized())
- return false;
- GDMonoAssembly *proj_assembly = gdmono->get_project_assembly();
- String name = ProjectSettings::get_singleton()->get("application/config/name");
- if (name.empty()) {
- name = "UnnamedProject";
- }
- name += ".dll";
- if (proj_assembly) {
- String proj_asm_path = proj_assembly->get_path();
- if (!FileAccess::exists(proj_assembly->get_path())) {
-
- proj_asm_path = GodotSharpDirs::get_res_temp_assemblies_dir().plus_file(name);
- if (!FileAccess::exists(proj_asm_path))
- return false;
- }
- if (FileAccess::get_modified_time(proj_asm_path) <= proj_assembly->get_modified_time())
- return false;
- } else {
- if (!FileAccess::exists(GodotSharpDirs::get_res_temp_assemblies_dir().plus_file(name)))
- return false;
- }
- if (!gdmono->get_core_api_assembly() && gdmono->metadata_is_api_assembly_invalidated(APIAssembly::API_CORE))
- return false;
- if (!gdmono->get_editor_api_assembly() && gdmono->metadata_is_api_assembly_invalidated(APIAssembly::API_EDITOR))
- return false;
- return true;
- }
- void CSharpLanguage::reload_assemblies(bool p_soft_reload) {
- if (!gdmono->is_runtime_initialized())
- return;
-
- List<Ref<CSharpScript> > scripts;
- {
- SCOPED_MUTEX_LOCK(script_instances_mutex);
- for (SelfList<CSharpScript> *elem = script_list.first(); elem; elem = elem->next()) {
- if (elem->self()->get_path().is_resource_file()) {
-
- scripts.push_back(Ref<CSharpScript>(elem->self()));
- }
- }
- }
- List<Ref<CSharpScript> > to_reload;
-
- scripts.sort_custom<CSharpScriptDepSort>();
- for (List<Ref<CSharpScript> >::Element *E = scripts.front(); E; E = E->next()) {
- Ref<CSharpScript> &script = E->get();
- to_reload.push_back(script);
-
-
- for (Set<Object *>::Element *E = script->instances.front(); E; E = E->next()) {
- script->pending_reload_instances.insert(E->get()->get_instance_id());
- }
- #ifdef TOOLS_ENABLED
- for (Set<PlaceHolderScriptInstance *>::Element *E = script->placeholders.front(); E; E = E->next()) {
- script->pending_reload_instances.insert(E->get()->get_owner()->get_instance_id());
- }
- #endif
-
-
- Map<ObjectID, CSharpScript::StateBackup> &owners_map = script->pending_reload_state;
- while (script->instances.front()) {
- Object *obj = script->instances.front()->get();
-
- CSharpScript::StateBackup state;
- ERR_CONTINUE(!obj->get_script_instance());
-
- obj->get_script_instance()->get_property_state(state.properties);
- Ref<MonoGCHandle> gchandle = CAST_CSHARP_INSTANCE(obj->get_script_instance())->gchandle;
- if (gchandle.is_valid())
- gchandle->release();
- owners_map[obj->get_instance_id()] = state;
- obj->set_script(RefPtr());
- }
- script->_clear();
- }
-
- if (gdmono->reload_scripts_domain() != OK) {
-
-
- for (List<Ref<CSharpScript> >::Element *E = to_reload.front(); E; E = E->next()) {
- Ref<CSharpScript> scr = E->get();
- for (const Map<ObjectID, CSharpScript::StateBackup>::Element *F = scr->pending_reload_state.front(); F; F = F->next()) {
- Object *obj = ObjectDB::get_instance(F->key());
- if (!obj)
- continue;
- ObjectID obj_id = obj->get_instance_id();
-
- obj->set_script(scr.get_ref_ptr());
- PlaceHolderScriptInstance *placeholder = scr->placeholder_instance_create(obj);
- obj->set_script_instance(placeholder);
-
-
- placeholder->set_build_failed(true);
-
- for (List<Pair<StringName, Variant> >::Element *G = scr->pending_reload_state[obj_id].properties.front(); G; G = G->next()) {
- placeholder->property_set_fallback(G->get().first, G->get().second, NULL);
- }
- scr->pending_reload_state.erase(obj_id);
- }
- }
- return;
- }
- for (List<Ref<CSharpScript> >::Element *E = to_reload.front(); E; E = E->next()) {
- Ref<CSharpScript> scr = E->get();
- scr->exports_invalidated = true;
- scr->signals_invalidated = true;
- scr->reload(p_soft_reload);
- scr->update_exports();
- {
- #ifdef DEBUG_ENABLED
- for (Set<ObjectID>::Element *F = scr->pending_reload_instances.front(); F; F = F->next()) {
- ObjectID obj_id = F->get();
- Object *obj = ObjectDB::get_instance(obj_id);
- if (!obj) {
- scr->pending_reload_state.erase(obj_id);
- continue;
- }
- ScriptInstance *si = obj->get_script_instance();
- #ifdef TOOLS_ENABLED
- if (si) {
-
-
- CRASH_COND(!si->is_placeholder());
- if (scr->is_tool() || ScriptServer::is_scripting_enabled()) {
-
- CSharpScript::StateBackup &state_backup = scr->pending_reload_state[obj_id];
-
- obj->get_script_instance()->get_property_state(state_backup.properties);
- ScriptInstance *script_instance = scr->instance_create(obj);
- if (script_instance) {
- scr->placeholders.erase(static_cast<PlaceHolderScriptInstance *>(si));
- obj->set_script_instance(script_instance);
- }
-
- for (List<Pair<StringName, Variant> >::Element *G = state_backup.properties.front(); G; G = G->next()) {
- script_instance->set(G->get().first, G->get().second);
- }
- scr->pending_reload_state.erase(obj_id);
- }
- continue;
- }
- #else
- CRASH_COND(si != NULL);
- #endif
-
- obj->set_script(scr.get_ref_ptr());
-
- for (List<Pair<StringName, Variant> >::Element *G = scr->pending_reload_state[obj_id].properties.front(); G; G = G->next()) {
- obj->get_script_instance()->set(G->get().first, G->get().second);
- }
- scr->pending_reload_state.erase(obj_id);
- }
- #endif
- scr->pending_reload_instances.clear();
- }
- }
-
- if (Engine::get_singleton()->is_editor_hint()) {
- EditorNode::get_singleton()->get_inspector()->update_tree();
- NodeDock::singleton->update_lists();
- }
- }
- #endif
- void CSharpLanguage::project_assembly_loaded() {
- scripts_metadata.clear();
- String scripts_metadata_filename = "scripts_metadata.";
- #ifdef TOOLS_ENABLED
- scripts_metadata_filename += Engine::get_singleton()->is_editor_hint() ? "editor" : "editor_player";
- #else
- #ifdef DEBUG_ENABLED
- scripts_metadata_filename += "debug";
- #else
- scripts_metadata_filename += "release";
- #endif
- #endif
- String scripts_metadata_path = GodotSharpDirs::get_res_metadata_dir().plus_file(scripts_metadata_filename);
- if (FileAccess::exists(scripts_metadata_path)) {
- String old_json;
- Error ferr = read_all_file_utf8(scripts_metadata_path, old_json);
- ERR_FAIL_COND(ferr != OK);
- Variant old_dict_var;
- String err_str;
- int err_line;
- Error json_err = JSON::parse(old_json, old_dict_var, err_str, err_line);
- if (json_err != OK) {
- ERR_PRINTS("Failed to parse metadata file: '" + err_str + "' (" + String::num_int64(err_line) + ")");
- return;
- }
- scripts_metadata = old_dict_var.operator Dictionary();
- print_verbose("Successfully loaded scripts metadata");
- } else {
- if (!Engine::get_singleton()->is_editor_hint()) {
- ERR_PRINT("Missing scripts metadata file");
- }
- }
- }
- void CSharpLanguage::get_recognized_extensions(List<String> *p_extensions) const {
- p_extensions->push_back("cs");
- }
- #ifdef TOOLS_ENABLED
- Error CSharpLanguage::open_in_external_editor(const Ref<Script> &p_script, int p_line, int p_col) {
- return GodotSharpEditor::get_singleton()->open_in_external_editor(p_script, p_line, p_col);
- }
- bool CSharpLanguage::overrides_external_editor() {
- return GodotSharpEditor::get_singleton()->overrides_external_editor();
- }
- #endif
- void CSharpLanguage::thread_enter() {
- #if 0
- if (mono->is_runtime_initialized()) {
- GDMonoUtils::attach_current_thread();
- }
- #endif
- }
- void CSharpLanguage::thread_exit() {
- #if 0
- if (mono->is_runtime_initialized()) {
- GDMonoUtils::detach_current_thread();
- }
- #endif
- }
- bool CSharpLanguage::debug_break_parse(const String &p_file, int p_line, const String &p_error) {
-
- if (ScriptDebugger::get_singleton() && Thread::get_caller_id() == Thread::get_main_id()) {
-
-
-
-
- ScriptDebugger::get_singleton()->debug(this, false);
- return true;
- } else {
- return false;
- }
- }
- bool CSharpLanguage::debug_break(const String &p_error, bool p_allow_continue) {
- if (ScriptDebugger::get_singleton() && Thread::get_caller_id() == Thread::get_main_id()) {
-
-
-
-
- ScriptDebugger::get_singleton()->debug(this, p_allow_continue);
- return true;
- } else {
- return false;
- }
- }
- void CSharpLanguage::set_language_index(int p_idx) {
- ERR_FAIL_COND(lang_idx != -1);
- lang_idx = p_idx;
- }
- void CSharpLanguage::release_script_gchandle(Ref<MonoGCHandle> &p_gchandle) {
- if (!p_gchandle->is_released()) {
- SCOPED_MUTEX_LOCK(get_singleton()->script_gchandle_release_mutex);
- p_gchandle->release();
- }
- }
- void CSharpLanguage::release_script_gchandle(MonoObject *p_expected_obj, Ref<MonoGCHandle> &p_gchandle) {
- uint32_t pinned_gchandle = MonoGCHandle::new_strong_handle_pinned(p_expected_obj);
- if (!p_gchandle->is_released()) {
- SCOPED_MUTEX_LOCK(get_singleton()->script_gchandle_release_mutex);
- MonoObject *target = p_gchandle->get_target();
-
-
-
-
- if (target == p_expected_obj || target == NULL) {
- p_gchandle->release();
- }
- }
- MonoGCHandle::free_handle(pinned_gchandle);
- }
- CSharpLanguage::CSharpLanguage() {
- ERR_FAIL_COND(singleton);
- singleton = this;
- finalizing = false;
- gdmono = NULL;
- #ifdef NO_THREADS
- script_instances_mutex = NULL;
- script_gchandle_release_mutex = NULL;
- language_bind_mutex = NULL;
- #else
- script_instances_mutex = Mutex::create();
- script_gchandle_release_mutex = Mutex::create();
- language_bind_mutex = Mutex::create();
- #endif
- lang_idx = -1;
- }
- CSharpLanguage::~CSharpLanguage() {
- finish();
- if (script_instances_mutex) {
- memdelete(script_instances_mutex);
- script_instances_mutex = NULL;
- }
- if (language_bind_mutex) {
- memdelete(language_bind_mutex);
- language_bind_mutex = NULL;
- }
- if (script_gchandle_release_mutex) {
- memdelete(script_gchandle_release_mutex);
- script_gchandle_release_mutex = NULL;
- }
- singleton = NULL;
- }
- void *CSharpLanguage::alloc_instance_binding_data(Object *p_object) {
- #ifdef DEBUG_ENABLED
-
- if (p_object->get_script_instance())
- CRASH_COND(NULL != CAST_CSHARP_INSTANCE(p_object->get_script_instance()));
- #endif
- StringName type_name = p_object->get_class_name();
-
- const ClassDB::ClassInfo *classinfo = ClassDB::classes.getptr(type_name);
- while (classinfo && !classinfo->exposed)
- classinfo = classinfo->inherits_ptr;
- ERR_FAIL_NULL_V(classinfo, NULL);
- type_name = classinfo->name;
- GDMonoClass *type_class = GDMonoUtils::type_get_proxy_class(type_name);
- ERR_FAIL_NULL_V(type_class, NULL);
- MonoObject *mono_object = GDMonoUtils::create_managed_for_godot_object(type_class, type_name, p_object);
- ERR_FAIL_NULL_V(mono_object, NULL);
- CSharpScriptBinding script_binding;
- script_binding.type_name = type_name;
- script_binding.wrapper_class = type_class;
- script_binding.gchandle = MonoGCHandle::create_strong(mono_object);
- void *data;
- {
- SCOPED_MUTEX_LOCK(language_bind_mutex);
- data = (void *)script_bindings.insert(p_object, script_binding);
- }
-
- Reference *ref = Object::cast_to<Reference>(p_object);
- if (ref) {
-
-
-
-
- ref->reference();
- }
- return data;
- }
- void CSharpLanguage::free_instance_binding_data(void *p_data) {
- if (GDMono::get_singleton() == NULL) {
- #ifdef DEBUG_ENABLED
- CRASH_COND(!script_bindings.empty());
- #endif
-
- return;
- }
- if (finalizing)
- return;
- {
- SCOPED_MUTEX_LOCK(language_bind_mutex);
- Map<Object *, CSharpScriptBinding>::Element *data = (Map<Object *, CSharpScriptBinding>::Element *)p_data;
-
- MonoObject *mono_object = data->value().gchandle->get_target();
- if (mono_object) {
- CACHED_FIELD(GodotObject, ptr)->set_value_raw(mono_object, NULL);
- }
- script_bindings.erase(data);
- }
- }
- void CSharpLanguage::refcount_incremented_instance_binding(Object *p_object) {
- Reference *ref_owner = Object::cast_to<Reference>(p_object);
- #ifdef DEBUG_ENABLED
- CRASH_COND(!ref_owner);
- #endif
- void *data = p_object->get_script_instance_binding(get_language_index());
- if (!data)
- return;
- Ref<MonoGCHandle> &gchandle = ((Map<Object *, CSharpScriptBinding>::Element *)data)->get().gchandle;
- if (ref_owner->reference_get_count() > 1 && gchandle->is_weak()) {
-
-
-
- MonoObject *target = gchandle->get_target();
- if (!target)
- return;
-
- uint32_t strong_gchandle = MonoGCHandle::new_strong_handle(target);
- gchandle->release();
- gchandle->set_handle(strong_gchandle, MonoGCHandle::STRONG_HANDLE);
- }
- }
- bool CSharpLanguage::refcount_decremented_instance_binding(Object *p_object) {
- Reference *ref_owner = Object::cast_to<Reference>(p_object);
- #ifdef DEBUG_ENABLED
- CRASH_COND(!ref_owner);
- #endif
- int refcount = ref_owner->reference_get_count();
- void *data = p_object->get_script_instance_binding(get_language_index());
- if (!data)
- return refcount == 0;
- Ref<MonoGCHandle> &gchandle = ((Map<Object *, CSharpScriptBinding>::Element *)data)->get().gchandle;
- if (refcount == 1 && !gchandle->is_weak()) {
-
-
- MonoObject *target = gchandle->get_target();
- if (!target)
- return refcount == 0;
-
- uint32_t weak_gchandle = MonoGCHandle::new_weak_handle(target);
- gchandle->release();
- gchandle->set_handle(weak_gchandle, MonoGCHandle::WEAK_HANDLE);
- return false;
- }
- return refcount == 0;
- }
- CSharpInstance *CSharpInstance::create_for_managed_type(Object *p_owner, CSharpScript *p_script, const Ref<MonoGCHandle> &p_gchandle) {
- CSharpInstance *instance = memnew(CSharpInstance);
- Reference *ref = Object::cast_to<Reference>(p_owner);
- instance->base_ref = ref != NULL;
- instance->script = Ref<CSharpScript>(p_script);
- instance->owner = p_owner;
- instance->gchandle = p_gchandle;
- if (instance->base_ref)
- instance->_reference_owner_unsafe();
- p_script->instances.insert(p_owner);
- return instance;
- }
- MonoObject *CSharpInstance::get_mono_object() const {
- ERR_FAIL_COND_V(gchandle.is_null(), NULL);
- return gchandle->get_target();
- }
- bool CSharpInstance::set(const StringName &p_name, const Variant &p_value) {
- ERR_FAIL_COND_V(!script.is_valid(), false);
- MonoObject *mono_object = get_mono_object();
- ERR_FAIL_NULL_V(mono_object, false);
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- GDMonoField *field = script->script_class->get_field(p_name);
- if (field) {
- field->set_value_from_variant(mono_object, p_value);
- return true;
- }
- GDMonoProperty *property = script->script_class->get_property(p_name);
- if (property) {
- property->set_value(mono_object, GDMonoMarshal::variant_to_mono_object(p_value, property->get_type()));
- return true;
- }
- top = top->get_parent_class();
- }
-
- top = script->script_class;
- while (top && top != script->native) {
- GDMonoMethod *method = top->get_method(CACHED_STRING_NAME(_set), 2);
- if (method) {
- Variant name = p_name;
- const Variant *args[2] = { &name, &p_value };
- MonoObject *ret = method->invoke(mono_object, args);
- if (ret && GDMonoMarshal::unbox<MonoBoolean>(ret))
- return true;
- break;
- }
- top = top->get_parent_class();
- }
- return false;
- }
- bool CSharpInstance::get(const StringName &p_name, Variant &r_ret) const {
- ERR_FAIL_COND_V(!script.is_valid(), false);
- MonoObject *mono_object = get_mono_object();
- ERR_FAIL_NULL_V(mono_object, false);
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- GDMonoField *field = top->get_field(p_name);
- if (field) {
- MonoObject *value = field->get_value(mono_object);
- r_ret = GDMonoMarshal::mono_object_to_variant(value);
- return true;
- }
- GDMonoProperty *property = top->get_property(p_name);
- if (property) {
- MonoException *exc = NULL;
- MonoObject *value = property->get_value(mono_object, &exc);
- if (exc) {
- r_ret = Variant();
- GDMonoUtils::set_pending_exception(exc);
- } else {
- r_ret = GDMonoMarshal::mono_object_to_variant(value);
- }
- return true;
- }
- top = top->get_parent_class();
- }
-
- top = script->script_class;
- while (top && top != script->native) {
- GDMonoMethod *method = top->get_method(CACHED_STRING_NAME(_get), 1);
- if (method) {
- Variant name = p_name;
- const Variant *args[1] = { &name };
- MonoObject *ret = method->invoke(mono_object, args);
- if (ret) {
- r_ret = GDMonoMarshal::mono_object_to_variant(ret);
- return true;
- }
- break;
- }
- top = top->get_parent_class();
- }
- return false;
- }
- void CSharpInstance::get_property_list(List<PropertyInfo> *p_properties) const {
- for (Map<StringName, PropertyInfo>::Element *E = script->member_info.front(); E; E = E->next()) {
- p_properties->push_back(E->value());
- }
- }
- Variant::Type CSharpInstance::get_property_type(const StringName &p_name, bool *r_is_valid) const {
- if (script->member_info.has(p_name)) {
- if (r_is_valid)
- *r_is_valid = true;
- return script->member_info[p_name].type;
- }
- if (r_is_valid)
- *r_is_valid = false;
- return Variant::NIL;
- }
- bool CSharpInstance::has_method(const StringName &p_method) const {
- if (!script.is_valid())
- return false;
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- if (top->has_fetched_method_unknown_params(p_method)) {
- return true;
- }
- top = top->get_parent_class();
- }
- return false;
- }
- Variant CSharpInstance::call(const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error) {
- MonoObject *mono_object = get_mono_object();
- if (!mono_object) {
- r_error.error = Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL;
- ERR_FAIL_V(Variant());
- }
- if (!script.is_valid())
- ERR_FAIL_V(Variant());
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- GDMonoMethod *method = top->get_method(p_method, p_argcount);
- if (method) {
- MonoObject *return_value = method->invoke(mono_object, p_args);
- r_error.error = Variant::CallError::CALL_OK;
- if (return_value) {
- return GDMonoMarshal::mono_object_to_variant(return_value);
- } else {
- return Variant();
- }
- }
- top = top->get_parent_class();
- }
- r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
- return Variant();
- }
- void CSharpInstance::call_multilevel(const StringName &p_method, const Variant **p_args, int p_argcount) {
- if (script.is_valid()) {
- MonoObject *mono_object = get_mono_object();
- ERR_FAIL_NULL(mono_object);
- _call_multilevel(mono_object, p_method, p_args, p_argcount);
- }
- }
- void CSharpInstance::_call_multilevel(MonoObject *p_mono_object, const StringName &p_method, const Variant **p_args, int p_argcount) {
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- GDMonoMethod *method = top->get_method(p_method, p_argcount);
- if (method) {
- method->invoke(p_mono_object, p_args);
- return;
- }
- top = top->get_parent_class();
- }
- }
- void CSharpInstance::call_multilevel_reversed(const StringName &p_method, const Variant **p_args, int p_argcount) {
-
- call_multilevel(p_method, p_args, p_argcount);
- }
- bool CSharpInstance::_reference_owner_unsafe() {
- #ifdef DEBUG_ENABLED
- CRASH_COND(!base_ref);
- CRASH_COND(owner == NULL);
- CRASH_COND(unsafe_referenced);
- #endif
-
-
-
-
-
- bool success = Object::cast_to<Reference>(owner)->init_ref();
- unsafe_referenced = success;
- return success;
- }
- bool CSharpInstance::_unreference_owner_unsafe() {
- #ifdef DEBUG_ENABLED
- CRASH_COND(!base_ref);
- CRASH_COND(owner == NULL);
- #endif
- if (!unsafe_referenced)
- return false;
- unsafe_referenced = false;
-
-
-
- bool die = static_cast<Reference *>(owner)->unreference();
- if (die) {
- memdelete(owner);
- owner = NULL;
- }
- return die;
- }
- MonoObject *CSharpInstance::_internal_new_managed() {
- #ifdef DEBUG_ENABLED
- CRASH_COND(!gchandle.is_valid());
- #endif
- CSharpLanguage::get_singleton()->release_script_gchandle(gchandle);
- ERR_FAIL_NULL_V(owner, NULL);
- ERR_FAIL_COND_V(script.is_null(), NULL);
- if (base_ref)
- _reference_owner_unsafe();
- MonoObject *mono_object = mono_object_new(SCRIPTS_DOMAIN, script->script_class->get_mono_ptr());
- if (!mono_object) {
- script = Ref<CSharpScript>();
- owner->set_script_instance(NULL);
- ERR_EXPLAIN("Failed to allocate memory for the object");
- ERR_FAIL_V(NULL);
- }
- CACHED_FIELD(GodotObject, ptr)->set_value_raw(mono_object, owner);
-
- GDMonoMethod *ctor = script->script_class->get_method(CACHED_STRING_NAME(dotctor), 0);
- ctor->invoke_raw(mono_object, NULL);
-
- gchandle = MonoGCHandle::create_strong(mono_object);
- return mono_object;
- }
- void CSharpInstance::mono_object_disposed(MonoObject *p_obj) {
- #ifdef DEBUG_ENABLED
- CRASH_COND(base_ref);
- CRASH_COND(gchandle.is_null());
- #endif
- CSharpLanguage::get_singleton()->release_script_gchandle(p_obj, gchandle);
- }
- void CSharpInstance::mono_object_disposed_baseref(MonoObject *p_obj, bool p_is_finalizer, bool &r_owner_deleted) {
- #ifdef DEBUG_ENABLED
- CRASH_COND(!base_ref);
- CRASH_COND(gchandle.is_null());
- #endif
- if (_unreference_owner_unsafe()) {
- r_owner_deleted = true;
- } else {
- r_owner_deleted = false;
- CSharpLanguage::get_singleton()->release_script_gchandle(p_obj, gchandle);
- if (p_is_finalizer && !GDMono::get_singleton()->is_finalizing_scripts_domain()) {
-
-
-
-
-
-
- _internal_new_managed();
- }
- }
- }
- void CSharpInstance::refcount_incremented() {
- #ifdef DEBUG_ENABLED
- CRASH_COND(!base_ref);
- CRASH_COND(owner == NULL);
- #endif
- Reference *ref_owner = Object::cast_to<Reference>(owner);
- if (ref_owner->reference_get_count() > 1 && gchandle->is_weak()) {
-
-
-
-
- uint32_t strong_gchandle = MonoGCHandle::new_strong_handle(gchandle->get_target());
- gchandle->release();
- gchandle->set_handle(strong_gchandle, MonoGCHandle::STRONG_HANDLE);
- }
- }
- bool CSharpInstance::refcount_decremented() {
- #ifdef DEBUG_ENABLED
- CRASH_COND(!base_ref);
- CRASH_COND(owner == NULL);
- #endif
- Reference *ref_owner = Object::cast_to<Reference>(owner);
- int refcount = ref_owner->reference_get_count();
- if (refcount == 1 && !gchandle->is_weak()) {
-
-
-
- uint32_t weak_gchandle = MonoGCHandle::new_weak_handle(gchandle->get_target());
- gchandle->release();
- gchandle->set_handle(weak_gchandle, MonoGCHandle::WEAK_HANDLE);
- return false;
- }
- ref_dying = (refcount == 0);
- return ref_dying;
- }
- MultiplayerAPI::RPCMode CSharpInstance::_member_get_rpc_mode(GDMonoClassMember *p_member) const {
- if (p_member->has_attribute(CACHED_CLASS(RemoteAttribute)))
- return MultiplayerAPI::RPC_MODE_REMOTE;
- if (p_member->has_attribute(CACHED_CLASS(MasterAttribute)))
- return MultiplayerAPI::RPC_MODE_MASTER;
- if (p_member->has_attribute(CACHED_CLASS(PuppetAttribute)))
- return MultiplayerAPI::RPC_MODE_PUPPET;
- if (p_member->has_attribute(CACHED_CLASS(SlaveAttribute)))
- return MultiplayerAPI::RPC_MODE_PUPPET;
- if (p_member->has_attribute(CACHED_CLASS(RemoteSyncAttribute)))
- return MultiplayerAPI::RPC_MODE_REMOTESYNC;
- if (p_member->has_attribute(CACHED_CLASS(SyncAttribute)))
- return MultiplayerAPI::RPC_MODE_REMOTESYNC;
- if (p_member->has_attribute(CACHED_CLASS(MasterSyncAttribute)))
- return MultiplayerAPI::RPC_MODE_MASTERSYNC;
- if (p_member->has_attribute(CACHED_CLASS(PuppetSyncAttribute)))
- return MultiplayerAPI::RPC_MODE_PUPPETSYNC;
- return MultiplayerAPI::RPC_MODE_DISABLED;
- }
- MultiplayerAPI::RPCMode CSharpInstance::get_rpc_mode(const StringName &p_method) const {
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- GDMonoMethod *method = top->get_fetched_method_unknown_params(p_method);
- if (method && !method->is_static())
- return _member_get_rpc_mode(method);
- top = top->get_parent_class();
- }
- return MultiplayerAPI::RPC_MODE_DISABLED;
- }
- MultiplayerAPI::RPCMode CSharpInstance::get_rset_mode(const StringName &p_variable) const {
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- GDMonoField *field = top->get_field(p_variable);
- if (field && !field->is_static())
- return _member_get_rpc_mode(field);
- GDMonoProperty *property = top->get_property(p_variable);
- if (property && !property->is_static())
- return _member_get_rpc_mode(property);
- top = top->get_parent_class();
- }
- return MultiplayerAPI::RPC_MODE_DISABLED;
- }
- void CSharpInstance::notification(int p_notification) {
- if (p_notification == Object::NOTIFICATION_PREDELETE) {
-
-
-
- predelete_notified = true;
- if (base_ref) {
-
-
-
-
-
-
- return;
- }
- _call_notification(p_notification);
- MonoObject *mono_object = get_mono_object();
- ERR_FAIL_NULL(mono_object);
- MonoException *exc = NULL;
- GDMonoUtils::dispose(mono_object, &exc);
- if (exc) {
- GDMonoUtils::set_pending_exception(exc);
- }
- return;
- }
- _call_notification(p_notification);
- }
- void CSharpInstance::_call_notification(int p_notification) {
- MonoObject *mono_object = get_mono_object();
- ERR_FAIL_NULL(mono_object);
-
- uint32_t arg = p_notification;
- void *args[1] = { &arg };
- StringName method_name = CACHED_STRING_NAME(_notification);
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- GDMonoMethod *method = top->get_method(method_name, 1);
- if (method) {
- method->invoke_raw(mono_object, args);
- return;
- }
- top = top->get_parent_class();
- }
- }
- Ref<Script> CSharpInstance::get_script() const {
- return script;
- }
- ScriptLanguage *CSharpInstance::get_language() {
- return CSharpLanguage::get_singleton();
- }
- CSharpInstance::CSharpInstance() :
- owner(NULL),
- base_ref(false),
- ref_dying(false),
- unsafe_referenced(false),
- predelete_notified(false),
- destructing_script_instance(false) {
- }
- CSharpInstance::~CSharpInstance() {
- if (gchandle.is_valid()) {
- if (!predelete_notified && !ref_dying) {
-
-
-
-
-
- MonoObject *mono_object = gchandle->get_target();
- if (mono_object) {
- MonoException *exc = NULL;
- destructing_script_instance = true;
- GDMonoUtils::dispose(mono_object, &exc);
- destructing_script_instance = false;
- if (exc) {
- GDMonoUtils::set_pending_exception(exc);
- }
- }
- }
- gchandle->release();
- }
- if (base_ref && !ref_dying && owner) {
- _unreference_owner_unsafe();
- }
- if (script.is_valid() && owner) {
- SCOPED_MUTEX_LOCK(CSharpLanguage::get_singleton()->script_instances_mutex);
- #ifdef DEBUG_ENABLED
-
- Set<Object *>::Element *match = script->instances.find(owner);
- CRASH_COND(!match);
- script->instances.erase(match);
- #else
- script->instances.erase(owner);
- #endif
- }
- }
- #ifdef TOOLS_ENABLED
- void CSharpScript::_placeholder_erased(PlaceHolderScriptInstance *p_placeholder) {
- placeholders.erase(p_placeholder);
- }
- #endif
- #ifdef TOOLS_ENABLED
- void CSharpScript::_update_exports_values(Map<StringName, Variant> &values, List<PropertyInfo> &propnames) {
- if (base_cache.is_valid()) {
- base_cache->_update_exports_values(values, propnames);
- }
- for (Map<StringName, Variant>::Element *E = exported_members_defval_cache.front(); E; E = E->next()) {
- values[E->key()] = E->get();
- }
- for (List<PropertyInfo>::Element *E = exported_members_cache.front(); E; E = E->next()) {
- propnames.push_back(E->get());
- }
- }
- #endif
- bool CSharpScript::_update_exports() {
- #ifdef TOOLS_ENABLED
- if (!valid) {
- for (Set<PlaceHolderScriptInstance *>::Element *E = placeholders.front(); E; E = E->next()) {
- E->get()->set_build_failed(true);
- }
- return false;
- }
- bool changed = false;
- if (exports_invalidated) {
- exports_invalidated = false;
- changed = true;
- member_info.clear();
- exported_members_cache.clear();
- exported_members_defval_cache.clear();
-
- MonoObject *tmp_object = mono_object_new(SCRIPTS_DOMAIN, script_class->get_mono_ptr());
- if (!tmp_object) {
- ERR_PRINT("Failed to create temporary MonoObject");
- return false;
- }
- uint32_t tmp_pinned_gchandle = MonoGCHandle::new_strong_handle_pinned(tmp_object);
- GDMonoMethod *ctor = script_class->get_method(CACHED_STRING_NAME(dotctor), 0);
- MonoException *ctor_exc = NULL;
- ctor->invoke(tmp_object, NULL, &ctor_exc);
- if (ctor_exc) {
- MonoGCHandle::free_handle(tmp_pinned_gchandle);
- tmp_object = NULL;
- ERR_PRINT("Exception thrown from constructor of temporary MonoObject:");
- GDMonoUtils::debug_print_unhandled_exception(ctor_exc);
- return false;
- }
- GDMonoClass *top = script_class;
- while (top && top != native) {
- PropertyInfo prop_info;
- bool exported;
- const Vector<GDMonoField *> &fields = top->get_all_fields();
- for (int i = fields.size() - 1; i >= 0; i--) {
- GDMonoField *field = fields[i];
- if (_get_member_export(top, field, prop_info, exported)) {
- StringName name = field->get_name();
- if (exported) {
- member_info[name] = prop_info;
- exported_members_cache.push_front(prop_info);
- if (tmp_object) {
- exported_members_defval_cache[name] = GDMonoMarshal::mono_object_to_variant(field->get_value(tmp_object));
- }
- } else {
- member_info[name] = prop_info;
- }
- }
- }
- const Vector<GDMonoProperty *> &properties = top->get_all_properties();
- for (int i = properties.size() - 1; i >= 0; i--) {
- GDMonoProperty *property = properties[i];
- if (_get_member_export(top, property, prop_info, exported)) {
- StringName name = property->get_name();
- if (exported) {
- member_info[name] = prop_info;
- exported_members_cache.push_front(prop_info);
- if (tmp_object) {
- MonoException *exc = NULL;
- MonoObject *ret = property->get_value(tmp_object, &exc);
- if (exc) {
- exported_members_defval_cache[name] = Variant();
- GDMonoUtils::debug_print_unhandled_exception(exc);
- } else {
- exported_members_defval_cache[name] = GDMonoMarshal::mono_object_to_variant(ret);
- }
- }
- } else {
- member_info[name] = prop_info;
- }
- }
- }
- top = top->get_parent_class();
- }
-
- MonoException *exc = NULL;
- GDMonoUtils::dispose(tmp_object, &exc);
- if (exc) {
- ERR_PRINT("Exception thrown from method Dispose() of temporary MonoObject:");
- GDMonoUtils::debug_print_unhandled_exception(exc);
- }
- MonoGCHandle::free_handle(tmp_pinned_gchandle);
- tmp_object = NULL;
- }
- if (placeholders.size()) {
-
- Map<StringName, Variant> values;
- List<PropertyInfo> propnames;
- _update_exports_values(values, propnames);
- for (Set<PlaceHolderScriptInstance *>::Element *E = placeholders.front(); E; E = E->next()) {
- E->get()->set_build_failed(false);
- E->get()->update(propnames, values);
- }
- }
- return changed;
- #endif
- return false;
- }
- void CSharpScript::load_script_signals(GDMonoClass *p_class, GDMonoClass *p_native_class) {
-
- if (!signals_invalidated) {
- return;
- }
-
- _signals.clear();
- GDMonoClass *top = p_class;
- while (top && top != p_native_class) {
- const Vector<GDMonoClass *> &delegates = top->get_all_delegates();
- for (int i = delegates.size() - 1; i >= 0; --i) {
- Vector<Argument> parameters;
- GDMonoClass *delegate = delegates[i];
- if (_get_signal(top, delegate, parameters)) {
- _signals[delegate->get_name()] = parameters;
- }
- }
- top = top->get_parent_class();
- }
- signals_invalidated = false;
- }
- bool CSharpScript::_get_signal(GDMonoClass *p_class, GDMonoClass *p_delegate, Vector<Argument> ¶ms) {
- if (p_delegate->has_attribute(CACHED_CLASS(SignalAttribute))) {
- MonoType *raw_type = p_delegate->get_mono_type();
- if (mono_type_get_type(raw_type) == MONO_TYPE_CLASS) {
-
- GDMonoMethod *invoke = p_delegate->get_method("Invoke", -1);
- Vector<StringName> names;
- Vector<ManagedType> types;
- invoke->get_parameter_names(names);
- invoke->get_parameter_types(types);
- if (names.size() == types.size()) {
- for (int i = 0; i < names.size(); ++i) {
- Argument arg;
- arg.name = names[i];
- arg.type = GDMonoMarshal::managed_to_variant_type(types[i]);
- if (arg.type == Variant::NIL) {
- ERR_PRINTS("Unknown type of signal parameter: " + arg.name + " in " + p_class->get_full_name());
- return false;
- }
- params.push_back(arg);
- }
- return true;
- }
- }
- }
- return false;
- }
- #ifdef TOOLS_ENABLED
- bool CSharpScript::_get_member_export(GDMonoClass *p_class, GDMonoClassMember *p_member, PropertyInfo &r_prop_info, bool &r_exported) {
- StringName name = p_member->get_name();
- if (p_member->is_static()) {
- if (p_member->has_attribute(CACHED_CLASS(ExportAttribute)))
- ERR_PRINTS("Cannot export member because it is static: " + p_class->get_full_name() + "." + name.operator String());
- return false;
- }
- if (member_info.has(name))
- return false;
- ManagedType type;
- if (p_member->get_member_type() == GDMonoClassMember::MEMBER_TYPE_FIELD) {
- type = static_cast<GDMonoField *>(p_member)->get_type();
- } else if (p_member->get_member_type() == GDMonoClassMember::MEMBER_TYPE_PROPERTY) {
- type = static_cast<GDMonoProperty *>(p_member)->get_type();
- } else {
- CRASH_NOW();
- }
- Variant::Type variant_type = GDMonoMarshal::managed_to_variant_type(type);
- if (!p_member->has_attribute(CACHED_CLASS(ExportAttribute))) {
- r_prop_info = PropertyInfo(variant_type, name.operator String(), PROPERTY_HINT_NONE, "", PROPERTY_USAGE_SCRIPT_VARIABLE);
- r_exported = false;
- return true;
- }
- if (p_member->get_member_type() == GDMonoClassMember::MEMBER_TYPE_PROPERTY) {
- GDMonoProperty *property = static_cast<GDMonoProperty *>(p_member);
- if (!property->has_getter() || !property->has_setter()) {
- ERR_PRINTS("Cannot export property because it does not provide a getter or a setter: " + p_class->get_full_name() + "." + name.operator String());
- return false;
- }
- }
- MonoObject *attr = p_member->get_attribute(CACHED_CLASS(ExportAttribute));
- PropertyHint hint = PROPERTY_HINT_NONE;
- String hint_string;
- if (variant_type == Variant::NIL) {
- ERR_PRINTS("Unknown type of exported member: " + p_class->get_full_name() + "." + name.operator String());
- return false;
- } else if (variant_type == Variant::INT && type.type_encoding == MONO_TYPE_VALUETYPE && mono_class_is_enum(type.type_class->get_mono_ptr())) {
- variant_type = Variant::INT;
- hint = PROPERTY_HINT_ENUM;
- Vector<MonoClassField *> fields = type.type_class->get_enum_fields();
- MonoType *enum_basetype = mono_class_enum_basetype(type.type_class->get_mono_ptr());
- String name_only_hint_string;
-
-
-
- bool uses_default_values = true;
- for (int i = 0; i < fields.size(); i++) {
- MonoClassField *field = fields[i];
- if (i > 0) {
- hint_string += ",";
- name_only_hint_string += ",";
- }
- String enum_field_name = mono_field_get_name(field);
- hint_string += enum_field_name;
- name_only_hint_string += enum_field_name;
-
-
-
- MonoObject *val_obj = mono_field_get_value_object(mono_domain_get(), field, NULL);
- if (val_obj == NULL) {
- ERR_PRINTS("Failed to get '" + enum_field_name + "' constant enum value of exported member: " +
- p_class->get_full_name() + "." + name.operator String());
- return false;
- }
- bool r_error;
- uint64_t val = GDMonoUtils::unbox_enum_value(val_obj, enum_basetype, r_error);
- if (r_error) {
- ERR_PRINTS("Failed to unbox '" + enum_field_name + "' constant enum value of exported member: " +
- p_class->get_full_name() + "." + name.operator String());
- return false;
- }
- if (val != i) {
- uses_default_values = false;
- }
- hint_string += ":";
- hint_string += String::num_uint64(val);
- }
- if (uses_default_values) {
-
-
-
- hint_string = name_only_hint_string;
- }
- } else if (variant_type == Variant::OBJECT && CACHED_CLASS(GodotReference)->is_assignable_from(type.type_class)) {
- hint = PROPERTY_HINT_RESOURCE_TYPE;
- hint_string = NATIVE_GDMONOCLASS_NAME(type.type_class);
- } else {
- hint = PropertyHint(CACHED_FIELD(ExportAttribute, hint)->get_int_value(attr));
- hint_string = CACHED_FIELD(ExportAttribute, hintString)->get_string_value(attr);
- }
- r_prop_info = PropertyInfo(variant_type, name.operator String(), hint, hint_string, PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_SCRIPT_VARIABLE);
- r_exported = true;
- return true;
- }
- #endif
- void CSharpScript::_clear() {
- tool = false;
- valid = false;
- base = NULL;
- native = NULL;
- script_class = NULL;
- }
- Variant CSharpScript::call(const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error) {
- if (unlikely(GDMono::get_singleton() == NULL)) {
-
- r_error.error = Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL;
- return Variant();
- }
- GDMonoClass *top = script_class;
- while (top && top != native) {
- GDMonoMethod *method = top->get_method(p_method, p_argcount);
- if (method && method->is_static()) {
- MonoObject *result = method->invoke(NULL, p_args);
- if (result) {
- return GDMonoMarshal::mono_object_to_variant(result);
- } else {
- return Variant();
- }
- }
- top = top->get_parent_class();
- }
-
- return Script::call(p_method, p_args, p_argcount, r_error);
- }
- void CSharpScript::_resource_path_changed() {
- String path = get_path();
- if (!path.empty()) {
- name = get_path().get_file().get_basename();
- }
- }
- bool CSharpScript::_get(const StringName &p_name, Variant &r_ret) const {
- if (p_name == CSharpLanguage::singleton->string_names._script_source) {
- r_ret = get_source_code();
- return true;
- }
- return false;
- }
- bool CSharpScript::_set(const StringName &p_name, const Variant &p_value) {
- if (p_name == CSharpLanguage::singleton->string_names._script_source) {
- set_source_code(p_value);
- reload();
- return true;
- }
- return false;
- }
- void CSharpScript::_get_property_list(List<PropertyInfo> *p_properties) const {
- p_properties->push_back(PropertyInfo(Variant::STRING, CSharpLanguage::singleton->string_names._script_source, PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL));
- }
- void CSharpScript::_bind_methods() {
- ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "new", &CSharpScript::_new, MethodInfo(Variant::OBJECT, "new"));
- }
- Ref<CSharpScript> CSharpScript::create_for_managed_type(GDMonoClass *p_class) {
-
- CRASH_COND(!p_class);
- Ref<CSharpScript> script = memnew(CSharpScript);
- script->name = p_class->get_name();
- script->script_class = p_class;
- script->native = GDMonoUtils::get_class_native_base(script->script_class);
- CRASH_COND(script->native == NULL);
- GDMonoClass *base = script->script_class->get_parent_class();
- if (base != script->native)
- script->base = base;
- #ifdef DEBUG_ENABLED
-
-
-
- if (script->script_class != script->native) {
- GDMonoClass *native_top = script->native;
- while (native_top) {
- native_top->fetch_methods_with_godot_api_checks(script->native);
- if (native_top == CACHED_CLASS(GodotObject))
- break;
- native_top = native_top->get_parent_class();
- }
- }
- #endif
- script->script_class->fetch_methods_with_godot_api_checks(script->native);
-
- GDMonoClass *top = script->script_class;
- while (top && top != script->native) {
- top->fetch_methods_with_godot_api_checks(script->native);
- top = top->get_parent_class();
- }
- script->load_script_signals(script->script_class, script->native);
- return script;
- }
- bool CSharpScript::can_instance() const {
- #ifdef TOOLS_ENABLED
- if (Engine::get_singleton()->is_editor_hint()) {
- if (get_path().find("::") == -1) {
- if (_create_project_solution_if_needed()) {
- CSharpProject::add_item(GodotSharpDirs::get_project_csproj_path(),
- "Compile",
- ProjectSettings::get_singleton()->globalize_path(get_path()));
- } else {
- ERR_PRINTS("Cannot add " + get_path() + " to the C# project because it could not be created.");
- }
- }
- }
- #endif
- #ifdef TOOLS_ENABLED
- bool extra_cond = tool || ScriptServer::is_scripting_enabled();
- #else
- bool extra_cond = true;
- #endif
-
-
-
- if (extra_cond && !script_class) {
- if (GDMono::get_singleton()->get_project_assembly() == NULL) {
-
- ERR_EXPLAIN("Cannot instance script because the project assembly is not loaded. Script: " + get_path());
- ERR_FAIL_V(NULL);
- } else {
-
- ERR_EXPLAIN("Cannot instance script because the class '" + name + "' could not be found. Script: " + get_path());
- ERR_FAIL_V(NULL);
- }
- }
- return valid && extra_cond;
- }
- StringName CSharpScript::get_instance_base_type() const {
- if (native)
- return native->get_name();
- else
- return StringName();
- }
- CSharpInstance *CSharpScript::_create_instance(const Variant **p_args, int p_argcount, Object *p_owner, bool p_isref, Variant::CallError &r_error) {
-
- CSharpInstance *instance = memnew(CSharpInstance);
- instance->base_ref = p_isref;
- instance->script = Ref<CSharpScript>(this);
- instance->owner = p_owner;
- instance->owner->set_script_instance(instance);
- if (instance->base_ref)
- instance->_reference_owner_unsafe();
-
- MonoObject *mono_object = mono_object_new(SCRIPTS_DOMAIN, script_class->get_mono_ptr());
- if (!mono_object) {
- instance->script = Ref<CSharpScript>();
- instance->owner->set_script_instance(NULL);
- r_error.error = Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL;
- ERR_EXPLAIN("Failed to allocate memory for the object");
- ERR_FAIL_V(NULL);
- }
-
- instance->gchandle = MonoGCHandle::create_strong(mono_object);
- {
- SCOPED_MUTEX_LOCK(CSharpLanguage::get_singleton()->script_instances_mutex);
- instances.insert(instance->owner);
- }
- CACHED_FIELD(GodotObject, ptr)->set_value_raw(mono_object, instance->owner);
-
- GDMonoMethod *ctor = script_class->get_method(CACHED_STRING_NAME(dotctor), p_argcount);
- ctor->invoke(mono_object, p_args);
-
-
- return instance;
- }
- Variant CSharpScript::_new(const Variant **p_args, int p_argcount, Variant::CallError &r_error) {
- if (!valid) {
- r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
- return Variant();
- }
- r_error.error = Variant::CallError::CALL_OK;
- REF ref;
- Object *owner = NULL;
- ERR_FAIL_NULL_V(native, Variant());
- owner = ClassDB::instance(NATIVE_GDMONOCLASS_NAME(native));
- Reference *r = Object::cast_to<Reference>(owner);
- if (r) {
- ref = REF(r);
- }
- CSharpInstance *instance = _create_instance(p_args, p_argcount, owner, r != NULL, r_error);
- if (!instance) {
- if (ref.is_null()) {
- memdelete(owner);
- }
- return Variant();
- }
- if (ref.is_valid()) {
- return ref;
- } else {
- return owner;
- }
- }
- ScriptInstance *CSharpScript::instance_create(Object *p_this) {
- #ifdef DEBUG_ENABLED
- CRASH_COND(!valid);
- #endif
- if (native) {
- String native_name = native->get_name();
- if (!ClassDB::is_parent_class(p_this->get_class_name(), native_name)) {
- if (ScriptDebugger::get_singleton()) {
- CSharpLanguage::get_singleton()->debug_break_parse(get_path(), 0, "Script inherits from native type '" + native_name + "', so it can't be instanced in object of type: '" + p_this->get_class() + "'");
- }
- ERR_EXPLAIN("Script inherits from native type '" + native_name + "', so it can't be instanced in object of type: '" + p_this->get_class() + "'");
- ERR_FAIL_V(NULL);
- }
- }
- Variant::CallError unchecked_error;
- return _create_instance(NULL, 0, p_this, Object::cast_to<Reference>(p_this), unchecked_error);
- }
- PlaceHolderScriptInstance *CSharpScript::placeholder_instance_create(Object *p_this) {
- #ifdef TOOLS_ENABLED
- PlaceHolderScriptInstance *si = memnew(PlaceHolderScriptInstance(CSharpLanguage::get_singleton(), Ref<Script>(this), p_this));
- placeholders.insert(si);
- _update_exports();
- return si;
- #else
- return NULL;
- #endif
- }
- bool CSharpScript::instance_has(const Object *p_this) const {
- SCOPED_MUTEX_LOCK(CSharpLanguage::get_singleton()->script_instances_mutex);
- return instances.has((Object *)p_this);
- }
- bool CSharpScript::has_source_code() const {
- return !source.empty();
- }
- String CSharpScript::get_source_code() const {
- return source;
- }
- void CSharpScript::set_source_code(const String &p_code) {
- if (source == p_code)
- return;
- source = p_code;
- #ifdef TOOLS_ENABLED
- source_changed_cache = true;
- #endif
- }
- void CSharpScript::get_script_method_list(List<MethodInfo> *p_list) const {
- if (!script_class)
- return;
-
- const Vector<GDMonoMethod *> &methods = script_class->get_all_methods();
- for (int i = 0; i < methods.size(); ++i) {
- p_list->push_back(methods[i]->get_method_info());
- }
- }
- bool CSharpScript::has_method(const StringName &p_method) const {
- if (!script_class)
- return false;
- return script_class->has_fetched_method_unknown_params(p_method);
- }
- MethodInfo CSharpScript::get_method_info(const StringName &p_method) const {
- if (!script_class)
- return MethodInfo();
- GDMonoClass *top = script_class;
- while (top && top != native) {
- GDMonoMethod *params = top->get_fetched_method_unknown_params(p_method);
- if (params) {
- return params->get_method_info();
- }
- top = top->get_parent_class();
- }
- return MethodInfo();
- }
- Error CSharpScript::reload(bool p_keep_state) {
- bool has_instances;
- {
- SCOPED_MUTEX_LOCK(CSharpLanguage::get_singleton()->script_instances_mutex);
- has_instances = instances.size();
- }
- ERR_FAIL_COND_V(!p_keep_state && has_instances, ERR_ALREADY_IN_USE);
- GDMonoAssembly *project_assembly = GDMono::get_singleton()->get_project_assembly();
- if (project_assembly) {
- const Variant *script_metadata_var = CSharpLanguage::get_singleton()->get_scripts_metadata().getptr(get_path());
- if (script_metadata_var) {
- Dictionary script_metadata = script_metadata_var->operator Dictionary()["class"];
- const Variant *namespace_ = script_metadata.getptr("namespace");
- const Variant *class_name = script_metadata.getptr("class_name");
- ERR_FAIL_NULL_V(namespace_, ERR_BUG);
- ERR_FAIL_NULL_V(class_name, ERR_BUG);
- GDMonoClass *klass = project_assembly->get_class(namespace_->operator String(), class_name->operator String());
- if (klass) {
- bool obj_type = CACHED_CLASS(GodotObject)->is_assignable_from(klass);
- ERR_FAIL_COND_V(!obj_type, ERR_BUG);
- script_class = klass;
- }
- } else {
-
- script_class = project_assembly->get_object_derived_class(name);
- }
- valid = script_class != NULL;
- if (script_class) {
- #ifdef DEBUG_ENABLED
- print_verbose("Found class " + script_class->get_namespace() + "." + script_class->get_name() + " for script " + get_path());
- #endif
- tool = script_class->has_attribute(CACHED_CLASS(ToolAttribute));
- native = GDMonoUtils::get_class_native_base(script_class);
- CRASH_COND(native == NULL);
- GDMonoClass *base_class = script_class->get_parent_class();
- if (base_class != native)
- base = base_class;
- #ifdef DEBUG_ENABLED
-
-
-
- if (script_class != native) {
- GDMonoClass *native_top = native;
- while (native_top) {
- native_top->fetch_methods_with_godot_api_checks(native);
- if (native_top == CACHED_CLASS(GodotObject))
- break;
- native_top = native_top->get_parent_class();
- }
- }
- #endif
- script_class->fetch_methods_with_godot_api_checks(native);
-
- GDMonoClass *top = script_class;
- while (top && top != native) {
- top->fetch_methods_with_godot_api_checks(native);
- top = top->get_parent_class();
- }
- load_script_signals(script_class, native);
- }
- return OK;
- }
- return ERR_FILE_MISSING_DEPENDENCIES;
- }
- ScriptLanguage *CSharpScript::get_language() const {
- return CSharpLanguage::get_singleton();
- }
- bool CSharpScript::get_property_default_value(const StringName &p_property, Variant &r_value) const {
- #ifdef TOOLS_ENABLED
- const Map<StringName, Variant>::Element *E = exported_members_defval_cache.find(p_property);
- if (E) {
- r_value = E->get();
- return true;
- }
- if (base_cache.is_valid()) {
- return base_cache->get_property_default_value(p_property, r_value);
- }
- #endif
- return false;
- }
- void CSharpScript::update_exports() {
- #ifdef TOOLS_ENABLED
- _update_exports();
- #endif
- }
- bool CSharpScript::has_script_signal(const StringName &p_signal) const {
- if (_signals.has(p_signal))
- return true;
- return false;
- }
- void CSharpScript::get_script_signal_list(List<MethodInfo> *r_signals) const {
- for (const Map<StringName, Vector<Argument> >::Element *E = _signals.front(); E; E = E->next()) {
- MethodInfo mi;
- mi.name = E->key();
- for (int i = 0; i < E->get().size(); i++) {
- PropertyInfo arg;
- arg.name = E->get()[i].name;
- mi.arguments.push_back(arg);
- }
- r_signals->push_back(mi);
- }
- }
- Ref<Script> CSharpScript::get_base_script() const {
-
- return Ref<Script>();
- }
- void CSharpScript::get_script_property_list(List<PropertyInfo> *p_list) const {
- for (Map<StringName, PropertyInfo>::Element *E = member_info.front(); E; E = E->next()) {
- p_list->push_back(E->value());
- }
- }
- int CSharpScript::get_member_line(const StringName &p_member) const {
-
- return -1;
- }
- Error CSharpScript::load_source_code(const String &p_path) {
- Error ferr = read_all_file_utf8(p_path, source);
- if (ferr != OK) {
- if (ferr == ERR_INVALID_DATA) {
- ERR_EXPLAIN("Script '" + p_path + "' contains invalid unicode (utf-8), so it was not loaded. Please ensure that scripts are saved in valid utf-8 unicode.");
- }
- ERR_FAIL_V(ferr);
- }
- #ifdef TOOLS_ENABLED
- source_changed_cache = true;
- #endif
- return OK;
- }
- StringName CSharpScript::get_script_name() const {
- return name;
- }
- CSharpScript::CSharpScript() :
- script_list(this) {
- _clear();
- #ifdef TOOLS_ENABLED
- source_changed_cache = false;
- exports_invalidated = true;
- #endif
- signals_invalidated = true;
- _resource_path_changed();
- #ifdef DEBUG_ENABLED
- {
- SCOPED_MUTEX_LOCK(CSharpLanguage::get_singleton()->script_instances_mutex);
- CSharpLanguage::get_singleton()->script_list.add(&this->script_list);
- }
- #endif
- }
- CSharpScript::~CSharpScript() {
- #ifdef DEBUG_ENABLED
- SCOPED_MUTEX_LOCK(CSharpLanguage::get_singleton()->script_instances_mutex);
- CSharpLanguage::get_singleton()->script_list.remove(&this->script_list);
- #endif
- }
- RES ResourceFormatLoaderCSharpScript::load(const String &p_path, const String &p_original_path, Error *r_error) {
- if (r_error)
- *r_error = ERR_FILE_CANT_OPEN;
-
- CSharpScript *script = memnew(CSharpScript);
- Ref<CSharpScript> scriptres(script);
- #if defined(DEBUG_ENABLED) || defined(TOOLS_ENABLED)
- Error err = script->load_source_code(p_path);
- ERR_FAIL_COND_V(err != OK, RES());
- #endif
- script->set_path(p_original_path);
- #ifndef TOOLS_ENABLED
- #ifdef DEBUG_ENABLED
-
- ERR_EXPLAIN("Thread is not attached");
- CRASH_COND(mono_domain_get() == NULL);
- #endif
- #endif
- #ifdef TOOLS_ENABLED
- if (Engine::get_singleton()->is_editor_hint() && mono_domain_get() == NULL) {
- CRASH_COND(Thread::get_caller_id() == Thread::get_main_id());
-
-
-
- if (SCRIPTS_DOMAIN) {
- MonoThread *mono_thread = mono_thread_attach(SCRIPTS_DOMAIN);
- CRASH_COND(mono_thread == NULL);
- script->reload();
- mono_thread_detach(mono_thread);
- }
- } else {
- #endif
- script->reload();
- #ifdef TOOLS_ENABLED
- }
- #endif
- if (r_error)
- *r_error = OK;
- return scriptres;
- }
- void ResourceFormatLoaderCSharpScript::get_recognized_extensions(List<String> *p_extensions) const {
- p_extensions->push_back("cs");
- }
- bool ResourceFormatLoaderCSharpScript::handles_type(const String &p_type) const {
- return p_type == "Script" || p_type == CSharpLanguage::get_singleton()->get_type();
- }
- String ResourceFormatLoaderCSharpScript::get_resource_type(const String &p_path) const {
- return p_path.get_extension().to_lower() == "cs" ? CSharpLanguage::get_singleton()->get_type() : "";
- }
- Error ResourceFormatSaverCSharpScript::save(const String &p_path, const RES &p_resource, uint32_t p_flags) {
- Ref<CSharpScript> sqscr = p_resource;
- ERR_FAIL_COND_V(sqscr.is_null(), ERR_INVALID_PARAMETER);
- String source = sqscr->get_source_code();
- #ifdef TOOLS_ENABLED
- if (!FileAccess::exists(p_path)) {
-
- if (_create_project_solution_if_needed()) {
- CSharpProject::add_item(GodotSharpDirs::get_project_csproj_path(),
- "Compile",
- ProjectSettings::get_singleton()->globalize_path(p_path));
- } else {
- ERR_PRINTS("Failed to create C# project");
- ERR_PRINTS("Cannot add " + p_path + " to the C# project");
- }
- }
- #endif
- Error err;
- FileAccess *file = FileAccess::open(p_path, FileAccess::WRITE, &err);
- ERR_FAIL_COND_V(err, err);
- file->store_string(source);
- if (file->get_error() != OK && file->get_error() != ERR_FILE_EOF) {
- memdelete(file);
- return ERR_CANT_CREATE;
- }
- file->close();
- memdelete(file);
- if (ScriptServer::is_reload_scripts_on_save_enabled()) {
- CSharpLanguage::get_singleton()->reload_tool_script(p_resource, false);
- }
- return OK;
- }
- void ResourceFormatSaverCSharpScript::get_recognized_extensions(const RES &p_resource, List<String> *p_extensions) const {
- if (Object::cast_to<CSharpScript>(p_resource.ptr())) {
- p_extensions->push_back("cs");
- }
- }
- bool ResourceFormatSaverCSharpScript::recognize(const RES &p_resource) const {
- return Object::cast_to<CSharpScript>(p_resource.ptr()) != NULL;
- }
- CSharpLanguage::StringNameCache::StringNameCache() {
- _signal_callback = StaticCString::create("_signal_callback");
- _set = StaticCString::create("_set");
- _get = StaticCString::create("_get");
- _notification = StaticCString::create("_notification");
- _script_source = StaticCString::create("script/source");
- dotctor = StaticCString::create(".ctor");
- }
|