mirror of
http://shenjack.top:5100/shenjack/icalingua-python-bot.git
synced 2025-04-19 20:39:54 +08:00
Compare commits
6 Commits
26133c3c00
...
01187cf8d9
Author | SHA1 | Date | |
---|---|---|---|
01187cf8d9 | |||
924d850e01 | |||
3defd42df8 | |||
b458a16c22 | |||
85a37db3ea | |||
71e07970c0 |
4
ica-rs/plugins/md5/.gitignore
vendored
4
ica-rs/plugins/md5/.gitignore
vendored
|
@ -1 +1,3 @@
|
|||
input.txt
|
||||
input.txt
|
||||
node_modules
|
||||
package.json
|
176
ica-rs/plugins/md5/md5-api.js
Normal file
176
ica-rs/plugins/md5/md5-api.js
Normal file
|
@ -0,0 +1,176 @@
|
|||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
var __generator = (this && this.__generator) || function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
var md5_module = require("./md5.js");
|
||||
/**
|
||||
*
|
||||
* @param names 原始的输入框输入
|
||||
* @returns 对战结果
|
||||
*/
|
||||
function fight(names) {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
// 检查一下输入是否合法
|
||||
// 比如里面有没有 !test!
|
||||
if (names.startsWith("!test!")) {
|
||||
throw new Error("你怎么在对战输入里加 !test!(恼)\n${names}");
|
||||
}
|
||||
return [4 /*yield*/, md5_module.fight(names)];
|
||||
case 1: return [2 /*return*/, _a.sent()];
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
/**
|
||||
* 对于胜率/评分的输入检查
|
||||
* @param names
|
||||
* @returns
|
||||
*/
|
||||
function test_check(names) {
|
||||
var have_test = names.startsWith("!test!");
|
||||
return have_test;
|
||||
}
|
||||
/**
|
||||
* 测量胜率
|
||||
* @param names 原始的输入框输入
|
||||
* @param round 战斗的回合数
|
||||
* @returns 胜率结果
|
||||
*/
|
||||
function win_rate(names, round) {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
// 检查 round 是否合法
|
||||
if (round <= 0) {
|
||||
throw new Error("round 必须大于 0");
|
||||
}
|
||||
if (!test_check(names)) {
|
||||
throw new Error("你怎么在胜率输入里丢了 !test!(恼)\n${names}");
|
||||
}
|
||||
return [4 /*yield*/, md5_module.win_rate(names, round)];
|
||||
case 1: return [2 /*return*/, _a.sent()];
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @param names 原始的输入框输入
|
||||
* @param callback 用于接收胜率的回调函数
|
||||
* @returns 胜率结果
|
||||
*/
|
||||
function win_rate_callback(names, callback) {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
if (!test_check(names)) {
|
||||
throw new Error("你怎么在胜率输入里丢了 !test!(恼)\n${names}");
|
||||
}
|
||||
return [4 /*yield*/, md5_module.win_rate_callback(names, callback)];
|
||||
case 1: return [2 /*return*/, _a.sent()];
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
function score(names, round) {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
// 检查 round 是否合法
|
||||
if (round <= 0) {
|
||||
throw new Error("round 必须大于 0");
|
||||
}
|
||||
if (!test_check(names)) {
|
||||
throw new Error("你怎么在分数输入里丢了 !test!(恼)\n${names}");
|
||||
}
|
||||
return [4 /*yield*/, md5_module.score(names, round)];
|
||||
case 1: return [2 /*return*/, _a.sent()];
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
function score_callback(names, callback) {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
if (!test_check(names)) {
|
||||
throw new Error("你怎么在分数输入里加 !test!(恼)\n${names}");
|
||||
}
|
||||
return [4 /*yield*/, md5_module.score_callback(names, callback)];
|
||||
case 1: return [2 /*return*/, _a.sent()];
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
// export {
|
||||
// type FightResult,
|
||||
// type WinRate,
|
||||
// type WinRateResult,
|
||||
// type WinRateCallback,
|
||||
// type Score,
|
||||
// type ScoreResult,
|
||||
// type ScoreCallback,
|
||||
// fight,
|
||||
// win_rate,
|
||||
// win_rate_callback,
|
||||
// score,
|
||||
// score_callback,
|
||||
// };
|
||||
function main() {
|
||||
return __awaiter(this, void 0, void 0, function () {
|
||||
var fs, path, names, result;
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
fs = require("fs");
|
||||
path = require("path");
|
||||
names = fs.readFileSync(path.resolve(__dirname, "input.txt"), "utf-8");
|
||||
return [4 /*yield*/, fight(names)];
|
||||
case 1:
|
||||
result = _a.sent();
|
||||
console.log("\u8D62\u5BB6:|".concat(result.source_plr, "|"));
|
||||
return [2 /*return*/];
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
main();
|
|
@ -1,4 +1,5 @@
|
|||
const md5_module = require("./md5.js");
|
||||
// import * as md5_module from "./md5.js";
|
||||
|
||||
/**
|
||||
* 对战结果的数据结构
|
||||
|
@ -134,17 +135,29 @@ async function score_callback(
|
|||
return await md5_module.score_callback(names, callback);
|
||||
}
|
||||
|
||||
export {
|
||||
FightResult,
|
||||
WinRate,
|
||||
WinRateResult,
|
||||
WinRateCallback,
|
||||
Score,
|
||||
ScoreResult,
|
||||
ScoreCallback,
|
||||
fight,
|
||||
win_rate,
|
||||
win_rate_callback,
|
||||
score,
|
||||
score_callback,
|
||||
};
|
||||
// export {
|
||||
// type FightResult,
|
||||
// type WinRate,
|
||||
// type WinRateResult,
|
||||
// type WinRateCallback,
|
||||
// type Score,
|
||||
// type ScoreResult,
|
||||
// type ScoreCallback,
|
||||
// fight,
|
||||
// win_rate,
|
||||
// win_rate_callback,
|
||||
// score,
|
||||
// score_callback,
|
||||
// };
|
||||
|
||||
async function main() {
|
||||
// 从相对位置导入内容
|
||||
const fs = require("fs");
|
||||
const path = require("path");
|
||||
|
||||
const names = fs.readFileSync(path.resolve(__dirname, "input.txt"), "utf-8");
|
||||
const result = await fight(names);
|
||||
console.log(`赢家:|${result.source_plr}|`);
|
||||
}
|
||||
|
||||
main();
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const fight = require('./md5-api.ts').fight;
|
||||
|
||||
// 从文件的 ./input.txt 中读取输入
|
||||
// 然后丢给 md5.js
|
||||
|
||||
async function main() {
|
||||
const input = fs.readFileSync(path.join(__dirname, 'input.txt'), 'utf8');
|
||||
const result = await fight(input);
|
||||
console.log(result);
|
||||
}
|
||||
|
||||
main();
|
|
@ -43,10 +43,10 @@ def on_ica_message(msg: IcaNewMessage, client: IcaClient) -> None:
|
|||
with open(root_path / "md5" / "input.txt", "w") as f:
|
||||
f.write(names)
|
||||
# 执行 node md5.js
|
||||
runner_path = root_path / "md5" / "runs.ts"
|
||||
input_path = root_path / "md5" / "input.txt"
|
||||
runner_path = root_path / "md5" / "md5-api.js"
|
||||
# input_path = root_path / "md5" / "input.txt"
|
||||
result = subprocess.run(
|
||||
["node", runner_path.absolute(), input_path.absolute()],
|
||||
["node", runner_path.absolute()],
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user