| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399 |
- const expect = chai.expect;
- import Base64 from '../core/base64.js';
- import Display from '../core/display.js';
- describe('Display/Canvas Helper', function () {
- const checkedData = new Uint8ClampedArray([
- 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
- 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
- 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
- 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
- ]);
- const basicData = new Uint8ClampedArray([0xff, 0x00, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0xff, 0xff, 0xff, 255]);
- function makeImageCanvas(inputData, width, height) {
- const canvas = document.createElement('canvas');
- canvas.width = width;
- canvas.height = height;
- const ctx = canvas.getContext('2d');
- const data = new ImageData(inputData, width, height);
- ctx.putImageData(data, 0, 0);
- return canvas;
- }
- function makeImagePng(inputData, width, height) {
- const canvas = makeImageCanvas(inputData, width, height);
- const url = canvas.toDataURL();
- const data = url.split(",")[1];
- return Base64.decode(data);
- }
- describe('viewport handling', function () {
- let display;
- beforeEach(function () {
- display = new Display(document.createElement('canvas'));
- display.clipViewport = true;
- display.resize(5, 5);
- display.viewportChangeSize(3, 3);
- display.viewportChangePos(1, 1);
- });
- it('should take viewport location into consideration when drawing images', function () {
- display.resize(4, 4);
- display.viewportChangeSize(2, 2);
- display.drawImage(makeImageCanvas(basicData, 4, 1), 1, 1);
- display.flip();
- const expected = new Uint8Array(16);
- for (let i = 0; i < 8; i++) { expected[i] = basicData[i]; }
- for (let i = 8; i < 16; i++) { expected[i] = 0; }
- expect(display).to.have.displayed(expected);
- });
- it('should resize the target canvas when resizing the viewport', function () {
- display.viewportChangeSize(2, 2);
- expect(display._target.width).to.equal(2);
- expect(display._target.height).to.equal(2);
- });
- it('should move the viewport if necessary', function () {
- display.viewportChangeSize(5, 5);
- expect(display.absX(0)).to.equal(0);
- expect(display.absY(0)).to.equal(0);
- expect(display._target.width).to.equal(5);
- expect(display._target.height).to.equal(5);
- });
- it('should limit the viewport to the framebuffer size', function () {
- display.viewportChangeSize(6, 6);
- expect(display._target.width).to.equal(5);
- expect(display._target.height).to.equal(5);
- });
- it('should redraw when moving the viewport', function () {
- display.flip = sinon.spy();
- display.viewportChangePos(-1, 1);
- expect(display.flip).to.have.been.calledOnce;
- });
- it('should redraw when resizing the viewport', function () {
- display.flip = sinon.spy();
- display.viewportChangeSize(2, 2);
- expect(display.flip).to.have.been.calledOnce;
- });
- it('should show the entire framebuffer when disabling the viewport', function () {
- display.clipViewport = false;
- expect(display.absX(0)).to.equal(0);
- expect(display.absY(0)).to.equal(0);
- expect(display._target.width).to.equal(5);
- expect(display._target.height).to.equal(5);
- });
- it('should ignore viewport changes when the viewport is disabled', function () {
- display.clipViewport = false;
- display.viewportChangeSize(2, 2);
- display.viewportChangePos(1, 1);
- expect(display.absX(0)).to.equal(0);
- expect(display.absY(0)).to.equal(0);
- expect(display._target.width).to.equal(5);
- expect(display._target.height).to.equal(5);
- });
- it('should show the entire framebuffer just after enabling the viewport', function () {
- display.clipViewport = false;
- display.clipViewport = true;
- expect(display.absX(0)).to.equal(0);
- expect(display.absY(0)).to.equal(0);
- expect(display._target.width).to.equal(5);
- expect(display._target.height).to.equal(5);
- });
- });
- describe('resizing', function () {
- let display;
- beforeEach(function () {
- display = new Display(document.createElement('canvas'));
- display.clipViewport = false;
- display.resize(4, 4);
- });
- it('should change the size of the logical canvas', function () {
- display.resize(5, 7);
- expect(display._fbWidth).to.equal(5);
- expect(display._fbHeight).to.equal(7);
- });
- it('should keep the framebuffer data', function () {
- display.fillRect(0, 0, 4, 4, [0xff, 0, 0]);
- display.resize(2, 2);
- display.flip();
- const expected = [];
- for (let i = 0; i < 4 * 2*2; i += 4) {
- expected[i] = 0xff;
- expected[i+1] = expected[i+2] = 0;
- expected[i+3] = 0xff;
- }
- expect(display).to.have.displayed(new Uint8Array(expected));
- });
- describe('viewport', function () {
- beforeEach(function () {
- display.clipViewport = true;
- display.viewportChangeSize(3, 3);
- display.viewportChangePos(1, 1);
- });
- it('should keep the viewport position and size if possible', function () {
- display.resize(6, 6);
- expect(display.absX(0)).to.equal(1);
- expect(display.absY(0)).to.equal(1);
- expect(display._target.width).to.equal(3);
- expect(display._target.height).to.equal(3);
- });
- it('should move the viewport if necessary', function () {
- display.resize(3, 3);
- expect(display.absX(0)).to.equal(0);
- expect(display.absY(0)).to.equal(0);
- expect(display._target.width).to.equal(3);
- expect(display._target.height).to.equal(3);
- });
- it('should shrink the viewport if necessary', function () {
- display.resize(2, 2);
- expect(display.absX(0)).to.equal(0);
- expect(display.absY(0)).to.equal(0);
- expect(display._target.width).to.equal(2);
- expect(display._target.height).to.equal(2);
- });
- });
- });
- describe('rescaling', function () {
- let display;
- let canvas;
- beforeEach(function () {
- canvas = document.createElement('canvas');
- display = new Display(canvas);
- display.clipViewport = true;
- display.resize(4, 4);
- display.viewportChangeSize(3, 3);
- display.viewportChangePos(1, 1);
- document.body.appendChild(canvas);
- });
- afterEach(function () {
- document.body.removeChild(canvas);
- });
- it('should not change the bitmap size of the canvas', function () {
- display.scale = 2.0;
- expect(canvas.width).to.equal(3);
- expect(canvas.height).to.equal(3);
- });
- it('should change the effective rendered size of the canvas', function () {
- display.scale = 2.0;
- expect(canvas.clientWidth).to.equal(6);
- expect(canvas.clientHeight).to.equal(6);
- });
- it('should not change when resizing', function () {
- display.scale = 2.0;
- display.resize(5, 5);
- expect(display.scale).to.equal(2.0);
- expect(canvas.width).to.equal(3);
- expect(canvas.height).to.equal(3);
- expect(canvas.clientWidth).to.equal(6);
- expect(canvas.clientHeight).to.equal(6);
- });
- });
- describe('autoscaling', function () {
- let display;
- let canvas;
- beforeEach(function () {
- canvas = document.createElement('canvas');
- display = new Display(canvas);
- display.clipViewport = true;
- display.resize(4, 3);
- display.viewportChangeSize(4, 3);
- document.body.appendChild(canvas);
- });
- afterEach(function () {
- document.body.removeChild(canvas);
- });
- it('should preserve aspect ratio while autoscaling', function () {
- display.autoscale(16, 9);
- expect(canvas.clientWidth / canvas.clientHeight).to.equal(4 / 3);
- });
- it('should use width to determine scale when the current aspect ratio is wider than the target', function () {
- display.autoscale(9, 16);
- expect(display.absX(9)).to.equal(4);
- expect(display.absY(18)).to.equal(8);
- expect(canvas.clientWidth).to.equal(9);
- expect(canvas.clientHeight).to.equal(7); // round 9 / (4 / 3)
- });
- it('should use height to determine scale when the current aspect ratio is taller than the target', function () {
- display.autoscale(16, 9);
- expect(display.absX(9)).to.equal(3);
- expect(display.absY(18)).to.equal(6);
- expect(canvas.clientWidth).to.equal(12); // 16 * (4 / 3)
- expect(canvas.clientHeight).to.equal(9);
- });
- it('should not change the bitmap size of the canvas', function () {
- display.autoscale(16, 9);
- expect(canvas.width).to.equal(4);
- expect(canvas.height).to.equal(3);
- });
- });
- describe('drawing', function () {
- // TODO(directxman12): improve the tests for each of the drawing functions to cover more than just the
- // basic cases
- let display;
- beforeEach(function () {
- display = new Display(document.createElement('canvas'));
- display.resize(4, 4);
- });
- it('should not draw directly on the target canvas', function () {
- display.fillRect(0, 0, 4, 4, [0xff, 0, 0]);
- display.flip();
- display.fillRect(0, 0, 4, 4, [0, 0xff, 0]);
- const expected = [];
- for (let i = 0; i < 4 * display._fbWidth * display._fbHeight; i += 4) {
- expected[i] = 0xff;
- expected[i+1] = expected[i+2] = 0;
- expected[i+3] = 0xff;
- }
- expect(display).to.have.displayed(new Uint8Array(expected));
- });
- it('should support filling a rectangle with particular color via #fillRect', function () {
- display.fillRect(0, 0, 4, 4, [0, 0xff, 0]);
- display.fillRect(0, 0, 2, 2, [0, 0, 0xff]);
- display.fillRect(2, 2, 2, 2, [0, 0, 0xff]);
- display.flip();
- expect(display).to.have.displayed(checkedData);
- });
- it('should support copying an portion of the canvas via #copyImage', function () {
- display.fillRect(0, 0, 4, 4, [0, 0xff, 0]);
- display.fillRect(0, 0, 2, 2, [0, 0, 0xff]);
- display.copyImage(0, 0, 2, 2, 2, 2);
- display.flip();
- expect(display).to.have.displayed(checkedData);
- });
- it('should support drawing images via #imageRect', function (done) {
- display.imageRect(0, 0, 4, 4, "image/png", makeImagePng(checkedData, 4, 4));
- display.flip();
- display.onflush = () => {
- expect(display).to.have.displayed(checkedData);
- done();
- };
- display.flush();
- });
- it('should support blit images with true color via #blitImage', function () {
- display.blitImage(0, 0, 4, 4, checkedData, 0);
- display.flip();
- expect(display).to.have.displayed(checkedData);
- });
- it('should support drawing an image object via #drawImage', function () {
- const img = makeImageCanvas(checkedData, 4, 4);
- display.drawImage(img, 0, 0);
- display.flip();
- expect(display).to.have.displayed(checkedData);
- });
- });
- describe('the render queue processor', function () {
- let display;
- beforeEach(function () {
- display = new Display(document.createElement('canvas'));
- display.resize(4, 4);
- sinon.spy(display, '_scanRenderQ');
- });
- it('should try to process an item when it is pushed on, if nothing else is on the queue', function () {
- display._renderQPush({ type: 'noop' }); // does nothing
- expect(display._scanRenderQ).to.have.been.calledOnce;
- });
- it('should not try to process an item when it is pushed on if we are waiting for other items', function () {
- display._renderQ.length = 2;
- display._renderQPush({ type: 'noop' });
- expect(display._scanRenderQ).to.not.have.been.called;
- });
- it('should wait until an image is loaded to attempt to draw it and the rest of the queue', function () {
- const img = { complete: false, width: 4, height: 4, addEventListener: sinon.spy() };
- display._renderQ = [{ type: 'img', x: 3, y: 4, width: 4, height: 4, img: img },
- { type: 'fill', x: 1, y: 2, width: 3, height: 4, color: 5 }];
- display.drawImage = sinon.spy();
- display.fillRect = sinon.spy();
- display._scanRenderQ();
- expect(display.drawImage).to.not.have.been.called;
- expect(display.fillRect).to.not.have.been.called;
- expect(img.addEventListener).to.have.been.calledOnce;
- display._renderQ[0].img.complete = true;
- display._scanRenderQ();
- expect(display.drawImage).to.have.been.calledOnce;
- expect(display.fillRect).to.have.been.calledOnce;
- expect(img.addEventListener).to.have.been.calledOnce;
- });
- it('should call callback when queue is flushed', function () {
- display.onflush = sinon.spy();
- display.fillRect(0, 0, 4, 4, [0, 0xff, 0]);
- expect(display.onflush).to.not.have.been.called;
- display.flush();
- expect(display.onflush).to.have.been.calledOnce;
- });
- it('should draw a blit image on type "blit"', function () {
- display.blitImage = sinon.spy();
- display._renderQPush({ type: 'blit', x: 3, y: 4, width: 5, height: 6, data: [7, 8, 9] });
- expect(display.blitImage).to.have.been.calledOnce;
- expect(display.blitImage).to.have.been.calledWith(3, 4, 5, 6, [7, 8, 9], 0);
- });
- it('should copy a region on type "copy"', function () {
- display.copyImage = sinon.spy();
- display._renderQPush({ type: 'copy', x: 3, y: 4, width: 5, height: 6, oldX: 7, oldY: 8 });
- expect(display.copyImage).to.have.been.calledOnce;
- expect(display.copyImage).to.have.been.calledWith(7, 8, 3, 4, 5, 6);
- });
- it('should fill a rect with a given color on type "fill"', function () {
- display.fillRect = sinon.spy();
- display._renderQPush({ type: 'fill', x: 3, y: 4, width: 5, height: 6, color: [7, 8, 9]});
- expect(display.fillRect).to.have.been.calledOnce;
- expect(display.fillRect).to.have.been.calledWith(3, 4, 5, 6, [7, 8, 9]);
- });
- it('should draw an image from an image object on type "img" (if complete)', function () {
- display.drawImage = sinon.spy();
- display._renderQPush({ type: 'img', x: 3, y: 4, img: { complete: true } });
- expect(display.drawImage).to.have.been.calledOnce;
- expect(display.drawImage).to.have.been.calledWith({ complete: true }, 3, 4);
- });
- });
- });
|