Array.prototype._random = function() { this.sort(function(d, e) { return Math.random() <= .5 ? -1 : 1; }); return this; }; Array.prototype.random = function() { var d = Math.ceil(this.length / 2), e = this.length; var f = this.slice(0, d), g = this.slice(d, this.length); f._random(), g._random(); for (var h = 0; h < e; h += 2) { var i = Math.floor(h / 2); f[i] && (this[h] = f[i]); g[i] && (this[h + 1] = g[i]); } this._random(); return this; }; Array.prototype.remove = function(d) { if (d <= 0) { this.shift(); } else if (d >= this.length - 1) { this.pop(); } else { var e = this.slice(0, d).concat(this.slice(d + 1, this.length)); for (var f = 0, max = this.length; f < max; f++) { this.pop(); } for (var f = 0, max = e.length; f < max; f++) { this.push(e[f]); } e = null; } return this; }; String.prototype.format = function(d, e) { return this.replace(e || /\${([^}]*)}/g, function(f, h) { var i = d; if (h.indexOf(".") >= 0) { var j = h.split("."), k; while (k = j.shift()) { i = i[k]; if (!i) break; } } else { i = i[h]; } return i || ""; }); }; var a = {}; a.debug = false; a.width = 480; a.height = 760; btGame.makePublisher(a); ~function(a) { a.load = []; var d = null; a.load.add = function(e) { a.load.push(e); }; a.load.start = function() { var e = a.load, f = 0, g = e.length; d = $("
"); d.css({ position: "absolute", top: 1, left: 1, "z-index": -1, opacity: 0, overflow: "hidden", height: 1, width: 1 }); $("body").append(d); a.fire("loadProgress", 0); for (var h = 0, max = e.length; h < max; h++) { var i = $(""); i.one("load error", function() { f++; a.fire("loadProgress", f / g); }); d.append(i); var j = e[h]; i.attr({ "data-id": j.id || j.src, src: j.src }); } }; a.load.get = function(e) { return d.find("[data-id='" + e + "']"); }; a.on("loadProgress", function(e, f) { btGame.gameLoading(f); }); }(a); ~function(a) { a.gameMap = { "1": [ "苍井空", "松岛枫", "吉泽明步", "波多野结衣", "天海翼", "麻生希", "泷泽萝拉", "冲田杏梨", "上原亚衣", "小泽玛利亚" ], "2": [ "橘梨纱", "京香JULIA", "濑亚美莉", "武藤兰", "饭岛爱", "大桥未久", "樱井莉亚", "雨宫琴音", "早乙女露依", "柚木提娜" ], "3": [ "羽田爱", "佐藤遥希", "小泽圆", "小仓奈奈", "大沢佑香", "桐谷尤莉亚", "芦名尤莉亚", "月野里沙", "西野翔", "白石瞳" ], "4": [ "立花美凉", "白鸟樱", "长濑爱", "常盘樱子", "川岛和津实", "堤莎也加", "高树玛莉亚", "古都光", "黑崎扇菜", "渡濑晶", "橘未稀", "立花瞳", "铃木麻奈美", "早川濑里奈", "明日花绮罗", "横山美雪", "北原多香子", "爱田由", "红音萤", "樱井步", "大冢咲", "穗花", "绫波芹", "春咲梓美", "黑木麻衣", "尾上若叶", "希岛爱理", "樱理惠", "美竹凉子", "瑠川莉娜", "上原Kaera", "美祢藤", "小川亚纱美", "菅野亚梨沙", "木下柚花", "小蕾", "伊泽千夏", "秋山祥子", "纹舞兰", "上原瑞穂", "大沢美加", "月野莉纱", "葵实野理", "加藤莉娜", "友田彩也香", "村上里沙", "希志爱野", "仁科百华", "椎名由奈", "冬月枫", "立花里子", "小川阿佐美", "成濑心美", "上原结衣", "里美尤利娅", "希崎杰西卡", "雾岛奈津美", "石川铃华", "桥本舞", "原干惠" ] }; a.gameList = []; a.maxLevel = 30; a.currentLevel = 0; a.maxGate = 3; a.picPath = "resource/"; var d = a.gameMap, e = a.picPath, f = 0; for (var g in d) { f++; var h = d[g]; for (var i = 0, max = h.length; i < max; i++) { var j = h[i], k = i + 1 + (f - 1) * 10, l = e + k + ".jpg"; h[i] = { key: k, name: j, pic: l }; a.gameList.push(h[i]); } } a.MODE = { PIC: "picture", NAM: "name" }; a.playMode = a.MODE.PIC; a.setPlayMode = function(h) { if (typeof h == "number") { if (h == 0) { a.playMode = a.MODE.PIC; } else { a.playMode = a.MODE.NAM; } } else if (h == a.MODE.PIC) { a.playMode = a.MODE.PIC; } else { a.playMode = a.MODE.NAM; } a.fire("playModeChange", a.playMode); }; for (var g = 0, max = a.gameList.length; g < max; g++) { var h = a.gameList[g]; a.load.add({ id: h.key, src: h.pic }); } a.load.start(); }(a); ~function(a) { var d = $("#main .page"), e = "hide", f = 200; function g() { var h = Math.random() > .5 ? "100%" : "-100%", i = Math.random() > .5 ? "100%" : "-100%"; return { left: h, top: i }; } a.on("pageChange", function(h, i) { d.css(g()); var j; if (typeof i === "number") { j = d.eq(i); } else { j = d.filter(i); } j.removeClass("animate"); j.css(g()); setTimeout(function() { j.addClass("animate"); j.css({ left: 0, top: 0 }); }, f); }); }(a); ~function(a) { var d = $("#start"); d.on("click", ".guessPic, .guessNam", function(e) { a.setPlayMode($(this).index() - 1); a.fire("pageChange", 1); a.fire("gameStart"); }); d.find(".moreLink").click(function() { $(this).attr("href", btGame.URL.getMoreGame()); }); }(a); ~function(a) { var d = "", e = $(".container"), f = $("#play .time"), g = $("#play .tip"); var h = $(".heartList"), i = $("#play .level"); a.on("playModeChange", function(k, l) { d = $(l === a.MODE.PIC ? "#template_game_pic" : "#template_game_nam").html(); d = $.trim(d); }); a.on("gameStart", function(k) { for (var l in a.gameMap) { a.gameMap[l].random(); } j.reset(); }); var j = { reset: function() { a.currentLevel = 0; a.maxWrongCount = 3; a.wrongCount = 0; this.next(false); var k = 3, l = this; var m = setInterval(function() { k--; if (k <= 0) { clearInterval(m); l.timer.start(); } a.fire("playPrepare", k); }, 1e3); a.fire("playPrepare", k); this.heart(3); }, next: function(k) { var l = ++a.currentLevel; if (a.currentLevel > a.maxLevel) { a.fire("gameEnd"); return; } var m = Math.ceil(a.currentLevel / 10), n = a.gameMap[m][l - (m - 1) * 10 - 1]; var o = a.gameList.slice(0).remove(n.key - 1).random().slice(0, 3); o.push(n); o.random(); a.fire("nextLevel", o, n); if (k) { this.timer.start(); } }, heart: function(k) { a.fire("resetHeartCount", k); }, timer: { timer: null, start: function() { clearInterval(this.timer); var k = 10, l = this; a.fire("timeChange", k); this.timer = setInterval(function() { k--; a.fire("timeChange", k); if (k <= 0) { l.timeup(); clearInterval(l.timer); } }, 1e3); a.isTimeup = false; }, stop: function() { clearInterval(this.timer); this.timer = null; }, timeup: function() { a.fire("gameEnd"); a.isTimeup = true; } } }; a.on("gameEnd", function() { j.timer.stop(); }); a.on("playPrepare", function(k) { f.html(10); }); e.on("click", ".answer1, .answer2", function() { var k = $(this); if (a.wrongCount >= a.maxWrongCount || a.isPreparingNext || a.isTimeup) { return false; } var l = e.find(".gameTip"); var m = k.data("key"), n = l.data("key"); if (m == n) { k.addClass("right"); a.isPreparingNext = true; j.timer.stop(); setTimeout(function() { j.next(true); a.isPreparingNext = false; }, 1e3); } else { k.addClass("error"); setTimeout(function() { k.removeClass("error"); }, 2e3); a.wrongCount++; a.fire("answerWrong", a.wrongCount); } }); a.on("nextLevel", function(k, l, m) { i.html(a.currentLevel); e.html(d.format({ data: m, arr1: l[0], arr2: l[1], arr3: l[2], arr4: l[3] })); if (a.debug) { e.find("a[data-key='" + m.key + "']").css("background", "#99ccff"); } }); a.on("timeChange", function(k, l) { f.html(l); }); a.on("playModeChange", function(k, l) { if (l == a.MODE.PIC) { g.html("根据提示的名字,找出对应的照片"); } else { g.html("根据提示的照片,找出对应的名字"); } }); a.on("answerWrong", function(k, l) { a.fire("resetHeartCount", a.maxWrongCount - l); if (l >= a.maxWrongCount) { setTimeout(function() { a.fire("gameEnd"); }, 500); } }); a.on("resetHeartCount", function(k, l) { var m = ""; for (var n = 0; n < l; n++) { m += ''; } h.html(m); }); if (a.debug) { window.b = j; a.on("nextLevel", function(k, l, m) { console.log(l); }); } }(a); ~function(a) { var d = $("#prepare"), e = d.find(".text"); a.on("playPrepare", function(f, g) { if (g <= 0) { d.css("top", "-100%"); setTimeout(function() { d.css("top", 0); d.hide(); }, 500); } else { d.show(); e.html(g); } }); d.hide(); }(a); ~function(a) { var d = $("#end"), e = d.find(".level"), f = d.find(".title"); d.on("click", ".again", function() { a.fire("pageChange", 0); return false; }).on("click", ".notify", function() { btGame.playShareTip(); return false; }); var g = [ { key: 0, title: "小纯洁" }, { key: 5, title: "右手战士" }, { key: 10, title: "一卷手纸" }, { key: 15, title: "痴汉体质" }, { key: 20, title: "变态绅士" }, { key: 25, title: "色魔附体" }, { key: 29, title: "阅片大湿" }, { key: 30, title: "色即是空" } ]; function h(i) { var j = g[0].title; for (var k = 0, max = g.length; k < max; k++) { var l = g[k]; j = l.title; if (i <= l.key) { break; } } return j; } window.c = h; a.on("gameEnd", function() { a.fire("pageChange", 2); var i = h(a.currentLevel - 1); f.html(i); e.html("LV" + (a.currentLevel - 1)); var j = { level: a.currentLevel - 1, title: i }; a.fire("gameResult", j); }); d.find(".moreLink").click(function() { $(this).attr("href", btGame.URL.getMoreGame()); }); }(a); ~function(a, btGame) { a.on("gameResult", function(d, e) { var f = "我玩《岛国么么答》获得【" + e.title + "】称号,我很纯洁别怀疑!"; if (e.level >= 5) { f = "我玩《岛国么么答》获得【" + e.title + "】称号,别说你没看过?"; } var f = btGame.setShare({ title: f }); setTimeout(function() { btGame.playScoreMsg("你认出" + e.level + "个老湿,获得【" + e.title + "】称号,快去刷屏吧!"); }, 300); }); }(a, btGame); ~function(a, btGame) { var d = $("body,html"), e = $("#main"); function f() { var g = a.width, h = window.innerWidth; var i = h / g; if (i > 1) i = 1; var j = "scale(" + i + ")"; e.css({ "-webkit-transform": j, "-moz-transform": j, "-o-transform": j, transform: j, top: -a.height * (1 - i) / 2, left: -g * (1 - i) / 2 }); if (i < 1) { d.css("height", a.height * i); } else { d.css("height", "auto"); } } btGame.checkHScreen(f, false); $(function() { setTimeout(f, 1e3); }); }(a, btGame);