forked from santanche/mlca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlca_IDisplay.js
149 lines (123 loc) · 4.34 KB
/
mlca_IDisplay.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
IDisplay:
-canvas: holds Html5 canvas used for drawing on the page
-ctx: holds reference to Html5 canvas 2d context, used for drawing on the canvas
-cellSize: the size in pixels of the Cells
-dimensions: the number of cells in the x and y coordinates
-selectedCell: coordinate of the cell clicked by the user
-selectedLayer: layer selected by the user
specs{
canvas,
ctx,
cellSize,
dimensions
}
-onClick(e): event handled by the HTML onClick, alternate the state of the cell clicked by the user.
+returnLayer(): returns the selected layer
+drawBackground(color): draws the background of the canvas according to the color given (only visible if the cells are not opaque)
*/
mlca.IDisplay = function(specs){
'use strict';
this.canvas = specs.canvas;
this.ctx = specs.ctx;
this.dimensions = specs.dimensions;
this.cellSize = specs.cellSize;
this.returnLayer = function(){
var i;
for(i = 0; i<mlca.layerList.length; i++){
if(!mlca.layerList[i].isVisible){
return mlca.layerList[i-1];
}
}
var last = mlca.layerList.length-1;
return mlca.layerList[last];
}
var selectedCell = {x:0,y:0};
var selectedLayer;
var that = this;
var changeCell = function(e){
selectedLayer = that.returnLayer();
//Case the layer is locked
if(selectedLayer.lock){
return;
}
mlca.automaton.play = false;
selectedCell.x = Math.floor((e.pageX - canvas.offsetLeft -2)/specs.cellSize);
selectedCell.y = Math.floor((e.pageY - canvas.offsetTop -2)/specs.cellSize);
//Placeholder
selectedLayer.write(
selectedCell,
selectedLayer.interfaceData.stateAlternate(
selectedLayer.read(selectedCell)
),
true);
// End placeholder
mlca.automaton.draw();
console.log(selectedCell);
}
this.canvas.addEventListener('click',changeCell);
};
mlca.IDisplay.prototype = {
init:function(){
'use strict';
},
drawGrid:function(){
'use strict';
},
drawLayer:function(){
'use strict';
},
drawBackground:function(color){
'use strict';
this.canvas.width = this.cellSize * this.dimensions.x + 1;
this.canvas.height = this.cellSize * this.dimensions.y + 1;
if (color === undefined){
color = 'white';
}
this.ctx.fillStyle = color;
this.ctx.fillRect(1,1,this.canvas.width,this.canvas.height);
},
changeLayer:function(){
'use strict';
var i;
for(i = 0; i<mlca.layerList.length; i++){
if(!mlca.layerList[i].isVisible){
/*var newLayer = mlca.layerList[(i+1) % mlca.layerList.length];
mlca.layerList[i].isVisible = false;
newLayer.isVisible = true;
*/
mlca.layerList[i].isVisible = true;
var newLayer = mlca.layerList[i];
document.getElementById("selectedlayer").innerHTML = newLayer.id;
if(mlca.automaton.display.returnLayer().lock){
document.getElementById("lockstatus").innerHTML = " (LOCKED)";
}
else{
document.getElementById("lockstatus").innerHTML = "";
}
//this.drawBackground();
this.drawLayer(newLayer);
this.drawGrid();
break;
}
if(i === mlca.layerList.length - 1 && mlca.layerList[i].isVisible === true){
for(i = 0; i<mlca.layerList.length;i++){
mlca.layerList[i].isVisible = false;
}
mlca.layerList[0].isVisible = true;
var newLayer = mlca.layerList[0];
document.getElementById("selectedlayer").innerHTML = newLayer.id;
if(mlca.automaton.display.returnLayer().lock){
document.getElementById("lockstatus").innerHTML = " (LOCKED)";
}
else{
document.getElementById("lockstatus").innerHTML = "";
}
this.drawBackground();
this.drawLayer(newLayer);
this.drawGrid();
break;
}
}
}
};