소스 검색

Better handling of the EventCaller.emit() method for argument passing.

dev-tmpl
Bryan Miller 6 년 전
부모
커밋
2eb7cccd73
2개의 변경된 파일10개의 추가작업 그리고 4개의 파일을 삭제
  1. +7
    -1
      app/js/EventCaller.js
  2. +3
    -3
      app/js/NESPalette.js

+ 7
- 1
app/js/EventCaller.js 파일 보기

this.__listeners = {}; this.__listeners = {};
} }


emit(eventName, args=null){
emit(){
var args = Array.from(arguments);
if (args.length <= 0)
throw new Error("Missing required eventName argument.");
var eventName = args[0];
args = args.slice(1);

if (typeof(eventName) !== 'string') if (typeof(eventName) !== 'string')
throw new TypeError("Expected eventName to be string."); throw new TypeError("Expected eventName to be string.");
if (eventName.length <= 0) if (eventName.length <= 0)

+ 3
- 3
app/js/NESPalette.js 파일 보기

} }
} }
} }
this.emit("palettes_changed", [{type:"ALL"}]);
this.emit("palettes_changed", {type:"ALL"});
return this; return this;
} }


} }
if (pci == 0){ if (pci == 0){
this.__BGColor = sci; this.__BGColor = sci;
this.emit("palettes_changed", [{type:"ALL", cindex:0}]);
this.emit("palettes_changed", {type:"ALL", cindex:0});
} else { } else {
this.__palette[(p*3) + (pci-1)] = sci; this.__palette[(p*3) + (pci-1)] = sci;
this.emit("palettes_changes", [{type:(p < 4) ? "TILE" : "SPRITE", pindex:p, cindex:pci}]);
this.emit("palettes_changes", {type:(p < 4) ? "TILE" : "SPRITE", pindex:p, cindex:pci});
} }
return this; return this;
} }

Loading…
취소
저장