chess.js 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. AV.init({
  2. appId: "BmologYYnRqCv0SLHDeDdA17-gzGzoHsz",
  3. appKey: "w9mVebFMdCmY6Nh9vfcBGaGt",
  4. serverURL: "https://bmologyy.lc-cn-n1-shared.com",
  5. });
  6. $(window).on({
  7. contextmenu: function () {
  8. return false;
  9. },
  10. dragstart: function () {
  11. return false;
  12. },
  13. beforeunload: function () {
  14. return true;
  15. }
  16. })
  17. var curCol = 0, myCol = -1, cur;
  18. function setCookie(cname, cvalue, exdays) {
  19. var d = new Date();
  20. d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
  21. var expires = "expires=" + d.toGMTString();
  22. document.cookie = cname + "=" + cvalue + "; " + expires;
  23. }
  24. function getCookie(cname) {
  25. var name = cname + "=";
  26. var ca = document.cookie.split(';');
  27. for (var i = 0; i < ca.length; i++) {
  28. var c = ca[i].trim();
  29. if (c.indexOf(name) == 0) return c.substring(name.length, c.length);
  30. }
  31. return "";
  32. }
  33. function checkCookie() {
  34. myCol = parseInt(getCookie('color'))
  35. if (myCol != 0 && myCol != 1) myCol = -1;
  36. console.log('mycolor: ' + myCol)
  37. }
  38. function updateLight() {
  39. if (curCol) {
  40. $('.light').removeClass("black");
  41. $('.light').addClass("white");
  42. } else {
  43. $('.light').removeClass("white");
  44. $('.light').addClass("black");
  45. }
  46. }
  47. function updateCol() {
  48. updateLight();
  49. if (curCol) {
  50. $('.pointer').removeClass("black");
  51. $('.pointer').addClass("white");
  52. } else {
  53. $('.pointer').removeClass("white");
  54. $('.pointer').addClass("black");
  55. }
  56. }
  57. class Chess {
  58. constructor(ele) {
  59. this.ele = ele;
  60. this.init();
  61. }
  62. init() {
  63. this.arr = [];
  64. this.render();
  65. $('.pointer')[0].style.display = 'block'
  66. $('.pointer').animate({
  67. left: $('#game')[0].offsetLeft - 50,
  68. top: $('#game')[0].offsetTop + 30,
  69. }, 0);
  70. $('.pos').on('mouseenter', function () {
  71. if ($(this).hasClass("black") || $(this).hasClass("white") || (myCol != -1 && myCol != curCol)) return;
  72. document.onmousemove = null
  73. $('.pointer').animate({
  74. left: this.parentNode.parentNode.parentNode.parentNode.offsetLeft + this.parentNode.offsetLeft + 3,
  75. top: this.parentNode.parentNode.parentNode.parentNode.offsetTop + this.parentNode.offsetTop + 3,
  76. opacity: 0.7,
  77. }, 0)
  78. $('.pointer')[0].style.boxShadow = '3px 3px 7px rgba(15,15,15,0.5)'
  79. $('.pointer')[0].style.transform = 'scale(100%)'
  80. })
  81. $('.pos').mouseleave(function (e) {
  82. updateCol();
  83. document.onmousemove = function (e) {
  84. $('.pointer').animate({
  85. left: e.pageX - 14,
  86. top: e.pageY - 14,
  87. opacity: 0.3,
  88. scale: 1
  89. }, 0)
  90. }
  91. $('.pointer')[0].style.boxShadow = ''
  92. $('.pointer')[0].style.transform = ''
  93. })
  94. this.span = $("#tbodys span");
  95. let that = this
  96. $("#tbodys").on('click', 'tr td span', function () {
  97. that.click(this);
  98. });
  99. $("#regret").on('click', function () {
  100. that.regret();
  101. })
  102. $("#agin").on('click', function () {
  103. that.agin();
  104. })
  105. }
  106. render() {
  107. let div = $("<div id='xq-tips'>").appendTo($(this.ele))
  108. $("<div class='xq-txt'>").appendTo($(div))
  109. let table2 = $("<table><tbody id='tbodys'>").addClass("tables").attr("border", "0").appendTo($(this.ele));
  110. for (let i = 0; i < 16; i++) {
  111. let tr2 = $("<tr>").appendTo($("#tbodys"));
  112. for (let j = 0; j < 16; j++) {
  113. $("<td><span class='pos' id=" + (i * 16 + j) + ">").appendTo($(tr2));
  114. }
  115. }
  116. }
  117. click(_this) {
  118. console.log(_this)
  119. this.ifs(_this)
  120. this.win();
  121. }
  122. upd() {
  123. $(this.span).each((index, item) => {
  124. this.arr.forEach((arrItem, arrIndex) => {
  125. if (index == arrItem) {
  126. if (arrIndex % 2 == 0) $(item).addClass("black");
  127. else $(item).addClass("white");
  128. }
  129. })
  130. })
  131. let num = this.arr.length;
  132. curCol = num % 2;
  133. updateLight();
  134. }
  135. ifs(_this) {
  136. if (myCol == -1) {
  137. myCol = curCol;
  138. setCookie('color', myCol, 1)
  139. }
  140. if ($(_this).hasClass("black") || $(_this).hasClass("white") || myCol != curCol) return;
  141. myCol = curCol;
  142. let num = this.arr.length;
  143. console.log(this.arr)
  144. $(this.span).each((index, item) => {
  145. if (item === _this) {
  146. this.arr.push(index);
  147. this.nums = index
  148. curCol = (num + 1) % 2;
  149. updateLight();
  150. if (num % 2 == 0) {
  151. $(_this).addClass("black");
  152. }
  153. else {
  154. $(_this).addClass("white");
  155. }
  156. return;
  157. }
  158. })
  159. cur.set('data', this.arr)
  160. cur.save();
  161. }
  162. win() {
  163. let this_ = this;
  164. let brr = [], wrr = [];
  165. $(this_.arr).each((index, item) => {
  166. if ($(this_.span[item]).hasClass("black")) {
  167. brr.push(item);
  168. }
  169. else {
  170. wrr.push(item);
  171. }
  172. })
  173. brr = brr.sort(function (a, b) {
  174. return a - b;
  175. })
  176. wrr = wrr.sort(function (a, b) {
  177. return a - b;
  178. })
  179. if (this.isInclude(brr, 1) || this.isInclude(brr, 16) || this.isInclude(brr, 17) || this.isInclude(brr, 15)) {
  180. this.arr = [];
  181. $("#xq-tips").show();
  182. $(".xq-txt").html("Black Wins!");
  183. $('.light').addClass('green');
  184. $("#regret").hide();
  185. }
  186. if (this.isInclude(wrr, 1) || this.isInclude(wrr, 16) || this.isInclude(wrr, 17) || this.isInclude(wrr, 15)) {
  187. this.arr = [];
  188. $("#xq-tips").show();
  189. $(".xq-txt").html("White Wins!");
  190. $("#regret").hide();
  191. }
  192. }
  193. isInclude(brr, x) {
  194. for (let i = 0; i < brr.length; i++) {
  195. 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)) {
  196. return true;
  197. }
  198. }
  199. }
  200. regret() {
  201. if (this.arr.length == 0 || curCol == myCol) {
  202. return false;
  203. }
  204. let len = this.arr.length - 1;
  205. let num = this.arr[len]
  206. $(this.span[num]).removeClass("black white");
  207. curCol = num % 2;
  208. updateCol();
  209. this.arr.pop();
  210. cur.set('data', this.arr)
  211. cur.save();
  212. }
  213. reset() {
  214. this.arr = [];
  215. for (let i = 0; i < this.span.length; i++) {
  216. $(this.span[i]).removeClass("black white");
  217. }
  218. }
  219. agin() {
  220. $('.pointer').removeClass("white");
  221. $('.pointer').addClass("black");
  222. checkCookie();
  223. var exp = new Date();
  224. exp.setTime(exp.getTime() - 1)
  225. setCookie('color', myCol, exp)
  226. myCol = -1;
  227. this.reset();
  228. $('.light').removeClass('green');
  229. $("#xq-tips").hide();
  230. $(".xq-txt").html("");
  231. $("#regret").show();
  232. cur.set('data', this.arr)
  233. cur.save();
  234. }
  235. }
  236. var game;
  237. checkCookie();
  238. const query = new AV.Query('chess');
  239. query.descending('updatedAt')
  240. query.limit(1)
  241. query.find().then((result) => {
  242. $("#begin").hide();
  243. $("#regret").show();
  244. $("#agin").show();
  245. $("#game").show();
  246. if (result.length) {
  247. console.log('Data loaded from LeanCloud')
  248. cur = result[0]
  249. var map = result[0].get('data')
  250. console.log(map)
  251. if (map.length) {
  252. game = new Chess($("#game"));
  253. game.arr = map;
  254. game.upd();
  255. updateCol();
  256. } else {
  257. game = new Chess($("#game"));
  258. }
  259. }
  260. })
  261. query.subscribe().then((liveQuery) => {
  262. console.log('Subscribed')
  263. liveQuery.on('update', (result) => {
  264. var map = result.get('data')
  265. console.log(map);
  266. game.reset();
  267. game.arr = map;
  268. game.upd();
  269. curCol = map.length % 2;
  270. if (map.length) {
  271. game.win()
  272. } else {
  273. $('.pointer').removeClass("white");
  274. $('.pointer').addClass("black");
  275. checkCookie();
  276. var exp = new Date();
  277. exp.setTime(exp.getTime() - 1)
  278. setCookie('color', myCol, exp)
  279. myCol = -1;
  280. $('.light').removeClass('green');
  281. $("#xq-tips").hide();
  282. $(".xq-txt").html("");
  283. $("#regret").show();
  284. }
  285. });
  286. });