Browse Source

testchess

schtonn 2 years ago
parent
commit
0b8cb8afcd
5 changed files with 495 additions and 9 deletions
  1. 183 0
      chess/index.html
  2. 0 0
      js/av-live-query-min.js
  3. 0 0
      js/av-live-query-min.js.map
  4. 299 0
      js/chess.js
  5. 13 9
      js/paint.js

+ 183 - 0
chess/index.html

@@ -0,0 +1,183 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <link async rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
+        integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
+    <link rel="stylesheet" href="../css/bootstrap.min.css"
+        integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
+    <link rel="stylesheet" href="../css/style.css">
+    <link rel="preconnect" href="https://fonts.gstatic.com">
+    <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
+&family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
+    <script src="../js/av-live-query-min.js"></script>
+    <meta charset="UTF-8">
+    <style>
+        * {
+            padding: 0;
+            margin: 0;
+        }
+
+        html,
+        body,
+        #five {
+            background: #ccc;
+            height: 100%;
+        }
+
+        .controls {
+            /* position: absolute; */
+            top: 20px;
+            margin: 5px;
+        }
+
+        #game {
+            width: 580px;
+            height: 580px;
+            /* box-shadow: 2px 2px 5px #333333; */
+            /* text-align: center; */
+            padding: 10px;
+            background: rgba(0, 0, 0, 0.2);
+        }
+
+        table {
+            width: 560px;
+            border-collapse: collapse;
+            border-spacing: 0;
+        }
+
+        td {
+            width: 35px;
+            height: 35px;
+            /* display: flex;
+    justify-content: center;
+    align-items: center; */
+            text-align: center;
+        }
+
+        span {
+            transition-duration: 100ms;
+            display: inline-block;
+            border-radius: 50%;
+            width: 28px;
+            height: 28px;
+            vertical-align: middle;
+            cursor: pointer;
+        }
+
+        .light {
+            transition-duration: 100ms;
+            display: inline-block;
+            border: 5px double grey;
+            border-radius: 50%;
+            width: 18px;
+            height: 18px;
+            z-index: 10;
+        }
+
+        span::after {
+            content: "";
+            height: 0;
+            display: inline-block;
+            vertical-align: middle;
+        }
+
+        .table {
+            margin: 0;
+        }
+
+        .black {
+            box-shadow: 1px 1px 2px rgba(115, 115, 115, 0.7);
+            background: #000;
+            cursor: default;
+        }
+
+        .white {
+            box-shadow: 1px 1px 2px rgba(115, 115, 115, 0.7);
+            background: #fff;
+            cursor: default;
+        }
+
+        .green {
+            box-shadow: 1px 1px 2px rgba(115, 115, 115, 0.7);
+            background-image: linear-gradient(black,white,90deg);
+            cursor: default;
+        }
+
+        .tables {
+            top: 0;
+            left: 0;
+            z-index: 3;
+        }
+
+        #xq-tips {
+            position: absolute;
+            top: 20%;
+            left: 0;
+            width: 100%;
+            height: 150px;
+            background: rgba(0, 0, 0, 0);
+            display: none;
+            z-index: 4;
+            backdrop-filter: blur(5px);
+        }
+
+        .xq-txt {
+            position: relative;
+            height: 150px;
+            background: rgba(35, 35, 35, 0.5);
+            top: 0;
+            bottom: 0;
+            right: 0;
+            left: 0;
+            margin: auto;
+            color: #fff;
+            font-size: 40px;
+            text-align: center;
+            line-height: 150px;
+        }
+
+        #agin {
+            display: none;
+        }
+
+        #regret {
+            display: none;
+        }
+
+        .pointer {
+            display: none;
+            transition-duration: 100ms;
+            pointer-events: none;
+            position: absolute;
+            opacity: 50%;
+            left: 0;
+            top: 0;
+        }
+    </style>
+
+    <script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
+    <title>Document</title>
+</head>
+
+<body>
+    <div id="five">
+        <div class="controls">
+            <a class="btn btn-info" href="/" style="text-shadow: rgb(85, 85, 85) 3px 2px 4px;"><i
+                    class="glyphicon glyphicon-home" aria-hidden="true"></i>&nbsp;返回</a>
+            <button class="btn btn-primary" id="begin"><i class=" glyphicon glyphicon-ban-circle"
+                    aria-hidden="true"></i>&nbsp;开始游戏</button>
+            <button class="btn btn-primary" id="agin"><i class=" glyphicon glyphicon-repeat"
+                    aria-hidden="true"></i>&nbsp;重新游戏</button>
+            <button class="btn btn-warning" id="regret"><i class=" glyphicon glyphicon-backward"
+                    aria-hidden="true"></i>&nbsp;悔棋</button>
+            <div class="light"></div>
+        </div>
+        <div id="game" class="center-block">
+            <span class="black pointer"></span>
+        </div>
+    </div>
+    <script src="../js/chess.js"></script>
+</body>
+
+</html>

File diff suppressed because it is too large
+ 0 - 0
js/av-live-query-min.js


File diff suppressed because it is too large
+ 0 - 0
js/av-live-query-min.js.map


+ 299 - 0
js/chess.js

@@ -0,0 +1,299 @@
+AV.init({
+    appId: "BmologYYnRqCv0SLHDeDdA17-gzGzoHsz",
+    appKey: "w9mVebFMdCmY6Nh9vfcBGaGt",
+    serverURL: "https://bmologyy.lc-cn-n1-shared.com",
+});
+
+$(window).on({
+    contextmenu: function () {
+        return false;
+    },
+    dragstart: function () {
+        return false;
+    },
+    beforeunload: function () {
+        return true;
+    }
+})
+
+var curCol = 0, myCol = -1, cur;
+
+function setCookie(cname, cvalue, exdays) {
+    var d = new Date();
+    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
+    var expires = "expires=" + d.toGMTString();
+    document.cookie = cname + "=" + cvalue + "; " + expires;
+}
+
+function getCookie(cname) {
+    var name = cname + "=";
+    var ca = document.cookie.split(';');
+    for (var i = 0; i < ca.length; i++) {
+        var c = ca[i].trim();
+        if (c.indexOf(name) == 0) return c.substring(name.length, c.length);
+    }
+    return "";
+}
+
+function checkCookie() {
+    myCol = parseInt(getCookie('color'))
+    if (myCol != 0 && myCol != 1) myCol = -1;
+    console.log('mycolor: ' + myCol)
+}
+
+function updateLight() {
+    if (curCol) {
+        $('.light').removeClass("black");
+        $('.light').addClass("white");
+    } else {
+        $('.light').removeClass("white");
+        $('.light').addClass("black");
+    }
+}
+
+function updateCol() {
+    updateLight();
+    if (curCol) {
+        $('.pointer').removeClass("black");
+        $('.pointer').addClass("white");
+    } else {
+        $('.pointer').removeClass("white");
+        $('.pointer').addClass("black");
+    }
+}
+class Chess {
+    constructor(ele) {
+        this.ele = ele;
+        this.init();
+    }
+    init() {
+        this.arr = [];
+        this.render();
+        $('.pointer')[0].style.display = 'block'
+        $('.pointer').animate({
+            left: $('#game')[0].offsetLeft - 50,
+            top: $('#game')[0].offsetTop + 30,
+        }, 0);
+        $('.pos').on('mouseenter', function () {
+            if ($(this).hasClass("black") || $(this).hasClass("white") || (myCol != -1 && myCol != curCol)) return;
+            document.onmousemove = null
+            $('.pointer').animate({
+                left: this.parentNode.parentNode.parentNode.parentNode.offsetLeft + this.parentNode.offsetLeft + 3,
+                top: this.parentNode.parentNode.parentNode.parentNode.offsetTop + this.parentNode.offsetTop + 3,
+                opacity: 0.7,
+            }, 0)
+            $('.pointer')[0].style.boxShadow = '3px 3px 7px rgba(15,15,15,0.5)'
+            $('.pointer')[0].style.transform = 'scale(100%)'
+        })
+        $('.pos').mouseleave(function (e) {
+            updateCol();
+            document.onmousemove = function (e) {
+                $('.pointer').animate({
+                    left: e.pageX - 14,
+                    top: e.pageY - 14,
+                    opacity: 0.3,
+                    scale: 1
+                }, 0)
+            }
+            $('.pointer')[0].style.boxShadow = ''
+            $('.pointer')[0].style.transform = ''
+        })
+        this.span = $("#tbodys span");
+        let that = this
+        $("#tbodys").on('click', 'tr td span', function () {
+            that.click(this);
+        });
+        $("#regret").on('click', function () {
+            that.regret();
+        })
+        $("#agin").on('click', function () {
+            that.agin();
+        })
+    }
+    render() {
+        let div = $("<div id='xq-tips'>").appendTo($(this.ele))
+        $("<div class='xq-txt'>").appendTo($(div))
+        let table2 = $("<table><tbody id='tbodys'>").addClass("tables").attr("border", "0").appendTo($(this.ele));
+        for (let i = 0; i < 16; i++) {
+            let tr2 = $("<tr>").appendTo($("#tbodys"));
+            for (let j = 0; j < 16; j++) {
+                $("<td><span class='pos' id=" + (i * 16 + j) + ">").appendTo($(tr2));
+            }
+        }
+    }
+    click(_this) {
+        console.log(_this)
+        this.ifs(_this)
+        this.win();
+    }
+    upd() {
+        $(this.span).each((index, item) => {
+            this.arr.forEach((arrItem, arrIndex) => {
+                if (index == arrItem) {
+                    if (arrIndex % 2 == 0) $(item).addClass("black");
+                    else $(item).addClass("white");
+                }
+            })
+        })
+        let num = this.arr.length;
+        curCol = num % 2;
+        updateLight();
+    }
+    ifs(_this) {
+        if (myCol == -1) {
+            myCol = curCol;
+            setCookie('color', myCol, 1)
+        }
+        if ($(_this).hasClass("black") || $(_this).hasClass("white") || myCol != curCol) return;
+        myCol = curCol;
+        let num = this.arr.length;
+        console.log(this.arr)
+        $(this.span).each((index, item) => {
+            if (item === _this) {
+                this.arr.push(index);
+                this.nums = index
+                curCol = (num + 1) % 2;
+                updateLight();
+                if (num % 2 == 0) {
+                    $(_this).addClass("black");
+                }
+                else {
+                    $(_this).addClass("white");
+                }
+                return;
+            }
+        })
+        cur.set('data', this.arr)
+        cur.save();
+    }
+    win() {
+        let this_ = this;
+        let brr = [], wrr = [];
+        $(this_.arr).each((index, item) => {
+            if ($(this_.span[item]).hasClass("black")) {
+                brr.push(item);
+            }
+            else {
+                wrr.push(item);
+            }
+        })
+        brr = brr.sort(function (a, b) {
+            return a - b;
+        })
+        wrr = wrr.sort(function (a, b) {
+            return a - b;
+        })
+        if (this.isInclude(brr, 1) || this.isInclude(brr, 16) || this.isInclude(brr, 17) || this.isInclude(brr, 15)) {
+            this.arr = [];
+            $("#xq-tips").show();
+            $(".xq-txt").html("Black Wins!");
+            $('.light').addClass('green');
+            $("#regret").hide();
+        }
+        if (this.isInclude(wrr, 1) || this.isInclude(wrr, 16) || this.isInclude(wrr, 17) || this.isInclude(wrr, 15)) {
+            this.arr = [];
+            $("#xq-tips").show();
+            $(".xq-txt").html("White Wins!");
+            $("#regret").hide();
+        }
+    }
+    isInclude(brr, x) {
+        for (let i = 0; i < brr.length; i++) {
+            if (brr.includes(brr[i]) && brr.includes(brr[i] + x * 1) && brr.includes(brr[i] + x * 2) && brr.includes(brr[i] + x * 3) && brr.includes(brr[i] + x * 4)) {
+                return true;
+            }
+        }
+    }
+    regret() {
+        if (this.arr.length == 0 || curCol == myCol) {
+            return false;
+        }
+        let len = this.arr.length - 1;
+        let num = this.arr[len]
+        $(this.span[num]).removeClass("black white");
+        curCol = num % 2;
+        updateCol();
+        this.arr.pop();
+        cur.set('data', this.arr)
+        cur.save();
+    }
+    reset() {
+        this.arr = [];
+        for (let i = 0; i < this.span.length; i++) {
+            $(this.span[i]).removeClass("black white");
+        }
+    }
+    agin() {
+        $('.pointer').removeClass("white");
+        $('.pointer').addClass("black");
+        checkCookie();
+        var exp = new Date();
+        exp.setTime(exp.getTime() - 1)
+        setCookie('color', myCol, exp)
+        myCol = -1;
+        this.reset();
+        $('.light').removeClass('green');
+        $("#xq-tips").hide();
+        $(".xq-txt").html("");
+        $("#regret").show();
+        cur.set('data', this.arr)
+        cur.save();
+    }
+
+}
+var game;
+
+checkCookie();
+
+const query = new AV.Query('chess');
+query.descending('updatedAt')
+query.limit(1)
+query.find().then((result) => {
+    $("#begin").hide();
+    $("#regret").show();
+    $("#agin").show();
+    $("#game").show();
+    if (result.length) {
+        console.log('Data loaded from LeanCloud')
+        cur = result[0]
+        var map = result[0].get('data')
+        console.log(map)
+        if (map.length) {
+            game = new Chess($("#game"));
+            game.arr = map;
+            game.upd();
+            updateCol();
+        } else {
+            game = new Chess($("#game"));
+        }
+    }
+})
+
+
+query.subscribe().then((liveQuery) => {
+    console.log('Subscribed')
+    liveQuery.on('update', (result) => {
+        var map = result.get('data')
+        console.log(map);
+        game.reset();
+        game.arr = map;
+        game.upd();
+        curCol = map.length % 2;
+        if (map.length) {
+            game.win()
+        } else {
+            $('.pointer').removeClass("white");
+            $('.pointer').addClass("black");
+            checkCookie();
+            var exp = new Date();
+            exp.setTime(exp.getTime() - 1)
+            setCookie('color', myCol, exp)
+            myCol = -1;
+            $('.light').removeClass('green');
+            $("#xq-tips").hide();
+            $(".xq-txt").html("");
+            $("#regret").show();
+        }
+    });
+});
+

+ 13 - 9
js/paint.js

@@ -11,6 +11,9 @@ $(window).on({
     dragstart: function () {
         return false;
     },
+    beforeunload: function () {
+        return true;
+    }
 })
 
 var tryTime = 0
@@ -84,8 +87,8 @@ function getMap() {
         return;
     }
     working = true;
-    if (curVer != 0) document.getElementById('upload').classList.add('disabled'),document.getElementById('rbtn').classList.remove('disabled')
-    else document.getElementById('upload').classList.remove('disabled'),document.getElementById('rbtn').classList.add('disabled')
+    if (curVer != 0) document.getElementById('upload').classList.add('disabled'), document.getElementById('rbtn').classList.remove('disabled')
+    else document.getElementById('upload').classList.remove('disabled'), document.getElementById('rbtn').classList.add('disabled')
     if (curVer >= stopVer) {
         if (!stopped) document.getElementById('lbtn').classList.add('disabled'), stopped = true;
         else {
@@ -99,8 +102,8 @@ function getMap() {
     console.log('GetMap: currentVersion: ' + curVer)
     if (maxVer >= curVer) {
         console.log('Data loaded from cache')
-        var map = maxResult[curVer].get('data')
-        document.getElementById('version').title = maxResult[curVer].get('updatedAt');
+        var map = maxResult[curVer].get('data'), date = maxResult[curVer].get('updatedAt')
+        document.getElementById('version').title = date.getFullYear() + '-' + date.getMonth() + '-' + date.getDate() + ' ' + date.toString().split(' ')[4];
         document.getElementById('version').innerHTML += maxResult[curVer].get('nickName');
         for (let i = 0; i < box.length; i++) {
             box[i].style.backgroundColor = map[i]
@@ -113,8 +116,9 @@ function getMap() {
         query.find().then((result) => {
             if (result.length > curVer) {
                 console.log('Data loaded from LeanCloud')
-                var map = result[curVer].get('data')
-                document.getElementById('version').title = result[curVer].get('updatedAt');
+                var map = result[curVer].get('data'), date = result[curVer].get('updatedAt')
+                console.log(date)
+                document.getElementById('version').title = date.getFullYear() + '-' + date.getMonth() + '-' + date.getDate() + ' ' + date.toString().split(' ')[4];
                 document.getElementById('version').innerHTML += result[curVer].get('nickName');
                 for (let i = 0; i < box.length; i++) {
                     box[i].style.backgroundColor = map[i]
@@ -339,9 +343,9 @@ $(document).ready(function () {
         colorItem.onclick = function () {
             lcolor = colors[i]
             nowColor.style.backgroundColor = colors[i]
-            changeSlider('box-r',255,parseInt(colorItem.style.backgroundColor.split(',')[0].split('(')[1]))
-            changeSlider('box-g',255,parseInt(colorItem.style.backgroundColor.split(',')[1]))
-            changeSlider('box-b',255,parseInt(colorItem.style.backgroundColor.split(',')[2]))
+            changeSlider('box-r', 255, parseInt(colorItem.style.backgroundColor.split(',')[0].split('(')[1]))
+            changeSlider('box-g', 255, parseInt(colorItem.style.backgroundColor.split(',')[1]))
+            changeSlider('box-b', 255, parseInt(colorItem.style.backgroundColor.split(',')[2]))
             updateCol();
         }
         if (i === 0) {

Some files were not shown because too many files changed in this diff