|
| 1 | +var Observable = require("FuseJS/Observable") |
| 2 | + |
| 3 | +var cells = Observable() |
| 4 | +exports.cells = cells |
| 5 | + |
| 6 | +var numColumns = 30 |
| 7 | +var numRows = 30 |
| 8 | +exports.numColumns = Observable(numColumns) |
| 9 | +exports.numRows = Observable(numRows) |
| 10 | +exports.autoStep = Observable(true) |
| 11 | + |
| 12 | +function Cell(on) { |
| 13 | + this.on = Observable(on) |
| 14 | + this.count = 0 |
| 15 | +} |
| 16 | + |
| 17 | +for (var i=0; i < numRows; ++i) { |
| 18 | + for (var j=0; j < numColumns; ++j) { |
| 19 | + cells.add( new Cell( Math.random() > 0.8 ? true : false ) ) |
| 20 | + } |
| 21 | +} |
| 22 | + |
| 23 | +/** |
| 24 | + Get the cell at these coordinates (with wrap-around). |
| 25 | +*/ |
| 26 | +function getCell(row,col) { |
| 27 | + if (row < 0) { |
| 28 | + row += numRows |
| 29 | + } |
| 30 | + row = row % numRows |
| 31 | + if (col < 0) { |
| 32 | + col += numColumns |
| 33 | + } |
| 34 | + col = col % numColumns |
| 35 | + |
| 36 | + return cells.getAt(row * numColumns + col) |
| 37 | +} |
| 38 | + |
| 39 | +/** |
| 40 | + How many neighbours of this cell are "on" |
| 41 | +*/ |
| 42 | +function liveCount(row,col) { |
| 43 | + var c = 0 |
| 44 | + for (var i=-1; i <= 1; ++i) { |
| 45 | + for (var j=-1; j <= 1; ++j) { |
| 46 | + if (i==0 && j==0) { |
| 47 | + continue; |
| 48 | + } |
| 49 | + |
| 50 | + if (getCell(i+row,j+col).on.value) |
| 51 | + c++ |
| 52 | + } |
| 53 | + } |
| 54 | + |
| 55 | + return c |
| 56 | +} |
| 57 | + |
| 58 | +function autoStep() { |
| 59 | + step() |
| 60 | + //check speed change now instead of with valueChagned to avoid |
| 61 | + //odd time stretching while the user is interacting |
| 62 | + updateTimer(exports.autoStep.value, exports.speed.value) |
| 63 | +} |
| 64 | + |
| 65 | +function step() { |
| 66 | + |
| 67 | + //count neighbours prior to changing anything |
| 68 | + for (var i=0; i < numRows; ++i) { |
| 69 | + for (var j=0; j < numColumns; ++j) { |
| 70 | + var c = getCell(i,j) |
| 71 | + c.count = liveCount(i,j) |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + for (var i=0; i < numRows; ++i) { |
| 76 | + for (var j=0; j < numColumns; ++j) { |
| 77 | + var c = getCell(i,j) |
| 78 | + if (!c.on.value) { |
| 79 | + c.on.value = c.count == 3 |
| 80 | + } else if (c.count <2) { |
| 81 | + c.on.value = false |
| 82 | + } else if (c.count > 3) { |
| 83 | + c.on.value = false |
| 84 | + } |
| 85 | + } |
| 86 | + } |
| 87 | +} |
| 88 | + |
| 89 | +/** |
| 90 | + This callback is done in the context of a cell item in the UI, thus the `data` property is the Cell object. |
| 91 | +*/ |
| 92 | +exports.toggleCell = function(args) { |
| 93 | + args.data.on.value = !args.data.on.value |
| 94 | +} |
| 95 | + |
| 96 | +/** |
| 97 | + Turn off all cells. |
| 98 | +*/ |
| 99 | +exports.clear = function(args) { |
| 100 | + for (var i=0; i < cells.length; ++i) { |
| 101 | + cells.getAt(i).on.value = false |
| 102 | + } |
| 103 | +} |
| 104 | + |
| 105 | +exports.step = step |
| 106 | + |
| 107 | + |
| 108 | +//timer control |
| 109 | +var intervalSpeed = 0 //0 indicates no interval setup |
| 110 | +var interval = null |
| 111 | +exports.speed = Observable(500) |
| 112 | +updateTimer(exports.autoStep.value,exports.speed.value) |
| 113 | + |
| 114 | +exports.autoStepChanged = function(args) { |
| 115 | + //we must use the `args.value` since `exports.autoStep.value` may not yet be updated |
| 116 | + updateTimer(args.value, exports.speed.value) |
| 117 | + //it feels more responsive to do something immediately when turning on |
| 118 | + if (args.value) { |
| 119 | + step() |
| 120 | + } |
| 121 | +} |
| 122 | + |
| 123 | +/** |
| 124 | + Match the actual interval timer to the desired timer. |
| 125 | +*/ |
| 126 | +function updateTimer(on, speed) { |
| 127 | + if (!on) { |
| 128 | + speed = 0 |
| 129 | + } |
| 130 | + |
| 131 | + if (speed == intervalSpeed) { |
| 132 | + return |
| 133 | + } |
| 134 | + |
| 135 | + if (interval != null) { |
| 136 | + clearInterval(interval) |
| 137 | + } |
| 138 | + |
| 139 | + intervalSpeed = speed |
| 140 | + if (speed > 0) { |
| 141 | + interval = setInterval( autoStep, intervalSpeed ) |
| 142 | + } |
| 143 | +} |
0 commit comments