-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add wasm-backend * add wasm configuration and replace sleep * add wasm-backend * fix busy_waiting * fix busy waiting * add buffer to print * add js module * change passing parameter as pointer
- Loading branch information
Showing
7 changed files
with
273 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
const fontWidth = 12; | ||
const fontHeight = fontWidth * 2; | ||
const textColorPairSize = 12; | ||
|
||
export function paint(buffer) { | ||
const data = new Uint8Array(buffer); | ||
const canvas = document.getElementById('cursive-wasm-canvas'); | ||
const context = canvas.getContext('2d'); | ||
const backBuffer = new Map(); | ||
const frontBuffer = new Map(); | ||
context.font = `${fontHeight}px monospace`; | ||
for (let x = 0; x < 1000; x++) { | ||
for (let y = 0; y < 1000; y++) { | ||
const n = 1000 * y + x; | ||
const textColorPair = data.slice(n * textColorPairSize, (n + 1) * textColorPairSize); | ||
const text = String.fromCharCode(textColorPair[0] + (2**8) *textColorPair[1] + (2**16)* textColorPair[2] + (2 ** 24) + textColorPair[3]); | ||
const front = byte_to_hex_string(textColorPair.slice(4, 7)); | ||
const back = byte_to_hex_string(textColorPair.slice(7, 10)); | ||
if (text != ' ') { | ||
const buffer = frontBuffer.get(front) || []; | ||
buffer.push({ x, y, text }); | ||
frontBuffer.set(front, buffer); | ||
} | ||
const buffer = backBuffer.get(back) || []; | ||
buffer.push({ x, y }); | ||
backBuffer.set(back, buffer); | ||
} | ||
} | ||
backBuffer.forEach((buffer, back) => { | ||
context.fillStyle = back; | ||
buffer.forEach(value => { | ||
context.fillRect(value.x * fontWidth, value.y * fontHeight, fontWidth, fontHeight); | ||
}); | ||
}); | ||
frontBuffer.forEach((buffer, front) => { | ||
context.fillStyle = front; | ||
buffer.forEach(value => { | ||
context.fillText(value.text, value.x * fontWidth, (value.y + 0.8) * fontHeight); | ||
}); | ||
}); | ||
} | ||
|
||
function byte_to_hex_string(bytes) { | ||
const red = bytes[0].toString(16).padStart(2, '0'); | ||
const green = bytes[1].toString(16).padStart(2, '0'); | ||
const blue = bytes[2].toString(16).padStart(2, '0'); | ||
return `#${red}${green}${blue}`; | ||
} |
Oops, something went wrong.