]> git.sesse.net Git - pr0n/blob - files/pr0n-fullscreen.js
37fd67367cf1034c53ca9b58519745b0594b06c2
[pr0n] / files / pr0n-fullscreen.js
1 var req;
2
3 function init_ajax()
4 {
5         req = false;
6
7         if (window.XMLHttpRequest) {
8                 // Mozilla/Safari
9                 try {
10                         req = new XMLHttpRequest();
11                 } catch(e) {
12                         req = false;
13                 }
14         } else if (window.ActiveXObject) {
15                 // IE/Windows
16                 try {
17                         req = new ActiveXObject("Msxml2.XMLHTTP");
18                 } catch(e) {
19                         try {
20                                 req = new ActiveXObject("Microsoft.XMLHTTP");
21                         } catch(e) {
22                                 req = false;
23                         }
24                 }
25         }
26 }
27
28 function find_width()
29 {
30         if (typeof(window.innerWidth) == 'number') {
31                 // non-IE
32                 return [window.innerWidth, window.innerHeight];
33         } else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
34                 // IE 6+ in 'standards compliant mode'
35                 return [document.documentElement.clientWidth, document.documentElement.clientHeight];
36         } else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
37                 // IE 4-compatible
38                 return [document.body.clientWidth, document.body.clientHeight];
39         }
40         return [null,null];
41 }
42
43 /*
44  * pr0n can resize to any size we'd like, but we're much more likely
45  * to have this set of fixed-resolution screens cached, so to increase
46  * performance, we round down to the closest fit and use that. This 
47  * function is a pessimal estimate of what thumbnail size we can _always_
48  * fit on the screen -- it's right if and only if all images are 4:3
49  * (and landscape). If individual size information is available, use
50  * pick_image_size, below.
51  */
52 var fixed_sizes = [
53         [ 1600, 1200 ],
54         [ 1400, 1050 ],
55         [ 1280, 960 ],
56         [ 1024, 768 ],
57         [ 800, 600 ],
58         [ 640, 480 ],
59         [ 512, 384 ],
60         [ 320, 256 ],
61         [ 240, 192 ],
62         [ 120, 96 ],
63         [ 80, 64 ]
64 ];
65 function max_image_size(screen_size)
66 {
67         var i;
68         for (i = 0; i < fixed_sizes.length; ++i) {
69                 if (screen_size[0] >= fixed_sizes[i][0] && screen_size[1] >= fixed_sizes[i][1]) {
70                         return fixed_sizes[i];
71                 }
72         }
73         return [ 80, 64 ];
74 }
75
76 function pick_image_size(screen_size, image_size)
77 {
78         var i;
79         for (i = 0; i < fixed_sizes.length; ++i) {
80                 // this is a duplicate of pr0n's resizing code, hope for no floating-point
81                 // inaccuracies :-)
82                 var thumbxres = fixed_sizes[i][0];
83                 var thumbyres = fixed_sizes[i][1];
84                 var width = image_size[0];
85                 var height = image_size[1];
86
87                 if (!(thumbxres >= width && thumbyres >= height)) {
88                         var sfh = width / thumbxres;
89                         var sfv = height / thumbyres;
90                         if (sfh > sfv) {
91                                 width  /= sfh;
92                                 height /= sfh;
93                         } else {
94                                 width  /= sfv;
95                                 height /= sfv;
96                         }
97                         width = Math.floor(width);
98                         height = Math.floor(height);
99                 }
100
101                 if (screen_size[0] >= width && screen_size[1] >= height) {
102                         return fixed_sizes[i];
103                 }
104         }
105         return [ 80, 64 ];
106 }
107         
108 function display_image(width, height, evt, filename, element_id)
109 {
110         var url = "http://" + global_vhost + "/" + evt + "/" + width + "x" + height + "/" + global_infobox + filename;
111         var img = document.getElementById(element_id);
112         if (img !== null) {
113                 img.src = "data:";
114                 img.parentNode.removeChild(img);
115         }
116
117         img = document.createElement("img");
118         img.id = element_id;
119         img.alt = "";
120
121         if (img.src != url) {
122                 img.src = url;
123         }
124         
125         var main = document.getElementById("iehack");
126         main.appendChild(img);
127
128         return img;
129 }
130
131 function display_image_num(num, element_id)
132 {
133         var screen_size = find_width();
134         var adjusted_size;
135
136         if (global_image_list[num][2] == -1) {
137                 // no size information, use our pessimal guess
138                 adjusted_size = max_image_size(screen_size);
139         } else {
140                 adjusted_size = pick_image_size(screen_size, [ global_image_list[num][2], global_image_list[num][3] ]);
141         }
142
143         var img = display_image(adjusted_size[0], adjusted_size[1], global_image_list[num][0], global_image_list[num][1], element_id);
144         if (element_id == "image") {
145                 center_image(num);
146         }
147         return img;
148 }
149
150 function prepare_preload(img, num)
151 {
152         // cancel any pending preload
153         var preload = document.getElementById("preload");
154         if (preload !== null) {
155                 preload.src = "data:";
156                 preload.parentNode.removeChild(preload);
157         }
158
159         // grmf -- IE doesn't fire onload if the image was loaded from cache, so check for
160         // completeness first; should at least be _somewhat_ better
161         if (img.complete) {
162                 display_image_num(num, "preload");
163         } else {
164                 img.onload = function() { display_image_num(num, "preload"); };
165         }       
166 }
167
168 function can_go_next()
169 {
170         return (global_image_num < global_image_list.length - 1);
171 }
172
173 function can_go_previous()
174 {
175         return (global_image_num > 0);
176 }
177
178 function set_opacity(id, amount)
179 {
180         var elem = document.getElementById(id);
181         if (typeof(elem.style.opacity) != 'undefined') {            // W3C
182                 elem.style.opacity = amount;
183         } else if (typeof(elem.style.mozOpacity) != 'undefined') {  // older Mozilla
184                 elem.style.mozOpacity = amount;
185         } else if (typeof(elem.style.filter) != 'undefined') {      // IE
186                 if (elem.style.filter.indexOf("alpha") == -1) {
187                         // add an alpha filter if there isn't one already
188                         if (elem.style.filter) {
189                                 elem.style.filter += " ";
190                         } else {
191                                 elem.style.filter = "";
192                         }
193                         elem.style.filter += "alpha(opacity=" + (amount*100.0) + ")";
194                 } else {        
195                         // ugh? this seems to break in color index mode...
196                         if (typeof(elem.filters) == 'unknown') {
197                                 elem.style.filter = "alpha(opacity=" + (amount*100.0) + ")";
198                         } else {
199                                 elem.filters.alpha.opacity = (amount * 100.0);
200                         }
201                 }
202         } else {                             // no alpha support
203                 if (amount > 0.5) {
204                         elem.style.visibility = "visible";
205                         elem.style.zorder = 1;
206                 } else {
207                         elem.style.visibility = "hidden";
208                 }
209         }
210 }
211
212 function center_image(num)
213 {
214         var screen_size = find_width();
215         var adjusted_size;
216         
217         if (global_image_list[num][2] == -1) {
218                 // no size information, use our pessimal guess
219                 adjusted_size = max_image_size(screen_size);
220         } else {
221                 adjusted_size = pick_image_size(screen_size, [ global_image_list[num][2], global_image_list[num][3] ]);
222         }
223
224         // center the image on-screen
225         var main = document.getElementById("main");
226         main.style.position = "absolute";
227         main.style.left = (screen_size[0] - adjusted_size[0]) / 2 + "px";
228         main.style.top = (screen_size[1] - adjusted_size[1]) / 2 + "px"; 
229         main.style.width = adjusted_size[0] + "px";
230         main.style.height = adjusted_size[1] + "px";
231         main.style.lineHeight = adjusted_size[1] + "px"; 
232
233 }
234
235 function relayout()
236 {
237         var img = display_image_num(global_image_num, "image");
238         if (can_go_next()) {
239                 prepare_preload(img, global_image_num + 1);
240         }
241         
242         center_image(global_image_num);
243
244         set_opacity("previous", can_go_previous() ? 0.7 : 0.1);
245         set_opacity("next", can_go_next() ? 0.7 : 0.1);
246         set_opacity("close", 0.7);
247 }
248
249 function go_previous()
250 {
251         if (!can_go_previous()) {
252                 return;
253         }
254
255         var img = display_image_num(--global_image_num, "image");
256         if (can_go_previous()) {
257                 set_opacity("previous", 0.7);
258                 prepare_preload(img, global_image_num - 1);
259         } else {
260                 set_opacity("previous", 0.1);
261         }
262         set_opacity("next", can_go_next() ? 0.7 : 0.1);
263 }
264
265 function go_next()
266 {
267         if (!can_go_next()) {
268                 return;
269         }
270
271         var img = display_image_num(++global_image_num, "image");
272         if (can_go_next()) {
273                 set_opacity("next", 0.7);
274                 prepare_preload(img, global_image_num + 1);
275         } else {
276                 set_opacity("next", 0.1);
277         }
278         set_opacity("previous", can_go_previous() ? 0.7 : 0.1);
279 }
280
281 function do_close()
282 {
283         window.location = global_return_url;
284 }
285
286 function draw_text(msg)
287 {
288         // remove any text we might have left
289         var text = document.getElementById("text");
290         if (text !== null) {
291                 text.parentNode.removeChild(text);
292         }
293
294         text = document.createElement("p");
295         text.id = "text";
296         text.style.position = "absolute";
297         text.style.color = "white";
298         text.style.lineHeight = "24px";
299         text.style.font = "24px verdana, arial, sans-serif";
300         text.innerHTML = msg;
301
302         var main = document.getElementById("main");
303         main.appendChild(text);
304
305         text.style.left = (main.clientWidth - text.clientWidth) / 2 + "px";
306         text.style.top = (main.clientHeight - text.clientHeight) / 2 + "px";
307 }
308
309 function fade_text(opacity)
310 {
311         set_opacity("text", opacity);
312         if (opacity > 0.0) {
313                 opacity -= 0.03;
314                 if (opacity < 0.0) {
315                         opacity = 0.0;
316                 }
317                 setTimeout("fade_text(" + opacity + ")", 30);
318         } else {
319                 var text = document.getElementById("text");
320                 if (text !== null) {
321                         text.parentNode.removeChild(text);
322                 }
323         }
324 }
325
326 function select_image(evt, filename)
327 {
328         if (!req) {
329                 return;
330         }
331
332         draw_text("Selecting " + filename + "...");
333         
334         req.open("POST", "http://" + global_vhost + "/select", false);
335         req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
336         req.send("mode=single&event=" + evt + "&filename=" + filename);
337
338         setTimeout("fade_text(0.99)", 30);
339 }
340
341 function key_down(which)
342 {
343         if (which == 39) {   // right
344                 if (can_go_next()) {
345                         set_opacity("next", 0.99);
346                 }
347         } else if (which == 37) {   // left
348                 if (can_go_previous()) {
349                         set_opacity("previous", 0.99);
350                 }
351         } else if (which == 27) {   // escape
352                 set_opacity("close", 0.99);
353         }
354 }
355
356 function key_up(which) {
357         if (which == 39) {   // right
358                 if (can_go_next()) {
359                         set_opacity("next", 0.7);
360                         go_next();
361                 }
362         } else if (which == 37) {   // left
363                 if (can_go_previous()) {
364                         set_opacity("previous", 0.7);
365                         go_previous();
366                 }
367         } else if (which == 27) {   // escape
368                 set_opacity("close", 0.7);
369                 do_close();
370         } else if (which == 32 && global_select) {   // space
371                 select_image(global_image_list[global_image_num][0], global_image_list[global_image_num][1]);
372         }
373 }
374
375 // enable the horrible horrible IE PNG hack
376 function ie_png_hack()
377 {
378         var vstr = navigator.appVersion.split("MSIE");
379         var v = parseFloat(vstr[1]);
380         if (v >= 5.5 && v < 7.0 && document.body.filters) {
381                 var next = document.getElementById("next");
382                 next.outerHTML = "<span id=\"next\" style=\"display: inline-block; position: absolute; bottom: 0px; right: 0px; width: 50px; height: 50px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + next.src + "')\" onmousedown=\"if (can_go_next()) set_opacity('next', 1.0)\" onmouseup=\"if (can_go_next()) { set_opacity('next', 0.7); go_next(); }\" onmouseout=\"if (can_go_next()) { set_opacity('next', 0.7); }\" />";
383                 
384                 var previous = document.getElementById("previous");
385                 previous.outerHTML = "<span id=\"previous\" style=\"display: inline-block; position: absolute; bottom: 0px; right: 0px; width: 50px; height: 50px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + previous.src + "')\" onmousedown=\"if (can_go_previous()) set_opacity('previous', 1.0)\" onmouseup=\"if (can_go_previous()) { set_opacity('previous', 0.7); go_previous(); }\" onmouseout=\"if (can_go_previous()) { set_opacity('previous', 0.7); }\" />";
386                 
387                 var close = document.getElementById("close");
388                 close.outerHTML = "<span id=\"close\" style=\"display: inline-block; position: absolute; top: 0px; right: 0px; width: 50px; height: 50px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + close.src + "')\" onmousedown=\"set_opacity('close', 1.0)\" onmouseup=\"set_opacity('close', 0.7); do_close();\" onmouseout=\"set_opacity('close', 0.7);\" />";
389         }
390 }