-
Notifications
You must be signed in to change notification settings - Fork 3
/
ButtonMasher.js
54 lines (43 loc) · 1.61 KB
/
ButtonMasher.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
/*
Copyright 2011 Brandon Lockaby
This file is part of JSPDP.
https://github.com/brandon-lockaby/JSPDP
JSPDP is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
JSPDP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with JSPDP. If not, see <http://www.gnu.org/licenses/>.
*/
JSPDP.ButtonMasher = function() {
}
var proto = (JSPDP.ButtonMasher.prototype = {});
proto.init = function(tableau, cursor) {
this.tableau = tableau;
this.cursor = cursor;
return this;
};
proto.runTick = function() {
var highest = -1;
this.tableau.eachPanel(function(panel) {
if(!panel.isAir() && panel.row > highest) highest = panel.row;
});
if(!this.tableau.active && highest < 10) {
this.cursor.startAction(JSPDP.Cursor.EAction.Lift);
} else {
var behavior = 1;
if(behavior == 0) {
var row = Math.floor(Math.random() * (this.tableau.dimensions.height - 1));
var col = Math.floor(Math.random() * (this.tableau.dimensions.width - 1));
this.cursor.moveTo(row, col);
this.cursor.startAction(JSPDP.Cursor.EAction.Swap1);
} else if(behavior == 1) {
var action = Math.ceil(Math.random() * JSPDP.Cursor.EAction.LENGTH);
this.cursor.startAction(action);
}
}
};