X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fcommons.js;h=5079a8b9f0c9859b622966f34e26b3183db310ad;hb=1c864a7f5b393bddf3ef4ce94886703d2ac3b21c;hp=0ad767e8cb8b07b7ce210513f1ea3d519b8a8c57;hpb=f406d58f75cd486eaab74be94faf70d516684e5a;p=brisk.git diff --git a/web/commons.js b/web/commons.js index 0ad767e..5079a8b 100644 --- a/web/commons.js +++ b/web/commons.js @@ -90,7 +90,7 @@ function reset_images() function update_images() { - $("imgct").innerHTML = "Immagini caricate "+g_preload_imgsz_arr[g_imgct]+"%."; + // $("imgct").innerHTML = "Immagini caricate "+g_preload_imgsz_arr[g_imgct]+"%."; if (g_imgct < g_preload_img_arr.length) setTimeout(preload_images, 100, g_preload_img_arr, g_imgct); g_imgct++; @@ -204,11 +204,39 @@ function act_tableinfo() send_mesg("tableinfo"); } +function act_help() +{ + send_mesg("help"); +} + +function safelogout() +{ + var res; + + res = window.confirm("Sei sicuro di volere abbandonare la partita?"); + if (res) + act_logout(); +} function act_logout() { send_mesg("logout"); } +function act_reload() +{ + window.onunload = null; + document.location.reload(); +} + +function act_shutdown() +{ + var c = 0; + + send_mesg("shutdown"); + while (xhr_wr.readyState != 4) + c++; +} + function act_preout() { act_logout(); @@ -221,7 +249,7 @@ function postact_logout() xhr_rd.abort(); } catch (e) {} - eraseCookie("sess"); + // eraseCookie("sess"); document.location.assign("index.php"); } @@ -248,9 +276,9 @@ function sleep(st, delay) function slowimg(img,x1,y1,deltat,free,action,srcend) { this.img = img; - this.x0 = parseInt(window.getComputedStyle(this.img, "").getPropertyValue("left")); + this.x0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("left")); // alert("img.x0 = "+this.x0); - this.y0 = parseInt(window.getComputedStyle(this.img, "").getPropertyValue("top")); + this.y0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("top")); this.x1 = x1; this.y1 = y1; this.deltat = deltat; @@ -428,12 +456,14 @@ function notify(st, ancestor, text, tout, butt) var t = this; this.st = st; + this.ancestor = ancestor; this.st.st_loc_new++; clo = document.createElement("input"); clo.type = "submit"; + clo.className = "button"; clo.value = butt; clo.obj = this; clo.onclick = this.input_hide; @@ -543,10 +573,16 @@ function set_names(so,ea,ne,nw,we) { // alert("EA: "+ea); $("name").innerHTML = so; + $("name").title = so; $("name_ea").innerHTML = ea; + $("name_ea").title = ea; $("name_ne").innerHTML = ne; + $("name_ne").title = ne; $("name_nw").innerHTML = nw; + $("name_nw").title = nw; $("name_we").innerHTML = we; + $("name_we").title = we; + return; } @@ -667,16 +703,58 @@ function eraseCookie(name) { createCookie(name,"",-1); } +var onunload_times = 0; -/* -window.onload = function() { - $("log").innerHTML += " xxxxxxxxxxxxxxxxxxxxxONLOAD
"; - // $("imm2").style.left = 600; - // $("imm2").style.top = 400; - var zigu = new slowimg($("imm"),300,100,15,"fin"); - zigu.settime(1000); - zigu.start(); - // setTimeout(function() { alert("FIN:" + fin); }, 5000); +function onunload_cb () { + var u = 0; + if (onunload_times == 0) { + var res = window.confirm(" Vuoi veramente abbandonare la briscola ?\n(clicca annulla o cancel se vuoi ricaricare la briscola)"); + if (res == true) { + the_end = true; + act_shutdown(); + while (1) + u++; + } + else { + try { + location = self.location; + } catch (e) { + alert("Ripristino della briscola fallito, per non perdere la sessione ricaricare la pagina manualmente."); + } + } + onunload_times++; + } + + return(false); +} + + +function room_checkspace(emme,tables,inpe) +{ + nome = ""; + for (i = 0 ; i < emme ; i++) + nome += "m"; + nome += ""; + + alta = ""; + for (i = 0 ; i < 5 ; i++) + alta += nome+"
"; + + for (i = 0 ; i < tables ; i++) { + $("table"+i).innerHTML = alta; + $("table_act"+i).innerHTML = ""; + } + + stand = ""; + for (i = 0 ; i < inpe ; i++) { + stand += ""; + if ((i+1) % 4 == 0) { + stand += ""; + } + } + stand += ""; + $("standup").innerHTML = stand; + + $("esco").innerHTML = ""; } -*/
"+nome+"