-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
227 lines (184 loc) · 6.53 KB
/
index.js
File metadata and controls
227 lines (184 loc) · 6.53 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
"use strict";
const switchesArr = Array.from({ length: 16 }, () => false);
const handleSwitch = (index) => {
switchesArr[index] = !switchesArr[index];
};
const getSwitchValue1 = () => {
let output = "";
for (let i = 0; i < 8; i++) {
output += switchesArr[i] ? "1" : "0";
}
return output;
};
const getSwitchValue2 = () => {
let output = "";
for (let i = 8; i < 16; i++) {
output += switchesArr[i] ? "1" : "0";
}
return output;
};
const addBinaryNumbers = (switchValue1, switchValue2) => {
const decimal1 = parseInt(switchValue1, 2);
const decimal2 = parseInt(switchValue2, 2);
const decimalSum = decimal1 + decimal2;
const binarySum = decimalSum.toString(2);
return binarySum;
};
const subtractBinaryNumbers = (switchValue1, switchValue2) => {
const decimal1 = parseInt(switchValue1, 2);
const decimal2 = parseInt(switchValue2, 2);
const decimalDifference = decimal1 - decimal2;
// Handle negative results
if (decimalDifference < 0) {
return "negative";
}
const binaryDifference = decimalDifference.toString(2);
return binaryDifference;
};
const multiplyBinaryNumbers = (switchValue1, switchValue2) => {
const decimal1 = parseInt(switchValue1, 2);
const decimal2 = parseInt(switchValue2, 2);
const decimalProduct = decimal1 * decimal2;
const binaryProduct = decimalProduct.toString(2);
return binaryProduct;
};
const divideBinaryNumbers = (switchValue1, switchValue2) => {
const decimal1 = parseInt(switchValue1, 2);
const decimal2 = parseInt(switchValue2, 2);
if (decimal2 === 0) {
return "Division by zero";
}
const decimalQuotient = Math.floor(decimal1 / decimal2);
const binaryQuotient = decimalQuotient.toString(2);
return binaryQuotient;
};
const updateLightBulbs = (totalBinary) => {
const bulbsContainer = document.querySelector(".bulbs");
bulbsContainer.innerHTML = "";
for (let i = 0; i < totalBinary.length; i++) {
const bulbValue = totalBinary[i];
const bulbContainer = document.createElement("div");
bulbContainer.classList.add("bulb-container");
const bulbImage = document.createElement("img");
bulbImage.src = bulbValue === "1" ? "lit.png" : "unlit.png";
const bulbText = document.createElement("span");
bulbText.classList.add("bulb-text");
bulbText.textContent = bulbValue;
bulbContainer.appendChild(bulbImage);
bulbContainer.appendChild(bulbText);
bulbsContainer.appendChild(bulbContainer);
}
};
const handleReset = () => {
switchesArr.fill(false);
const switchElements = document.querySelectorAll(
".switch input[type='checkbox']"
);
switchElements.forEach((element) => (element.checked = false));
const resetElements = [
"#resultRow1",
"#resultRow2",
"#totalBinary",
"#decimalResult1",
"#decimalResult2",
"#totalDecimal",
].map((selector) => document.querySelector(selector));
resetElements.forEach((element) => (element.textContent = ""));
// Clear the bulbs container completely
const bulbsContainer = document.querySelector(".bulbs");
bulbsContainer.innerHTML = "";
};
document
.querySelectorAll(".switch input[type='checkbox']")
.forEach((element, index) => {
element.addEventListener("change", () => handleSwitch(index));
});
document.querySelector("#addButton").addEventListener("click", () => {
const switchValue1 = getSwitchValue1();
const switchValue2 = getSwitchValue2();
const operation = document.querySelector(".plus-symbol").value;
// Check for multiplication overflow before performing the operation
if (operation === "*") {
const decimal1 = parseInt(switchValue1, 2);
const decimal2 = parseInt(switchValue2, 2);
const MAX_9_BIT_VALUE = 511; // 2^9 - 1 (111111111 in binary - 9 bits)
const product = decimal1 * decimal2;
// Check if multiplication would exceed 9 bits (result > 511)
if (product > MAX_9_BIT_VALUE) {
const productBinary = product.toString(2);
alert(`Error: Multiplication result exceeds 9 binary digits and cannot be displayed.\n\nPlease use smaller numbers.\n\nResult:\nBinary: ${productBinary}\nDecimal: ${product}`);
handleReset();
return;
}
}
let totalBinary;
if (operation === "+") {
totalBinary = addBinaryNumbers(switchValue1, switchValue2);
} else if (operation === "-") {
totalBinary = subtractBinaryNumbers(switchValue1, switchValue2);
} else if (operation === "*") {
totalBinary = multiplyBinaryNumbers(switchValue1, switchValue2);
} else if (operation === "/") {
totalBinary = divideBinaryNumbers(switchValue1, switchValue2);
} else {
// Handle invalid operation
return;
}
// Handle special error cases
if (totalBinary === "Division by zero") {
alert("Error: Cannot divide by zero.\n\nPlease enter a non-zero value for the second number.");
handleReset();
return;
}
if (totalBinary === "negative") {
const decimal1 = parseInt(switchValue1, 2);
const decimal2 = parseInt(switchValue2, 2);
const result = decimal1 - decimal2;
alert(`Error: Subtraction result is negative and cannot be displayed.\n\nResult:\nDecimal: ${result}\n\nPlease make sure the first number is larger than the second number.`);
handleReset();
return;
}
// Check if the binary result is more than 9 digits
if (totalBinary.length > 9) {
const totalDecimal = parseInt(totalBinary, 2);
alert(`Error: Result exceeds 9 binary digits and cannot be displayed.\n\nPlease use smaller numbers.\n\nResult:\nBinary: ${totalBinary}\nDecimal: ${totalDecimal}`);
handleReset();
return;
}
const decimalNumber1 = parseInt(switchValue1, 2);
const decimalNumber2 = parseInt(switchValue2, 2);
const totalDecimal = parseInt(totalBinary, 2);
updateDom(
switchValue1,
switchValue2,
totalBinary,
decimalNumber1,
decimalNumber2,
totalDecimal
);
updateLightBulbs(totalBinary);
});
document.querySelector("#resetButton").addEventListener("click", () => {
handleReset();
});
const updateDom = (
switchValue1,
switchValue2,
totalBinary,
decimalNumber1,
decimalNumber2,
totalDecimal
) => {
document.querySelector("#resultRow1").textContent = switchValue1;
document.querySelector("#resultRow2").textContent = switchValue2;
document.querySelector("#totalBinary").textContent = totalBinary;
document.querySelector("#decimalResult1").textContent = decimalNumber1;
document.querySelector("#decimalResult2").textContent = decimalNumber2;
document.querySelector("#totalDecimal").textContent = totalDecimal;
};
module.exports = {
addBinaryNumbers,
subtractBinaryNumbers,
multiplyBinaryNumbers,
divideBinaryNumbers,
};