Browse Source

Create the CTRLPalettesStore which will handle the organization of project palettes both internally and visually.

dev-bank
Bryan Miller 6 years ago
parent
commit
df1624a213
3 changed files with 157 additions and 15 deletions
  1. +9
    -0
      app/js/ctrls/CTRLIO.js
  2. +143
    -0
      app/js/ctrls/CTRLPalettesStore.js
  3. +5
    -15
      app/js/main.js

+ 9
- 0
app/js/ctrls/CTRLIO.js View File

@@ -4,4 +4,13 @@ import NESBank from "/app/js/models/NESBank.js";
import NESPalette from "/app/js/models/NESPalette.js";


class CTRLIO{
constructor(){}
}


const instance = new CTRLIO();
export default instance;




+ 143
- 0
app/js/ctrls/CTRLPalettesStore.js View File

@@ -0,0 +1,143 @@
import GlobalEvents from "/app/js/common/EventCaller.js";
import Utils from "/app/js/common/Utils.js";
import NESPalette from "/app/js/models/NESPalette.js";


var Palettes = [];
var CurrentPaletteIndex = 0;

var BlockEmits = false;

class CTRLPalettesStore{
constructor(){}

get json(){
var d = {
cpi: CurrentPaletteIndex,
pals: []
};
for (let i=0; i < Palettes.length; i++){
d.pals.push([Palettes[i][0], Palettes[i][1].json]);
}
return JSON.stringify(d);
}

set json(j){
try {
var d = JSON.parse(j);
} catch (e) {
throw e;
}

if (d.hasOwnProperty("cpi") && d.hasOwnProperty("pals")){
if (Utils.isInt(d.cpi) && d.pals instanceof Array){
var newPalettes = []
for (let i=0; i < d.pals.length; i++){
if (d.pals[i] instanceof Array){
if (this.getPalette(d.pals[i][0]) === null){
var palette = new NESPalette();
try{
palette.json = d.pals[i][1]
} catch (e) {
console.log("Failed to create palette.", e.toString());
palette = null;
}
if (palette !== null){
newPalettes.push([d.pals[i][0], palette]);
}
}
}
}
CurrentPaletteIndex = 0
if (newPalettes.length > 0){
if (d.cpi >= 0 && d.cpi < newPalettes.length){
CurrentPaletteIndex = d.cpi;
}
Palettes = newPalettes;
GlobalEvents.emit("set_app_palette", Palettes[CurrentPaletteIndex][1]);
}
} else {
throw new TypeError("JSON Property Value types invalid.");
}
} else {
throw new TypeError("JSON missing expected properties.");
}
}

initialize(){
if (Palettes.length <= 0)
this.createPalette("Palette");
return this;
}

paletteIndexFromName(name){
for (let i=1; i < Palettes.length; i++){
if (Palettes[i][0] == name){
return i;
}
}
return -1;
}

getPalette(name){
var i = this.paletteIndexFromName(name);
return (i >= 0) ? Palettes[i][1] : null;
}

createPalette(name){
var palette = this.getPalette(name);
if (palette === null){
palette = new NESPalette();
palette.set_palette([
"0F",
"05","06","07",
"09","0A","0B",
"01","02","03",
"0D","00","20",
"15","16","17",
"19","1A","1B",
"11","21","31",
"1D","10","30"
]);
Palettes.push([name, palette]);
// TODO: Create an HTML entry for this new palette.

if (Palettes.length <= 1 && !BlockEmits){
GlobalEvents.emit("set_app_palette", palette);
}
}
return this;
}

removePalette(name){
// TODO: Write this function.
return this;
}

renamePalette(oldname, newname){
var i = paletteIndexFromName(oldname);
if (i < 0)
throw new ValueError("Failed to find palette named '" + oldname +"'. Cannot rename.");
Palettes[i][0] = newname;
return this;
}

activatePalette(name){
var i = this.paletteIndexFromName(name);
if (i >= 0 && CurrentPaletteIndex !== i){
CurrentPaletteIndex = i;
if (!BlockEmits){
GlobalEvents.emit("set_app_palette", Palettes[pindex][1]);
}
// TODO: Highlight palette HTML entry and unhighlight old one.
}
return this;
}
}


const instance = new CTRLPalettesStore();
export default instance;




+ 5
- 15
app/js/main.js View File

@@ -4,6 +4,7 @@ import Input from "/app/js/ui/Input.js";
import Modal from "/app/js/ui/Modal.js";
import CTRLPalettes from "/app/js/ctrls/CTRLPalettes.js";
import CTRLPainter from "/app/js/ctrls/CTRLPainter.js";
import CTRLPalettesStore from "/app/js/ctrls/CTRLPalettesStore.js";
import NESPalette from "/app/js/models/NESPalette.js";
import NESTile from "/app/js/models/NESTile.js";
import NESBank from "/app/js/models/NESBank.js";
@@ -30,22 +31,11 @@ function initialize(DOC){
//var nespainter = new NESPainter(DOC.getElementById("painter"));
CTRLPainter.initialize();
CTRLPalettesStore.initialize();

var palette = new NESPalette();
// TODO: At least define a more useful set of palettes. As it is, these are just random.
palette.set_palette([
"01",
11,12,13,
54,23,43,
23,18,11,
4,8,60,
63,0,11,
0,15,14,
9,0,32,
5,10,20
]);
console.log(palette.to_asm());
GlobalEvents.emit("set_app_palette", palette);
//console.log(palette.to_asm());
//GlobalEvents.emit("set_app_palette", palette);
// TODO: Drop all of this below test code... or put it in a dedicated test app.
var TileA = new NESTile();

Loading…
Cancel
Save