-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathshipyard.js
44 lines (33 loc) · 1.62 KB
/
shipyard.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 timer(timeLeft, timeForOneUnit, totalTimeLeft, amount, unitName, page) {
var countdown = function () {
var hours = parseInt(timeLeft / 3600, 10);
var minutes = parseInt(timeLeft / 60, 10) - (60 * hours);
var seconds = parseInt(timeLeft % 60, 10);
hours = hours < 10 ? "0" + hours : hours;
minutes = minutes < 10 ? "0" + minutes : minutes;
seconds = seconds < 10 ? "0" + seconds : seconds;
document.getElementById("shipyard_timeleft").innerText = hours + ":" + minutes + ":" + seconds;
totalTimeLeft--;
var totalHours = parseInt(totalTimeLeft / 3600, 10);
var totalMinutes = parseInt(totalTimeLeft / 60, 10) - (60 * totalHours);
var totalSeconds = parseInt(totalTimeLeft % 60, 10);
totalHours = totalHours < 10 ? "0" + totalHours : totalHours;
totalMinutes = totalMinutes < 10 ? "0" + totalMinutes : totalMinutes;
totalSeconds = totalSeconds < 10 ? "0" + totalSeconds : totalSeconds;
document.getElementById("shipyard_total_timeleft").innerText = totalHours + ":" + totalMinutes + ":" + totalSeconds;
if (--timeLeft <= 0) {
amount--;
// restart timer ?
if(amount > 0) {
timeLeft = timeForOneUnit;
document.getElementById("shipyard_queue").firstElementChild.innerHTML = amount + " " + unitName;
} else {
window.setTimeout(function () {
window.location.href ="game.php?page=" + page;
}, 500);
}
}
setTimeout(countdown, 1000);
};
countdown();
}