forked from Moontorc/gb-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yrTimer.js
45 lines (36 loc) · 1 KB
/
yrTimer.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
// ------------------------------------------------------------------------------------------------
// タイマー
// ------------------------------------------------------------------------------------------------
// -------------------------------------------------------------------------------------------
// タイマー
function yrTimer()
{
this._update_ct = 0; // アップデート回数
this._ms_now = 0; // 現在時間(ミリ秒)
this._ms_acc = 0; // 累積時間(ミリ秒)
this._ms_delta = 0; // 差分時間(ミリ秒)
this.reset();
}
// リセット
yrTimer.prototype.reset = function()
{
const date = new Date();
const ms = date.getTime();
this._update_ct = 0;
this._ms_now = ms;
this._ms_acc = 0;
this._ms_delta = 0;
}
// 更新
yrTimer.prototype.update = function()
{
const date = new Date();
const ms = date.getTime();
if(this._update_ct > 0)
{
this._ms_delta = ms - this._ms_now;
this._ms_acc += this._ms_delta;
this._ms_now = ms;
}
this._update_ct++;
}