A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

294 行
7.4KB

  1. import Utils from "/app/js/common/Utils.js";
  2. import GlobalEvents from "/app/js/common/EventCaller.js";
  3. import Input from "/app/js/ui/Input.js";
  4. import NESPalette from "/app/js/models/NESPalette.js";
  5. //import NESTile from "/app/js/models/NESTile.js";
  6. //import NESBank from "/app/js/models/NESBank.js";
  7. import ISurface from "/app/js/ifaces/ISurface.js";
  8. const EL_CANVAS_ID = "painter";
  9. /* --------------------------------------------------------------------
  10. * Univeral data and functions.
  11. ------------------------------------------------------------------- */
  12. var canvas = null;
  13. var context = null;
  14. var ctximg = null;
  15. function OpenCanvasPixels(){
  16. if (context !== null){
  17. if (ctximg === null){
  18. ctximg = context.getImageData(0,0,Math.floor(canvas.clientWidth),Math.floor(canvas.clientHeight));
  19. }
  20. return (ctximg !== null)
  21. }
  22. return false;
  23. }
  24. function PutCanvasPixel(i,j,size,color){
  25. if (ctximg === null)
  26. return;
  27. size = Math.ceil(size);
  28. if (size <= 0){return;}
  29. var cw = Math.floor(canvas.clientWidth);
  30. var ch = Math.floor(canvas.clientHeight);
  31. var r = parseInt(color.substring(1, 3), 16);
  32. var g = parseInt(color.substring(3, 5), 16);
  33. var b = parseInt(color.substring(5, 7), 16);
  34. var idat = ctximg.data;
  35. for (var y=j; y < j+size; y++){
  36. for (var x=i; x < i+size; x++){
  37. if (x >= 0 && x < cw && y >= 0 && y < ch){
  38. var index = (y*cw*4) + (x*4);
  39. idat[index] = r;
  40. idat[index+1] = g;
  41. idat[index+2] = b;
  42. }
  43. }
  44. }
  45. }
  46. function CloseCanvasPixels(){
  47. if (ctximg !== null){
  48. context.putImageData(ctximg, 0, 0);
  49. ctximg = null;
  50. }
  51. }
  52. function ResizeCanvasImg(w, h){
  53. if (canvas !== null){
  54. canvas.width = w;
  55. canvas.height = h;
  56. }
  57. };
  58. // Handling window resize events...
  59. var HANDLE_Resize = Utils.debounce(function(e){
  60. if (canvas !== null){
  61. ResizeCanvasImg(
  62. canvas.clientWidth,
  63. canvas.clientHeight
  64. );
  65. GlobalEvents.emit("resize", canvas.clientWidth, canvas.clientHeight);
  66. }
  67. }, 250);
  68. window.addEventListener("resize", HANDLE_Resize);
  69. // Setting-up Input controls.
  70. var input = new Input();
  71. input.enableKeyboardInput(true);
  72. input.enableMouseInput(true);
  73. input.preventDefaults = true;
  74. // Mouse handling...
  75. /*input.listen("mousemove", handle_mouseevent);
  76. input.listen("mousedown", handle_mouseevent);
  77. input.listen("mouseup", handle_mouseevent);
  78. input.listen("mouseclick", handle_mouseclickevent);
  79. */
  80. /* --------------------------------------------------------------------
  81. * CTRLPainter
  82. * Actual controlling class.
  83. ------------------------------------------------------------------- */
  84. // For reference...
  85. // https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/stroke
  86. class CTRLPainter {
  87. constructor(){
  88. this.__scale = 1.0; // This is the scale the painter will display source information.
  89. this.__offset = [0.0, 0.0]; // This is the X,Y offset from origin to display source information.
  90. this.__onePaletteMode = true; // If true, ALL tiles will be drawing using the same palette.
  91. this.__brushSize = 1;
  92. this.__brushColor = 0;
  93. this.__brushPalette = 0;
  94. this.__gridEnabled = false;
  95. this.__gridSize = 1;
  96. this.__surface = null;
  97. var self = this;
  98. var RenderD = Utils.throttle((function(){
  99. this.render();
  100. }).bind(this), 20);
  101. var handle_resize = (function(w,h){
  102. this.render();
  103. }).bind(this);
  104. GlobalEvents.listen("resize", handle_resize);
  105. var handle_change_surface = (function(surf){
  106. if (!(surf instanceof ISurface)){
  107. console.log("WARNING: Attempted to set painter to non-surface instance.");
  108. return;
  109. }
  110. this.__surface = surf;
  111. this.center_surface();
  112. RenderD();
  113. }).bind(this);
  114. GlobalEvents.listen("change_surface", handle_change_surface);
  115. var handle_color_change = (function(pi, ci){
  116. this.__brushPalette = pi;
  117. this.__brushColor = ci;
  118. }).bind(this);
  119. GlobalEvents.listen("active_palette_color", handle_color_change);
  120. var handle_offset = (function(e){
  121. this.__offset[0] += e.x - e.lastX;
  122. this.__offset[1] += e.y - e.lastY;
  123. RenderD();
  124. }).bind(this);
  125. input.listen("shift+mouseleft+mousemove", handle_offset);
  126. var handle_scale = (function(e){
  127. if (e.delta < 0){
  128. this.scale_down();
  129. } else if (e.delta > 0){
  130. this.scale_up();
  131. }
  132. if (e.delta !== 0)
  133. RenderD();
  134. }).bind(this);
  135. input.listen("wheel", handle_scale);
  136. }
  137. get onePaletteMode(){return this.__onePaletteMode;}
  138. set onePaletteMode(e){
  139. this.__onePaletteMode = (e === true);
  140. this.render();
  141. }
  142. get scale(){
  143. return this.__scale;
  144. }
  145. set scale(s){
  146. if (typeof(s) !== 'number')
  147. throw new TypeError("Expected number value.");
  148. this.__scale = Math.max(0.1, Math.min(100.0, s));
  149. }
  150. get showGrid(){return this.__gridEnabled;}
  151. set showGrid(e){
  152. this.__gridEnabled = (e === true);
  153. }
  154. initialize(){
  155. if (canvas === null){
  156. canvas = document.getElementById(EL_CANVAS_ID);
  157. if (!canvas)
  158. throw new Error("Failed to obtain the canvas element.");
  159. context = canvas.getContext("2d");
  160. if (!context)
  161. throw new Error("Failed to obtain canvas context.");
  162. context.imageSmoothingEnabled = false;
  163. ResizeCanvasImg(canvas.clientWidth, canvas.clientHeight); // A forced "resize".
  164. input.mouseTargetElement = canvas;
  165. this.center_surface();
  166. }
  167. return this;
  168. }
  169. scale_up(amount=1){
  170. this.scale = this.scale + (amount*0.1);
  171. return this;
  172. }
  173. scale_down(amount=1){
  174. this.scale = this.scale - (amount*0.1);
  175. return this;
  176. }
  177. center_surface(){
  178. if (canvas === null || this.__surface === null)
  179. return;
  180. this.__offset[0] = Math.floor((canvas.clientWidth - this.__surface.width) * 0.5);
  181. this.__offset[1] = Math.floor((canvas.clientHeight - this.__surface.height) * 0.5);
  182. return this;
  183. }
  184. render(){
  185. if (context === null || this.__surface === null)
  186. return;
  187. // Get the contexts initial fillStyle. Don't want the render operation to override it.
  188. var fillStyle = context.fillStyle;
  189. var scalemult = 1.0/this.__scale;
  190. // Clearing the context surface...
  191. context.fillStyle = NESPalette.Default[4];
  192. context.fillRect(
  193. 0,0,
  194. Math.floor(canvas.clientWidth),
  195. Math.floor(canvas.clientHeight)
  196. );
  197. OpenCanvasPixels();
  198. for (var j = 0; j < this.__surface.height; j++){
  199. var y = Math.floor((j*scalemult) + this.__offset[1]);
  200. for (var i = 0; i < this.__surface.width; i++){
  201. var x = Math.floor((i*scalemult) + this.__offset[0]);
  202. if (x >= 0 && x < canvas.clientWidth && y >= 0 && y < canvas.clientHeight){
  203. var color = NESPalette.Default[4];
  204. if (this.__onePaletteMode){
  205. var pinfo = this.__surface.getColorIndex(i, j);
  206. if (pinfo.ci >= 0)
  207. color = NESPalette.Default[pinfo.ci];
  208. } else {
  209. color = this.__surface.getColor(i, j);
  210. }
  211. PutCanvasPixel(x,y, scalemult, color);
  212. //context.fillStyle = color;
  213. //context.fillRect(
  214. // x,y,
  215. // Math.ceil(scalemult), Math.ceil(scalemult)
  216. //);
  217. }
  218. }
  219. }
  220. CloseCanvasPixels();
  221. if (this.__gridEnabled && this.__scale > 0.5){
  222. // TODO: render the grid!
  223. }
  224. // Return to the context's initial fillStyle.
  225. context.fillStyle = fillStyle;
  226. return this;
  227. }
  228. }
  229. const instance = new CTRLPainter();
  230. export default instance;