-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObjectGround.class.js
154 lines (119 loc) · 3.86 KB
/
ObjectGround.class.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
150
151
152
153
154
import { ObjectStatic } from './ObjectStatic.class.js'
import { EngineStateMachine } from './EngineStateMachine.class.js';
import { SensorGround } from './SensorGround.class.js';
var ObjectGround = function() {
var that = new ObjectStatic();
that.bootstrap = "new ObjectGround()";
that.default_sensor_height = 128;
that.name = 'ground';
that.in_air = false;
that.rolling = false;
that.get_state = function() {
};
that.Chill = function() {
var foobar = {};
foobar.id = 0;
foobar.name = 'Chill';
foobar.image = new Image();
foobar.image.src = 'images/Ground.png';
foobar.breakable = function(foo) { return true; };
foobar.loop = false;
foobar.length = 1;
foobar.frames = [];
foobar.frames[0] = [];
foobar.frames[0].width = 256;
foobar.frames[0].height = 190;
foobar.frames[0].margin = 0;
foobar.enter = function(sm, obj) {
obj.frame = 0;
};
foobar.update = function(sm, obj) {
};
foobar.exit = function(sm) {
};
return foobar;
};
that.initSensors = function() {
that.sensors = [];
for(var i=0; i<that.heightMaps['floor'].length; i++) {
var new_sensor = SensorGround(i);
// TODO wrong place , this first update should be taken care of by the engine
new_sensor.update(that); // important!
new_sensor.setHeight(that.default_sensor_height);
that.sensors.push(new_sensor);
}
};
that.initFlippedSensors = function() {
that.sensors_flipped = [];
for(var i=that.heightMaps['floor'].length-1; i>=0; i--) {
var new_sensor = SensorGround(i);
// TODO wrong place , this first update should be taken care of by the engine
new_sensor.update(that); // important!
new_sensor.setHeight(that.default_sensor_height);
that.sensors_flipped.push(new_sensor);
}
};
that.heightMaps['floor'] = [
// real heightmap:
//
// 3, 3, 3, 3, 3, 3, 3, 3, 4, 4,
// 4, 4, 4, 4, 4, 4, 1, 1, 1, 1,
// 1, 1, 1, 1, 3, 3, 3, 3, 3, 3,
// 3, 3, 2, 2, 2, 2, 2, 2, 2, 2,
// 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
// 3, 3, 3, 3, 3, 3, 1, 1, 1, 1,
// 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
// 2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
// 3, 3, 3, 3, 3, 3, 3, 3, 2, 2,
// 2, 2, 2, 2, 2, 2, 3, 3, 3, 3,
// 3, 3, 3, 3, 4, 4, 4, 4, 4, 4,
// 4, 4, 3, 3, 3, 3, 3, 3, 3, 3,
// 4, 4, 4, 4, 4, 4, 4, 4, 3, 3,
// 3, 3, 3, 3, 3, 3, 4, 4, 4, 4,
// 4, 4, 4, 4, 3, 3, 3, 3, 3, 3,
// 3, 3, 4, 4, 4, 4, 4, 4, 4, 4,
// 2, 2, 2, 2, 2, 2, 2, 2, 3, 3,
// 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
// 3, 3, 3, 3, 2, 2, 2, 2, 2, 2,
// 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
// 3, 3, 3, 3, 3, 3, 3, 3, 2, 2,
// 2, 2, 2, 2, 2, 2, 4, 4, 4, 4,
// 4, 4, 4, 4, 3, 3, 3, 3, 3, 3,
// 3, 3, 1, 1, 1, 1, 1, 1, 1, 1,
// 4, 4, 4, 4, 4, 4, 4, 4, 2, 2,
// 2, 2, 2, 2, 2, 2, ];
// make it even:
3, 3, 3, 3, 3, 3, 3, 3, 4, 4,
4, 4, 4, 4, 4, 4, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 2, 2,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
2, 2, 2, 2, 2, 2, ];
/*
* Create new State Machine
*/
that.sm = new EngineStateMachine();
that.sm.changeState( that.Chill(), that );
return that;
};
export { ObjectGround }