Pārlūkot izejas kodu

Added .getColorIndex() method to ISurface and extending classes.

dev-tmpl
Bryan Miller pirms 5 gadiem
vecāks
revīzija
20fa69bcc3
2 mainītis faili ar 13 papildinājumiem un 0 dzēšanām
  1. +4
    -0
      app/js/ifaces/ISurface.js
  2. +9
    -0
      app/js/models/NESBank.js

+ 4
- 0
app/js/ifaces/ISurface.js Parādīt failu

@@ -49,6 +49,10 @@ export default class ISurface{
return this.__default_pi[4];
}

getColorIndex(x, y){
return 0;
}

setColorIndex(x, y, ci, pi){
return this;
}

+ 9
- 0
app/js/models/NESBank.js Parādīt failu

@@ -193,6 +193,15 @@ export default class NESBank extends ISurface{
return this.__default_pi[ci];
}

getColorIndex(x, y){
var res = LRIdx2TileIdxCo((y*256)+x);
var list = (res.lid === 0) ? this.__LP : this.__RP;
return {
pi: list[res.index].paletteIndex,
ci: list[res.index].getPixelIndex(res.x, res.y);
};
}

setColorIndex(x, y, ci, pi){
if (x < 0 || x >= 256 || y < 0 || y > 128)
throw new RangeError("Coordinates out of bounds.");

Notiek ielāde…
Atcelt
Saglabāt