|
|
@@ -2,6 +2,7 @@ import Utils from "/app/js/common/Utils.js"; |
|
|
|
import GlobalEvents from "/app/js/common/EventCaller.js"; |
|
|
|
|
|
|
|
import Input from "/app/js/ui/Input.js"; |
|
|
|
import Renderer from "/app/js/ui/Renderer.js"; |
|
|
|
|
|
|
|
import NESPalette from "/app/js/models/NESPalette.js"; |
|
|
|
import ISurface from "/app/js/ifaces/ISurface.js"; |
|
|
@@ -17,52 +18,6 @@ var canvas = null; |
|
|
|
var context = null; |
|
|
|
var ctximg = null; |
|
|
|
|
|
|
|
function OpenCanvasPixels(){ |
|
|
|
if (context !== null){ |
|
|
|
if (ctximg === null){ |
|
|
|
ctximg = context.getImageData(0,0,Math.floor(canvas.clientWidth),Math.floor(canvas.clientHeight)); |
|
|
|
} |
|
|
|
return (ctximg !== null) |
|
|
|
} |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
function PutCanvasPixel(i,j,size,color){ |
|
|
|
if (ctximg === null) |
|
|
|
return; |
|
|
|
|
|
|
|
i = Math.round(i); |
|
|
|
j = Math.round(j); |
|
|
|
size = Math.ceil(size); |
|
|
|
if (size <= 0){return;} |
|
|
|
|
|
|
|
var cw = Math.floor(canvas.clientWidth); |
|
|
|
var ch = Math.floor(canvas.clientHeight); |
|
|
|
|
|
|
|
var r = parseInt(color.substring(1, 3), 16); |
|
|
|
var g = parseInt(color.substring(3, 5), 16); |
|
|
|
var b = parseInt(color.substring(5, 7), 16); |
|
|
|
|
|
|
|
var idat = ctximg.data; |
|
|
|
for (var y=j; y < j+size; y++){ |
|
|
|
for (var x=i; x < i+size; x++){ |
|
|
|
if (x >= 0 && x < cw && y >= 0 && y < ch){ |
|
|
|
var index = (y*cw*4) + (x*4); |
|
|
|
idat[index] = r; |
|
|
|
idat[index+1] = g; |
|
|
|
idat[index+2] = b; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
function CloseCanvasPixels(){ |
|
|
|
if (ctximg !== null){ |
|
|
|
context.putImageData(ctximg, 0, 0); |
|
|
|
ctximg = null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
function ResizeCanvasImg(w, h){ |
|
|
|
if (canvas !== null){ |
|
|
@@ -400,37 +355,19 @@ class CTRLPainter { |
|
|
|
if (context === null || this.__surface === null) |
|
|
|
return; |
|
|
|
|
|
|
|
context.save(); |
|
|
|
|
|
|
|
// Clearing the context surface... |
|
|
|
context.fillStyle = NESPalette.Default[4]; |
|
|
|
context.fillRect( |
|
|
|
0,0, |
|
|
|
Math.floor(canvas.clientWidth), |
|
|
|
Math.floor(canvas.clientHeight) |
|
|
|
// Drawing the surface to the canvas. |
|
|
|
Renderer.render( |
|
|
|
this.__surface, |
|
|
|
0, 0, |
|
|
|
this.__surface.width, this.__surface.height, |
|
|
|
this.__scale, |
|
|
|
context, |
|
|
|
this.__offset[0], this.__offset[1], |
|
|
|
!this.__onePaletteMode |
|
|
|
); |
|
|
|
|
|
|
|
OpenCanvasPixels(); |
|
|
|
for (var j = 0; j < this.__surface.height; j++){ |
|
|
|
var y = (j*this.__scale) + this.__offset[1]; |
|
|
|
for (var i = 0; i < this.__surface.width; i++){ |
|
|
|
var x = (i*this.__scale) + this.__offset[0]; |
|
|
|
|
|
|
|
if (x >= 0 && x < canvas.clientWidth && y >= 0 && y < canvas.clientHeight){ |
|
|
|
var color = NESPalette.Default[4]; |
|
|
|
if (this.__onePaletteMode){ |
|
|
|
var pinfo = this.__surface.getColorIndex(i, j); |
|
|
|
if (pinfo.ci >= 0) |
|
|
|
color = NESPalette.Default[pinfo.ci]; |
|
|
|
} else { |
|
|
|
color = this.__surface.getColor(i, j); |
|
|
|
} |
|
|
|
|
|
|
|
PutCanvasPixel(x,y, this.__scale, color); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
CloseCanvasPixels(); |
|
|
|
context.save(); |
|
|
|
|
|
|
|
// Draw the mouse position... if mouse is currently in bounds. |
|
|
|
if (input.isMouseInBounds()){ |
|
|
@@ -450,7 +387,6 @@ class CTRLPainter { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Draw grid. |
|
|
|
if (this.__gridEnabled && this.__scale > 0.5){ |
|
|
|
context.strokeStyle = "#00FF00"; |