123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- function isSafari() {
- var ua = navigator.userAgent.toLowerCase();
- return ua.indexOf('safari') != -1 && ua.indexOf('chrome') == -1;
- }
- var svgNS = "http://www.w3.org/2000/svg";
- var color = ['#DE3F26','#606060','#48AF5E','#FFC800'];
- function parseUInt(x) { return x < 0 ?
- (x > -128 ? x & 255 >>> 0 : (x > -32768 ? x & 65535 >>> 0 : x >>> 0)) : x; }
- function statsRow(start_x,start_y,i,games) {
- var name = template_engine(
- '<tspan xmlns="http://www.w3.org/2000/svg" x="{this.x}" y="{this.y}">{this.body}</tspan>',{
- x: start_x,
- y: start_y+25*i,
- body: games[i].value[0][0] + " — " + parseUInt(games[i].value[0][1])});
- var element1 = svg(name);
- document.getElementById('Stat-Right').appendChild(element1);
- }
- function gameresultRow(start_x,start_y,i,results) {
- var name = results[i].value[0][0],
- round = results[i].value[0][2],
- total = results[i].value[0][3];
- round = round > 500000 ? -Math.round(round/1000000) : round;
- total = total > 500000 ? -Math.round(total/1000000) : total;
- var name = template_engine(
- '<tspan xmlns="http://www.w3.org/2000/svg" x="{this.x}" y="{this.y}">{this.body}</tspan>',{
- x: start_x,
- y: start_y+30*i,
- body: results[i].value[0][0] + " — " + round + "/" + total});
- var element1 = svg(name);
- document.getElementById('Overlay-Results').appendChild(element1);
- }
- function parseTransformAttribute(aa) {
- var a = aa.split(' ').join('');
- var b={};
- for (var i in a = a.match(/(\w+\((\-?\d+\.?\d*,?)+\))+/g)) { var c = a[i].match(/[\w\.\-]+/g); b[c.shift()] = c; }
- return b; }
- function svg(html) { return new DOMParser().parseFromString(html, "text/xml").firstChild; }
- function removeChilds(e) { var last; while (last = e.lastChild) e.removeChild(last); };
- function setPlayerName(e, playerName) {
- var dx = 15;
- document.getElementById(e+"-Name").setAttribute("y",27);
- document.getElementById(e+"-Name").setAttribute("x",dx);
- document.getElementById(e+"-Name").textContent = playerName;
- document.getElementById(e+"-Pad").setAttribute('width', document.getElementById(e+"-Name").getBBox().width + 25); }
- function template_engine(html, data) {
- var re = /{([^}]+)?}/g, code = 'var r=[];', cursor = 0;
- var add = function(line,js) {
- js? (code += 'r.push(' + line + ');') :
- (code += line != '' ? 'r.push("' + line.replace(/"/g, '\\"') + '");' : ''); // "
- return add; }
- while(match = re.exec(html)) {
- add(html.slice(cursor, match.index))(match[1],true);
- cursor = match.index + match[0].length; }
- add(html.substr(cursor, html.length - cursor));
- code += 'return r.join("");';
- return new Function(code.replace(/[\r\t\n]/g, '')).apply(data); }
- function discarder(name) { return template_engine(localStorage.getItem("svg/Discarder.svg?q=" + $.timestamp), { name: name }); }
- function initDiscards() {
- [ {name:"Gabrielo-Discard", hand:"Player-Left-Hand"},
- {name:"Alina-Discard", hand:"Player-Right-Hand"},
- {name:"Mustafa-Discard", hand:"Player-Center-Hand"},
- {name:"You-Discard", hand:"Player-Me-Hand"} ].map(function(e) {
- document.getElementById(e.name).appendChild(svg(discarder(e.hand)));
- });
- }
- function PatchSVG()
- {
- // $('Player-Statistics').hide();
- var playerInifoOnClick = [
- "Point-Table" ];
- playerInifoOnClick.map(function(x) {
- document.getElementById(x).style.cursor = "pointer";
- document.getElementById(x).onclick = requestPlayerInfo; });
- var onlineListOnClick = [
- "Online-Users",
- "Online-Users-Pad",
- "Online-Logo",
- "Users-Online-Message",
- "Users-Online-Number" ];
- onlineListOnClick.map(function(x) {
- document.getElementById(x).style.cursor = "pointer";
- document.getElementById(x).onclick = showOnlineList; });
- [ "Flag-tr", "Flag-en" ].map(function(x) { document.getElementById(x).onclick = translateScene; });
- var rulesOnClick = [
- "Rules",
- "Rules-Text",
- "Rules-Rectangle" ];
- rulesOnClick.map(function(x) {
- document.getElementById(x).style.cursor = "pointer";
- document.getElementById(x).onclick = showRules; });
- Core(ControllerScope);
- Core(DragScope);
- Core(DropScope);
- Core(TimerScope);
- Core(PlayerScope);
- Core(OkeyApiProviderScope);
- Core(CardScope);
- Core(HandScope);
- Core(DeckScope);
- Core(RosterScope);
- initDiscards();
- initChat();
- initChatSample();
- initEditorsSafari();
- initPauseOverlay();
- if ((hours() < 6 || hours() >= 18)) {
- $("#Sky").attr({fill:"#0E4B69"});
- $("#City").attr({fill:"#3B5998"});
- } else
- {
- $("#Sky").attr({fill:"#EDF9FF"});
- $("#City").attr({fill:"#DFF1F4"});
- }
- // document.addEventListener('touchmove',function(e) {e.preventDefault();},false);
- $svg.attr({preserveAspectRatio:"xMidYMid meet",width:"100%",height:"100%"});
- $("#Flag-en").hide();
- translateScene();
- }
- function translateScene(e)
- {
- if (currentLocale == "tr")
- {
- $("#Flag-tr").hide();
- $("#Flag-en").show();
- currentLocale = "en";
- } else {
- $("#Flag-en").hide();
- $("#Flag-tr").show();
- currentLocale = "tr";
- }
- document.getElementById("Users-Online-Message").firstElementChild.textContent = i18n("Online");
- document.getElementById("OnlineChatEditor").firstElementChild.textContent = i18n("EditMessage");
- document.getElementById("GameChatEditor").firstElementChild.textContent = i18n("EditMessage");
- $("#Point-Table").find("text")[0].lastElementChild.textContent = i18n("Statistics");
- $("#Rules").find("text")[0].lastElementChild.textContent = i18n("Rules");
- $("#Login-Text")[0].lastElementChild.textContent = i18n("Login");
- $("#Kakush")[0].lastElementChild.textContent = i18n("Kakush") + ": " + 0;
- }
- function initChatSample() {
- chatMessage("Chat","0","Maxim","Kakaranet:\n"+i18n("GameChat"));
- barHover();
- mouseWheelHandler({'detail':-100000,'wheelDelta':-100000});
- barHoverOut();
- }
- function onPlayerInfo(evt) {
- ws.send(enc(tuple(atom('client'),
- tuple(atom('stats_action'),bin(document.user),atom('game_okey'))))); }
- function onPlayerInfoClose(evt) { document.getElementById('Player-Statistics').style.display = 'none'; }
- // Run
- function appRun() {
- $.load('Kakaranet-Scene.svg', function(x) {
- var name = "Refined";
- var slot = document.getElementById(name);
- if (slot == null) return;
- slot.parentNode.replaceChild(svg(x),slot);
- $.load("svg/Discarder.svg", function(h) {
- PatchSVG();
- StartApp();
- });
- });
- }
- function showRules()
- {
- $.load("svg/Okey-Rules.svg", function(h) {
- var rules = document.getElementById("Okey-Rules");
- if (null == rules) {
- var rulesElement = svg(h);
- document.getElementById("Kakaranet-Scene").appendChild(rulesElement);
- rules = document.getElementById("Okey-Rules");
- rules.setAttribute('transform', 'translate(210,86)');
- rules.setAttribute('onclick', 'onRulesClose(evt)');
- }
- rules.style.display = 'block';
- });
- }
- function displayPlayerInfo(fun)
- {
- $.load("svg/Player-Statistics.svg", function(h) {
- var rules = document.getElementById("Player-Statistics");
- if (null == rules) {
- var rulesElement = svg(h);
- document.getElementById("Kakaranet-Scene").appendChild(rulesElement);
- rules = document.getElementById("Player-Statistics");
- rules.setAttribute('transform', 'translate(210,86)');
- rules.setAttribute('onclick', 'onPlayerInfoClose(evt)');
- }
- rules.style.display = 'block';
- fun();
- });
- }
- function requestPlayerInfo()
- {
- ws.send(enc(tuple(atom('client'),
- tuple(atom('stats_action'),bin(document.user),atom('game_okey')))));
- }
- function onPlayerInfoClose(evt) {
- document.getElementById('Player-Statistics').style.display = 'none';
- }
- function onRulesClose(evt) {
- document.getElementById('Okey-Rules').style.display = 'none';
- }
- function initEditorsSafari()
- {
- if (isSafari()) {
- $("#edit").css({position:"relative"});
- $("#onlineChatEdit").css({position:"relative"});
- $(window).on("resize", manualForeignObjectPositioning);
- $(window).on("orientationchange", manualForeignObjectPositioning);
- manualForeignObjectPositioning();
- }
- }
- function manualForeignObjectPositioning()
- {
- var svgWidth = $svg[0].viewBox.baseVal.width,
- svgHeight = $svg[0].viewBox.baseVal.height;
- var sizeX = svgWidth / innerWidth,
- sizeY = svgHeight / innerHeight,
- size = Math.max(sizeX, sizeY) || 1;
- var realX, realY, scale, shiftX, shiftY;
- realX = 1/size * svgWidth;
- realY = 1/size * svgHeight;
- if (sizeX < sizeY) {
- // console.log("Left and Right White Spaces. Do stretch the Width ");
- shiftY = 0;
- shiftX = (innerWidth - realX) / 2;
- } else {
- // console.log("Top and Bottom White Spaces. Do reorient, or adopt the Height.");
- shiftX = 0;
- shiftY = (innerHeight - realY) / 2;
- }
- $("#GameChatEditor").attr({x: 864 * realX / svgWidth + shiftX,
- y: 504 * realY / svgHeight + shiftY,
- width: 198 * realX / svgWidth,
- height: 120 * realY / svgHeight});
- $("#OnlineChatEditor").attr({x: 10 * realX / svgWidth + shiftX,
- y: 504 * realY / svgHeight + shiftY,
- width: 198 * realX / svgWidth,
- height: 120 * realY / svgHeight});
- }
- function hours() { return (new Date()).getHours(); }
- function initPauseOverlay() {
- var html = '<g xmlns="http://www.w3.org/2000/svg" id="overlay" style="display:none;">'+
- '<rect x="216" y="91" stroke-width="0" stroke="red" width="641" height="367" rx="6" fill="skyblue" opacity="0.9"></rect>'+
- '<g>'+
- '<text id="Overlay-Results" fill="white" font-family="Exo 2" font-size="20pt"></text>'+
- '<text id="Overlay-Text" fill="white" font-family="Exo 2" y="280" x="-116" text-anchor="middle" dx="641" font-size="30pt"> Someone paused the game</text></g>'+
- '</g>';
- var page = document.getElementById("Kakaranet-Scene");
- var kakush = document.getElementById("Kakush");
- page.insertBefore(svg(html),kakush);
- $("#overlay").on("click", hideOverlay);
- }
- function showRoundEnd(e)
- {
- $overlay.show();
- var reason = dec(e.raw).value[0][3][1].value[0][1].value;
- var gameres = dec(e.raw).value[0][3][2].value[0][1];
- $("#Overlay-Results").empty();
- for (var i=0;i<gameres.length;i++) { gameresultRow(400,130,i,gameres); }
- if (reason == "tashes_out") {
- $("#Overlay-Text").text("Tashes out");
- $("#RevealDeckRoot").hide();
- }
- }
- function hideOverlay()
- {
- $overlay.hide();
- $("#Overlay-Results").empty();
- if (scope.ended) scope.deck.fill([]);
- }
- function showRevealHand(o) {
- var player = o.value[0][3][0].value[0][1],
- discard = o.value[0][3][1].value[0][1].value,
- deck = o.value[0][3][2].value[0][1];
- $.load("svg/Deck.svg", function(h) {
- $reveal_deck = $("#RevealDeck");
- if (null == $reveal_deck.$el) {
- $overlay.append(svg(h));
- $reveal_deck = $("#RevealDeck");
- $("#RevealDeckRoot").on("click", hideOverlay);
- }
- $reveal_deck.each(function(card){ card.$el && card.$el.remove(); });
- for (var i=0;i<2;i++)
- for (var j=0;j<15;j++) {
- var bin = deck[i][j];
- if (null != bin.value[0][2]) {
- var card = new scope.Card({
- color: scope.CARD_COLORS[bin.value[0][1]-1],
- value: bin.value[0][2] });
- card.$el.attr('transform', 'translate(' + (5+j*42) + ' ' + (10+i*62) + ')');
- $reveal_deck.append(card.$el[0]);
- }
- }
- });
- $overlay.show();
- $("#Overlay-Text").text(player + " revealed ");
- }
- scope.playersPositions =
- [
- [ "Me", "Right", "Center", "Left" ],
- [ "Left", "Me", "Right", "Center" ],
- [ "Center", "Left", "Me", "Right" ],
- [ "Right", "Center", "Left", "Me" ]
- ];
- appRun();
|