-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscript.js
291 lines (270 loc) · 9.33 KB
/
script.js
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
// script.js
console.log = () => {};
let input;
let exp;
let inversed = false;
let expCont = '';
let temp = '';
let memory = [];
let hist;
let mode = 'r'; // radian mode
let soundEnabled = false;
let memValue = 0;
window.onload = () => {
input = document.querySelector('#input-panel');
exp = document.querySelector('#expressions');
hist = document.querySelector('#history');
try {
responsiveVoice.setDefaultVoice('US English Female');
} catch (e) {
}
document.querySelectorAll('.btn').forEach(x => {
// Handler for button clicks
x.onclick = () => {
// check if the button is a valued one and append it to the input panel
if (x.name === 'value') {
// check that the button is not an operator
if (x.className.indexOf('oprtr') === -1) {
if (lastIsOperator() || exp.innerHTML === '' || input.value.endsWith('(') || /[\d\.]/.test(input.value.charAt(input.value.length - 1))) {
input.value += x.value;
} else {
exp.innerText += input.value + '×';
temp += input.value + '×';
input.value = x.value;
}
} else {
// if the button is an operator and the last is not an operator, the operator and previous entries in input will append to exp panel while clearing all the entries in the input panel.
if (!lastIsOperator() && (temp !== '' || input.value !== '')) {
exp.innerText += input.value + '' + x.value;
temp += input.value + '' + x.value;
input.value = '';
} else if (lastIsOperator() && (temp !== '' || input.value !== '')) {
temp = temp.substring(0, temp.length - 1) + x.value;
exp.innerText = temp;
}
}
// Checks if a function is associated with the button (like equals, sqrt, etc.)
} else if (x.name === 'func') {
switch (x.value) {
case '=':
// input.value = getResult(input.value);
if (temp !== '' || input.value !== '') {
if (input.value !== '') {
input.value = getResult(temp + input.value + ')'.repeat(openedBraces));
exp.innerText = '';
temp = '';
} else {
input.value = getResult(temp.substring(0, temp.length - 1) + input.value + ')'.repeat(openedBraces));
exp.innerText = '';
temp = '';
}
openedBraces = 0;
}
break;
case '.':
if (!hasDecimal()) {
if (!lastIsOperator() && (temp !== '' || input.value !== '')) {
input.value += '.';
} else if (lastIsOperator() && (temp !== '' || input.value !== '')) {
input.value = '.';
}
}
break;
case '←':
back();
break;
case 'C':
input.value = '';
exp.innerText = '';
temp = '';
openedBraces = 0;
break;
case 'CE':
input.value = '';
break;
case '±':
input.value = '-(' + input.value + ')';
break;
case '%':
if (!(input.value === '' && temp === '')) {
input.value = getResult(temp + input.value + '*100');
exp.innerText = '';
temp = '';
}
break;
case 'sin':
addFunction('sin');
break;
case 'cos':
addFunction('cos');
break;
case 'tan':
addFunction('tan');
break;
case '()':
handleBraces();
break;
}
}
x.blur();
// speak when a button click triggered
getSpeechText(x);
};
});
// listener for changes in #exp
setInterval(() => {
if (exp.innerHTML !== expCont) {
oncontent();
expCont = exp.innerHTML;
}
}, 300);
// advanced button handlers here...
// handler for buttons with common mathematical functions
document.querySelectorAll('.func').forEach(x => {
x.onclick = () => {
addFunction(x.value);
x.blur();
getSpeechText(x);
};
});
document.getElementById('pi').onclick = () => {
if (lastIsOperator() || input.value === '' || input.value.endsWith('(')) {
input.value += 'π';
} else if (lastIsNumber() || input.value.endsWith(')')) {
exp.innerText += input.value + '×';
temp += input.value + '×';
input.value = 'π';
}
document.getElementById('pi').blur();
speak('pi');
};
document.getElementById('E').onclick = () => {
if (lastIsOperator() || input.value === '' || input.value.endsWith('(')) {
input.value += 'E';
} else if (lastIsNumber() || input.value.endsWith(')')) {
exp.innerText += input.value + '×';
temp += input.value + '×';
input.value = 'E';
}
document.getElementById('E').blur();
speak('e');
}
document.getElementById('rand').onclick = () => {
if (lastIsOperator() || input.value === '' || input.value.endsWith('(')) {
input.value += random();
} else if (lastIsNumber() || input.value.endsWith(')')) {
exp.innerText += input.value + '×';
temp += input.value + '×';
input.value = random();
}
document.getElementById('random').blur();
speak('random number');
}
document.getElementById('ans').onclick = () => {
if (memory.length !== 0 && (lastIsOperator() || input.value === '')) {
input.value = memory[memory.length - 1];
} else if (memory.length !== 0 && lastIsNumber()) {
exp.innerText += input.value + '×';
temp += input.value + '×';
input.value = memory[memory.length - 1];
}
document.getElementById('ans').blur();
speak('Previous answer');
};
document.getElementById('inverse').onclick = () => {
inversed = !inversed;
document.querySelectorAll('.inversable').forEach(x => {
// format the buttons for the inversed version
if (inversed) {
document.getElementById('inverse').style.backgroundColor = 'rgb(7, 186, 197)';
x.style.backgroundColor = 'rgb(7, 186, 197)';
x.innerHTML = inverseDict[x.value];
x.value = inverseDict[x.value];
// format the button for the normal version
} else {
document.getElementById('inverse').style.backgroundColor = 'white';
x.style.backgroundColor = 'white';
for (let [k, v] of Object.entries(inverseDict)) {
if (x.value === v) {
x.value = k;
x.innerHTML = k;
}
}
}
});
document.getElementById('inverse').blur();
speak('inversing');
};
document.getElementById('angle-mode').onclick = () => {
mode = mode === 'r' ? 'd' : 'r';
document.getElementById('angle-mode').innerHTML = mode === 'r' ? 'deg' : 'rad';
document.getElementById('angle-mode').blur();
};
// Toggle the sounds
document.querySelector('.sound').onclick = () => {
if (!soundEnabled) {
soundEnabled = true;
document.getElementsByClassName('sound')[0].classList['value'] = 'fas fa-volume-up sound';
} else {
soundEnabled = false;
document.getElementsByClassName('sound')[0].classList['value'] = 'fas fa-volume-mute sound';
}
};
// Events related to memory operation
Object.values(document.getElementsByClassName('memory-btn')).forEach(x => {
x.onclick = (e) => {
switch (e.target.id) {
case 'm+':
document.querySelector("button[value='=']").click();
memValue += Number(input.value);
break;
case 'm-':
document.querySelector("button[value='=']").click();
memValue += Number(input.value);
break;
case 'ms':
document.querySelector("button[value='=']").click();
memValue = Number(input.value);
break;
case 'mc':
memValue = 0;
break;
case 'mr':
if (memory.length !== 0 && (lastIsOperator() || input.value === '')) {
input.value = memValue;
} else if (memory.length !== 0 && lastIsNumber()) {
exp.innerText += input.value + '×';
temp += input.value + '×';
input.value = memValue;
}
break;
}
x.blur();
};
});
// handler for keydown events
window.addEventListener('keydown', (e) => {
// True if an input has focus
let inputFocused;
// Relavant key on the calculator to the key pressed on keyboard
let relBtn = document.querySelector("button[value='" + e.key.toUpperCase().replace('ENTER', '=').replace('/', '÷').replace('*', '×').replace('BACKSPACE', '←') + "']");
for (let x of document.querySelectorAll('input')) {
if (x.matches(':focus')) {
inputFocused = true;
break;
}
}
if (!inputFocused && relBtn) {
relBtn.click();
}
});
};
// Handler for content changes
function oncontent () {
exp.innerHTML = formatToHTML(formatExpression(temp));
for (let x of exp.children) {
if (x.nodeName === 'INPUT') {
resizable(x);
}
}
}