scratch-vm/test/fixtures/fake-renderer.js

67 lines
1.8 KiB
JavaScript
Raw Normal View History

const FakeRenderer = function () {
this.unused = '';
this.x = 0;
this.y = 0;
this.order = 0;
this.spriteCount = 5;
};
FakeRenderer.prototype.createDrawable = function () {
return true;
};
FakeRenderer.prototype.getFencedPositionOfDrawable = function (d, p) { // eslint-disable-line no-unused-vars
return [p[0], p[1]];
};
FakeRenderer.prototype.updateDrawableProperties = function (d, p) { // eslint-disable-line no-unused-vars
if (p.position) {
this.x = p.position[0];
this.y = p.position[1];
}
return true;
};
FakeRenderer.prototype.getSkinSize = function (d) { // eslint-disable-line no-unused-vars
return [0, 0];
};
FakeRenderer.prototype.pick = function (x, y, a, b, d) { // eslint-disable-line no-unused-vars
return true;
};
FakeRenderer.prototype.isTouchingColor = function (d, c) { // eslint-disable-line no-unused-vars
return true;
};
FakeRenderer.prototype.setDrawableOrder = function (d, l, optA, optB) { // eslint-disable-line no-unused-vars
return true;
};
FakeRenderer.prototype.getBounds = function (d) { // eslint-disable-line no-unused-vars
return {left: this.x, right: this.x, top: this.y, bottom: this.y};
};
FakeRenderer.prototype.setDrawableOrder = function (d, a, optA, optB) { // eslint-disable-line no-unused-vars
if (d === 999) return 1; // fake for test case
if (optA) {
a += this.order;
}
if (optB) {
a = Math.max(a, optB);
}
a = Math.max(a, 0);
this.order = Math.min(a, this.spriteCount);
return this.order;
};
FakeRenderer.prototype.pick = function (x, y, a, b, c) { // eslint-disable-line no-unused-vars
return c[0];
};
FakeRenderer.prototype.isTouchingColor = function (a, b) { // eslint-disable-line no-unused-vars
return false;
};
module.exports = FakeRenderer;