functions.js 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680
  1. import { Types } from './types';
  2. import * as Models from './ivprog_elements';
  3. import { LocalizedStrings } from './../services/localizedStringsService';
  4. import * as GlobalsManagement from './globals';
  5. import * as VariablesManagement from './variables';
  6. import * as CommandsManagement from './commands';
  7. import * as CodeManagement from './code_generator';
  8. import * as VariableValueMenu from './commands/variable_value_menu';
  9. import { DOMConsole } from './../io/domConsole';
  10. import { IVProgProcessor } from './../processor/ivprogProcessor';
  11. import WatchJS from 'melanke-watchjs';
  12. import { SemanticAnalyser } from '../processor/semantic/semanticAnalyser';
  13. import { IVProgAssessment } from '../assessment/ivprogAssessment';
  14. import * as AlgorithmManagement from './algorithm';
  15. import * as Utils from './utils';
  16. import { registerUserEvent, ActionTypes } from "./../services/userLog";
  17. import VersionInfo from './../../.ima_version.json';
  18. import * as TextEditor from "./text_editor";
  19. import { isValidIdentifier } from "./../util/utils";
  20. import { Modes } from '../processor/modes';
  21. var counter_new_functions = 0;
  22. var counter_new_parameters = 0;
  23. var ivprog_version = VersionInfo.version;
  24. const globalChangeListeners = [];
  25. const functionsChangeListeners = [];
  26. let proc = null;
  27. let domConsole = null;
  28. let _testCases = [];
  29. let isRunning = false;
  30. window.studentGrade = null;
  31. window.LocalizedStrings = LocalizedStrings;
  32. const program = new Models.Program();
  33. window.system_functions = [];
  34. // Adding math functions:
  35. window.system_functions.push(new Models.SystemFunction('$sin', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  36. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  37. window.system_functions.push(new Models.SystemFunction('$cos', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  38. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  39. window.system_functions.push(new Models.SystemFunction('$tan', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  40. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  41. window.system_functions.push(new Models.SystemFunction('$sqrt', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  42. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  43. window.system_functions.push(new Models.SystemFunction('$pow', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true), new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  44. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  45. window.system_functions.push(new Models.SystemFunction('$log', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  46. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  47. window.system_functions.push(new Models.SystemFunction('$abs', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  48. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  49. window.system_functions.push(new Models.SystemFunction('$negate', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  50. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  51. window.system_functions.push(new Models.SystemFunction('$invert', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  52. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  53. window.system_functions.push(new Models.SystemFunction('$max', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  54. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  55. window.system_functions.push(new Models.SystemFunction('$min', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  56. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  57. window.system_functions.push(new Models.SystemFunction('$rand', Types.REAL, 0, [],
  58. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.math));
  59. // Adding text functions:
  60. window.system_functions.push(new Models.SystemFunction('$substring', Types.TEXT, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true),
  61. new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true),new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  62. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.text));
  63. window.system_functions.push(new Models.SystemFunction('$length', Types.INTEGER, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  64. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.text));
  65. window.system_functions.push(new Models.SystemFunction('$uppercase', Types.TEXT, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  66. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.text));
  67. window.system_functions.push(new Models.SystemFunction('$lowercase', Types.TEXT, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  68. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.text));
  69. window.system_functions.push(new Models.SystemFunction('$charAt', Types.CHAR, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true), new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  70. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.text));
  71. // Adding arrangement functions:
  72. window.system_functions.push(new Models.SystemFunction('$numElements', Types.INTEGER, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.variable_and_function, null, null, null, true, 1)],
  73. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.arrangement));
  74. window.system_functions.push(new Models.SystemFunction('$matrixLines', Types.INTEGER, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.variable_and_function, null, null, null, true, 2)],
  75. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.arrangement));
  76. window.system_functions.push(new Models.SystemFunction('$matrixColumns', Types.INTEGER, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.variable_and_function, null, null, null, true, 2)],
  77. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.arrangement));
  78. // Adding conversion functions:
  79. window.system_functions.push(new Models.SystemFunction('$isReal', Types.BOOLEAN, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  80. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion));
  81. window.system_functions.push(new Models.SystemFunction('$isInt', Types.BOOLEAN, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  82. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion));
  83. window.system_functions.push(new Models.SystemFunction('$isBool', Types.BOOLEAN, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  84. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion));
  85. window.system_functions.push(new Models.SystemFunction('$castReal', Types.REAL, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  86. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion));
  87. window.system_functions.push(new Models.SystemFunction('$castInt', Types.INTEGER, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  88. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion));
  89. window.system_functions.push(new Models.SystemFunction('$castBool', Types.BOOLEAN, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  90. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion));
  91. window.system_functions.push(new Models.SystemFunction('$castString', Types.TEXT, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  92. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion));
  93. window.system_functions.push(new Models.SystemFunction('$castChar', Types.CHAR, 0, [new Models.VariableValueMenu(VariableValueMenu.VAR_OR_VALUE_TYPES.all, null, null, null, true)],
  94. null, Models.SYSTEM_FUNCTIONS_CATEGORIES.conversion));
  95. console.log(' ___ ___ ________ \n / / / / / ____/ \n / / / / / / \n / / / / ______ ___ / /__ \n / / / / / \\ / / / ___/ \n / /______ / / / /\\ \\/ / / / \n / / / / / / \\ / / /____ \n/__________/ /___/ /___/ \\___/ /________/ \n\n Laboratório de Informática na Educação\n http://line.ime.usp.br');
  96. const mainFunction = new Models.Function(LocalizedStrings.getUI("start"), Types.VOID, 0, [], true, false);
  97. mainFunction.function_comment = new Models.Comment(LocalizedStrings.getUI('text_comment_main'));
  98. program.addFunction(mainFunction);
  99. window.program_obj = program;
  100. window.generator = CodeManagement.generate;
  101. window.runCodeAssessment = runCodeAssessment;
  102. window.renderAlgorithm = AlgorithmManagement.renderAlgorithm;
  103. window.insertContext = false;
  104. window.watchW = WatchJS;
  105. WatchJS.watch(window.program_obj.globals, function(){
  106. if (window.insertContext) {
  107. setTimeout(function() {
  108. AlgorithmManagement.renderAlgorithm();
  109. globalChangeListeners.forEach(x => x());
  110. }, 300);
  111. window.insertContext = false;
  112. } else {
  113. AlgorithmManagement.renderAlgorithm();
  114. globalChangeListeners.forEach(x => x());
  115. }
  116. }, 1);
  117. WatchJS.watch(window.program_obj.functions, function(){
  118. if (window.insertContext) {
  119. setTimeout(function(){
  120. AlgorithmManagement.renderAlgorithm();
  121. functionsChangeListeners.forEach( x => x());
  122. }, 300);
  123. window.insertContext = false;
  124. } else {
  125. AlgorithmManagement.renderAlgorithm();
  126. functionsChangeListeners.forEach( x => x());
  127. }
  128. }, 1);
  129. function addFunctionHandler () {
  130. const new_function = new Models.Function(LocalizedStrings.getUI("new_function") + "_" + counter_new_functions, Types.VOID, 0, [], false, false, [], new Models.Comment(LocalizedStrings.getUI('text_comment_start')));
  131. program.addFunction(new_function);
  132. counter_new_functions ++;
  133. window.insertContext = true;
  134. registerUserEvent(new_function.name, ActionTypes.INSERT_FUNCTION);
  135. // var newe = renderFunction(new_function);
  136. renderFunction(new_function);
  137. /*newe.css('display', 'none');
  138. newe.fadeIn();*/
  139. }
  140. function addParameter (function_obj, function_container/*, is_from_click = false*/) {
  141. if (function_obj.parameters_list == null) {
  142. function_obj.parameters_list = [];
  143. }
  144. const new_parameter = new Models.Variable(Types.INTEGER, LocalizedStrings.getUI("new_parameter") + "_" + counter_new_parameters);
  145. function_obj.parameters_list.push(new_parameter);
  146. counter_new_parameters ++;
  147. registerUserEvent(function_obj.name, ActionTypes.INSERT_FUNCTION_PARAM, new_parameter.name, Types.INTEGER, 0);
  148. //var newe = renderParameter(function_obj, new_parameter, function_container);
  149. renderParameter(function_obj, new_parameter, function_container);
  150. // if (is_from_click) {
  151. // newe.css('display', 'none');
  152. // newe.fadeIn();
  153. // }
  154. }
  155. function updateReturnType (function_obj, new_type, new_dimensions = 0) {
  156. registerUserEvent(function_obj.name, ActionTypes.CHANGE_FUNCTION_RETURN, new_type, new_dimensions);
  157. function_obj.return_type = new_type;
  158. function_obj.return_dimensions = new_dimensions;
  159. }
  160. function removeFunction (function_obj) {
  161. var index = program.functions.indexOf(function_obj);
  162. if (index > -1) {
  163. registerUserEvent(function_obj.name, ActionTypes.REMOVE_FUNCTION);
  164. program.functions.splice(index, 1);
  165. }
  166. }
  167. function minimizeFunction (function_obj) {
  168. function_obj.is_hidden = !function_obj.is_hidden;
  169. }
  170. function addHandlers (function_obj, function_container) {
  171. function_container.find('.ui.dropdown.function_return').dropdown({
  172. onChange: function(value, text, $selectedItem) {
  173. if ($selectedItem.data('dimensions')) {
  174. updateReturnType(function_obj, Types[$selectedItem.data('type')], $selectedItem.data('dimensions'));
  175. } else {
  176. updateReturnType(function_obj, Types[$selectedItem.data('type')]);
  177. }
  178. },
  179. selectOnKeydown: false
  180. });
  181. function_container.find( ".name_function_updated" ).on('click', function(e){
  182. enableNameFunctionUpdate(function_obj, function_container);
  183. });
  184. function_container.find( ".add_parameter_button" ).on('click', function(e){
  185. window.insertContext = true;
  186. addParameter(function_obj, function_container, true);
  187. });
  188. function_container.find('.menu_commands').dropdown({
  189. on: 'hover'
  190. });
  191. function_container.find('.menu_commands a').on('click', function(evt){
  192. if (function_obj.commands == null || function_obj.commands.length == 0) {
  193. function_obj.commands = [];
  194. var new_cmd = CommandsManagement.genericCreateCommand($(this).data('command'));
  195. function_obj.commands.push(new_cmd);
  196. CommandsManagement.renderCommand(new_cmd, function_container.find('.commands_list_div'), 3, function_obj);
  197. registerUserEvent(function_obj.name, ActionTypes.INSERT_COMMAND, $(this).data('command'), '/', 0);
  198. } else {
  199. CommandsManagement.createFloatingCommand(function_obj, function_container, $(this).data('command'), evt);
  200. }
  201. });
  202. function_container.find('.add_var_button_function').on('click', function(e){
  203. window.insertContext = true;
  204. VariablesManagement.addVariable(function_obj, function_container, true);
  205. });
  206. function_container.find('.remove_function_button').on('click', function(e){
  207. removeFunction(function_obj);
  208. function_container.fadeOut();
  209. });
  210. function_container.find('.minimize_function_button').on('click', function(e){
  211. minimizeFunction(function_obj);
  212. if (function_obj.is_hidden) {
  213. function_container.find(".add_var_button_function").toggle();
  214. function_container.find(".inline_add_command").toggle();
  215. function_container.find(".function_area").slideToggle();
  216. } else {
  217. function_container.find(".function_area").slideToggle(function(){
  218. function_container.find(".add_var_button_function").toggle();
  219. function_container.find(".inline_add_command").toggle();
  220. });
  221. }
  222. });
  223. }
  224. // Essa função imprime o tipo de retorno da função e cria o menu do tipo 'select' para alteração
  225. function renderFunctionReturn (function_obj, function_element) {
  226. var ret = '<div class="ui dropdown function_return">';
  227. if (function_obj.return_dimensions == 1) {
  228. ret += '<div class="text">'+ LocalizedStrings.getUI("vector") +': '+ LocalizedStrings.getUI(`type_${function_obj.return_type.toLowerCase()}`);
  229. ret += ' [ ] </div>';
  230. } else if (function_obj.return_dimensions == 2) {
  231. ret += '<div class="text">'+ LocalizedStrings.getUI("matrix") +': '+ LocalizedStrings.getUI(`type_${function_obj.return_type.toLowerCase()}`);
  232. ret += ' [ ] [ ] </div>';
  233. } else {
  234. ret += '<div class="text">'+LocalizedStrings.getUI(`type_${function_obj.return_type.toLowerCase()}`)+'</div>';
  235. }
  236. ret += '<div class="menu">';
  237. for (var tm in Types) {
  238. ret += '<div class="item ' + (function_obj.return_type == tm.toLowerCase() && function_obj.return_dimensions < 1 ? ' selected ' : '') + '" data-type="'+tm+'" >'+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+'</div>';
  239. }
  240. ret += '<div class="item ' + (function_obj.return_dimensions == 1 ? ' selected ' : '') + '">'
  241. + '<i class="dropdown icon"></i>' + LocalizedStrings.getUI('vector')
  242. + '<div class="menu">';
  243. for (var tm in Types) {
  244. if (tm == Types.VOID.toUpperCase()) {
  245. continue;
  246. }
  247. ret += '<div class="item ' + (function_obj.return_type == tm.toLowerCase() && function_obj.return_dimensions == 1 ? ' selected ' : '') + '" data-text="'+ LocalizedStrings.getUI('vector')+':'+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+' [ ] " data-type="'+tm+'" data-dimensions="1"> '+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+'</div>';
  248. }
  249. ret += '</div></div>';
  250. ret += '<div class="item ' + (function_obj.return_dimensions == 2 ? ' selected ' : '') + '">'
  251. + '<i class="dropdown icon"></i>' + LocalizedStrings.getUI('matrix')
  252. + '<div class="menu">';
  253. for (var tm in Types) {
  254. if (tm == Types.VOID.toUpperCase()) {
  255. continue;
  256. }
  257. ret += '<div class="item ' + (function_obj.return_type == tm.toLowerCase() && function_obj.return_dimensions == 2 ? ' selected ' : '') + '" data-text="'+ LocalizedStrings.getUI('matrix')+':'+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+' [ ] " data-type="'+tm+'" data-dimensions="2"> '+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+'</div>';
  258. }
  259. ret += '</div></div>';
  260. ret += '</div></div>';
  261. ret = $(ret);
  262. function_element.find('.function_return').append(ret);
  263. }
  264. var cont = 0;
  265. export function renderFunction (function_obj) {
  266. var appender = '<div class="ui secondary segment function_div list-group-item function_cont_'+cont+'">';
  267. if (function_obj.function_comment) {
  268. //appender += renderComment(function_obj.function_comment, sequence, true, -1);
  269. }
  270. appender += '<span class="glyphicon glyphicon-move move_function" aria-hidden="true"><i class="icon sort alternate vertical"></i></span>';
  271. appender += (function_obj.is_main ? '<div class="div_start_minimize_v"> </div>' : '<button class="ui icon button large remove_function_button"><i class="red icon times"></i></button>')
  272. + '<button class="ui icon button tiny minimize_function_button"><i class="icon window minimize"></i></button>';
  273. appender += '<div class="function_signature_div">'+LocalizedStrings.getUI("function")+' ';
  274. if (function_obj.is_main) {
  275. appender += '<div class="function_name_div"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' + LocalizedStrings.getUI('type_void') + ' &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span class="span_name_function" >'+function_obj.name+'</span> </div> '
  276. + ' <span class="parethesis_function">( </span> <div class="ui large labels parameters_list">';
  277. } else {
  278. appender += '<div class="ui function_return"></div>';
  279. appender += '<div class="function_name_div function_name_div_updated"><span class="span_name_function name_function_updated">'+function_obj.name+'</span> </div> '
  280. + ' <span class="parethesis_function"> ( </span> <i class="ui icon plus square outline add_parameter_button"></i> <div class="ui large labels parameters_list container_parameters_list">';
  281. }
  282. appender += '</div> <span class="parethesis_function"> ) </span> </div>'
  283. + (function_obj.is_hidden ? ' <div class="function_area" style="display: none;"> ' : ' <div class="function_area"> ');
  284. appender += '<div class="ui add_var_context add_var_button_function" style="float: left;"> <div class="ui icon button purple"> ';
  285. appender += '<i class="icons"><i class="icon superscript" style="margin-top: -2px;margin-bottom: 2px;margin-left: 1px;margin-right: 1px;"></i><i class="corner add icon inverted" style="font-size: 9px;padding-top: 6px;padding-left: 9px;"></i></i>';
  286. appender += '</div></div>';
  287. appender += '<div class="ui top attached segment variables_list_div"></div>';
  288. appender += '<div class="ui bottom attached segment commands_list_div commands_cont_'+cont+'">'
  289. + '<div class="ui rail" style="width: 35px; margin-left: -36px;"><div class="ui sticky sticky_cont_'+cont+'" style="top: 50px !important;">';
  290. appender += '<div class="ui icon button dropdown menu_commands orange" > '
  291. + '<i class="icons"><i class="icon code" style="margin-top: -1px;margin-bottom: 1px;margin-right: 0px;"></i><i class="corner add icon inverted" style="font-size: 9px;padding-top: 6px;padding-left: 9px;"></i></i>'
  292. + '<div class="menu"> ';
  293. appender += '<a class="item" data-command="'+Models.COMMAND_TYPES.reader+'"><i class="download icon"></i> ' +LocalizedStrings.getUI('text_read_var')+ '</a>'
  294. + '<a class="item" data-command="'+Models.COMMAND_TYPES.writer+'"><i class="upload icon"></i> '+LocalizedStrings.getUI('text_write_var')+'</a>'
  295. + '<a class="item" data-command="'+Models.COMMAND_TYPES.comment+'"><i class="quote left icon"></i> '+LocalizedStrings.getUI('text_comment')+'</a>'
  296. + '<a class="item" data-command="'+Models.COMMAND_TYPES.attribution+'"><i class="arrow left icon"></i> '+LocalizedStrings.getUI('text_attribution')+'</a>'
  297. + '<a class="item" data-command="'+Models.COMMAND_TYPES.functioncall+'"><i class="hand point right icon"></i> '+LocalizedStrings.getUI('text_functioncall')+'</a>'
  298. + '<a class="item" data-command="'+Models.COMMAND_TYPES.iftrue+'" ><i class="random icon"></i> '+LocalizedStrings.getUI('text_iftrue')+'</a>'
  299. + '<a class="item" data-command="'+Models.COMMAND_TYPES.repeatNtimes+'"><i class="sync icon"></i> '+LocalizedStrings.getUI('text_repeatNtimes')+'</a>'
  300. + '<a class="item" data-command="'+Models.COMMAND_TYPES.whiletrue+'"><i class="sync icon"></i> '+LocalizedStrings.getUI('text_whiletrue')+'</a>'
  301. + '<a class="item" data-command="'+Models.COMMAND_TYPES.dowhiletrue+'"><i class="sync icon"></i> '+LocalizedStrings.getUI('text_dowhiletrue')+'</a>'
  302. + '<a class="item" data-command="'+Models.COMMAND_TYPES.switch+'"><i class="list icon"></i> '+LocalizedStrings.getUI('text_switch')+'</a>'
  303. + '<a class="item" data-command="'+Models.COMMAND_TYPES.return+'"><i class="reply icon"></i> '+LocalizedStrings.getUI('text_btn_return')+'</a>'
  304. + '</div></div>';
  305. appender += '</div></div>'
  306. +'</div>';
  307. appender += '</div></div>';
  308. appender = $(appender);
  309. $('.all_functions').append(appender);
  310. appender.data('fun', function_obj);
  311. appender.find('.commands_list_div').data('fun', function_obj);
  312. renderFunctionReturn(function_obj, appender);
  313. addHandlers(function_obj, appender);
  314. // Rendering parameters:
  315. for (var j = 0; j < function_obj.parameters_list.length; j++) {
  316. renderParameter(function_obj, function_obj.parameters_list[j], appender);
  317. }
  318. // Rendering variables:
  319. for (var j = 0; j < function_obj.variables_list.length; j++) {
  320. VariablesManagement.renderVariable(appender, function_obj.variables_list[j], function_obj);
  321. }
  322. // Rendering commands:
  323. for (var j = 0; j < function_obj.commands.length; j++) {
  324. CommandsManagement.renderCommand(function_obj.commands[j], $(appender.find('.commands_list_div')[0]), 3, function_obj);
  325. }
  326. appender.find('.minimize_function_button').popup({
  327. content : LocalizedStrings.getUI("tooltip_hide_function"),
  328. delay: {
  329. show: 750,
  330. hide: 0
  331. }
  332. });
  333. appender.find('.move_function').popup({
  334. content : LocalizedStrings.getUI("btn_drag_and_drop_function"),
  335. delay: {
  336. show: 1000,
  337. hide: 0
  338. }
  339. });
  340. appender.find('.remove_function_button').popup({
  341. content : LocalizedStrings.getUI("btn_delete_function"),
  342. delay: {
  343. show: 750,
  344. hide: 0
  345. }
  346. });
  347. appender.find('.add_var_button_function').popup({
  348. content : LocalizedStrings.getUI("btn_add_var"),
  349. delay: {
  350. show: 750,
  351. hide: 0
  352. }
  353. });
  354. appender.find('a[data-command="attribution"]').popup({
  355. content : LocalizedStrings.getUI("tooltip_menu_attribution"),
  356. position: 'right center',
  357. delay: {
  358. show: 750,
  359. hide: 0
  360. }
  361. });
  362. appender.find('a[data-command="functioncall"]').popup({
  363. content : LocalizedStrings.getUI("tooltip_menu_call_function"),
  364. position: 'right center',
  365. delay: {
  366. show: 750,
  367. hide: 0
  368. }
  369. });
  370. appender.find('a[data-command="iftrue"]').popup({
  371. content : LocalizedStrings.getUI("tooltip_menu_if_else"),
  372. position: 'right center',
  373. delay: {
  374. show: 750,
  375. hide: 0
  376. }
  377. });
  378. appender.find('a[data-command="comment"]').popup({
  379. content : LocalizedStrings.getUI("tooltip_menu_comments"),
  380. position: 'right center',
  381. delay: {
  382. show: 750,
  383. hide: 0
  384. }
  385. });
  386. appender.find('a[data-command="reader"]').popup({
  387. content : LocalizedStrings.getUI("tooltip_menu_read"),
  388. position: 'right center',
  389. delay: {
  390. show: 750,
  391. hide: 0
  392. }
  393. });
  394. appender.find('a[data-command="writer"]').popup({
  395. content : LocalizedStrings.getUI("tooltip_menu_write"),
  396. position: 'right center',
  397. delay: {
  398. show: 750,
  399. hide: 0
  400. }
  401. });
  402. appender.find('a[data-command="repeatNtimes"]').popup({
  403. content : LocalizedStrings.getUI("tooltip_menu_repeat_n_times"),
  404. position: 'right center',
  405. delay: {
  406. show: 750,
  407. hide: 0
  408. }
  409. });
  410. appender.find('a[data-command="whiletrue"]').popup({
  411. content : LocalizedStrings.getUI("tooltip_menu_repeat_whiletrue"),
  412. position: 'right center',
  413. delay: {
  414. show: 750,
  415. hide: 0
  416. }
  417. });
  418. appender.find('a[data-command="dowhiletrue"]').popup({
  419. content : LocalizedStrings.getUI("tooltip_menu_repeat_dowhiletrue"),
  420. position: 'right center',
  421. delay: {
  422. show: 750,
  423. hide: 0
  424. }
  425. });
  426. appender.find('a[data-command="switch"]').popup({
  427. content : LocalizedStrings.getUI("tooltip_menu_repeat_switch"),
  428. position: 'right center',
  429. delay: {
  430. show: 750,
  431. hide: 0
  432. }
  433. });
  434. appender.find('a[data-command="return"]').popup({
  435. content : LocalizedStrings.getUI("tooltip_menu_repeat_return"),
  436. position: 'right center',
  437. delay: {
  438. show: 750,
  439. hide: 0
  440. }
  441. });
  442. var function_index = program.functions.indexOf(function_obj);
  443. Sortable.create(appender.find(".variables_list_div")[0], {
  444. handle: '.ellipsis',
  445. animation: 100,
  446. ghostClass: 'ghost',
  447. group: 'local_vars_drag_' + function_index,
  448. onEnd: function (evt) {
  449. updateSequenceLocals(evt.oldIndex, evt.newIndex, function_obj);
  450. }
  451. });
  452. addSortableHandler(appender.find(".commands_list_div")[0], function_index);
  453. if (!function_obj.is_main) {
  454. Sortable.create(appender.find(".container_parameters_list")[0], {
  455. handle: '.ellipsis',
  456. animation: 100,
  457. ghostClass: 'ghost',
  458. group: 'parameters_drag_' + program.functions.indexOf(function_obj),
  459. onEnd: function (evt) {
  460. updateSequenceParameters(evt.oldIndex, evt.newIndex, function_obj);
  461. }
  462. });
  463. }
  464. if (function_obj.commands.length > 0) {
  465. var teste = '.ui.sticky.sticky_cont_'+cont;
  466. $(teste).sticky({
  467. context: '.ui.bottom.attached.segment.commands_list_div.commands_cont_'+cont,
  468. scrollContext: '.ivprog_visual_panel',
  469. observeChanges: true,
  470. offset: 40,
  471. onStick: function (evt) {
  472. $(teste).css('top', '20px', 'important');
  473. },
  474. onBottom: function (evt) {
  475. $(teste).css('top', '20px', 'important');
  476. },
  477. onUnstick: function (evt) {
  478. $(teste).css('top', '20px', 'important');
  479. },
  480. onReposition: function (evt) {
  481. $(teste).css('top', '20px', 'important');
  482. },
  483. onScroll: function (evt) {
  484. $(teste).css('top', '20px', 'important');
  485. if (!isVisible($(teste), $(teste).parent())) {
  486. $(teste).removeClass('fixed');
  487. }
  488. },
  489. onTop: function (evt) {
  490. $(teste).css('top', '20px', 'important');
  491. }
  492. });
  493. }
  494. cont ++;
  495. appender.find('.add_parameter_button').popup({
  496. content : LocalizedStrings.getUI("text_add_parameters"),
  497. delay: {
  498. show: 750,
  499. hide: 0
  500. }
  501. });
  502. return appender;
  503. }
  504. function isVisible (element, container) {
  505. var elementTop = $(element).offset().top,
  506. elementHeight = $(element).height(),
  507. containerTop = $(container).offset().top,
  508. containerHeight = $(container).height() - 30;
  509. return ((((elementTop - containerTop) + elementHeight) > 0)
  510. && ((elementTop - containerTop) < containerHeight));
  511. }
  512. window.evento_drag;
  513. function updateProgramObjDrag () {
  514. const nodes = Array.prototype.slice.call( $('.all_functions').children() );
  515. let function_index;
  516. var start_index;
  517. let function_obj;
  518. $(evento_drag.item).parentsUntil(".all_functions").each(function (index) {
  519. const ref = $(this);
  520. if (ref.hasClass('function_div')) {
  521. function_index = nodes.indexOf(this);
  522. start_index = index;
  523. function_obj = ref;
  524. }
  525. });
  526. const path_target = [];
  527. $(evento_drag.item).parentsUntil(".all_functions").each(function () {
  528. if ($(this).hasClass('command_container')) {
  529. path_target.push(this);
  530. }
  531. });
  532. if (path_target.length == 0) {
  533. //console.log('soltou na raiz, na posição: ' + evento_drag.newIndex + ' mas ainda não sei de onde saiu ');
  534. } else {
  535. //console.log('soltou dentro de algum bloco, sequência vem logo abaixo (de baixo pra cima): ');
  536. //console.log(path_target);
  537. }
  538. var index_each = [];
  539. var path_relative = [];
  540. for (var i = path_target.length - 1; i >= 0; i --) {
  541. if (i == (path_target.length - 1)) { // está na raiz
  542. var indice_na_raiz = function_obj.find('.command_container').index(path_target[i]);
  543. } else {
  544. if ($(path_target[i + 1]).hasClass('iftrue')) {
  545. if ($(path_target[i]).parent().hasClass('commands_if')) {
  546. path_relative.push('if');
  547. index_each.push($(path_target[i]).parent().find('.command_container').index(path_target[i]));
  548. } else {
  549. path_relative.push('else');
  550. index_each.push($(path_target[i]).parent().find('.command_container').index(path_target[i]));
  551. }
  552. } else if ($(path_target[i + 1]).hasClass('dowhiletrue')) {
  553. path_relative.push('dowhiletrue');
  554. index_each.push($(path_target[i + 1]).find('.command_container').index(path_target[i]));
  555. } else if ($(path_target[i + 1]).hasClass('repeatNtimes')) {
  556. path_relative.push('repeatNtimes');
  557. index_each.push($(path_target[i + 1]).find('.command_container').index(path_target[i]));
  558. } else if ($(path_target[i + 1]).hasClass('whiletrue')) {
  559. path_relative.push('whiletrue');
  560. index_each.push($(path_target[i + 1]).find('.command_container').index(path_target[i]));
  561. } else if ($(path_target[i + 1]).hasClass('switch')) {
  562. path_relative.push('switch');
  563. //index_each.push($(path_target[i + 1]).find('.command_container').index(path_target[i]));
  564. }
  565. }
  566. }
  567. // var index_in_block = -1;
  568. const is_in_else = $(evento_drag.item).parent().hasClass('commands_else');
  569. // index_in_block = $(evento_drag.item).parent().find('.command_container').index(evento_drag.item);
  570. const is_in_case_switch = $(evento_drag.item).parent().hasClass('case_commands_block');
  571. // encontrar o elemento na árvore:
  572. var command_start_point = window.program_obj.functions[function_index].commands[indice_na_raiz];
  573. var block_to_insert = command_start_point;
  574. for (var i = 0; i < index_each.length; i++) {
  575. if (path_relative[i] == "else") {
  576. block_to_insert = block_to_insert.commands_else[index_each[i]];
  577. } else if (path_relative[i] == "switch") {
  578. } else {
  579. block_to_insert = block_to_insert.commands_block[index_each[i]]
  580. }
  581. }
  582. //console.log('command_start_point', command_start_point);
  583. //console.log('block_to_insert', block_to_insert);
  584. // agora tem que alocar o comando na árvore, mas considerar as quatro situações:
  585. // (1) se está em um else ou (2) se está em switch ou (3) será um caso padrão ou (4) se será na raiz.
  586. if (path_target.length == 0) { // soltou na raiz:
  587. window.program_obj.functions[function_index].commands.splice(evento_drag.newIndex - 1, 0, command_in_drag);
  588. } else if (is_in_else) {
  589. if (block_to_insert.commands_else) {
  590. block_to_insert.commands_else.splice(evento_drag.newIndex, 0, command_in_drag);
  591. } else {
  592. block_to_insert.commands_else = [];
  593. block_to_insert.commands_else.push(command_in_drag);
  594. }
  595. } else if (is_in_case_switch) {
  596. } else {
  597. // verificar se tem alguma coisa no bloco:
  598. if (block_to_insert.commands_block) {
  599. block_to_insert.commands_block.splice(evento_drag.newIndex, 0, command_in_drag);
  600. } else {
  601. block_to_insert.commands_block = [];
  602. block_to_insert.commands_block.push(command_in_drag);
  603. }
  604. }
  605. window.draging = false;
  606. renderAlgorithm();
  607. }
  608. function prepareDragHandler (evt) {
  609. window.draging = true;
  610. var nodes = Array.prototype.slice.call( $('.all_functions').children() );
  611. var function_index;
  612. var function_obj;
  613. $(evt.item).parentsUntil(".all_functions").each(function (index) {
  614. if ($(this).hasClass('function_div')) {
  615. function_index = nodes.indexOf(this);
  616. function_obj = window.program_obj.functions[function_index];
  617. }
  618. });
  619. command_in_drag = $(evt.item).data("command");
  620. //console.log('$(evt.item).parent(): ');
  621. //console.log($(evt.item).parent());
  622. // descobrir qual das quatro situações:
  623. if ($(evt.item).parent().hasClass('commands_list_div')) { // está na raiz:
  624. if (function_obj.commands.indexOf(command_in_drag) > -1) {
  625. function_obj.commands.splice(function_obj.commands.indexOf(command_in_drag), 1);
  626. }
  627. } else if ($(evt.item).parent().hasClass('commands_else')) { // está no else:
  628. if ($(evt.item).parent().data('command').commands_else.indexOf(command_in_drag) > -1) {
  629. $(evt.item).parent().data('command').commands_else.splice($(evt.item).parent().data('command').commands_else.indexOf(command_in_drag), 1);
  630. }
  631. } else if ($(evt.item).parent().hasClass('case_commands_block')) { // está em um switch:
  632. } else { // caso padrão:
  633. if ($(evt.item).parent().data('command').commands_block.indexOf(command_in_drag) > -1) {
  634. $(evt.item).parent().data('command').commands_block.splice($(evt.item).parent().data('command').commands_block.indexOf(command_in_drag), 1);
  635. }
  636. }
  637. }
  638. var command_in_drag;
  639. function addSortableHandler (element, id_function) {
  640. var n_group = 'commands_drag_' + id_function;
  641. Sortable.create(element, {
  642. handle: '.command_drag',
  643. ghostClass: 'ghost',
  644. animation: 300,
  645. group: {name: n_group},
  646. onEnd: function (evt) {
  647. var nodes = Array.prototype.slice.call( $('.all_functions').children() );
  648. var function_index;
  649. var function_obj;
  650. $(evt.item).parentsUntil(".all_functions").each(function (index) {
  651. if ($(this).hasClass('function_div')) {
  652. function_index = nodes.indexOf(this);
  653. function_obj = window.program_obj.functions[function_index];
  654. }
  655. });
  656. registerUserEvent(function_obj.name, ActionTypes.MOVE_COMMAND, $(evt.item).data('command').type, '/', 'from: ' + evt.oldIndex + ' to: ' + evt.newIndex);
  657. //updateSequenceLocals(evt.oldIndex, evt.newIndex, function_obj);
  658. var itemEl = evt.item; // dragged HTMLElement
  659. evt.to; // target list
  660. evt.from; // previous list
  661. evt.oldIndex; // element's old index within old parent
  662. evt.newIndex; // element's new index within new parent
  663. //console.log('::EVT::');
  664. //console.log(evt);
  665. window.evento_drag = evt;
  666. try {
  667. updateProgramObjDrag();
  668. } catch (e) {
  669. console.error(e);
  670. window.draging = false;
  671. }
  672. },
  673. onStart: function (evt) {
  674. //console.log("START::EVT::");
  675. //console.log(evt);
  676. //console.log("\n\ncommand_in_drag");
  677. try {
  678. prepareDragHandler(evt);
  679. } catch (e) {
  680. window.draging = false;
  681. }
  682. }
  683. });
  684. element = $(element);
  685. element.find(".iftrue").each(function( index ) {
  686. addSortableHandler($(this).find(".block_commands")[0], id_function);
  687. addSortableHandler($(this).find(".block_commands")[1], id_function);
  688. });
  689. element.find(".repeatNtimes").each(function( index ) {
  690. addSortableHandler($(this).find(".block_commands")[0], id_function);
  691. });
  692. element.find(".dowhiletrue").each(function( index ) {
  693. addSortableHandler($(this).find(".block_commands")[0], id_function);
  694. });
  695. element.find(".whiletrue").each(function( index ) {
  696. addSortableHandler($(this).find(".block_commands")[0], id_function);
  697. });
  698. element.find(".switch").each(function( index ) {
  699. $(this).find(".case_div").each(function( index ) {
  700. addSortableHandler($(this).find(".case_commands_block")[0], id_function);
  701. });
  702. });
  703. }
  704. export function initVisualUI () {
  705. // MUST USE CONST, LET, OR VAR !!!!!!
  706. // const mainDiv = $('#visual-main-div');
  707. // fill mainDiv with functions and globals...
  708. // renderAlgorithm()...
  709. domConsole = new DOMConsole("ivprog-term-div");
  710. domConsole.hide();
  711. $(document.getElementById("ivprog-term-div")).draggable()
  712. $('.add_function_button').on('click', () => {
  713. addFunctionHandler();
  714. }).popup({
  715. content : LocalizedStrings.getUI("text_add_function"),
  716. delay: {
  717. show: 750,
  718. hide: 0
  719. }
  720. });
  721. $('.add_global_button').on('click', () => {
  722. window.insertContext = true;
  723. GlobalsManagement.addGlobal(program, true);
  724. });
  725. $('#run_button').on('click', function () {
  726. showStopButton();
  727. runCode();
  728. });
  729. $('#download_file_button').on('click', function () {
  730. downloadFile();
  731. });
  732. $('#upload_file_button').on('click', function () {
  733. $('#ivph_file').click().off('change').change(uploadFile);
  734. });
  735. $('#stop_button').on('click', function () {
  736. showRunButton();
  737. stopExecution();
  738. });
  739. $('.visual_coding_button').on('click', () => {
  740. toggleVisualCoding();
  741. });
  742. $('.textual_coding_button').on('click', () => {
  743. toggleTextualCoding();
  744. });
  745. $('.assessment').on('click', () => {
  746. is_iassign = true;
  747. runCodeAssessment();
  748. });
  749. $('.div_toggle_console').on('click', () => {
  750. toggleConsole();
  751. });
  752. $('.expand_button').on('click', () => {
  753. full_screen();
  754. });
  755. $('.help_button').on('click', () => {
  756. window.open('https://www.usp.br/line/ivprog/', '_blank');
  757. });
  758. $('.main_title h2').prop('title', LocalizedStrings.getUI('text_ivprog_description'));
  759. var time_show = 750;
  760. $('.visual_coding_button').popup({
  761. content : LocalizedStrings.getUI("tooltip_visual"),
  762. delay: {
  763. show: time_show,
  764. hide: 0
  765. }
  766. });
  767. $('.textual_coding_button').popup({
  768. content : LocalizedStrings.getUI("tooltip_textual"),
  769. delay: {
  770. show: time_show,
  771. hide: 0
  772. }
  773. });
  774. $('.upload_file_button').popup({
  775. content : LocalizedStrings.getUI("tooltip_upload"),
  776. delay: {
  777. show: time_show,
  778. hide: 0
  779. }
  780. });
  781. $('.download_file_button').popup({
  782. content : LocalizedStrings.getUI("tooltip_download"),
  783. delay: {
  784. show: time_show,
  785. hide: 0
  786. }
  787. });
  788. $('.undo_button').popup({
  789. content : LocalizedStrings.getUI("tooltip_undo"),
  790. delay: {
  791. show: time_show,
  792. hide: 0
  793. }
  794. });
  795. $('.redo_button').popup({
  796. content : LocalizedStrings.getUI("tooltip_redo"),
  797. delay: {
  798. show: time_show,
  799. hide: 0
  800. }
  801. });
  802. $('.run_button').popup({
  803. content : LocalizedStrings.getUI("tooltip_run"),
  804. delay: {
  805. show: time_show,
  806. hide: 0
  807. }
  808. });
  809. $('.assessment_button').popup({
  810. content : LocalizedStrings.getUI("tooltip_evaluate"),
  811. delay: {
  812. show: time_show,
  813. hide: 0
  814. }
  815. });
  816. $('.help_button').popup({
  817. content : LocalizedStrings.getUI("tooltip_help") + ' - ' + LocalizedStrings.getUI("text_ivprog_version") + ' ' + ivprog_version,
  818. delay: {
  819. show: time_show,
  820. hide: 0
  821. }
  822. });
  823. $('.add_global_button').popup({
  824. content : LocalizedStrings.getUI("tooltip_add_global"),
  825. delay: {
  826. show: time_show,
  827. hide: 0
  828. }
  829. });
  830. $('.div_toggle_console').popup({
  831. content : LocalizedStrings.getUI("tooltip_console"),
  832. delay: {
  833. show: time_show,
  834. hide: 0
  835. }
  836. });
  837. Sortable.create(listWithHandle, {
  838. handle: '.glyphicon-move',
  839. animation: 100,
  840. ghostClass: 'ghost',
  841. group: 'functions_divs_drag',
  842. onEnd: function (evt) {
  843. updateSequenceFunction(evt.oldIndex, evt.newIndex);
  844. }
  845. });
  846. var listGlobalsHandle = document.getElementById("listGlobalsHandle");
  847. Sortable.create(listGlobalsHandle, {
  848. handle: '.ellipsis',
  849. animation: 100,
  850. ghostClass: 'ghost',
  851. group: 'globals_divs_drag',
  852. onEnd: function (evt) {
  853. updateSequenceGlobals(evt.oldIndex, evt.newIndex);
  854. }
  855. });
  856. }
  857. export function setTestCases (testCases) {
  858. _testCases = testCases;
  859. }
  860. export function getTestCases () {
  861. // Deep clone of test cases to avoid unauthorized modification
  862. // TODO: It may be not possible to use this once custom test are fully implemented
  863. return JSON.parse(JSON.stringify(_testCases));
  864. }
  865. var is_iassign = false;
  866. function updateSequenceParameters (oldIndex, newIndex, function_obj) {
  867. function_obj.parameters_list.splice(newIndex, 0, function_obj.parameters_list.splice(oldIndex, 1)[0]);
  868. }
  869. function updateSequenceLocals (oldIndex, newIndex, function_obj) {
  870. function_obj.variables_list.splice(newIndex, 0, function_obj.variables_list.splice(oldIndex, 1)[0]);
  871. }
  872. function updateSequenceGlobals (oldIndex, newIndex) {
  873. program_obj.globals.splice(newIndex, 0, program_obj.globals.splice(oldIndex, 1)[0]);
  874. }
  875. function updateSequenceFunction (oldIndex, newIndex) {
  876. program_obj.functions.splice(newIndex, 0, program_obj.functions.splice(oldIndex, 1)[0]);
  877. }
  878. function runCodeAssessment () {
  879. if (isRunning) {
  880. // cannot run assessment or it's already running
  881. return -1;
  882. }
  883. let strCode = null;
  884. is_iassign = false;
  885. window.studentGrade = null;
  886. if (settingsProgrammingTypes == "textual") {
  887. strCode = TextEditor.getCode();
  888. } else {
  889. strCode = CodeManagement.generate();
  890. }
  891. if (strCode == null) {
  892. // No code, so no assessment
  893. return -1;
  894. }
  895. toggleConsole(true);
  896. try {
  897. const data = SemanticAnalyser.analyseFromSource(strCode);
  898. isRunning = true;
  899. const runner = new IVProgAssessment(data, _testCases, domConsole);
  900. runner.runTest().then(grade => {
  901. if (!is_iassign) {
  902. parent.getEvaluationCallback(grade);
  903. } else {
  904. is_iassign = false;
  905. }
  906. isRunning = false;
  907. }).catch( err => {
  908. console.log(err);
  909. isRunning = false;
  910. });
  911. } catch (error) {
  912. isRunning = false;
  913. domConsole.err(error.message);
  914. console.log(error);
  915. if (!is_iassign) {
  916. parent.getEvaluationCallback(0);
  917. } else {
  918. is_iassign = false;
  919. }
  920. }
  921. return 0;
  922. }
  923. function runCode () {
  924. if (isRunning) {
  925. return;
  926. }
  927. let strCode = null;
  928. if (settingsProgrammingTypes == "textual") {
  929. strCode = TextEditor.getCode();
  930. } else {
  931. strCode = CodeManagement.generate();
  932. }
  933. if (strCode == null) {
  934. return;
  935. }
  936. toggleConsole(true);
  937. // if(domConsole == null)
  938. // domConsole = new DOMConsole("#ivprog-term");
  939. //$("#ivprog-term").slideDown(500);
  940. try {
  941. const data = SemanticAnalyser.analyseFromSource(strCode);
  942. proc = new IVProgProcessor(data);
  943. proc.registerInput(domConsole);
  944. proc.registerOutput(domConsole);
  945. $("#ivprog-term").addClass('ivprog-term-active');
  946. isRunning = true;
  947. proc.interpretAST().then( _ => {
  948. scheduleCall(() => {
  949. if(domConsole.pending_writes.length == 0) {
  950. if(proc.mode === Modes.ABORT) {
  951. domConsole.info(LocalizedStrings.getMessage("aborted_execution"));
  952. } else {
  953. domConsole.info(LocalizedStrings.getMessage("success_execution"));
  954. }
  955. $("#ivprog-term").removeClass('ivprog-term-active');
  956. isRunning = false;
  957. proc = null;
  958. showRunButton();
  959. return true;
  960. }
  961. return false;
  962. },100);
  963. }).catch(err => {
  964. scheduleCall(() => {
  965. if(domConsole.pending_writes.length == 0) {
  966. if(err instanceof Error) {
  967. domConsole.err(err.message);
  968. } else {
  969. domConsole.err(err);
  970. }
  971. $("#ivprog-term").removeClass('ivprog-term-active');
  972. isRunning = false;
  973. proc = null;
  974. showRunButton();
  975. return true;
  976. }
  977. return false;
  978. },100);
  979. })
  980. } catch (error) {
  981. scheduleCall(() => {
  982. if(domConsole.pending_writes.length == 0) {
  983. isRunning = false;
  984. proc = null;
  985. showRunButton();
  986. domConsole.err(error.message);
  987. console.log(error);
  988. return true;
  989. }
  990. return false;
  991. },100);
  992. }
  993. }
  994. function toggleConsole (is_running) {
  995. if (is_running) {
  996. $('.ivprog-term-div').css('display', 'block');
  997. $('#ivprog-term').css('min-height', '160px');
  998. if(domConsole != null)
  999. domConsole.focus();
  1000. //$('#ivprog-term').css('margin-top', '-170px');
  1001. return;
  1002. } else {
  1003. domConsole.hide();
  1004. return;
  1005. }
  1006. if ($('#ivprog-term').css('min-height') == '160px') {
  1007. // esconder
  1008. $('.ivprog-term-div').css('display', 'none');
  1009. $('#ivprog-term').css('min-height', '0');
  1010. //$('#ivprog-term').css('margin-top', '-30px');
  1011. //$('#ivprog-term').css('padding', '5px');
  1012. } else {
  1013. // mostrar
  1014. $('.ivprog-term-div').css('display', 'block');
  1015. $('#ivprog-term').css('min-height', '160px');
  1016. //$('#ivprog-term').css('margin-top', '-170px');
  1017. }
  1018. }
  1019. // function waitToCloseConsole () {
  1020. // domConsole.info("Aperte qualquer tecla para fechar...");
  1021. // const p = new Promise((resolve, _) => {
  1022. // domConsole.requestInput(resolve, true);
  1023. // });
  1024. // p.then( _ => {
  1025. // domConsole.dispose();
  1026. // domConsole = null;
  1027. // $("#ivprog-term").hide();
  1028. // })
  1029. // }
  1030. function toggleTextualCoding () {
  1031. let code = null;
  1032. if (settingsProgrammingTypes != "textual") {
  1033. code = CodeManagement.generate();
  1034. if (code == null) {
  1035. return;
  1036. }
  1037. }
  1038. $('.ivprog_visual_panel').css('display', 'none');
  1039. $('.ivprog_textual_panel').css('display', 'block');
  1040. $('.ivprog_textual_panel').removeClass('loading');
  1041. TextEditor.updateEditor();
  1042. if (code != null)
  1043. TextEditor.setCode(code);
  1044. //$('.ivprog_textual_code').text(code);
  1045. $('.visual_coding_button').removeClass('active');
  1046. $('.textual_coding_button').addClass('active');
  1047. }
  1048. function toggleVisualCoding () {
  1049. $('.ivprog_textual_panel').addClass('loading');
  1050. $('.ivprog_textual_panel').css('display', 'none');
  1051. $('.ivprog_visual_panel').css('display', 'block');
  1052. $('.textual_coding_button').removeClass('active');
  1053. $('.visual_coding_button').addClass('active');
  1054. }
  1055. function removeParameter (function_obj, parameter_obj, parameter_container) {
  1056. registerUserEvent(parameter_obj.name, ActionTypes.REMOVE_FUNCTION_PARAM, function_obj.name);
  1057. var index = function_obj.parameters_list.indexOf(parameter_obj);
  1058. if (index > -1) {
  1059. window.insertContext = true;
  1060. function_obj.parameters_list.splice(index, 1);
  1061. }
  1062. $(parameter_container).fadeOut();
  1063. }
  1064. function updateParameterType (parameter_obj, new_type, function_name, new_dimensions = 0) {
  1065. registerUserEvent(parameter_obj.name, ActionTypes.CHANGE_PARAM_TYPE, function_name, new_type, new_dimensions);
  1066. parameter_obj.type = new_type;
  1067. parameter_obj.dimensions = new_dimensions;
  1068. if (new_dimensions > 0) {
  1069. parameter_obj.rows = new_dimensions;
  1070. parameter_obj.columns = 2;
  1071. }
  1072. }
  1073. function renderParameter (function_obj, parameter_obj, function_container) {
  1074. let ret = "";
  1075. ret += '<div class="ui label function_name_parameter pink"><i class="ui icon ellipsis vertical inverted"></i>';
  1076. if (parameter_obj.reference)
  1077. ret += '<input type="checkbox" checked class="by_reference">';
  1078. else
  1079. ret += '<input type="checkbox" class="by_copy">';
  1080. ret += '<div class="ui dropdown parameter_type">';
  1081. if (parameter_obj.dimensions > 0) {
  1082. ret += '<div class="text">'+ LocalizedStrings.getUI('vector')+':'+LocalizedStrings.getUI(`type_${parameter_obj.type.toLowerCase()}`);
  1083. if (parameter_obj.dimensions == 1) {
  1084. ret += ' [ ] ';
  1085. } else {
  1086. ret += ' [ ] [ ] ';
  1087. }
  1088. ret += '</div>';
  1089. } else {
  1090. ret += '<div class="text">'+LocalizedStrings.getUI(`type_${parameter_obj.type.toLowerCase()}`)+'</div>';
  1091. }
  1092. ret += '<div class="menu">';
  1093. for (const tm in Types) {
  1094. if (tm == Types.VOID.toUpperCase()) {
  1095. continue;
  1096. }
  1097. ret += '<div class="item ' + (parameter_obj.type == tm.toLowerCase() && parameter_obj.dimensions == 0 ? ' selected ' : '') + '" data-type="'+tm+'" >'+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+'</div>';
  1098. }
  1099. ret += '<div class="item ' + (parameter_obj.dimensions == 1 ? ' selected ' : '') + '">'
  1100. + '<i class="dropdown icon"></i>' + LocalizedStrings.getUI('vector')
  1101. + '<div class="menu">';
  1102. for (var tm in Types) {
  1103. if (tm == Types.VOID.toUpperCase()) {
  1104. continue;
  1105. }
  1106. ret += '<div class="item ' + (parameter_obj.type == tm.toLowerCase() && parameter_obj.dimensions == 1 ? ' selected ' : '') + '" data-text="'+ LocalizedStrings.getUI('vector')+':'+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+' [ ] " data-type="'+tm+'" data-dimensions="1"> '+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+'</div>';
  1107. }
  1108. ret += '</div></div>';
  1109. ret += '<div class="item ' + (parameter_obj.dimensions == 2 ? ' selected ' : '') + '">'
  1110. + '<i class="dropdown icon"></i>' + LocalizedStrings.getUI('matrix')
  1111. + '<div class="menu">';
  1112. for (var tm in Types) {
  1113. if (tm == Types.VOID.toUpperCase()) {
  1114. continue;
  1115. }
  1116. ret += '<div class="item ' + (parameter_obj.type == tm.toLowerCase() && parameter_obj.dimensions == 2 ? ' selected ' : '') + '" data-text="'+ LocalizedStrings.getUI('matrix')+':'+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+' [ ] " data-type="'+tm+'" data-dimensions="2"> '+LocalizedStrings.getUI(`type_${tm.toLowerCase()}`)+'</div>';
  1117. }
  1118. ret += '</div></div>';
  1119. ret += '</div></div>';
  1120. ret += '<div class="parameter_div_edit"><span class="span_name_parameter label_enable_name_parameter">'+parameter_obj.name+'</span></div> ';
  1121. ret += ' <i class="yellow inverted icon times remove_parameter"></i></div>';
  1122. ret = $(ret);
  1123. function_container.find('.container_parameters_list').append(ret);
  1124. ret.find('.remove_parameter').on('click', function(e){
  1125. removeParameter(function_obj, parameter_obj, ret);
  1126. });
  1127. ret.find('.ui.dropdown.parameter_type').dropdown({
  1128. onChange: function(_, __, $selectedItem) {
  1129. if ($selectedItem.data('dimensions')) {
  1130. updateParameterType(parameter_obj, Types[$selectedItem.data('type')], function_obj.name, $selectedItem.data('dimensions'));
  1131. } else {
  1132. updateParameterType(parameter_obj, Types[$selectedItem.data('type')], function_obj.name);
  1133. }
  1134. },
  1135. selectOnKeydown: false
  1136. });
  1137. ret.find('.parameter_div_edit').on('click', function(e){
  1138. registerUserEvent(function_obj.name, ActionTypes.ENTER_CHANGE_PARAM_NAME, parameter_obj.name);
  1139. enableNameParameterUpdate(parameter_obj, ret, function_obj);
  1140. });
  1141. ret.find('input:checkbox').change(function() {
  1142. parameter_obj.reference = this.checked
  1143. AlgorithmManagement.renderAlgorithm();
  1144. });
  1145. ret.find('.by_reference').popup({
  1146. content : LocalizedStrings.getUI("text_parameter_reference"),
  1147. delay: {
  1148. show: 750,
  1149. hide: 0
  1150. }
  1151. });
  1152. ret.find('.by_copy').popup({
  1153. content : LocalizedStrings.getUI("text_parameter_copy"),
  1154. delay: {
  1155. show: 750,
  1156. hide: 0
  1157. }
  1158. });
  1159. return ret;
  1160. }
  1161. function updateParameterName (parameter_var, new_name, parameter_obj_dom, function_obj) {
  1162. if (parameter_var.name == new_name) {
  1163. return;
  1164. }
  1165. if (isValidIdentifier(new_name)) {
  1166. if (variableNameAlreadyExists(new_name, function_obj)) {
  1167. Utils.renderErrorMessage(parameter_obj_dom.find('.parameter_div_edit'), LocalizedStrings.getError('inform_valid_param_duplicated', [new_name, function_obj.name]));
  1168. } else {
  1169. registerUserEvent(function_obj.name, ActionTypes.RENAME_FUNCTION_PARAM, parameter_var.name, new_name);
  1170. parameter_var.name = new_name;
  1171. }
  1172. } else {
  1173. Utils.renderErrorMessage(parameter_obj_dom.find('.parameter_div_edit'), LocalizedStrings.getError('inform_valid_identifier'));
  1174. }
  1175. }
  1176. function variableNameAlreadyExists (name_var, function_obj) {
  1177. if (function_obj.parameters_list) {
  1178. for (var i = 0; i < function_obj.parameters_list.length; i++) {
  1179. if (function_obj.parameters_list[i].name == name_var) {
  1180. return true;
  1181. }
  1182. }
  1183. }
  1184. if (function_obj.variables_list) {
  1185. for (var i = 0; i < function_obj.variables_list.length; i++) {
  1186. if (function_obj.variables_list[i].name == name_var) {
  1187. return true;
  1188. }
  1189. }
  1190. }
  1191. return false;
  1192. }
  1193. function updateFunctionName (function_var, new_name, function_obj_dom) {
  1194. if (function_var.name == new_name) {
  1195. return;
  1196. }
  1197. if (isValidIdentifier(new_name)) {
  1198. if (functionNameAlreadyExists(new_name)) {
  1199. Utils.renderErrorMessage(function_obj_dom.find('.function_name_div'), LocalizedStrings.getError('inform_valid_function_duplicated', [new_name]));
  1200. } else {
  1201. registerUserEvent(function_var.name, ActionTypes.RENAME_FUNCTION, new_name);
  1202. function_var.name = new_name;
  1203. }
  1204. } else {
  1205. Utils.renderErrorMessage(function_obj_dom.find('.function_name_div'), LocalizedStrings.getError('inform_valid_identifier'));
  1206. }
  1207. }
  1208. function functionNameAlreadyExists (function_name) {
  1209. for (var i = 0; i < window.program_obj.functions.length; i++) {
  1210. if (window.program_obj.functions[i].name == function_name) {
  1211. return true;
  1212. }
  1213. }
  1214. return false;
  1215. }
  1216. var opened_name_parameter = false;
  1217. var opened_input_parameter = null;
  1218. function enableNameParameterUpdate (parameter_obj, parent_node, function_obj) {
  1219. if (opened_name_parameter) {
  1220. opened_input_parameter.focus();
  1221. return;
  1222. }
  1223. opened_name_parameter = true;
  1224. parent_node = $(parent_node);
  1225. var input_field;
  1226. parent_node.find('.span_name_parameter').text('');
  1227. input_field = $( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"+parameter_obj.name+"' />" );
  1228. input_field.insertBefore(parent_node.find('.span_name_parameter'));
  1229. input_field.on('input', function() {
  1230. var inputWidth = input_field.textWidth()+10;
  1231. opened_input_parameter = input_field;
  1232. input_field.focus();
  1233. var tmpStr = input_field.val();
  1234. input_field.val('');
  1235. input_field.val(tmpStr);
  1236. input_field.css({
  1237. width: inputWidth
  1238. })
  1239. }).trigger('input');
  1240. input_field.focusout(function() {
  1241. /// update array:
  1242. if (input_field.val().trim()) {
  1243. updateParameterName(parameter_obj, input_field.val().trim(), parent_node, function_obj);
  1244. parent_node.find('.span_name_parameter').text(parameter_obj.name);
  1245. }
  1246. input_field.off();
  1247. input_field.remove();
  1248. /// update elements:
  1249. opened_name_parameter = false;
  1250. opened_input_parameter = false;
  1251. });
  1252. input_field.on('keydown', function(e) {
  1253. var code = e.keyCode || e.which;
  1254. if(code == 13) {
  1255. if (input_field.val().trim()) {
  1256. updateParameterName(parameter_obj, input_field.val().trim(), parent_node, function_obj);
  1257. parent_node.find('.span_name_parameter').text(parameter_obj.name);
  1258. }
  1259. input_field.off();
  1260. input_field.remove();
  1261. /// update elements:
  1262. opened_name_parameter = false;
  1263. opened_input_parameter = false;
  1264. }
  1265. if(code == 27) {
  1266. parent_node.find('.span_name_parameter').text(parameter_obj.name);
  1267. input_field.off();
  1268. input_field.remove();
  1269. /// update elements:
  1270. opened_name_parameter = false;
  1271. opened_input_parameter = false;
  1272. }
  1273. });
  1274. input_field.select();
  1275. }
  1276. var opened_name_function = false;
  1277. var opened_input = null;
  1278. var previousPadding = null;
  1279. function enableNameFunctionUpdate (function_obj, parent_node) {
  1280. if (opened_name_function) {
  1281. opened_input.focus();
  1282. return;
  1283. }
  1284. parent_node = $(parent_node);
  1285. parent_node.find('.span_name_function').text('');
  1286. var input_field;
  1287. if (!previousPadding) {
  1288. previousPadding = parent_node.find('.span_name_function').css('padding-left');
  1289. }
  1290. parent_node.find('.span_name_function').css('padding-left', '0');
  1291. parent_node.find('.span_name_function').css('padding-right', '0');
  1292. input_field = $( "<input type='text' class='width-dynamic input_name_function' autocomplete='off' autocorrect='off' autocapitalize='off' spellcheck='false' value='"+function_obj.name+"' />" );
  1293. input_field.insertBefore(parent_node.find('.span_name_function'));
  1294. input_field.on('input', function() {
  1295. var inputWidth = input_field.textWidth()+10;
  1296. opened_input = input_field;
  1297. input_field.focus();
  1298. var tmpStr = input_field.val();
  1299. input_field.val('');
  1300. input_field.val(tmpStr);
  1301. input_field.css({
  1302. width: inputWidth
  1303. })
  1304. }).trigger('input');
  1305. input_field.focusout(function() {
  1306. /// update array:
  1307. if (input_field.val().trim()) {
  1308. updateFunctionName(function_obj, input_field.val().trim(), parent_node);
  1309. }
  1310. input_field.off();
  1311. input_field.remove();
  1312. parent_node.find('.span_name_function').css('padding-left', previousPadding);
  1313. parent_node.find('.span_name_function').css('padding-right', previousPadding);
  1314. parent_node.find('.span_name_function').text(function_obj.name);
  1315. /// update elements:
  1316. opened_name_function = false;
  1317. opened_input = false;
  1318. });
  1319. input_field.on('keydown', function(e) {
  1320. var code = e.keyCode || e.which;
  1321. if(code == 13) {
  1322. if (input_field.val().trim()) {
  1323. updateFunctionName(function_obj, input_field.val().trim(), parent_node);
  1324. }
  1325. input_field.off();
  1326. input_field.remove();
  1327. parent_node.find('.span_name_function').css('padding-left', previousPadding);
  1328. parent_node.find('.span_name_function').css('padding-right', previousPadding);
  1329. parent_node.find('.span_name_function').text(function_obj.name);
  1330. /// update elements:
  1331. opened_name_function = false;
  1332. opened_input = false;
  1333. }
  1334. if(code == 27) {
  1335. input_field.off();
  1336. input_field.remove();
  1337. parent_node.find('.span_name_function').css('padding-left', previousPadding);
  1338. parent_node.find('.span_name_function').css('padding-right', previousPadding);
  1339. parent_node.find('.span_name_function').text(function_obj.name);
  1340. /// update elements:
  1341. opened_name_function = false;
  1342. opened_input = false;
  1343. }
  1344. });
  1345. input_field.select();
  1346. }
  1347. export function addFunctionChangeListener (callback) {
  1348. functionsChangeListeners.push(callback);
  1349. return functionsChangeListeners.length - 1;
  1350. }
  1351. export function addGlobalChangeListener (callback) {
  1352. globalChangeListeners.push(callback);
  1353. return globalChangeListeners.length - 1;
  1354. }
  1355. export function removeGlobalListener (index) {
  1356. globalChangeListeners.splice(index, 1);
  1357. }
  1358. export function removeFunctionListener (index) {
  1359. functionsChangeListeners.splice(index);
  1360. }
  1361. function scheduleCall (callback, time) {
  1362. const scheduled_call = () => {
  1363. const id = setInterval(() => {
  1364. if(callback()) {
  1365. clearInterval(id);
  1366. }
  1367. }, time)
  1368. }
  1369. scheduled_call();
  1370. }
  1371. function showRunButton () {
  1372. document.getElementById('run_button').style.display = 'inline';
  1373. document.getElementById('stop_button').style.display = 'none';
  1374. }
  1375. function showStopButton () {
  1376. document.getElementById('run_button').style.display = 'none';
  1377. document.getElementById('stop_button').style.display = 'inline';
  1378. }
  1379. function stopExecution () {
  1380. domConsole.clearPendingWrites();
  1381. domConsole.cancelPendingInputRequests();
  1382. if(!isRunning) {
  1383. return;
  1384. }
  1385. proc.mode = Modes.ABORT;
  1386. }
  1387. function downloadFile() {
  1388. var contentToSend = '{}\n::algorithm::';
  1389. if (settingsProgrammingTypes == "textual") {
  1390. contentToSend += ivprogCore.CodeEditor.getCode();
  1391. } else {
  1392. contentToSend += JSON.stringify(window.program_obj, function(key, value) {
  1393. if (key == 'dom_object') {
  1394. return;
  1395. }
  1396. return value;
  1397. });
  1398. }
  1399. var date = new Date();
  1400. var temp = date.toISOString().split('T')[0] + "_" + date.toTimeString().split(' ')[0].replaceAll(':', '-');
  1401. var blob = new Blob([contentToSend],
  1402. { type: "text/plain;charset=utf-8" });
  1403. saveAs(blob, "ivprog-exported_" + temp + ".ivph");
  1404. }
  1405. function uploadFile (evt) {
  1406. var oFReader = new FileReader();
  1407. oFReader.readAsText(document.getElementById("ivph_file").files[0]);
  1408. oFReader.onload = function (oFREvent) {
  1409. var txt = oFREvent.target.result;
  1410. try {
  1411. previousContent = txt;
  1412. prepareActivityToStudent(txt);
  1413. window.renderAlgorithm();
  1414. $('.assessment_button').addClass('disabled');
  1415. }
  1416. catch (e) {
  1417. showInvalidFile();
  1418. }
  1419. };
  1420. }