editor/palette.js
function paletteWidget(retina) {
"use strict";
var COLORS, paletteCanvas, lastColor, currentColor;
function egaRGB(value) {
return new Uint8Array([
(((value & 32) >> 5) + ((value & 4) >> 1)) * 0x55,
(((value & 16) >> 4) + ((value & 2))) * 0x55,
(((value & 8) >> 3) + ((value & 1) << 1)) * 0x55,
255
]);
}
COLORS = [0, 1, 2, 3, 4, 5, 20, 7, 56, 57, 58, 59, 60, 61, 62, 63].map(egaRGB);
paletteCanvas = ElementHelper.create("canvas", {"width": retina ? 320 : 160, "height": retina ? 160 : 80, "style": {"width": "160px", "height": "80px", "verticalAlign": "bottom"}});
function styleRGBA(rgba) {
return "rgba(" + rgba[0] + ", " + rgba[1] + ", " + rgba[2] + ", " + rgba[3] + ")";
}
function setColor(col) {
var paletteCtx;
if (col !== currentColor) {
lastColor = currentColor;
paletteCtx = paletteCanvas.getContext("2d");
paletteCtx.fillStyle = styleRGBA(COLORS[col]);
paletteCtx.fillRect(0, paletteCanvas.height / 2, paletteCanvas.width, paletteCanvas.height / 2);
currentColor = col;
paletteCanvas.dispatchEvent(new CustomEvent("colorChange", {"detail": currentColor}));
}
}
function keydown(evt) {
var keyCode, modifier;
keyCode = evt.keyCode || evt.which;
modifier = evt.metaKey || evt.altKey || evt.ctrlKey;
if (!modifier) {
if (keyCode >= 49 && keyCode <= 56) {
evt.preventDefault();
setColor(keyCode - 49 + (evt.shiftKey ? 8 : 0));
} else {
switch (keyCode) {
case 9:
evt.preventDefault();
if (lastColor !== undefined) {
setColor(lastColor);
}
break;
case 81:
evt.preventDefault();
setColor((currentColor === 0) ? 15 : currentColor - 1);
break;
case 87:
evt.preventDefault();
setColor((currentColor === 15) ? 0 : currentColor + 1);
break;
}
}
}
}
function startListening() {
document.addEventListener("keydown", keydown, false);
}
function stopListening() {
document.removeEventListener("keydown", keydown);
}
function init() {
var divPalette, paletteCtx, i;
divPalette = document.getElementById("palette");
paletteCtx = paletteCanvas.getContext("2d");
for (i = 0; i < 16; ++i) {
paletteCtx.fillStyle = styleRGBA(COLORS[i]);
paletteCtx.fillRect((i % 8) * paletteCanvas.width / 8, (i < 8) ? paletteCanvas.height / 4 : 0, paletteCanvas.width / 8, paletteCanvas.height / 4);
}
paletteCanvas.onclick = function (evt) {
var x, y, col;
x = evt.clientX - document.getElementById("toolkit").offsetLeft;
y = evt.clientY - divPalette.offsetTop;
col = (1 - Math.floor(y / 40)) * 8 + Math.floor(x / 20);
if (col >= 0) {
setColor(col);
}
};
setColor(7);
divPalette.appendChild(paletteCanvas);
startListening();
}
function getCurrentColor() {
return currentColor;
}
return {
"init": init,
"COLORS": COLORS,
"canvas": paletteCanvas,
"getCurrentColor": getCurrentColor,
"startListening": startListening,
"stopListening": stopListening
};
}