aboutsummaryrefslogtreecommitdiff
path: root/src/command/commands.js
blob: 8fa369a7b1dcd5a499a00810b49af08857d64776 (plain)
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
function execute(output, command) {
	var notImplemented = function(name) {
		output.error('"' + name + '"' + ' is not implemented.');
	};
	var args = command.split(' ');

	try {
		var closure = eval(args[0]);

		if ( typeof closure === 'function' ) {
			args.shift();
			closure(output, args);
		} else {
			notImplemented(args[0]);
		}
	} catch (exception) {
		notImplemented(args[0]);
	}
}

function safeEval(output, code) {
	try {
		var result = eval(code);

		if ( typeof result !== 'undefined' ) {
			output.log(result);
		}
	} catch (exception) {
		output.error(exception);
	}
}

function exec(output, args) {
	safeEval(output, args.join(' '));
}

function jump(output, index) {
	terminalList.selectItem(index);
}

function kill(output, index) {
	terminalList.get(index).reset();
}

function next() {
	terminalList.selectNext();
}

function prev() {
	terminalList.selectPrev();
}

function ls(output) {
	terminalList.iterate(function(item) {
		if ( item.terminal !== null ) {
			output.log(item.index + ': ' + item.terminal.program);
		}
	});
}

function set(output, args) {
	switch ( args.length ) {
		case 2: {
			safeEval(output, 'settings.' + args[0] + '.' + args[1]);
			break;
		}
		case 3: {
			safeEval(
				output,
				'settings.' + args[0] + '.' + args[1] + ' = "' + args[2] + '"'
			);
			break;
		}
		default: {
			output.error('Wrong count of arguments.');
			break;
		}
	}
}