var counter_new_functions = 0; var counter_new_parameters = 0; var counter_new_variables = 0; function addFunctionHandler() { new_function = new Funcao(i18n("new_function") + "_" + counter_new_functions); adicionarFuncao(new_function); counter_new_functions ++; renderAlgorithm(); } function updateSequenceFunctionHandler(index_from, index_to) { programa.funcoes.splice(index_to, 0, programa.funcoes.splice(index_from, 1)[0]); renderAlgorithm(); } function removeFunctionHandler(div_function, sequence) { programa.funcoes.splice(sequence, 1); $(div_function).slideUp(400, function(){ renderAlgorithm(); }); } function minimizeFunctionHandler(div_function, sequence) { $(div_function).find(".function_area").toggle(); programa.funcoes[sequence].esta_oculta = !programa.funcoes[sequence].esta_oculta; } function renderAlgorithm() { $('.all_functions').empty(); for (i = 0; i < programa.funcoes.length; i++) { appendFunction(programa.funcoes[i], i); } $('.data_types_dropdown').dropdown(); $('.parameter_data_types_dropdown').dropdown(); addHandlers(); } function addHandlers() { $('.ui.dropdown.function_return') .dropdown({ onChange: function(value, text, $selectedItem) { classList = $selectedItem.attr('class').split(/\s+/); $.each(classList, function(index, item) { if (item.indexOf("seq_") > -1) { seq = item.split("seq_")[1]; for (tm in tiposDados) { if ($selectedItem.hasClass(tm)) { programa.funcoes[seq].tipo_retorno = tm; } } updateFunctionReturn(seq, value); } }); } }) ; $('.ui.dropdown.parameter_type').dropdown({ onChange: function(value, text, $selectedItem) { classList = $selectedItem.attr('class').split(/\s+/); var fun; var seq; $.each(classList, function(index, item) { if (item.indexOf("fun_") > -1) { fun = item.split("fun_")[1]; } if (item.indexOf("seq_") > -1) { seq = item.split("seq_")[1]; } }); var dim = 0; if (value.indexOf(i18n(tiposDados.vector)) > -1) { dim = 1; } for (tm in tiposDados) { if ($selectedItem.hasClass(tm)) { updateParameterType(fun, seq, tm, dim); break; } } } }); $('.ui.dropdown.variable_type').dropdown({ onChange: function(value, text, $selectedItem) { classList = $selectedItem.attr('class').split(/\s+/); var fun; var seq; $.each(classList, function(index, item) { if (item.indexOf("fun_") > -1) { fun = item.split("fun_")[1]; } if (item.indexOf("seq_") > -1) { seq = item.split("seq_")[1]; } }); var dim = 0; if (value.indexOf(i18n(tiposDados.vector)) > -1) { dim = value.split('[').length - 1; } for (tm in tiposDados) { if ($selectedItem.hasClass(tm)) { console.log("possui: " + tm); updateVariableType(fun, seq, tm, dim); break; } } } }); } function updateVariableType(wich_function, wich_variable, new_value, new_dimensions) { programa.funcoes[wich_function].variaveis[wich_variable].tipo = new_value; programa.funcoes[wich_function].variaveis[wich_variable].dimensoes = new_dimensions; } function addVariable(sequence) {//tipo, nome, valor var v = new Variavel(tiposDados.integer, i18n('new_variable') + '_' + counter_new_variables, 1); adicionarVariavel(sequence, v); counter_new_variables ++; renderAlgorithm(); } function deleteVariable(which_function, which_variable) { programa.funcoes[which_function].variaveis.splice(which_variable, 1); renderAlgorithm(); } function addParameter(sequence) { if (programa.funcoes[sequence].lista_parametros == null) { programa.funcoes[sequence].lista_parametros = new Array(); } programa.funcoes[sequence].lista_parametros.push(new Variavel(tiposDados.integer, i18n("new_parameter") + "_" + counter_new_parameters)); counter_new_parameters ++; renderAlgorithm(); } function updateFunctionReturn(sequence, new_value) { if (new_value.indexOf(i18n(tiposDados.vector)) > -1) { programa.funcoes[sequence].dimensoes_retorno = 1; } else { programa.funcoes[sequence].dimensoes_retorno = 0; } } function updateParameterType(wich_function, wich_parameter, new_value, new_dimensions) { programa.funcoes[wich_function].lista_parametros[wich_parameter].tipo = new_value; programa.funcoes[wich_function].lista_parametros[wich_parameter].dimensoes = new_dimensions; } var opened_name_function = false; var opened_input = null; var sequence_name_opened; function enableNameFunctionUpdate(div_el, sequence) { if (opened_name_function) { $(opened_input).focus(); return; } opened_name_function = true; sequence_name_opened = sequence; $(div_el).find('.span_name_function').text(''); $( "" ).insertBefore($(div_el).find('.span_name_function')); $('.width-dynamic').on('input', function() { var inputWidth = $(this).textWidth()+10; opened_input = this; $(this).focus(); var tmpStr = $(this).val(); $(this).val(''); $(this).val(tmpStr); $(this).css({ width: inputWidth }) }).trigger('input'); $('.width-dynamic').focusout(function() { /// update array: if ($(this).val().trim()) { programa.funcoes[sequence_name_opened].nome = $(this).val().trim(); } $(this).remove(); /// update elements: opened_name_function = false; opened_input = false; renderAlgorithm(); }); $('.width-dynamic').on('keydown', function(e) { var code = e.keyCode || e.which; if(code == 13) { if ($(this).val().trim()) { programa.funcoes[sequence_name_opened].nome = $(this).val().trim(); } $(this).remove(); /// update elements: opened_name_function = false; opened_input = false; renderAlgorithm(); } if(code == 27) { $(div_el).find('.span_name_function').text(programa.funcoes[sequence_name_opened].nome); $(this).remove(); /// update elements: opened_name_function = false; opened_input = false; } }); } var opened_name_variable = false; var opened_input_variable = null; var sequence_name_opened_variable; var sequence_function_opened_variable; function enableNameVariableUpdate(parent_node, which_function, which_parameter) { if (opened_name_variable) { $(opened_input_variable).focus(); return; } opened_name_variable = true; sequence_name_opened_variable = which_parameter; sequence_function_opened_variable = which_function; $(parent_node).find('.span_name_variable').text(''); $( "" ).insertBefore($(parent_node).find('.span_name_variable')); $('.width-dynamic').on('input', function() { var inputWidth = $(this).textWidth()+10; opened_input_variable = this; $(this).focus(); var tmpStr = $(this).val(); $(this).val(''); $(this).val(tmpStr); $(this).css({ width: inputWidth }) }).trigger('input'); $('.width-dynamic').focusout(function() { /// update array: if ($(this).val().trim()) { programa.funcoes[which_function].variaveis[which_parameter].nome = $(this).val().trim(); } $(this).remove(); /// update elements: opened_name_variable = false; opened_input_variable = false; renderAlgorithm(); }); $('.width-dynamic').on('keydown', function(e) { var code = e.keyCode || e.which; if(code == 13) { if ($(this).val().trim()) { programa.funcoes[which_function].variaveis[which_parameter].nome = $(this).val().trim(); } $(this).remove(); /// update elements: opened_name_variable = false; opened_input_variable = false; renderAlgorithm(); } if(code == 27) { $(parent_node).find('.span_name_variable').text(programa.funcoes[which_function].variaveis[which_parameter].nome); $(this).remove(); /// update elements: opened_name_variable = false; opened_input_variable = false; } }); } var opened_name_parameter = false; var opened_input_parameter = null; var sequence_name_opened_parameter; var sequence_function_opened_parameter; function enableNameParameterUpdate(parent_node, which_function, which_parameter) { if (opened_name_parameter) { $(opened_input_parameter).focus(); return; } opened_name_parameter = true; sequence_name_opened_parameter = which_parameter; sequence_function_opened_parameter = which_function; $(parent_node).find('.span_name_parameter').text(''); $( "" ).insertBefore($(parent_node).find('.span_name_parameter')); $('.width-dynamic').on('input', function() { var inputWidth = $(this).textWidth()+10; opened_input_parameter = this; $(this).focus(); var tmpStr = $(this).val(); $(this).val(''); $(this).val(tmpStr); $(this).css({ width: inputWidth }) }).trigger('input'); $('.width-dynamic').focusout(function() { /// update array: if ($(this).val().trim()) { programa.funcoes[which_function].lista_parametros[which_parameter].nome = $(this).val().trim(); } $(this).remove(); /// update elements: opened_name_parameter = false; opened_input_parameter = false; renderAlgorithm(); }); $('.width-dynamic').on('keydown', function(e) { var code = e.keyCode || e.which; if(code == 13) { if ($(this).val().trim()) { programa.funcoes[which_function].lista_parametros[which_parameter].nome = $(this).val().trim(); } $(this).remove(); /// update elements: opened_name_parameter = false; opened_input_parameter = false; renderAlgorithm(); } if(code == 27) { $(parent_node).find('.span_name_parameter').text(programa.funcoes[which_function].lista_parametros[which_parameter].nome); $(this).remove(); /// update elements: opened_name_parameter = false; opened_input_parameter = false; } }); } function removeParameter(parent_node, which_function, which_parameter) { programa.funcoes[which_function].lista_parametros.splice(which_parameter, 1); renderAlgorithm(); } function appendFunction(function_obj, sequence) { var appender = '