You've already forked computing-box
- Make the increment/decrement buttons centred to the card - The toolbox button disappears when the toolbox is hidden - Move the custom buttons to their own card in the toolbox - Put the random button in the same card as the custom buttons - Make the random button glow/pulse green when it is running - Move the shift buttons to the "Tools" card - Make the reset button the full width of the card, it should be in the bottom row on its own. - Make the reset button glow/pulse red when hovered over - Rename Mode to "Settings" - Move bit width to the "Settings" card - Keep the "Tools" card named as "Tools"
465 lines
12 KiB
JavaScript
465 lines
12 KiB
JavaScript
// src/scripts/binary.js
|
||
// Computing:Box — Binary page logic (Unsigned + Two's Complement)
|
||
// Matches IDs/classes in your current binary.astro HTML.
|
||
|
||
(() => {
|
||
/* -----------------------------
|
||
DOM
|
||
----------------------------- */
|
||
const bitsGrid = document.getElementById("bitsGrid");
|
||
const denaryEl = document.getElementById("denaryNumber");
|
||
const binaryEl = document.getElementById("binaryNumber");
|
||
const bitsInput = document.getElementById("bitsInput");
|
||
|
||
const modeToggle = document.getElementById("modeToggle");
|
||
const modeHint = document.getElementById("modeHint");
|
||
|
||
const btnCustomBinary = document.getElementById("btnCustomBinary");
|
||
const btnCustomDenary = document.getElementById("btnCustomDenary");
|
||
|
||
const btnShiftLeft = document.getElementById("btnShiftLeft");
|
||
const btnShiftRight = document.getElementById("btnShiftRight");
|
||
|
||
const btnDec = document.getElementById("btnDec");
|
||
const btnInc = document.getElementById("btnInc");
|
||
const btnClear = document.getElementById("btnClear");
|
||
const btnRandom = document.getElementById("btnRandom");
|
||
|
||
const btnBitsUp = document.getElementById("btnBitsUp");
|
||
const btnBitsDown = document.getElementById("btnBitsDown");
|
||
|
||
// Toolbox toggle
|
||
const toolboxToggle = document.getElementById("toolboxToggle");
|
||
|
||
/* -----------------------------
|
||
STATE
|
||
----------------------------- */
|
||
let bitCount = clampInt(Number(bitsInput?.value ?? 8), 1, 64);
|
||
|
||
// bits[i] is bit value 2^i (LSB at i=0)
|
||
let bits = new Array(bitCount).fill(false);
|
||
|
||
// Random run timer (brief)
|
||
let randomTimer = null;
|
||
|
||
/* -----------------------------
|
||
HELPERS
|
||
----------------------------- */
|
||
function clampInt(n, min, max) {
|
||
if (!Number.isFinite(n)) return min;
|
||
return Math.max(min, Math.min(max, Math.trunc(n)));
|
||
}
|
||
|
||
function isTwosMode() {
|
||
return !!modeToggle?.checked;
|
||
}
|
||
|
||
function pow2Big(n) {
|
||
return 1n << BigInt(n);
|
||
}
|
||
|
||
function unsignedMaxExclusive(nBits) {
|
||
return pow2Big(nBits); // 2^n
|
||
}
|
||
|
||
function unsignedMaxValue(nBits) {
|
||
return pow2Big(nBits) - 1n;
|
||
}
|
||
|
||
function twosMin(nBits) {
|
||
return -pow2Big(nBits - 1);
|
||
}
|
||
|
||
function twosMax(nBits) {
|
||
return pow2Big(nBits - 1) - 1n;
|
||
}
|
||
|
||
function bitsToUnsignedBigInt() {
|
||
let v = 0n;
|
||
for (let i = 0; i < bitCount; i++) {
|
||
if (bits[i]) v += pow2Big(i);
|
||
}
|
||
return v;
|
||
}
|
||
|
||
function unsignedBigIntToBits(vUnsigned) {
|
||
const span = unsignedMaxExclusive(bitCount);
|
||
const v = ((vUnsigned % span) + span) % span;
|
||
for (let i = 0; i < bitCount; i++) {
|
||
bits[i] = ((v >> BigInt(i)) & 1n) === 1n;
|
||
}
|
||
}
|
||
|
||
function bitsToSignedBigIntTwos() {
|
||
const u = bitsToUnsignedBigInt();
|
||
const signBit = bits[bitCount - 1] === true;
|
||
if (!signBit) return u;
|
||
|
||
// negative: u - 2^n
|
||
return u - pow2Big(bitCount);
|
||
}
|
||
|
||
function signedBigIntToBitsTwos(vSigned) {
|
||
const span = pow2Big(bitCount); // 2^n
|
||
let v = vSigned;
|
||
|
||
// Convert to unsigned representative: v mod 2^n
|
||
v = ((v % span) + span) % span;
|
||
unsignedBigIntToBits(v);
|
||
}
|
||
|
||
function formatBinaryGrouped() {
|
||
// MSB..LSB with a space every 4 bits
|
||
let s = "";
|
||
for (let i = bitCount - 1; i >= 0; i--) {
|
||
s += bits[i] ? "1" : "0";
|
||
const posFromRight = (bitCount - i);
|
||
if (i !== 0 && posFromRight % 4 === 0) s += " ";
|
||
}
|
||
return s;
|
||
}
|
||
|
||
function updateModeHint() {
|
||
if (!modeHint) return;
|
||
if (isTwosMode()) {
|
||
modeHint.textContent =
|
||
"Tip: In two’s complement, the left-most bit (MSB) represents a negative value.";
|
||
} else {
|
||
modeHint.textContent =
|
||
"Tip: In unsigned binary, all bits represent positive values.";
|
||
}
|
||
}
|
||
|
||
/* -----------------------------
|
||
BUILD UI (BITS)
|
||
----------------------------- */
|
||
function buildBits(count) {
|
||
bitCount = clampInt(count, 1, 64);
|
||
if (bitsInput) bitsInput.value = String(bitCount);
|
||
|
||
// resize bits array, preserve existing LSBs where possible
|
||
const oldBits = bits.slice();
|
||
bits = new Array(bitCount).fill(false);
|
||
for (let i = 0; i < Math.min(oldBits.length, bitCount); i++) bits[i] = oldBits[i];
|
||
|
||
bitsGrid.innerHTML = "";
|
||
|
||
// Render MSB..LSB left-to-right
|
||
for (let i = bitCount - 1; i >= 0; i--) {
|
||
const bitEl = document.createElement("div");
|
||
bitEl.className = "bit";
|
||
|
||
bitEl.innerHTML = `
|
||
<div class="bulb" id="bulb-${i}" aria-hidden="true">💡</div>
|
||
<div class="bitVal" id="bitLabel-${i}"></div>
|
||
<label class="switch" aria-label="Toggle bit ${i}">
|
||
<input type="checkbox" data-index="${i}">
|
||
<span class="slider"></span>
|
||
</label>
|
||
`;
|
||
|
||
bitsGrid.appendChild(bitEl);
|
||
}
|
||
|
||
// Hook switches
|
||
bitsGrid.querySelectorAll('input[type="checkbox"]').forEach((input) => {
|
||
input.addEventListener("change", () => {
|
||
const i = Number(input.dataset.index);
|
||
bits[i] = input.checked;
|
||
updateUI();
|
||
});
|
||
});
|
||
|
||
updateUI();
|
||
}
|
||
|
||
/* -----------------------------
|
||
UI UPDATE
|
||
----------------------------- */
|
||
function updateBitLabels() {
|
||
for (let i = 0; i < bitCount; i++) {
|
||
const label = document.getElementById(`bitLabel-${i}`);
|
||
if (!label) continue;
|
||
|
||
if (isTwosMode() && i === bitCount - 1) {
|
||
label.textContent = `-${pow2Big(bitCount - 1).toString()}`;
|
||
} else {
|
||
label.textContent = pow2Big(i).toString();
|
||
}
|
||
}
|
||
}
|
||
|
||
function syncSwitchesToBits() {
|
||
bitsGrid.querySelectorAll('input[type="checkbox"]').forEach((input) => {
|
||
const i = Number(input.dataset.index);
|
||
input.checked = !!bits[i];
|
||
});
|
||
}
|
||
|
||
function updateBulbs() {
|
||
for (let i = 0; i < bitCount; i++) {
|
||
const bulb = document.getElementById(`bulb-${i}`);
|
||
if (!bulb) continue;
|
||
|
||
const on = bits[i] === true;
|
||
if (on) {
|
||
bulb.style.opacity = "1";
|
||
bulb.style.filter = "grayscale(0)";
|
||
bulb.style.textShadow =
|
||
"0 0 14px rgba(255,216,107,.75), 0 0 26px rgba(255,216,107,.45)";
|
||
} else {
|
||
bulb.style.opacity = "0.45";
|
||
bulb.style.filter = "grayscale(1)";
|
||
bulb.style.textShadow = "none";
|
||
}
|
||
}
|
||
}
|
||
|
||
function updateReadout() {
|
||
if (!denaryEl || !binaryEl) return;
|
||
|
||
if (isTwosMode()) {
|
||
denaryEl.textContent = bitsToSignedBigIntTwos().toString();
|
||
} else {
|
||
denaryEl.textContent = bitsToUnsignedBigInt().toString();
|
||
}
|
||
|
||
binaryEl.textContent = formatBinaryGrouped();
|
||
}
|
||
|
||
function updateUI() {
|
||
updateModeHint();
|
||
updateBitLabels();
|
||
syncSwitchesToBits();
|
||
updateBulbs();
|
||
updateReadout();
|
||
}
|
||
|
||
/* -----------------------------
|
||
SET FROM BINARY STRING
|
||
----------------------------- */
|
||
function setFromBinaryString(binStr) {
|
||
const clean = String(binStr ?? "").replace(/\s+/g, "");
|
||
if (!/^[01]+$/.test(clean)) return false;
|
||
|
||
const padded = clean.slice(-bitCount).padStart(bitCount, "0");
|
||
|
||
for (let i = 0; i < bitCount; i++) {
|
||
const charFromRight = padded[padded.length - 1 - i];
|
||
bits[i] = charFromRight === "1";
|
||
}
|
||
|
||
updateUI();
|
||
return true;
|
||
}
|
||
|
||
/* -----------------------------
|
||
SET FROM DENARY INPUT
|
||
----------------------------- */
|
||
function setFromDenaryInput(vStr) {
|
||
const raw = String(vStr ?? "").trim();
|
||
if (!raw) return false;
|
||
|
||
let v;
|
||
try {
|
||
if (!/^-?\d+$/.test(raw)) return false;
|
||
v = BigInt(raw);
|
||
} catch {
|
||
return false;
|
||
}
|
||
|
||
if (isTwosMode()) {
|
||
const min = twosMin(bitCount);
|
||
const max = twosMax(bitCount);
|
||
if (v < min || v > max) return false;
|
||
signedBigIntToBitsTwos(v);
|
||
} else {
|
||
if (v < 0n) return false;
|
||
if (v > unsignedMaxValue(bitCount)) return false;
|
||
unsignedBigIntToBits(v);
|
||
}
|
||
|
||
updateUI();
|
||
return true;
|
||
}
|
||
|
||
/* -----------------------------
|
||
SHIFTS
|
||
----------------------------- */
|
||
function shiftLeft() {
|
||
for (let i = bitCount - 1; i >= 1; i--) bits[i] = bits[i - 1];
|
||
bits[0] = false;
|
||
updateUI();
|
||
}
|
||
|
||
function shiftRight() {
|
||
for (let i = 0; i < bitCount - 1; i++) bits[i] = bits[i + 1];
|
||
bits[bitCount - 1] = false;
|
||
updateUI();
|
||
}
|
||
|
||
/* -----------------------------
|
||
CLEAR / INC / DEC
|
||
----------------------------- */
|
||
function clearAll() {
|
||
bits.fill(false);
|
||
updateUI();
|
||
}
|
||
|
||
function increment() {
|
||
if (isTwosMode()) {
|
||
const min = twosMin(bitCount);
|
||
const max = twosMax(bitCount);
|
||
let v = bitsToSignedBigIntTwos() + 1n;
|
||
if (v > max) v = min;
|
||
signedBigIntToBitsTwos(v);
|
||
} else {
|
||
const span = unsignedMaxExclusive(bitCount);
|
||
const v = (bitsToUnsignedBigInt() + 1n) % span;
|
||
unsignedBigIntToBits(v);
|
||
}
|
||
updateUI();
|
||
}
|
||
|
||
function decrement() {
|
||
if (isTwosMode()) {
|
||
const min = twosMin(bitCount);
|
||
const max = twosMax(bitCount);
|
||
let v = bitsToSignedBigIntTwos() - 1n;
|
||
if (v < min) v = max;
|
||
signedBigIntToBitsTwos(v);
|
||
} else {
|
||
const span = unsignedMaxExclusive(bitCount);
|
||
const v = (bitsToUnsignedBigInt() - 1n + span) % span;
|
||
unsignedBigIntToBits(v);
|
||
}
|
||
updateUI();
|
||
}
|
||
|
||
/* -----------------------------
|
||
RANDOM (BigInt-safe)
|
||
----------------------------- */
|
||
function cryptoRandomBigInt(maxExclusive) {
|
||
if (maxExclusive <= 0n) return 0n;
|
||
|
||
const bitLen = maxExclusive.toString(2).length;
|
||
const byteLen = Math.ceil(bitLen / 8);
|
||
|
||
while (true) {
|
||
const bytes = new Uint8Array(byteLen);
|
||
crypto.getRandomValues(bytes);
|
||
|
||
let x = 0n;
|
||
for (const b of bytes) x = (x << 8n) | BigInt(b);
|
||
|
||
const extraBits = BigInt(byteLen * 8 - bitLen);
|
||
if (extraBits > 0n) x = x >> extraBits;
|
||
|
||
if (x < maxExclusive) return x;
|
||
}
|
||
}
|
||
|
||
function setRandomOnce() {
|
||
const span = unsignedMaxExclusive(bitCount); // 2^n
|
||
const u = cryptoRandomBigInt(span);
|
||
unsignedBigIntToBits(u);
|
||
updateUI();
|
||
}
|
||
|
||
function runRandomBriefly() {
|
||
if (randomTimer) {
|
||
clearInterval(randomTimer);
|
||
randomTimer = null;
|
||
}
|
||
|
||
// pulse while running
|
||
btnRandom?.classList.add("is-running");
|
||
|
||
const start = Date.now();
|
||
const durationMs = 900;
|
||
const tickMs = 80;
|
||
|
||
randomTimer = setInterval(() => {
|
||
setRandomOnce();
|
||
if (Date.now() - start >= durationMs) {
|
||
clearInterval(randomTimer);
|
||
randomTimer = null;
|
||
btnRandom?.classList.remove("is-running");
|
||
}
|
||
}, tickMs);
|
||
}
|
||
|
||
/* -----------------------------
|
||
BIT WIDTH CONTROLS
|
||
----------------------------- */
|
||
function setBitWidth(n) {
|
||
buildBits(clampInt(n, 1, 64));
|
||
}
|
||
|
||
/* -----------------------------
|
||
TOOLBOX TOGGLE (never disappears)
|
||
----------------------------- */
|
||
function setToolboxHidden(hidden) {
|
||
document.body.classList.toggle("toolbox-hidden", hidden);
|
||
if (toolboxToggle) toolboxToggle.setAttribute("aria-expanded", String(!hidden));
|
||
try { localStorage.setItem("computingbox.toolboxHidden", hidden ? "1" : "0"); } catch {}
|
||
}
|
||
|
||
function initToolboxState() {
|
||
let hidden = false;
|
||
try { hidden = localStorage.getItem("computingbox.toolboxHidden") === "1"; } catch {}
|
||
setToolboxHidden(hidden);
|
||
}
|
||
|
||
/* -----------------------------
|
||
EVENTS
|
||
----------------------------- */
|
||
toolboxToggle?.addEventListener("click", () => {
|
||
const hidden = document.body.classList.contains("toolbox-hidden");
|
||
setToolboxHidden(!hidden);
|
||
});
|
||
|
||
modeToggle?.addEventListener("change", () => {
|
||
updateUI();
|
||
});
|
||
|
||
btnCustomBinary?.addEventListener("click", () => {
|
||
const v = prompt(`Enter binary (spaces allowed). Current width: ${bitCount} bits`);
|
||
if (v === null) return;
|
||
if (!setFromBinaryString(v)) alert("Invalid binary");
|
||
});
|
||
|
||
btnCustomDenary?.addEventListener("click", () => {
|
||
const v = prompt(
|
||
isTwosMode()
|
||
? `Enter denary (${twosMin(bitCount)} to ${twosMax(bitCount)}):`
|
||
: `Enter denary (0 to ${unsignedMaxValue(bitCount)}):`
|
||
);
|
||
if (v === null) return;
|
||
if (!setFromDenaryInput(v)) alert("Invalid denary for current mode/bit width");
|
||
});
|
||
|
||
btnShiftLeft?.addEventListener("click", shiftLeft);
|
||
btnShiftRight?.addEventListener("click", shiftRight);
|
||
|
||
btnInc?.addEventListener("click", increment);
|
||
btnDec?.addEventListener("click", decrement);
|
||
|
||
btnClear?.addEventListener("click", clearAll);
|
||
btnRandom?.addEventListener("click", runRandomBriefly);
|
||
|
||
btnBitsUp?.addEventListener("click", () => setBitWidth(bitCount + 1));
|
||
btnBitsDown?.addEventListener("click", () => setBitWidth(bitCount - 1));
|
||
|
||
bitsInput?.addEventListener("change", () => {
|
||
setBitWidth(Number(bitsInput.value));
|
||
});
|
||
|
||
/* -----------------------------
|
||
INIT
|
||
----------------------------- */
|
||
initToolboxState();
|
||
updateModeHint();
|
||
buildBits(bitCount);
|
||
})();
|