forked from JoshuaKGoldberg/Old-Deleted-FullScreenMario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.js
136 lines (123 loc) · 3.84 KB
/
data.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
/* Data.js */
// A few functions to store and display ~persistent data
"use strict";
// window.data stores the references to data and elements
function resetData() {
// Make sure there's no data display already
var check;
if(check = document.getElementById("data_display"))
body.removeChild(check);
if(!window.data) {
window.data = new Data();
// setDataDisplay();
}
}
// Keeps information displayed on the screen
function Data() {
this.mariopower = 1;
this.traveled = this.traveledold = 0; // only used for random
this.scorelevs = [100, 200, 400, 500, 800, 1000, 2000, 4000, 5000, 8000];
this.score = new DataObject(0, 6, "SCORE");
this.time = new DataObject(350, 3, "TIME");
this.world = new DataObject(0, 0, "WORLD");
this.coins = new DataObject(0, 0, "COINS");
this.lives = new DataObject(3, 1, "LIVES");
this.time.dir = -1;
this.scoreold = 0;
}
// Keeps a reference to the actual HTML element on display
function DataObject(amount, length, name) {
this.amount = amount;
this.length = length;
this.name = name;
this.element = createElement("td", {className: "indisplay"});
}
// Sets up the data display on the screen
function setDataDisplay() {
var display = createElement("table", {
id: "data_display",
className: "display",
style: {
width: (gamescreen.right + 14) + "px"
}}),
elems = ["score", "coins", "world", "time", "lives"];
body.appendChild(display);
data.display = display;
for(var i in elems) {
display.appendChild(data[elems[i]].element);
updateDataElement(data[elems[i]]);
}
body.appendChild(data.display);
}
// Getting rid of the display simply means removing it from body
function clearDataDisplay() {
body.removeChild(data_display);
}
// Starts the interval of updating data time
// 1 game second is about 25*16.667=416.675ms
function startDataTime() {
addEventInterval(updateDataTime, 25, Infinity, data.time);
}
function updateDataTime(me) {
// If the time direction isn't up (random map), check for timing
if(me.dir != 1) {
if(me.amount == 100) playCurrentThemeHurry();
else if(me.amount <= 0) killMario(mario, true);
}
// If time is still enabled, change it by 1
if(!notime) {
map.time = me.amount += me.dir;
updateDataElement(me);
}
}
// Updates a typical DataObject to its value
function updateDataElement(me) {
var text = me.name + "<br />" + (me.amount == "Infinity" ? "Inf" : me.amount);
me.element.innerHTML = text;
/*if(text.length > 14) me.element.style.width = "490px";
else */me.element.style.width = "";
}
function score(me, amount, appears) {
// Don't do negative values
if(amount <= 0) return;
// If it's in the form 'score(X)', return 'score(mario, x)'
if(arguments.length == 1) return score(mario, me);
// Keep the high score in localStorage, why not.
localStorage.highscore = max(localStorage.highscore, data.score.amount += amount);
// If it appears, add the element
if(appears) {
var text = addText(amount, me.left, me.top);
text.yvel = -unitsized4;
addEvent(killScore, 49, text);
}
while(data.score > 10000) { // you never know...
gainLife();
data.score.amount = data.score.amount % 10000;
}
updateDataElement(data.score);
}
function killScore(text) {
body.removeChild(text);
killNormal(text);
deleteThing(text, texts, texts.indexOf(text));
}
function findScore(lev) {
if(lev < data.scorelevs.length) return data.scorelevs[lev];
gainLife();
return -1;
}
function gainLife(num, nosound) {
data.lives.amount += typeof(num) == "number" ? num : 1;
if(!nosound) play("Gain Life");
updateDataElement(data.lives);
}
function setLives(num) {
data.lives.amount = Number(num);
updateDataElement(data.lives);
}
function storeMarioStats() {
data.mariopower = mario.power;
}
function clearMarioStats() {
data.mariopower = mario.power = 1;
}