X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fcommons.js;h=2eb5e01401ab01d173e595a9800fb6e261fb5d5d;hb=ae4baf0b0142cc538df4370430f4971440b33ee6;hp=88b97e7e44f8fa9739ffcb9d917dcea822bde1ba;hpb=ecc7b610d0bd3d91ae4b99f036ef6e8c29a8b2ac;p=brisk.git diff --git a/web/commons.js b/web/commons.js index 88b97e7..2eb5e01 100644 --- a/web/commons.js +++ b/web/commons.js @@ -21,9 +21,20 @@ */ var PLAYERS_N = 3; +var EXIT_BAN_TIME = 900; function $(id) { return document.getElementById(id); } +function getStyle(x,IEstyleProp, MozStyleProp) +{ + if (x.currentStyle) { + var y = x.currentStyle[IEstyleProp]; + } else if (window.getComputedStyle) { + var y = document.defaultView.getComputedStyle(x,null).getPropertyValue(MozStyleProp); + } + return y; +} + /* replacement of setInterval on IE */ (function(){ /*if not IE, do nothing*/ @@ -247,17 +258,40 @@ function act_about() send_mesg("about"); } +function act_exitlock() +{ + send_mesg("exitlock"); +} + function safelogout() +{ + var res; + + if (g_exitlock < 3) + res = window.confirm("Sei sicuro di volere abbandonare la partita?\nATTENZIONE: se esci adesso senza il consenso degli altri giocatori non potrai sederti ai tavoli per "+(Math.floor(EXIT_BAN_TIME/60))+" minuti."); + else + res = window.confirm("Sei sicuro di volere abbandonare la partita?"); + if (res) + act_logout(g_exitlock); +} + +function act_lascio() +{ + send_mesg("lascio"); +} + +function safelascio() { var res; - res = window.confirm("Sei sicuro di volere abbandonare la partita?"); + res = window.confirm("Sei sicuro di volere lasciare questa mano?"); if (res) - act_logout(); + act_lascio(); } -function act_logout() + +function act_logout(exitlock) { - send_mesg("logout"); + send_mesg("logout|"+exitlock); } function act_reload() @@ -275,11 +309,6 @@ function act_shutdown() c++; } -function act_preout() -{ - act_logout(); -} - function postact_logout() { // alert("postact_logout"); @@ -314,9 +343,11 @@ function sleep(st, delay) function slowimg(img,x1,y1,deltat,free,action,srcend) { this.img = img; - this.x0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("left")); - // alert("img.x0 = "+this.x0); - this.y0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("top")); + // this.x0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("left")); + this.x0 = parseInt(getStyle(this.img,"left", "left")); +// alert("img.x0 = "+this.x0); + // this.y0 = parseInt(document.defaultView.getComputedStyle(this.img, "").getPropertyValue("top")); + this.y0 = parseInt(getStyle(this.img,"top", "top")); this.x1 = x1; this.y1 = y1; this.deltat = deltat; @@ -355,13 +386,14 @@ slowimg.prototype = { this.action = act; }, + settime: function(time) { - this.time = time; - this.step_n = parseInt(time / this.deltat); + this.time = (time < this.deltat ? this.deltat : time); + this.step_n = parseInt(this.time / this.deltat); this.dx = (this.x1 - this.x0) / this.step_n; this.dy = (this.y1 - this.y0) / this.step_n; - if (this.step_n * this.deltat == time) { + if (this.step_n * this.deltat == this.time) { this.step_n--; } this.step_free = parseInt(this.step_n * this.free); @@ -418,22 +450,24 @@ slowimg.prototype = { } } -var asta_xarr = new Array(0,66,133); +var asta_xarr = new Array(0,66,132); /* TODO: impostare gli onclick */ -function dispose_asta(idx, pnt) +function dispose_asta(idx, pnt, nopoint) { var i, btn, pass; - var btn; + for (i = 0 ; i < 10 ; i++) { btn = $("asta"+i); if (i < idx) { btn.src = "img/astapasso"+(pnt >= 0 ? "" : "_ro")+".png"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); pass = -1; } else { btn.src = "img/asta"+i+(pnt >= 0 ? "" : "_ro")+".png"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); pass = i; } if (i < 19) @@ -441,19 +475,22 @@ function dispose_asta(idx, pnt) else btn.style.left = asta_xarr[(i+1) % 3]; - btn.style.top = parseInt(i / 3) * 50+1; - // btn.style.visibility = "visible"; - - if (pnt >= 0) + btn.style.top = parseInt(i / 3) * 50 + (i == 9 ? 0 : 1); + + if (pnt >= 0) { eval("btn.onclick = function () { act_asta("+pass+",61); }"); - else + btn.style.cursor = "pointer"; + } + else { btn.onclick = null; + btn.style.cursor = "default"; + } } btn = $("astaptdiv"); btn.style.left = asta_xarr[i % 3]; - btn.style.top = parseInt(i / 3) * 50; + btn.style.top = parseInt(i / 3) * 50 - 2; // btn.style.visibility = "visible"; btn = $("astapt"); @@ -462,27 +499,67 @@ function dispose_asta(idx, pnt) btn = $("astaptsub"); btn.style.left = asta_xarr[i % 3]; - btn.style.top = 25 + parseInt(i / 3) * 50;; + btn.style.top = 25 + parseInt(i / 3) * 50 - 1; btn.src = "img/astaptsub"+(pnt >= 0 ? "" : "_ro")+".png"; - // btn.style.visibility = "visible"; - if (pnt >= 0) + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); + if (pnt >= 0) { btn.onclick = function () { act_asta(9,$("astapt").value); }; - else + btn.style.cursor = "pointer"; + } + else { btn.onclick = null; + btn.style.cursor = "default"; + } i+=1; - btn = $("astapasso2"); - btn.style.left = asta_xarr[i % 3]; - btn.style.top = parseInt(i / 3) * 50;; - btn.src = "img/astapasso"+(pnt >= 0 ? "" : "_ro")+".png"; - // btn.style.visibility = "visible"; - if (pnt >= 0) - btn.onclick = function () { act_asta(-1,0); }; - else + if (nopoint) { + btn = $("astapasso"); + btn.style.left = asta_xarr[i % 3]; + btn.style.top = parseInt(i / 3) * 50; + btn.src = "img/astapashalf"+(pnt >= 0 ? "" : "_ro")+".png"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); + if (pnt >= 0) { + btn.onclick = function () { act_asta(-1,0); }; + } + else { + btn.onclick = null; + } + + btn = $("astalascio"); + btn.style.left = asta_xarr[i % 3]; + btn.style.top = parseInt(i / 3) * 50 + 24; + btn.src = "img/astalascio.png"; + btn.style.visibility = "visible"; + btn.onclick = function () { safelascio(); }; + } + else { + btn = $("astapasso"); + btn.style.left = asta_xarr[i % 3]; + btn.style.top = parseInt(i / 3) * 50;; + btn.src = "img/astapasso"+(pnt >= 0 ? "" : "_ro")+".png"; + btn.style.cursor = (pnt >= 0 ? "pointer" : "default"); + if (pnt >= 0) { + btn.onclick = function () { act_asta(-1,0); }; + } + else { + btn.onclick = null; + } + + btn = $("astalascio"); + btn.style.visibility = "hidden"; btn.onclick = null; + } + // btn.style.visibility = "visible"; $("asta").style.visibility = "visible"; } +function asta_pnt_set(pnt) +{ + btn = $("astapt"); + var rpnt = (pnt < 0 ? -pnt : pnt); + btn.value = (rpnt < 61 ? 61 : (rpnt > 120 ? 120 : rpnt)); +} + function hide_asta() { $("asta").style.visibility = "hidden"; @@ -517,6 +594,7 @@ function notify(st, text, tout, butt, w, h) box.innerHTML = text; box.style.zIndex = 200; box.style.width = w+"px"; + box.style.marginLeft = -parseInt(w/2)+"px"; box.style.height = h+"px"; box.appendChild(clodiv); box.style.visibility = "visible"; @@ -664,17 +742,27 @@ function show_astat(zer,uno,due,tre,qua) } } +function exitlock_show(num, islock) +{ + g_exitlock = num; + + num = (num < 3 ? num : 3); + $("exitlock").src = "img/exitlock"+num+(islock ? "n" : "y")+".png"; + // alert("EXITLOCK: "+$("exitlock").src); + $("exitlock").style.visibility = "visible"; +} + var fin = 0; +// exitlock_show(0, true); + function table_init() { var sux = new Array("", "_ea", "_ne", "_nw", "_we"); remark_off(); - $("asta").style.visibility = "hidden"; $("caller").style.visibility = "hidden"; show_astat(-2,-2,-2,-2,-2); - for (i=0 ; i < 8 ; i++) { Drag.init($("card" + i), card_mouseup_cb); for (e = 0 ; e < PLAYERS_N ; e++) @@ -796,7 +884,7 @@ function room_checkspace(emme,tables,inpe) stand = ""; for (i = 0 ; i < inpe ; i++) { - stand += ""; + stand += ""; if ((i+1) % 4 == 0) { stand += ""; } @@ -804,13 +892,12 @@ function room_checkspace(emme,tables,inpe) stand += ""; $("standup").innerHTML = stand; - $("esco").innerHTML = ""; + $("esco").innerHTML = ""; } function playsound(tag, sound) { // g_withflash is a global var if (g_withflash) { - alert("PLAYSOUND "+sound); $(tag).innerHTML = '' + '' +
"+nome+""+nome+"