mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
@@ -1165,9 +1165,9 @@ void VisualScript::_set_data(const Dictionary &p_data) {
|
||||
|
||||
Array nodes = func["nodes"];
|
||||
|
||||
for (int i = 0; i < nodes.size(); i += 3) {
|
||||
for (int j = 0; j < nodes.size(); j += 3) {
|
||||
|
||||
add_node(name, nodes[i], nodes[i + 2], nodes[i + 1]);
|
||||
add_node(name, nodes[j], nodes[j + 2], nodes[j + 1]);
|
||||
}
|
||||
|
||||
Array sequence_connections = func["sequence_connections"];
|
||||
|
||||
@@ -679,10 +679,10 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
||||
}
|
||||
str_ofs = cofs; //revert
|
||||
//parse an expression
|
||||
ENode *expr = _parse_expression();
|
||||
if (!expr)
|
||||
ENode *expr2 = _parse_expression();
|
||||
if (!expr2)
|
||||
return NULL;
|
||||
dn->dict.push_back(expr);
|
||||
dn->dict.push_back(expr2);
|
||||
|
||||
_get_token(tk);
|
||||
if (tk.type != TK_COLON) {
|
||||
@@ -690,11 +690,11 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
expr = _parse_expression();
|
||||
if (!expr)
|
||||
expr2 = _parse_expression();
|
||||
if (!expr2)
|
||||
return NULL;
|
||||
|
||||
dn->dict.push_back(expr);
|
||||
dn->dict.push_back(expr2);
|
||||
|
||||
cofs = str_ofs;
|
||||
_get_token(tk);
|
||||
@@ -723,10 +723,10 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
||||
}
|
||||
str_ofs = cofs; //revert
|
||||
//parse an expression
|
||||
ENode *expr = _parse_expression();
|
||||
if (!expr)
|
||||
ENode *expr2 = _parse_expression();
|
||||
if (!expr2)
|
||||
return NULL;
|
||||
an->array.push_back(expr);
|
||||
an->array.push_back(expr2);
|
||||
|
||||
cofs = str_ofs;
|
||||
_get_token(tk);
|
||||
@@ -807,11 +807,11 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
||||
}
|
||||
str_ofs = cofs; //revert
|
||||
//parse an expression
|
||||
ENode *expr = _parse_expression();
|
||||
if (!expr)
|
||||
ENode *expr2 = _parse_expression();
|
||||
if (!expr2)
|
||||
return NULL;
|
||||
|
||||
constructor->arguments.push_back(expr);
|
||||
constructor->arguments.push_back(expr2);
|
||||
|
||||
cofs = str_ofs;
|
||||
_get_token(tk);
|
||||
@@ -848,11 +848,11 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
||||
}
|
||||
str_ofs = cofs; //revert
|
||||
//parse an expression
|
||||
ENode *expr = _parse_expression();
|
||||
if (!expr)
|
||||
ENode *expr2 = _parse_expression();
|
||||
if (!expr2)
|
||||
return NULL;
|
||||
|
||||
bifunc->arguments.push_back(expr);
|
||||
bifunc->arguments.push_back(expr2);
|
||||
|
||||
cofs = str_ofs;
|
||||
_get_token(tk);
|
||||
@@ -947,25 +947,25 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
||||
|
||||
while (true) {
|
||||
|
||||
int cofs = str_ofs;
|
||||
int cofs3 = str_ofs;
|
||||
_get_token(tk);
|
||||
if (tk.type == TK_PARENTHESIS_CLOSE) {
|
||||
break;
|
||||
}
|
||||
str_ofs = cofs; //revert
|
||||
str_ofs = cofs3; //revert
|
||||
//parse an expression
|
||||
ENode *expr = _parse_expression();
|
||||
if (!expr)
|
||||
ENode *expr2 = _parse_expression();
|
||||
if (!expr2)
|
||||
return NULL;
|
||||
|
||||
func_call->arguments.push_back(expr);
|
||||
func_call->arguments.push_back(expr2);
|
||||
|
||||
cofs = str_ofs;
|
||||
cofs3 = str_ofs;
|
||||
_get_token(tk);
|
||||
if (tk.type == TK_COMMA) {
|
||||
//all good
|
||||
} else if (tk.type == TK_PARENTHESIS_CLOSE) {
|
||||
str_ofs = cofs;
|
||||
str_ofs = cofs3;
|
||||
} else {
|
||||
_set_error("Expected ',' or ')'");
|
||||
}
|
||||
@@ -1426,8 +1426,8 @@ public:
|
||||
for (int i = 0; i < call->arguments.size(); i++) {
|
||||
|
||||
Variant value;
|
||||
bool ret = _execute(p_inputs, call->arguments[i], value, r_error_str, ce);
|
||||
if (ret)
|
||||
bool ret2 = _execute(p_inputs, call->arguments[i], value, r_error_str, ce);
|
||||
if (ret2)
|
||||
return true;
|
||||
arr.write[i] = value;
|
||||
argp.write[i] = &arr[i];
|
||||
|
||||
@@ -514,26 +514,26 @@ void VisualScriptPropertySelector::_item_selected() {
|
||||
if (names->find(name) != NULL) {
|
||||
Ref<VisualScriptOperator> operator_node = VisualScriptLanguage::singleton->create_node_from_name(name);
|
||||
if (operator_node.is_valid()) {
|
||||
Map<String, DocData::ClassDoc>::Element *E = dd->class_list.find(operator_node->get_class_name());
|
||||
if (E) {
|
||||
Map<String, DocData::ClassDoc>::Element *F = dd->class_list.find(operator_node->get_class_name());
|
||||
if (F) {
|
||||
text = Variant::get_operator_name(operator_node->get_operator());
|
||||
}
|
||||
}
|
||||
Ref<VisualScriptTypeCast> typecast_node = VisualScriptLanguage::singleton->create_node_from_name(name);
|
||||
if (typecast_node.is_valid()) {
|
||||
Map<String, DocData::ClassDoc>::Element *E = dd->class_list.find(typecast_node->get_class_name());
|
||||
if (E) {
|
||||
text = E->get().description;
|
||||
Map<String, DocData::ClassDoc>::Element *F = dd->class_list.find(typecast_node->get_class_name());
|
||||
if (F) {
|
||||
text = F->get().description;
|
||||
}
|
||||
}
|
||||
|
||||
Ref<VisualScriptBuiltinFunc> builtin_node = VisualScriptLanguage::singleton->create_node_from_name(name);
|
||||
if (builtin_node.is_valid()) {
|
||||
Map<String, DocData::ClassDoc>::Element *E = dd->class_list.find(builtin_node->get_class_name());
|
||||
if (E) {
|
||||
for (int i = 0; i < E->get().constants.size(); i++) {
|
||||
if (E->get().constants[i].value.to_int() == int(builtin_node->get_func())) {
|
||||
text = E->get().constants[i].description;
|
||||
Map<String, DocData::ClassDoc>::Element *F = dd->class_list.find(builtin_node->get_class_name());
|
||||
if (F) {
|
||||
for (int i = 0; i < F->get().constants.size(); i++) {
|
||||
if (F->get().constants[i].value.to_int() == int(builtin_node->get_func())) {
|
||||
text = F->get().constants[i].description;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user