-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimulator.js
More file actions
669 lines (583 loc) · 18.2 KB
/
simulator.js
File metadata and controls
669 lines (583 loc) · 18.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
/**
* Enhanced Code Simulator with Interactive Dry Run
* Helps students understand code execution step-by-step with:
* - Line-by-line execution
* - Variable value tracking
* - Interactive input/output
* - Detailed explanations for each step
*/
class CodeSimulator {
constructor() {
this.code = '';
this.parsedData = null;
this.currentStep = 0;
this.totalSteps = 0;
this.executionSteps = [];
this.stack = [];
this.heap = {};
this.variables = {};
this.output = [];
this.isPlaying = false;
this.playInterval = null;
this.speed = 800;
this.executionHistory = [];
}
/**
* Initialize simulator with code
*/
initialize(code, parsedData) {
this.code = code;
this.parsedData = parsedData;
this.currentStep = 0;
this.output = [];
this.executionHistory = [];
this.generateExecutionSteps();
}
/**
* Generate detailed step-by-step execution plan with explanations
*/
generateExecutionSteps() {
this.executionSteps = [];
const lines = this.code.split('\n');
lines.forEach((line, index) => {
const trimmed = line.trim();
if (trimmed && !trimmed.startsWith('//') && !trimmed.startsWith('/*') && trimmed !== '}' && trimmed !== '{') {
const step = {
line: index + 1,
code: line,
type: this.detectLineType(trimmed),
explanation: this.generateExplanation(trimmed, index + 1),
state: {},
input: null,
output: null
};
this.executionSteps.push(step);
}
});
this.totalSteps = this.executionSteps.length;
}
/**
* Detect line type for proper visualization
*/
detectLineType(line) {
if (line.match(/function\s+\w+/)) return 'function_declaration';
if (line.match(/^\w+\s*\(/)) return 'function_call';
if (line.match(/^(let|const|var)/)) return 'variable_declaration';
if (line.match(/^if\s*\(/)) return 'conditional_start';
if (line.match(/^else if\s*\(/)) return 'conditional_elseif';
if (line.match(/^else/)) return 'conditional_else';
if (line.match(/^for\s*\(/)) return 'loop_start';
if (line.match(/^while\s*\(/)) return 'loop_while';
if (line.match(/^return/)) return 'return';
if (line.includes('console.log') || line.includes('print')) return 'output';
if (line.match(/\w+\s*[+\-*/]=\s*.+/)) return 'assignment';
if (line.match(/\w+\+\+|--\w+/)) return 'increment';
return 'statement';
}
/**
* Generate human-readable explanation for each line
*/
generateExplanation(line, lineNum) {
const type = this.detectLineType(line);
switch (type) {
case 'function_declaration':
const funcMatch = line.match(/function\s+(\w+)\s*\((.*?)\)/);
const funcName = funcMatch ? funcMatch[1] : 'function';
const params = funcMatch && funcMatch[2] ? funcMatch[2] : '';
return `📘 Define function "${funcName}"${params ? ' with parameters: ' + params : ''}`;
case 'function_call':
const callMatch = line.match(/(\w+)\s*\((.*?)\)/);
const calledFunc = callMatch ? callMatch[1] : '';
const args = callMatch && callMatch[2] ? callMatch[2] : '';
return `📞 Call function "${calledFunc}"${args ? ' with arguments: ' + args : ''}`;
case 'variable_declaration':
const varMatch = line.match(/(let|const|var)\s+(\w+)(?:\s*=\s*(.+?))?[;]?$/);
if (varMatch) {
const varName = varMatch[2];
const value = varMatch[3] || 'undefined';
return `📦 Create variable "${varName}" and assign value: ${value}`;
}
return '📦 Declare variable';
case 'assignment':
const assignMatch = line.match(/(\w+)\s*([+\-*/]?=)\s*(.+?)[;]?$/);
if (assignMatch) {
const varName = assignMatch[1];
const operator = assignMatch[2];
const value = assignMatch[3];
return `✏️ Update "${varName}" ${operator} ${value}`;
}
return '✏️ Update variable value';
case 'conditional_start':
const ifMatch = line.match(/if\s*\((.+?)\)/);
const condition = ifMatch ? ifMatch[1] : '';
return `❓ Check condition: ${condition}\n If TRUE → execute next block\n If FALSE → skip to else/next`;
case 'conditional_elseif':
const elifMatch = line.match(/else if\s*\((.+?)\)/);
const elifCond = elifMatch ? elifMatch[1] : '';
return `❓ Previous condition was FALSE, now check: ${elifCond}`;
case 'conditional_else':
return `❓ All previous conditions were FALSE, execute else block`;
case 'loop_start':
const forMatch = line.match(/for\s*\((.+?)\)/);
const loopInit = forMatch ? forMatch[1] : '';
return `🔄 Start loop: ${loopInit}\n Initialize → Check condition → Execute → Increment → Repeat`;
case 'loop_while':
const whileMatch = line.match(/while\s*\((.+?)\)/);
const whileCond = whileMatch ? whileMatch[1] : '';
return `🔄 While loop: Keep executing as long as ${whileCond} is TRUE`;
case 'return':
const retMatch = line.match(/return\s+(.+?)[;]?$/);
const retVal = retMatch ? retMatch[1] : '';
return `↩️ Return value: ${retVal}\n Exit function and send this value back`;
case 'output':
const outputMatch = line.match(/console\.log\((.+?)\)|print\((.+?)\)/);
const outputVal = outputMatch ? (outputMatch[1] || outputMatch[2]) : '';
return `📺 Display output: ${outputVal}`;
case 'increment':
return `➕ Increment/Decrement variable by 1`;
default:
return `⚙️ Execute: ${line.substring(0, 50)}${line.length > 50 ? '...' : ''}`;
}
}
/**
* Execute next step with detailed tracking
*/
nextStep() {
if (this.currentStep >= this.totalSteps) {
return null;
}
const step = this.executionSteps[this.currentStep];
const executionResult = this.executeStep(step);
// Save to history
this.executionHistory.push({
step: this.currentStep,
...executionResult
});
this.currentStep++;
return {
step: this.currentStep,
total: this.totalSteps,
line: step.line,
code: step.code,
type: step.type,
explanation: step.explanation,
stack: [...this.stack],
heap: {...this.heap},
variables: {...this.variables},
output: [...this.output],
changes: executionResult.changes
};
}
/**
* Execute previous step
*/
previousStep() {
if (this.currentStep <= 0) {
return null;
}
this.currentStep--;
// Restore state from history
if (this.executionHistory[this.currentStep]) {
const historyState = this.executionHistory[this.currentStep];
this.stack = [...historyState.stack];
this.heap = {...historyState.heap};
this.variables = {...historyState.variables};
this.output = [...historyState.output];
}
const step = this.executionSteps[this.currentStep];
return {
step: this.currentStep,
total: this.totalSteps,
line: step.line,
code: step.code,
type: step.type,
explanation: step.explanation,
stack: [...this.stack],
heap: {...this.heap},
variables: {...this.variables},
output: [...this.output]
};
}
/**
* Execute a single step with detailed tracking
*/
executeStep(step) {
const { type, code, line } = step;
const changes = {
variablesChanged: [],
stackChanged: false,
heapChanged: false,
outputGenerated: false
};
switch (type) {
case 'function_declaration':
changes.variablesChanged = this.handleFunctionDeclaration(code, line);
break;
case 'function_call':
changes.stackChanged = this.handleFunctionCall(code, line);
break;
case 'variable_declaration':
changes.variablesChanged = this.handleVariableDeclaration(code, line);
break;
case 'assignment':
changes.variablesChanged = this.handleAssignment(code, line);
break;
case 'return':
changes.stackChanged = this.handleReturn(code, line);
break;
case 'output':
changes.outputGenerated = this.handleOutput(code, line);
break;
case 'increment':
changes.variablesChanged = this.handleIncrement(code, line);
break;
}
return {
changes,
stack: [...this.stack],
heap: {...this.heap},
variables: {...this.variables},
output: [...this.output]
};
}
/**
* Handle function declaration
*/
handleFunctionDeclaration(code, line) {
const match = code.match(/function\s+(\w+)/);
if (match) {
const functionName = match[1];
this.variables[functionName] = {
type: 'function',
line: line,
value: 'function'
};
return [functionName];
}
return [];
}
/**
* Handle function call - create stack frame
*/
handleFunctionCall(code, line) {
const match = code.match(/(\w+)\s*\((.*?)\)/);
if (match) {
const functionName = match[1];
const args = match[2].split(',').map(a => a.trim()).filter(Boolean);
this.stack.push({
function: functionName,
arguments: args,
line: line,
localVars: {},
returnAddress: line
});
return true;
}
return false;
}
/**
* Handle variable declaration with actual value calculation
*/
handleVariableDeclaration(code, line) {
const match = code.match(/(let|const|var)\s+(\w+)(?:\s*=\s*(.+?))?[;]?$/);
if (match) {
const varName = match[2];
const valueExpr = match[3] || 'undefined';
const value = this.evaluateExpression(valueExpr);
// Add to current stack frame if in function, otherwise global
if (this.stack.length > 0) {
const currentFrame = this.stack[this.stack.length - 1];
currentFrame.localVars[varName] = value;
} else {
this.variables[varName] = {
type: match[1],
value: value,
line: line
};
}
// If object or array, add to heap
if (typeof value === 'object') {
this.heap[varName] = {
type: Array.isArray(value) ? 'array' : 'object',
value: value,
line: line
};
}
return [varName];
}
return [];
}
/**
* Handle assignment operations
*/
handleAssignment(code, line) {
const match = code.match(/(\w+)\s*([+\-*/]?=)\s*(.+?)[;]?$/);
if (match) {
const varName = match[1];
const operator = match[2];
const rightExpr = match[3];
const currentValue = this.getVariableValue(varName);
let newValue;
if (operator === '=') {
newValue = this.evaluateExpression(rightExpr);
} else {
const rightValue = this.evaluateExpression(rightExpr);
switch (operator) {
case '+=':
newValue = currentValue + rightValue;
break;
case '-=':
newValue = currentValue - rightValue;
break;
case '*=':
newValue = currentValue * rightValue;
break;
case '/=':
newValue = currentValue / rightValue;
break;
default:
newValue = rightValue;
}
}
this.setVariableValue(varName, newValue);
return [varName];
}
return [];
}
/**
* Handle increment/decrement
*/
handleIncrement(code, line) {
const match = code.match(/(\w+)(\+\+|--)/);
if (match) {
const varName = match[1];
const operator = match[2];
const currentValue = this.getVariableValue(varName);
const newValue = operator === '++' ? currentValue + 1 : currentValue - 1;
this.setVariableValue(varName, newValue);
return [varName];
}
return [];
}
/**
* Handle return statement - pop stack frame
*/
handleReturn(code, line) {
const match = code.match(/return\s+(.+?)[;]?$/);
const returnValue = match ? this.evaluateExpression(match[1]) : undefined;
if (this.stack.length > 0) {
const frame = this.stack.pop();
frame.returnValue = returnValue;
}
return true;
}
/**
* Handle console.log or print output
*/
handleOutput(code, line) {
const match = code.match(/console\.log\((.+?)\)|print\((.+?)\)/);
if (match) {
const expr = match[1] || match[2];
const value = this.evaluateExpression(expr);
this.output.push({
line: line,
value: value,
timestamp: Date.now()
});
return true;
}
return false;
}
/**
* Evaluate expression (simplified - handles basic math and variables)
*/
evaluateExpression(expr) {
if (!expr || expr === 'undefined') return 'undefined';
// Remove semicolon
expr = expr.replace(/;$/, '').trim();
// String literal
if (expr.startsWith('"') || expr.startsWith("'")) {
return expr.slice(1, -1);
}
// Number
if (!isNaN(expr)) {
return parseFloat(expr);
}
// Boolean
if (expr === 'true') return true;
if (expr === 'false') return false;
if (expr === 'null') return null;
// Array
if (expr.startsWith('[')) {
try {
return JSON.parse(expr);
} catch (e) {
return expr;
}
}
// Object
if (expr.startsWith('{')) {
try {
return JSON.parse(expr);
} catch (e) {
return expr;
}
}
// Variable reference
if (/^\w+$/.test(expr)) {
return this.getVariableValue(expr);
}
// Simple arithmetic
if (/^[\d\s+\-*/%()]+$/.test(expr)) {
try {
return eval(expr);
} catch (e) {
return expr;
}
}
// Expression with variables
const varNames = expr.match(/\w+/g) || [];
let evaluatedExpr = expr;
varNames.forEach(varName => {
const value = this.getVariableValue(varName);
if (value !== undefined && value !== 'undefined') {
evaluatedExpr = evaluatedExpr.replace(new RegExp('\\b' + varName + '\\b', 'g'), value);
}
});
try {
return eval(evaluatedExpr);
} catch (e) {
return expr;
}
}
/**
* Get variable value from current scope
*/
getVariableValue(varName) {
// Check current stack frame first
if (this.stack.length > 0) {
const currentFrame = this.stack[this.stack.length - 1];
if (currentFrame.localVars[varName] !== undefined) {
return currentFrame.localVars[varName];
}
}
// Check global variables
if (this.variables[varName] !== undefined) {
return this.variables[varName].value || this.variables[varName];
}
return 'undefined';
}
/**
* Set variable value in current scope
*/
setVariableValue(varName, value) {
// Update in current stack frame if exists
if (this.stack.length > 0) {
const currentFrame = this.stack[this.stack.length - 1];
if (currentFrame.localVars[varName] !== undefined) {
currentFrame.localVars[varName] = value;
return;
}
}
// Update global variable
if (this.variables[varName] !== undefined) {
if (typeof this.variables[varName] === 'object') {
this.variables[varName].value = value;
} else {
this.variables[varName] = value;
}
}
}
/**
* Start auto-play
*/
play() {
if (this.isPlaying) return;
this.isPlaying = true;
this.playInterval = setInterval(() => {
const result = this.nextStep();
if (!result) {
this.pause();
}
}, this.speed);
}
/**
* Pause auto-play
*/
pause() {
this.isPlaying = false;
if (this.playInterval) {
clearInterval(this.playInterval);
this.playInterval = null;
}
}
/**
* Reset simulation
*/
reset() {
this.currentStep = 0;
this.stack = [];
this.heap = {};
this.variables = {};
this.output = [];
this.executionHistory = [];
this.pause();
}
/**
* Set playback speed
*/
setSpeed(speed) {
this.speed = speed;
if (this.isPlaying) {
this.pause();
this.play();
}
}
/**
* Get current state
*/
getState() {
return {
currentStep: this.currentStep,
totalSteps: this.totalSteps,
stack: [...this.stack],
heap: {...this.heap},
variables: {...this.variables},
output: [...this.output],
isPlaying: this.isPlaying
};
}
/**
* Generate complete dry run table
*/
generateDryRunTable() {
const table = [];
const allVariables = new Set();
// Collect all variables
this.executionHistory.forEach(step => {
Object.keys(step.variables).forEach(v => allVariables.add(v));
});
// Generate table rows
this.executionHistory.forEach((step, index) => {
const row = {
step: index + 1,
line: this.executionSteps[index].line,
code: this.executionSteps[index].code.trim(),
variables: {}
};
allVariables.forEach(varName => {
const varData = step.variables[varName];
row.variables[varName] = varData ? (varData.value || varData) : '-';
});
row.output = step.output.length > 0 ? step.output[step.output.length - 1].value : '';
table.push(row);
});
return {
variables: Array.from(allVariables),
rows: table
};
}
}
if (typeof window !== 'undefined') {
window.CodeSimulator = CodeSimulator;
}