腾讯围棋分享出来的链接:
其实棋谱就在这一串书数字里,懒得去解析,可以直接分析网页源代码。
通过源代码就能看出每颗棋子的位置。
用Tampermonkey写一个脚本,就可以得到对应的棋谱了。
// ==UserScript==
// @name 腾讯围棋转谱
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://huanle.qq.com/act/*
// @grant none
// @require http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==
(function() {
'use strict';
setTimeout(function () { load(); }, 2000);
$(".comment_title1").append("<textarea id='qp' style='width:100%;height:100px'>棋谱生成中...</textarea>");
function load() {
var arr = "ABCEDFGHIJKLMNOPQRS";
var res = "(";
$("#gameView div").each(function () {
var left = $(this).css("left").replace("px", "") - 19;
var top = $(this).css("top").replace("px", "") - 19;
var x = arr[left / 38].toLowerCase();
var y = arr[top / 38].toLowerCase();
var c = $(this).attr("class") == "chessBlack" ? "B" : "W";
res += (c + "[" + x + y + "]") + ";"
});
res = res.substring(0, res.length - 1) + ")";
$("#qp").val( res);
}
})();
执行效果
转载自原文链接, 如需删除请联系管理员。
原文链接:QQ围棋棋谱,转载请注明来源!