1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069 |
- /*************************************************************************/
- /* test_gdscript.cpp */
- /*************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* https://godotengine.org */
- /*************************************************************************/
- /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
- /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
- /* */
- /* Permission is hereby granted, free of charge, to any person obtaining */
- /* a copy of this software and associated documentation files (the */
- /* "Software"), to deal in the Software without restriction, including */
- /* without limitation the rights to use, copy, modify, merge, publish, */
- /* distribute, sublicense, and/or sell copies of the Software, and to */
- /* permit persons to whom the Software is furnished to do so, subject to */
- /* the following conditions: */
- /* */
- /* The above copyright notice and this permission notice shall be */
- /* included in all copies or substantial portions of the Software. */
- /* */
- /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
- /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
- /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
- /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
- /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
- /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
- /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
- /*************************************************************************/
- #include "test_gdscript.h"
- #include "core/os/file_access.h"
- #include "core/os/main_loop.h"
- #include "core/os/os.h"
- #ifdef GDSCRIPT_ENABLED
- #include "modules/gdscript/gdscript.h"
- #include "modules/gdscript/gdscript_compiler.h"
- #include "modules/gdscript/gdscript_parser.h"
- #include "modules/gdscript/gdscript_tokenizer.h"
- namespace TestGDScript {
- static void _print_indent(int p_ident, const String &p_text) {
- String txt;
- for (int i = 0; i < p_ident; i++) {
- txt += '\t';
- }
- print_line(txt + p_text);
- }
- static String _parser_extends(const GDScriptParser::ClassNode *p_class) {
- String txt = "extends ";
- if (String(p_class->extends_file) != "") {
- txt += "\"" + p_class->extends_file + "\"";
- if (p_class->extends_class.size())
- txt += ".";
- }
- for (int i = 0; i < p_class->extends_class.size(); i++) {
- if (i != 0)
- txt += ".";
- txt += p_class->extends_class[i];
- }
- return txt;
- }
- static String _parser_expr(const GDScriptParser::Node *p_expr) {
- String txt;
- switch (p_expr->type) {
- case GDScriptParser::Node::TYPE_IDENTIFIER: {
- const GDScriptParser::IdentifierNode *id_node = static_cast<const GDScriptParser::IdentifierNode *>(p_expr);
- txt = id_node->name;
- } break;
- case GDScriptParser::Node::TYPE_CONSTANT: {
- const GDScriptParser::ConstantNode *c_node = static_cast<const GDScriptParser::ConstantNode *>(p_expr);
- if (c_node->value.get_type() == Variant::STRING)
- txt = "\"" + String(c_node->value) + "\"";
- else
- txt = c_node->value;
- } break;
- case GDScriptParser::Node::TYPE_SELF: {
- txt = "self";
- } break;
- case GDScriptParser::Node::TYPE_ARRAY: {
- const GDScriptParser::ArrayNode *arr_node = static_cast<const GDScriptParser::ArrayNode *>(p_expr);
- txt += "[";
- for (int i = 0; i < arr_node->elements.size(); i++) {
- if (i > 0)
- txt += ", ";
- txt += _parser_expr(arr_node->elements[i]);
- }
- txt += "]";
- } break;
- case GDScriptParser::Node::TYPE_DICTIONARY: {
- const GDScriptParser::DictionaryNode *dict_node = static_cast<const GDScriptParser::DictionaryNode *>(p_expr);
- txt += "{";
- for (int i = 0; i < dict_node->elements.size(); i++) {
- if (i > 0)
- txt += ", ";
- const GDScriptParser::DictionaryNode::Pair &p = dict_node->elements[i];
- txt += _parser_expr(p.key);
- txt += ":";
- txt += _parser_expr(p.value);
- }
- txt += "}";
- } break;
- case GDScriptParser::Node::TYPE_OPERATOR: {
- const GDScriptParser::OperatorNode *c_node = static_cast<const GDScriptParser::OperatorNode *>(p_expr);
- switch (c_node->op) {
- case GDScriptParser::OperatorNode::OP_PARENT_CALL:
- txt += ".";
- FALLTHROUGH;
- case GDScriptParser::OperatorNode::OP_CALL: {
- ERR_FAIL_COND_V(c_node->arguments.size() < 1, "");
- String func_name;
- const GDScriptParser::Node *nfunc = c_node->arguments[0];
- int arg_ofs = 0;
- if (nfunc->type == GDScriptParser::Node::TYPE_BUILT_IN_FUNCTION) {
- const GDScriptParser::BuiltInFunctionNode *bif_node = static_cast<const GDScriptParser::BuiltInFunctionNode *>(nfunc);
- func_name = GDScriptFunctions::get_func_name(bif_node->function);
- arg_ofs = 1;
- } else if (nfunc->type == GDScriptParser::Node::TYPE_TYPE) {
- const GDScriptParser::TypeNode *t_node = static_cast<const GDScriptParser::TypeNode *>(nfunc);
- func_name = Variant::get_type_name(t_node->vtype);
- arg_ofs = 1;
- } else {
- ERR_FAIL_COND_V(c_node->arguments.size() < 2, "");
- nfunc = c_node->arguments[1];
- ERR_FAIL_COND_V(nfunc->type != GDScriptParser::Node::TYPE_IDENTIFIER, "");
- if (c_node->arguments[0]->type != GDScriptParser::Node::TYPE_SELF)
- func_name = _parser_expr(c_node->arguments[0]) + ".";
- func_name += _parser_expr(nfunc);
- arg_ofs = 2;
- }
- txt += func_name + "(";
- for (int i = arg_ofs; i < c_node->arguments.size(); i++) {
- const GDScriptParser::Node *arg = c_node->arguments[i];
- if (i > arg_ofs)
- txt += ", ";
- txt += _parser_expr(arg);
- }
- txt += ")";
- } break;
- case GDScriptParser::OperatorNode::OP_INDEX: {
- ERR_FAIL_COND_V(c_node->arguments.size() != 2, "");
- //index with []
- txt = _parser_expr(c_node->arguments[0]) + "[" + _parser_expr(c_node->arguments[1]) + "]";
- } break;
- case GDScriptParser::OperatorNode::OP_INDEX_NAMED: {
- ERR_FAIL_COND_V(c_node->arguments.size() != 2, "");
- txt = _parser_expr(c_node->arguments[0]) + "." + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_NEG: {
- txt = "-" + _parser_expr(c_node->arguments[0]);
- } break;
- case GDScriptParser::OperatorNode::OP_NOT: {
- txt = "not " + _parser_expr(c_node->arguments[0]);
- } break;
- case GDScriptParser::OperatorNode::OP_BIT_INVERT: {
- txt = "~" + _parser_expr(c_node->arguments[0]);
- } break;
- case GDScriptParser::OperatorNode::OP_IN: {
- txt = _parser_expr(c_node->arguments[0]) + " in " + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_EQUAL: {
- txt = _parser_expr(c_node->arguments[0]) + "==" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_NOT_EQUAL: {
- txt = _parser_expr(c_node->arguments[0]) + "!=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_LESS: {
- txt = _parser_expr(c_node->arguments[0]) + "<" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_LESS_EQUAL: {
- txt = _parser_expr(c_node->arguments[0]) + "<=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_GREATER: {
- txt = _parser_expr(c_node->arguments[0]) + ">" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_GREATER_EQUAL: {
- txt = _parser_expr(c_node->arguments[0]) + ">=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_AND: {
- txt = _parser_expr(c_node->arguments[0]) + " and " + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_OR: {
- txt = _parser_expr(c_node->arguments[0]) + " or " + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ADD: {
- txt = _parser_expr(c_node->arguments[0]) + "+" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_SUB: {
- txt = _parser_expr(c_node->arguments[0]) + "-" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_MUL: {
- txt = _parser_expr(c_node->arguments[0]) + "*" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_DIV: {
- txt = _parser_expr(c_node->arguments[0]) + "/" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_MOD: {
- txt = _parser_expr(c_node->arguments[0]) + "%" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_SHIFT_LEFT: {
- txt = _parser_expr(c_node->arguments[0]) + "<<" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_SHIFT_RIGHT: {
- txt = _parser_expr(c_node->arguments[0]) + ">>" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN: {
- txt = _parser_expr(c_node->arguments[0]) + "=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_ADD: {
- txt = _parser_expr(c_node->arguments[0]) + "+=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_SUB: {
- txt = _parser_expr(c_node->arguments[0]) + "-=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_MUL: {
- txt = _parser_expr(c_node->arguments[0]) + "*=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_DIV: {
- txt = _parser_expr(c_node->arguments[0]) + "/=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_MOD: {
- txt = _parser_expr(c_node->arguments[0]) + "%=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_SHIFT_LEFT: {
- txt = _parser_expr(c_node->arguments[0]) + "<<=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_SHIFT_RIGHT: {
- txt = _parser_expr(c_node->arguments[0]) + ">>=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_BIT_AND: {
- txt = _parser_expr(c_node->arguments[0]) + "&=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_BIT_OR: {
- txt = _parser_expr(c_node->arguments[0]) + "|=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_ASSIGN_BIT_XOR: {
- txt = _parser_expr(c_node->arguments[0]) + "^=" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_BIT_AND: {
- txt = _parser_expr(c_node->arguments[0]) + "&" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_BIT_OR: {
- txt = _parser_expr(c_node->arguments[0]) + "|" + _parser_expr(c_node->arguments[1]);
- } break;
- case GDScriptParser::OperatorNode::OP_BIT_XOR: {
- txt = _parser_expr(c_node->arguments[0]) + "^" + _parser_expr(c_node->arguments[1]);
- } break;
- default: {
- }
- }
- } break;
- case GDScriptParser::Node::TYPE_NEWLINE: {
- //skippie
- } break;
- default: {
- String error = "Parser bug at " + itos(p_expr->line) + ", invalid expression type: " + itos(p_expr->type);
- ERR_EXPLAIN(error);
- ERR_FAIL_V("");
- }
- }
- return txt;
- //return "("+txt+")";
- }
- static void _parser_show_block(const GDScriptParser::BlockNode *p_block, int p_indent) {
- for (int i = 0; i < p_block->statements.size(); i++) {
- const GDScriptParser::Node *statement = p_block->statements[i];
- switch (statement->type) {
- case GDScriptParser::Node::TYPE_CONTROL_FLOW: {
- const GDScriptParser::ControlFlowNode *cf_node = static_cast<const GDScriptParser::ControlFlowNode *>(statement);
- switch (cf_node->cf_type) {
- case GDScriptParser::ControlFlowNode::CF_IF: {
- ERR_FAIL_COND(cf_node->arguments.size() != 1);
- String txt;
- txt += "if ";
- txt += _parser_expr(cf_node->arguments[0]);
- txt += ":";
- _print_indent(p_indent, txt);
- ERR_FAIL_COND(!cf_node->body);
- _parser_show_block(cf_node->body, p_indent + 1);
- if (cf_node->body_else) {
- _print_indent(p_indent, "else:");
- _parser_show_block(cf_node->body_else, p_indent + 1);
- }
- } break;
- case GDScriptParser::ControlFlowNode::CF_FOR: {
- ERR_FAIL_COND(cf_node->arguments.size() != 2);
- String txt;
- txt += "for ";
- txt += _parser_expr(cf_node->arguments[0]);
- txt += " in ";
- txt += _parser_expr(cf_node->arguments[1]);
- txt += ":";
- _print_indent(p_indent, txt);
- ERR_FAIL_COND(!cf_node->body);
- _parser_show_block(cf_node->body, p_indent + 1);
- } break;
- case GDScriptParser::ControlFlowNode::CF_WHILE: {
- ERR_FAIL_COND(cf_node->arguments.size() != 1);
- String txt;
- txt += "while ";
- txt += _parser_expr(cf_node->arguments[0]);
- txt += ":";
- _print_indent(p_indent, txt);
- ERR_FAIL_COND(!cf_node->body);
- _parser_show_block(cf_node->body, p_indent + 1);
- } break;
- case GDScriptParser::ControlFlowNode::CF_MATCH: {
- // FIXME: Implement
- } break;
- case GDScriptParser::ControlFlowNode::CF_CONTINUE: {
- _print_indent(p_indent, "continue");
- } break;
- case GDScriptParser::ControlFlowNode::CF_BREAK: {
- _print_indent(p_indent, "break");
- } break;
- case GDScriptParser::ControlFlowNode::CF_RETURN: {
- if (cf_node->arguments.size())
- _print_indent(p_indent, "return " + _parser_expr(cf_node->arguments[0]));
- else
- _print_indent(p_indent, "return ");
- } break;
- }
- } break;
- case GDScriptParser::Node::TYPE_LOCAL_VAR: {
- const GDScriptParser::LocalVarNode *lv_node = static_cast<const GDScriptParser::LocalVarNode *>(statement);
- _print_indent(p_indent, "var " + String(lv_node->name));
- } break;
- default: {
- //expression i guess
- _print_indent(p_indent, _parser_expr(statement));
- }
- }
- }
- }
- static void _parser_show_function(const GDScriptParser::FunctionNode *p_func, int p_indent, GDScriptParser::BlockNode *p_initializer = NULL) {
- String txt;
- if (p_func->_static)
- txt = "static ";
- txt += "func ";
- if (p_func->name == "") // initializer
- txt += "[built-in-initializer]";
- else
- txt += String(p_func->name);
- txt += "(";
- for (int i = 0; i < p_func->arguments.size(); i++) {
- if (i != 0)
- txt += ", ";
- txt += "var " + String(p_func->arguments[i]);
- if (i >= (p_func->arguments.size() - p_func->default_values.size())) {
- int defarg = i - (p_func->arguments.size() - p_func->default_values.size());
- txt += "=";
- txt += _parser_expr(p_func->default_values[defarg]);
- }
- }
- txt += ")";
- //todo constructor check!
- txt += ":";
- _print_indent(p_indent, txt);
- if (p_initializer)
- _parser_show_block(p_initializer, p_indent + 1);
- _parser_show_block(p_func->body, p_indent + 1);
- }
- static void _parser_show_class(const GDScriptParser::ClassNode *p_class, int p_indent, const Vector<String> &p_code) {
- if (p_indent == 0 && (String(p_class->extends_file) != "" || p_class->extends_class.size())) {
- _print_indent(p_indent, _parser_extends(p_class));
- print_line("\n");
- }
- for (int i = 0; i < p_class->subclasses.size(); i++) {
- const GDScriptParser::ClassNode *subclass = p_class->subclasses[i];
- String line = "class " + subclass->name;
- if (String(subclass->extends_file) != "" || subclass->extends_class.size())
- line += " " + _parser_extends(subclass);
- line += ":";
- _print_indent(p_indent, line);
- _parser_show_class(subclass, p_indent + 1, p_code);
- print_line("\n");
- }
- for (Map<StringName, GDScriptParser::ClassNode::Constant>::Element *E = p_class->constant_expressions.front(); E; E = E->next()) {
- const GDScriptParser::ClassNode::Constant &constant = E->get();
- _print_indent(p_indent, "const " + String(E->key()) + "=" + _parser_expr(constant.expression));
- }
- for (int i = 0; i < p_class->variables.size(); i++) {
- const GDScriptParser::ClassNode::Member &m = p_class->variables[i];
- _print_indent(p_indent, "var " + String(m.identifier));
- }
- print_line("\n");
- for (int i = 0; i < p_class->static_functions.size(); i++) {
- _parser_show_function(p_class->static_functions[i], p_indent);
- print_line("\n");
- }
- for (int i = 0; i < p_class->functions.size(); i++) {
- if (String(p_class->functions[i]->name) == "_init") {
- _parser_show_function(p_class->functions[i], p_indent, p_class->initializer);
- } else
- _parser_show_function(p_class->functions[i], p_indent);
- print_line("\n");
- }
- //_parser_show_function(p_class->initializer,p_indent);
- print_line("\n");
- }
- static String _disassemble_addr(const Ref<GDScript> &p_script, const GDScriptFunction &func, int p_addr) {
- int addr = p_addr & GDScriptFunction::ADDR_MASK;
- switch (p_addr >> GDScriptFunction::ADDR_BITS) {
- case GDScriptFunction::ADDR_TYPE_SELF: {
- return "self";
- } break;
- case GDScriptFunction::ADDR_TYPE_CLASS: {
- return "class";
- } break;
- case GDScriptFunction::ADDR_TYPE_MEMBER: {
- return "member(" + p_script->debug_get_member_by_index(addr) + ")";
- } break;
- case GDScriptFunction::ADDR_TYPE_CLASS_CONSTANT: {
- return "class_const(" + func.get_global_name(addr) + ")";
- } break;
- case GDScriptFunction::ADDR_TYPE_LOCAL_CONSTANT: {
- Variant v = func.get_constant(addr);
- String txt;
- if (v.get_type() == Variant::STRING || v.get_type() == Variant::NODE_PATH)
- txt = "\"" + String(v) + "\"";
- else
- txt = v;
- return "const(" + txt + ")";
- } break;
- case GDScriptFunction::ADDR_TYPE_STACK: {
- return "stack(" + itos(addr) + ")";
- } break;
- case GDScriptFunction::ADDR_TYPE_STACK_VARIABLE: {
- return "var_stack(" + itos(addr) + ")";
- } break;
- case GDScriptFunction::ADDR_TYPE_GLOBAL: {
- return "global(" + func.get_global_name(addr) + ")";
- } break;
- case GDScriptFunction::ADDR_TYPE_NIL: {
- return "nil";
- } break;
- }
- return "<err>";
- }
- static void _disassemble_class(const Ref<GDScript> &p_class, const Vector<String> &p_code) {
- const Map<StringName, GDScriptFunction *> &mf = p_class->debug_get_member_functions();
- for (const Map<StringName, GDScriptFunction *>::Element *E = mf.front(); E; E = E->next()) {
- const GDScriptFunction &func = *E->get();
- const int *code = func.get_code();
- int codelen = func.get_code_size();
- String defargs;
- if (func.get_default_argument_count()) {
- defargs = "defarg at: ";
- for (int i = 0; i < func.get_default_argument_count(); i++) {
- if (i > 0)
- defargs += ",";
- defargs += itos(func.get_default_argument_addr(i));
- }
- defargs += " ";
- }
- print_line("== function " + String(func.get_name()) + "() :: stack size: " + itos(func.get_max_stack_size()) + " " + defargs + "==");
- #define DADDR(m_ip) (_disassemble_addr(p_class, func, code[ip + m_ip]))
- for (int ip = 0; ip < codelen;) {
- int incr = 0;
- String txt = itos(ip) + " ";
- switch (code[ip]) {
- case GDScriptFunction::OPCODE_OPERATOR: {
- int op = code[ip + 1];
- txt += " op ";
- String opname = Variant::get_operator_name(Variant::Operator(op));
- txt += DADDR(4);
- txt += " = ";
- txt += DADDR(2);
- txt += " " + opname + " ";
- txt += DADDR(3);
- incr += 5;
- } break;
- case GDScriptFunction::OPCODE_SET: {
- txt += "set ";
- txt += DADDR(1);
- txt += "[";
- txt += DADDR(2);
- txt += "]=";
- txt += DADDR(3);
- incr += 4;
- } break;
- case GDScriptFunction::OPCODE_GET: {
- txt += " get ";
- txt += DADDR(3);
- txt += "=";
- txt += DADDR(1);
- txt += "[";
- txt += DADDR(2);
- txt += "]";
- incr += 4;
- } break;
- case GDScriptFunction::OPCODE_SET_NAMED: {
- txt += " set_named ";
- txt += DADDR(1);
- txt += "[\"";
- txt += func.get_global_name(code[ip + 2]);
- txt += "\"]=";
- txt += DADDR(3);
- incr += 4;
- } break;
- case GDScriptFunction::OPCODE_GET_NAMED: {
- txt += " get_named ";
- txt += DADDR(3);
- txt += "=";
- txt += DADDR(1);
- txt += "[\"";
- txt += func.get_global_name(code[ip + 2]);
- txt += "\"]";
- incr += 4;
- } break;
- case GDScriptFunction::OPCODE_SET_MEMBER: {
- txt += " set_member ";
- txt += "[\"";
- txt += func.get_global_name(code[ip + 1]);
- txt += "\"]=";
- txt += DADDR(2);
- incr += 3;
- } break;
- case GDScriptFunction::OPCODE_GET_MEMBER: {
- txt += " get_member ";
- txt += DADDR(2);
- txt += "=";
- txt += "[\"";
- txt += func.get_global_name(code[ip + 1]);
- txt += "\"]";
- incr += 3;
- } break;
- case GDScriptFunction::OPCODE_ASSIGN: {
- txt += " assign ";
- txt += DADDR(1);
- txt += "=";
- txt += DADDR(2);
- incr += 3;
- } break;
- case GDScriptFunction::OPCODE_ASSIGN_TRUE: {
- txt += " assign ";
- txt += DADDR(1);
- txt += "= true";
- incr += 2;
- } break;
- case GDScriptFunction::OPCODE_ASSIGN_FALSE: {
- txt += " assign ";
- txt += DADDR(1);
- txt += "= false";
- incr += 2;
- } break;
- case GDScriptFunction::OPCODE_CONSTRUCT: {
- Variant::Type t = Variant::Type(code[ip + 1]);
- int argc = code[ip + 2];
- txt += " construct ";
- txt += DADDR(3 + argc);
- txt += " = ";
- txt += Variant::get_type_name(t) + "(";
- for (int i = 0; i < argc; i++) {
- if (i > 0)
- txt += ", ";
- txt += DADDR(i + 3);
- }
- txt += ")";
- incr = 4 + argc;
- } break;
- case GDScriptFunction::OPCODE_CONSTRUCT_ARRAY: {
- int argc = code[ip + 1];
- txt += " make_array ";
- txt += DADDR(2 + argc);
- txt += " = [ ";
- for (int i = 0; i < argc; i++) {
- if (i > 0)
- txt += ", ";
- txt += DADDR(2 + i);
- }
- txt += "]";
- incr += 3 + argc;
- } break;
- case GDScriptFunction::OPCODE_CONSTRUCT_DICTIONARY: {
- int argc = code[ip + 1];
- txt += " make_dict ";
- txt += DADDR(2 + argc * 2);
- txt += " = { ";
- for (int i = 0; i < argc; i++) {
- if (i > 0)
- txt += ", ";
- txt += DADDR(2 + i * 2 + 0);
- txt += ":";
- txt += DADDR(2 + i * 2 + 1);
- }
- txt += "}";
- incr += 3 + argc * 2;
- } break;
- case GDScriptFunction::OPCODE_CALL:
- case GDScriptFunction::OPCODE_CALL_RETURN: {
- bool ret = code[ip] == GDScriptFunction::OPCODE_CALL_RETURN;
- if (ret)
- txt += " call-ret ";
- else
- txt += " call ";
- int argc = code[ip + 1];
- if (ret) {
- txt += DADDR(4 + argc) + "=";
- }
- txt += DADDR(2) + ".";
- txt += String(func.get_global_name(code[ip + 3]));
- txt += "(";
- for (int i = 0; i < argc; i++) {
- if (i > 0)
- txt += ", ";
- txt += DADDR(4 + i);
- }
- txt += ")";
- incr = 5 + argc;
- } break;
- case GDScriptFunction::OPCODE_CALL_BUILT_IN: {
- txt += " call-built-in ";
- int argc = code[ip + 2];
- txt += DADDR(3 + argc) + "=";
- txt += GDScriptFunctions::get_func_name(GDScriptFunctions::Function(code[ip + 1]));
- txt += "(";
- for (int i = 0; i < argc; i++) {
- if (i > 0)
- txt += ", ";
- txt += DADDR(3 + i);
- }
- txt += ")";
- incr = 4 + argc;
- } break;
- case GDScriptFunction::OPCODE_CALL_SELF_BASE: {
- txt += " call-self-base ";
- int argc = code[ip + 2];
- txt += DADDR(3 + argc) + "=";
- txt += func.get_global_name(code[ip + 1]);
- txt += "(";
- for (int i = 0; i < argc; i++) {
- if (i > 0)
- txt += ", ";
- txt += DADDR(3 + i);
- }
- txt += ")";
- incr = 4 + argc;
- } break;
- case GDScriptFunction::OPCODE_YIELD: {
- txt += " yield ";
- incr = 1;
- } break;
- case GDScriptFunction::OPCODE_YIELD_SIGNAL: {
- txt += " yield_signal ";
- txt += DADDR(1);
- txt += ",";
- txt += DADDR(2);
- incr = 3;
- } break;
- case GDScriptFunction::OPCODE_YIELD_RESUME: {
- txt += " yield resume: ";
- txt += DADDR(1);
- incr = 2;
- } break;
- case GDScriptFunction::OPCODE_JUMP: {
- txt += " jump ";
- txt += itos(code[ip + 1]);
- incr = 2;
- } break;
- case GDScriptFunction::OPCODE_JUMP_IF: {
- txt += " jump-if ";
- txt += DADDR(1);
- txt += " to ";
- txt += itos(code[ip + 2]);
- incr = 3;
- } break;
- case GDScriptFunction::OPCODE_JUMP_IF_NOT: {
- txt += " jump-if-not ";
- txt += DADDR(1);
- txt += " to ";
- txt += itos(code[ip + 2]);
- incr = 3;
- } break;
- case GDScriptFunction::OPCODE_JUMP_TO_DEF_ARGUMENT: {
- txt += " jump-to-default-argument ";
- incr = 1;
- } break;
- case GDScriptFunction::OPCODE_RETURN: {
- txt += " return ";
- txt += DADDR(1);
- incr = 2;
- } break;
- case GDScriptFunction::OPCODE_ITERATE_BEGIN: {
- txt += " for-init " + DADDR(4) + " in " + DADDR(2) + " counter " + DADDR(1) + " end " + itos(code[ip + 3]);
- incr += 5;
- } break;
- case GDScriptFunction::OPCODE_ITERATE: {
- txt += " for-loop " + DADDR(4) + " in " + DADDR(2) + " counter " + DADDR(1) + " end " + itos(code[ip + 3]);
- incr += 5;
- } break;
- case GDScriptFunction::OPCODE_LINE: {
- int line = code[ip + 1] - 1;
- if (line >= 0 && line < p_code.size())
- txt = "\n" + itos(line + 1) + ": " + p_code[line] + "\n";
- else
- txt = "";
- incr += 2;
- } break;
- case GDScriptFunction::OPCODE_END: {
- txt += " end";
- incr += 1;
- } break;
- case GDScriptFunction::OPCODE_ASSERT: {
- txt += " assert ";
- txt += DADDR(1);
- incr += 2;
- } break;
- }
- if (incr == 0) {
- ERR_EXPLAIN("unhandled opcode: " + itos(code[ip]));
- ERR_BREAK(incr == 0);
- }
- ip += incr;
- if (txt != "")
- print_line(txt);
- }
- }
- }
- MainLoop *test(TestType p_type) {
- List<String> cmdlargs = OS::get_singleton()->get_cmdline_args();
- if (cmdlargs.empty()) {
- return NULL;
- }
- String test = cmdlargs.back()->get();
- if (!test.ends_with(".gd") && !test.ends_with(".gdc")) {
- print_line("This test expects a path to a GDScript file as its last parameter. Got: " + test);
- return NULL;
- }
- FileAccess *fa = FileAccess::open(test, FileAccess::READ);
- if (!fa) {
- ERR_EXPLAIN("Could not open file: " + test);
- ERR_FAIL_V(NULL);
- }
- Vector<uint8_t> buf;
- int flen = fa->get_len();
- buf.resize(fa->get_len() + 1);
- fa->get_buffer(buf.ptrw(), flen);
- buf.write[flen] = 0;
- String code;
- code.parse_utf8((const char *)&buf[0]);
- Vector<String> lines;
- int last = 0;
- for (int i = 0; i <= code.length(); i++) {
- if (code[i] == '\n' || code[i] == 0) {
- lines.push_back(code.substr(last, i - last));
- last = i + 1;
- }
- }
- if (p_type == TEST_TOKENIZER) {
- GDScriptTokenizerText tk;
- tk.set_code(code);
- int line = -1;
- while (tk.get_token() != GDScriptTokenizer::TK_EOF) {
- String text;
- if (tk.get_token() == GDScriptTokenizer::TK_IDENTIFIER)
- text = "'" + tk.get_token_identifier() + "' (identifier)";
- else if (tk.get_token() == GDScriptTokenizer::TK_CONSTANT) {
- Variant c = tk.get_token_constant();
- if (c.get_type() == Variant::STRING)
- text = "\"" + String(c) + "\"";
- else
- text = c;
- text = text + " (" + Variant::get_type_name(c.get_type()) + " constant)";
- } else if (tk.get_token() == GDScriptTokenizer::TK_ERROR)
- text = "ERROR: " + tk.get_token_error();
- else if (tk.get_token() == GDScriptTokenizer::TK_NEWLINE)
- text = "newline (" + itos(tk.get_token_line()) + ") + indent: " + itos(tk.get_token_line_indent());
- else if (tk.get_token() == GDScriptTokenizer::TK_BUILT_IN_FUNC)
- text = "'" + String(GDScriptFunctions::get_func_name(tk.get_token_built_in_func())) + "' (built-in function)";
- else
- text = tk.get_token_name(tk.get_token());
- if (tk.get_token_line() != line) {
- int from = line + 1;
- line = tk.get_token_line();
- for (int i = from; i <= line; i++) {
- int l = i - 1;
- if (l >= 0 && l < lines.size()) {
- print_line("\n" + itos(i) + ": " + lines[l] + "\n");
- }
- }
- }
- print_line("\t(" + itos(tk.get_token_column()) + "): " + text);
- tk.advance();
- }
- }
- if (p_type == TEST_PARSER) {
- GDScriptParser parser;
- Error err = parser.parse(code);
- if (err) {
- print_line("Parse Error:\n" + itos(parser.get_error_line()) + ":" + itos(parser.get_error_column()) + ":" + parser.get_error());
- memdelete(fa);
- return NULL;
- }
- const GDScriptParser::Node *root = parser.get_parse_tree();
- ERR_FAIL_COND_V(root->type != GDScriptParser::Node::TYPE_CLASS, NULL);
- const GDScriptParser::ClassNode *cnode = static_cast<const GDScriptParser::ClassNode *>(root);
- _parser_show_class(cnode, 0, lines);
- }
- if (p_type == TEST_COMPILER) {
- GDScriptParser parser;
- Error err = parser.parse(code);
- if (err) {
- print_line("Parse Error:\n" + itos(parser.get_error_line()) + ":" + itos(parser.get_error_column()) + ":" + parser.get_error());
- memdelete(fa);
- return NULL;
- }
- GDScript *script = memnew(GDScript);
- GDScriptCompiler gdc;
- err = gdc.compile(&parser, script);
- if (err) {
- print_line("Compile Error:\n" + itos(gdc.get_error_line()) + ":" + itos(gdc.get_error_column()) + ":" + gdc.get_error());
- memdelete(script);
- return NULL;
- }
- Ref<GDScript> gds = Ref<GDScript>(script);
- Ref<GDScript> current = gds;
- while (current.is_valid()) {
- print_line("** CLASS **");
- _disassemble_class(current, lines);
- current = current->get_base();
- }
- } else if (p_type == TEST_BYTECODE) {
- Vector<uint8_t> buf2 = GDScriptTokenizerBuffer::parse_code_string(code);
- String dst = test.get_basename() + ".gdc";
- FileAccess *fw = FileAccess::open(dst, FileAccess::WRITE);
- fw->store_buffer(buf2.ptr(), buf2.size());
- memdelete(fw);
- }
- memdelete(fa);
- return NULL;
- }
- } // namespace TestGDScript
- #else
- namespace TestGDScript {
- MainLoop *test(TestType p_type) {
- return NULL;
- }
- } // namespace TestGDScript
- #endif
|