-
Notifications
You must be signed in to change notification settings - Fork 0
/
movement.js
56 lines (46 loc) · 962 Bytes
/
movement.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
var bto;
if (bto == null)
bto = {};
else if (typeof bto != 'object')
throw "BTO is not valid: " + (typeof bto);
(function ()
{
function Movement(options)
{
options = options || {};
this.startTimestamp = typeof options.startTimestamp === "number" ? options.startTimestamp : null;
return this;
}
Movement.prototype = {
move: move,
moveInitial: moveInitial,
moveNext: moveNext
};
function move(position, timestamp)
{
var result;
if (typeof this.startTimestamp !== "number")
{
this.startTimestamp = timestamp;
result = this.moveInitial(position);
}
else
{
var duration = timestamp - this.latestTimestamp;
result = this.moveNext(position, duration);
}
this.latestTimestamp = timestamp;
return result;
}
function moveInitial(position)
{
// blank
return position;
}
function moveNext(position, duration)
{
// blank
return position;
}
bto.Movement = Movement;
})();