-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
531 lines (455 loc) · 10 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
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
/*
** global vars
*/
var a = 0,
b = 0,
is_a = true,
is_b = false,
o = 'nil',
answer = 0,
first_a = true,
first_b = true,
is_submission = false,
soft_sub = false,
display = jQuery('#total');
/*
** tool functions
*/
// console.log
function write(x) {
console.log(x);
}
// add int to current display value
function changeDisplayVal(i) {
display.text(display.text() + i);
}
// make * into ×
function visOps(x) {
if ( x === '*' ) {
// return 'u00D7';
return '×';
} else if ( x === '/' ) {
// return 'u00F7';
return '÷';
} else {
return x;
}
}
// set display value
function setDisplayVal(x) {
display.text( visOps(x));
}
// make touch animation
function animateButton(obj) {
var button = obj.addClass('hovering');
setTimeout(function() {
button.removeClass('hovering');
}, 100);
}
/*
** operation functions
*/
// setting a
function set_a(i) {
if ( is_a ) {
// nothing if a duplicate decimal
if ( i === '.' && a.toString().indexOf('.') !== -1 ) {
write('Duplicate Decimal');
i = '';
} else if ( i === '.' && first_a ) {
i = '0.';
}
// first_a time, we need to clear the display
if ( first_a === true ) {
if ( i === '0' ) {
i = '';
} else {
// set display value
setDisplayVal(i);
// no longer first_a
first_a = false;
}
} else {
// add int to current display value
changeDisplayVal(i);
}
a = display.text();
write('Set "a" to ' + a);
}
}
// setting b
function set_b(i) {
if ( !is_a ) {
// nothing if a duplicate decimal
if ( i === '.' && b.toString().indexOf('.') !== -1 ) {
write('Duplicate Decimal!');
i = '';
} else if ( i === '.' && first_b ) {
i = '0.';
}
// first_b time, we need to clear the display
if ( first_b === true ) {
if ( i === '0' ) {
i = '';
} else {
// set display value
setDisplayVal(i);
// no longer first_b
first_b = false;
}
} else {
// add int to current display value
changeDisplayVal(i);
}
// set b to current display Value
b = display.text();
write('Set "b" to ' + b);
}
}
// looping calculator
function loop_calc(answer) {
write('Loop Calculator');
a = answer;
b = 0;
answer = 0;
// set display value
setDisplayVal(a);
}
// setting operator
function set_o(op) {
// if answer, loop the calculator to prepare for b
if ( is_submission ) {
loop_calc(display.text());
is_submission = false;
}
// if new op is submitting calc
if ( !first_b ) {
softsubmit_calc();
}
// replace or set operator in display
setDisplayVal(op);
// replace or set global operator
o = op;
if ( is_a ) { is_a = false; }
if ( !is_b ) { is_b = true; }
write('Set "o" to ' + o);
}
// soft submit calc
function softsubmit_calc() {
// evaluate equation
var preCalc = eval(a + '' + o + '' + b);
// parse float to 12
answer = parseFloat(preCalc.toPrecision(12));
// submit answer to display
display.text(answer);
// reset first_b to true
first_b = true;
// post result
newResult(a,o,b,answer);
write(a + ' ' + o + ' ' + b + ' = ' + answer);
a = answer;
b = 0;
o = o;
// set display value
setDisplayVal(o);
is_a = false;
is_b = true;
first_b = true;
soft_sub = true;
write('Soft Submission');
}
// submit calculator
function submit_calc() {
write('Submission');
if ( first_b === false ) {
var preCalc = 0;
if ( o === "^" ) {
// evaluate equation
preCalc = Math.pow(a,b);
} else {
// evaluate equation
preCalc = eval(a + '' + o + '' + b);
}
// parse float to 12
answer = parseFloat(preCalc.toPrecision(12));
// submit answer to display
display.text(answer);
// display is now the answer
is_submission = true;
// reset first_b to true
first_b = true;
// post result
newResult(a,o,b,answer);
write(a + ' ' + o + ' ' + b + ' = ' + answer);
} else {
write("You can't do that yet");
}
}
// negging value
function neg() {
display.text(display.text() * -1);
if ( is_submission ) {
a = a * -1;
} else {
if ( is_a ) {
a = a * -1;
setDisplayVal(a);
} else {
b = b * -1;
setDisplayVal(b);
}
}
}
// resetting calculator
function reset_calc() {
a = 0;
b = 0;
o = 'nil';
answer = 0;
is_a = true;
is_b = false;
first_a = true;
first_b = true;
is_submission = false;
soft_sub = false;
display.text(0);
// reset display value
setDisplayVal(0);
write('Calculator Reset');
}
// backspacing value
function backspace() {
if ( display.text() !== '' && display.text() !== '0' ) {
display.text( display.text().substring(0, display.text().length - 1) );
if ( is_a === true ) {
a = parseFloat(a.toString().substring(0, a.toString().length - 1 ));
} else {
b = parseFloat(b.toString().substring(0, b.toString().length - 1 ));
}
} else {
write('Nothing Left to Backspace');
}
}
// set value to memory value
function memory(i) {
if ( is_submission ) {
loop_calc(i);
} else if ( is_a ) {
loop_calc(i);
} else {
set_b(i);
}
answer = a;
}
/*
** logging to memory console
*/
function newResult(a,o,b,answer) {
var results = jQuery('#results_list');
var result = '' +
'<li class="result"><span class="equation">' + a + ' ' + visOps(o) + ' ' + b + ' </span>' +
'<span class="answer">' + answer + '</span> <span class="use"><a class="calc_use" href="#">Use</a></span></li>';
results.prepend(result).children('li').fadeIn(200);
if ( jQuery('#result_default') ) {
jQuery('#result_default').remove();
}
// click use
jQuery('.calc_use').off('click').on('click', function() {
var i = jQuery(this).parent('.use').siblings('.answer').text();
jQuery(this).parents('.result').animate({'opacity': '0.5'},200).animate({'opacity': '1'},200);
jQuery('#total').animate({'opacity': '0.5'},200).animate({'opacity': '1'},200);
memory(i);
return false;
});
}
/*
** complex functions
*/
function sqrt(i) {
write('Square Root');
var s = Math.sqrt(i);
answer = s;
write('u221A' + i + ' = ' + s);
loop_calc(s);
newResult('','√',i,s);
// submit answer to display
display.text(answer);
// display is now the answer
is_submission = true;
// reset first_b to true
first_b = true;
}
function square(i) {
write('Square');
var s = i * i;
answer = s;
write(i + ' u005E 2 = ' + s );
loop_calc(s);
newResult(i,' ^ 2','',s);
// submit answer to display
display.text(answer);
// display is now the answer
is_submission = true;
// reset first_b to true
first_b = true;
}
function denom(i) {
write('Denominator');
var s = 1 / i;
answer = s;
write('1 / ' + i + ' = ' + s );
loop_calc(s);
newResult(1,' / ',i,s);
// submit answer to display
display.text(answer);
// display is now the answer
is_submission = true;
// reset first_b to true
first_b = true;
}
/*
** Usage - Click Events
*/
// click integers
jQuery('.calc_int, #calc_decimal').each(function() {
jQuery(this).click(function() {
var value = jQuery(this).val();
if ( is_submission === false ) {
if ( is_a === true ) {
set_a(value);
} else {
set_b(value);
}
} else {
reset_calc();
set_a(value);
}
});
});
// click operators
jQuery('.calc_op').each(function() {
jQuery(this).click(function() {
var value = jQuery(this).val();
set_o(value);
});
});
// click equals
jQuery('#calc_eval').click(function() {
submit_calc();
});
// click clear
jQuery('#calc_clear').click(function() {
reset_calc();
});
// click neg
jQuery('#calc_neg').click(function() {
neg();
});
// click backspace
jQuery('#calc_back').click(function() {
backspace();
});
// click square root
jQuery('#calc_sqrt').click(function() {
if ( display.text() !== '0' ) {
if ( is_submission ) {
sqrt(answer);
} else if ( is_a ) {
sqrt(a);
}
}
return false;
});
// click square
jQuery('#calc_square').click(function() {
if ( display.text() !== '0' ) {
if ( is_submission ) {
square(answer);
} else if ( is_a ) {
square(a);
}
}
return false;
});
// click denominator
jQuery('#calc_denom').click(function() {
if ( display.text() !== '0' ) {
if ( is_submission ) {
denom(answer);
} else if ( is_a ) {
denom(a);
}
}
return false;
});
// reset console
jQuery('#result_clear').click(function() {
jQuery('#results_list').children('li').fadeOut(200, function() {
jQuery(this).remove();
});
jQuery('#results_list').prepend('<li id="result_default">Memory is Empty</li>');
return false;
});
/*
** Key Events
*/
// key press for integers and operators
jQuery(document).keypress(function (e) {
// the character code
var charCode = e.which;
// the key
var key = String.fromCharCode(charCode);
// key integers & decimal
if ( charCode >= 46 && charCode <= 58 && charCode !== 47 ) {
if ( !is_submission ) {
if ( is_a ) {
set_a(key);
} else {
set_b(key);
}
} else if ( soft_sub ) {
set_b(key);
} else {
reset_calc();
set_a(key);
}
}
// key operators
if ( charCode >= 42 && charCode <= 45 && charCode !== 44 || charCode === 47 ) {
set_o(key);
}
// key equals
if ( charCode === 61 ) {
submit_calc();
}
// animate the corrosponding button
jQuery('button').each(function() {
var value = jQuery(this).val();
if ( value === key ) {
animateButton(jQuery(this));
}
});
});
// keydown for backspace and return
jQuery(document).keydown(function (e) {
// the character code
var charCode = e.which;
// backspace
if ( charCode === 8 ) {
backspace();
animateButton(jQuery('#calc_back'));
return false;
}
// clear
if ( charCode === 12 ) {
reset_calc();
animateButton(jQuery('#calc_clear'));
return false;
}
// return
if ( charCode === 13 ) {
submit_calc();
animateButton(jQuery('#calc_eval'));
return false;
}
});