-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaxlet.js
180 lines (159 loc) · 4.8 KB
/
haxlet.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// Haxlet Scoreboard bookmarklet
// Copy 2013 Jason Kraft
(function(){
// the minimum version of jQuery we want
var v = "1.9.0";
var v1 = "1.10.0";
// check prior inclusion and version
if (window.jQuery === undefined || window.jQuery.fn.jquery < v) {
var done = false;
var script = document.createElement("script");
script.src = "http://ajax.googleapis.com/ajax/libs/jquery/" + v + "/jquery.min.js";
script.onload = script.onreadystatechange = function(){
if (!done && (!this.readyState || this.readyState == "loaded" || this.readyState == "complete")) {
done = true;
initMyBookmarklet();
}
};
document.getElementsByTagName("head")[0].appendChild(script);
var done1 = false;
var script1 = document.createElement("script");
script1.src = "http://ajax.googleapis.com/ajax/libs/jquery/" + v1 + "/jquery-ui.js";
script1.onload = script.onreadystatechange = function(){
if (!done && (!this.readyState || this.readyState == "loaded" || this.readyState == "complete")) {
done = true;
initMyBookmarklet();
}
};
document.getElementsByTagName("head")[0].appendChild(script1);
} else {
initMyBookmarklet();
}
function initMyBookmarklet() {
(window.myBookmarklet = function() {
// your JavaScript code goes here!
$('head').load('https://www.dropbox.com/s/6l2egptm6hdrc9h/haxlet-style.html');
$('body').load('https://www.dropbox.com/s/ohg98wbszzt9iid/haxlet-divs.html');
var blueScore = 0;
var redScore = 0;
var paused = false;
$('#scoreboard').draggable();
$('#scoreleft').dblclick(function(e){
$(this).focus();
});
$('#scoreright').dblclick(function(e){
$(this).focus();
});
$(document).ready(function(e) {
paused = true;
interval1 = clearInterval(interval1);
});
$("#scoreright").keypress(function(e){
if (e.which == 13)
this.blur();
return e.which != 13;
});
$("#scoreleft").keypress(function(e){
if (e.which == 13)
this.blur();
return e.which != 13;
});
$("#reset").click(function(e){
minutes = 5;
seconds = 0;
$("#timepiece").text("5:00");
interval1 = clearInterval(interval1);
paused = true;
$("#scoreleft").text("Blue Team");
$("#scoreright").text("Red Team");
blueScore = 0;
redScore = 0;
$("#scorepieceb").text("" + blueScore);
$("#scorepiecer").text("" + redScore);
$('#announcer').hide().text("| Game reset").fadeIn("fast").delay(200).fadeOut("fast");
});
$("#incrementb").click(function(){
blueScore++;
$("#scorepieceb").fadeOut("fast").text("" + blueScore).fadeIn("fast");
bname = $('#scoreleft').text();
$('#announcer').hide().text("| "+ bname +" scores!").fadeIn("fast").delay(1000).fadeOut("fast");
interval1 = clearInterval(interval1);
paused = true;
});
$("#incrementr").click(function(){
redScore++;
$("#scorepiecer").fadeOut("fast").text("" + redScore).fadeIn("fast");
rname = $('#scoreright').text();
$('#announcer').hide().text("| "+ rname +" scores!").fadeIn("fast").delay(1000).fadeOut("fast");
interval1 = clearInterval(interval1);
paused = true;
});
$("#decrementb").click(function(){
blueScore--;
$("#scorepieceb").fadeOut("fast").text("" + blueScore).fadeIn("fast");
});
$("#decrementr").click(function(){
redScore--;
$("#scorepiecer").fadeOut("fast").text("" + redScore).fadeIn("fast");
});
var minutes = 5;
var seconds = 0;
var secPad = "";
function pad (str, max) {
return str.length < max ? pad("0" + str, max) : str;
}
function timer(){
seconds--;
if (seconds < 0)
{
seconds = 59;
minutes--;
}
if (minutes < 0)
{
seconds = 0;
minutes = 0;
interval1 = clearInterval(interval1);
}
secPad = pad("" + seconds, 2);
$("#timepiece").text(minutes + ":" + secPad);
}
var interval1 = setInterval(function(){ timer() }, 1000);
$('#pause').click(function() {
if (paused == false)
{
interval1 = clearInterval(interval1);
paused = true;
$("#timepiece").fadeOut("fast").fadeIn("fast");
$('#announcer').hide().text("| Game paused").fadeIn("fast").delay(200).fadeOut("fast");
}
else
{
interval1 = setInterval(function(){ timer() }, 1000);
paused = false;
$("#timepiece").fadeOut("fast").fadeIn("fast");
$('#announcer').hide().text("| Game unpaused").fadeIn("fast").delay(200).fadeOut("fast");
}
});
var bname = "";
var rname = "";
$('#swapper').click(function() {
bname = $('#scoreleft').text();
rname = $('#scoreright').text();
var tempscore = blueScore;
blueScore = redScore;
redScore = tempscore;
$('#scoreright').fadeOut("fast").text(bname).fadeIn("fast");
$('#scoreleft').fadeOut("fast").text(rname).fadeIn("fast");
$("#scorepieceb").fadeOut("fast").text("" + blueScore).fadeIn("fast");
$("#scorepiecer").fadeOut("fast").text("" + redScore).fadeIn("fast");
interval1 = clearInterval(interval1);
paused = true;
minutes = 5;
seconds = 0;
$("#timepiece").fadeOut("fast").text("5:00").fadeIn("fast");
$('#announcer').hide().text("| Teams switched").fadeIn("fast").delay(200).fadeOut("fast");
});
})();
}
})();