socket-bot/ica-rs/plugins/md5/md5-api.ts

208 lines
5.2 KiB
TypeScript
Raw Normal View History

2024-05-09 00:27:45 +08:00
const md5_module = require("./md5.js");
2024-05-09 22:54:23 +08:00
// import * as md5_module from "./md5.js";
2024-05-09 00:27:45 +08:00
/**
*
* source_plr ,
*/
type FightResult = {
message: string;
source_plr: string;
target_plr: string;
affect: string | number;
};
/**
*
*/
type WinRate = {
round: number;
win_count: number;
};
/**
*
*/
type WinRateResult = {
2024-05-10 19:32:51 +08:00
win_count: number;
2024-05-09 00:27:45 +08:00
raw_data: WinRate[];
};
/**
*
* bool, true , false
*/
type WinRateCallback = (run_round: number, win_count: number) => boolean;
/**
*
*/
type Score = {
round: number;
score: number;
};
/**
*
*/
type ScoreResult = {
2024-05-10 19:32:51 +08:00
score: number;
2024-05-09 00:27:45 +08:00
raw_data: Score[];
};
/**
*
* bool, true , false
*/
type ScoreCallback = (run_round: number, score: number) => boolean;
/**
*
* @param names
* @returns
*/
async function fight(names: string): Promise<FightResult> {
// 检查一下输入是否合法
// 比如里面有没有 !test!
2024-05-10 12:24:21 +08:00
if (names.indexOf("!test!") !== -1) {
2024-05-09 00:27:45 +08:00
throw new Error("你怎么在对战输入里加 !test!(恼)\n${names}");
}
return await md5_module.fight(names);
}
/**
* /
* @param names
* @returns
*/
function test_check(names: string): boolean {
2024-05-10 19:32:51 +08:00
const have_test = names.trim().startsWith("!test!");
2024-05-09 00:27:45 +08:00
return have_test;
}
/**
*
* @param names
* @param round
* @returns
*/
async function win_rate(names: string, round: number): Promise<WinRateResult> {
// 检查 round 是否合法
if (round <= 0) {
throw new Error("round 必须大于 0");
}
if (!test_check(names)) {
throw new Error(" !test!()\n${names}");
}
return await md5_module.win_rate(names, round);
}
/**
*
* @param names
* @param callback
* @returns
*/
async function win_rate_callback(
names: string,
callback: WinRateCallback,
): Promise<WinRateResult> {
if (!test_check(names)) {
throw new Error("你怎么在胜率输入里丢了 !test!(恼)\n${names}");
}
return await md5_module.win_rate_callback(names, callback);
}
async function score(names: string, round: number): Promise<ScoreResult> {
// 检查 round 是否合法
if (round <= 0) {
throw new Error("round 必须大于 0");
}
if (!test_check(names)) {
throw new Error("你怎么在分数输入里丢了 !test!(恼)\n${names}");
}
return await md5_module.score(names, round);
}
async function score_callback(
names: string,
callback: ScoreCallback,
): Promise<ScoreResult> {
if (!test_check(names)) {
throw new Error("你怎么在分数输入里加 !test!(恼)\n${names}");
}
return await md5_module.score_callback(names, callback);
}
2024-05-09 00:30:41 +08:00
2024-05-10 19:32:51 +08:00
async function run_any(names: string, round: number): Promise<FightResult | WinRateResult | ScoreResult> {
return await md5_module.run_any(names, round);
}
2024-05-10 23:09:30 +08:00
const out_limit: number = 1000;
2024-05-10 19:32:51 +08:00
async function wrap_any(names: string, round: number): Promise<string> {
const result = await run_any(names, round);
if ('message' in result) {
// 对战结果
return `赢家:|${result.source_plr}|`;
} else if ('win_count' in result) {
// 胜率结果
2024-05-10 19:58:29 +08:00
const win_rate = result.win_count * 100 / round;
2024-05-10 19:32:51 +08:00
let win_rate_str = win_rate.toFixed(4);
2024-05-10 20:29:10 +08:00
let output_str = `最终胜率:|${win_rate_str}%|(${round}轮)`;
2024-05-10 19:32:51 +08:00
// 每 500 轮, 输出一次
2024-05-10 23:09:30 +08:00
if (round > out_limit) {
2024-05-10 19:32:51 +08:00
// 把所有要找的数据拿出来
let output_datas: WinRate[] = [];
result.raw_data.forEach((data, index) => {
2024-05-10 23:09:30 +08:00
if (data.round % out_limit === 0) {
2024-05-10 19:32:51 +08:00
output_datas.push(data);
}
});
output_datas.forEach((data, index) => {
2024-05-10 19:58:29 +08:00
const win_rate = data.win_count * 100 / data.round;
2024-05-10 19:32:51 +08:00
output_str += `\n${win_rate.toFixed(2)}%(${data.round})`;
});
}
return output_str;
// } else if ('score' in result) {
} else {
// 分数结果其实还是个胜率, 不过需要 * 100
2024-05-10 19:39:46 +08:00
const win_rate = (result.score * 10000 / round).toFixed(2);
2024-05-10 19:42:01 +08:00
let output_str = `分数:|${win_rate}|(${round}轮)`;
2024-05-10 23:09:30 +08:00
if (round > out_limit) {
2024-05-10 19:32:51 +08:00
// 把所有要找的数据拿出来
let output_datas: Score[] = [];
result.raw_data.forEach((data, index) => {
2024-05-10 23:09:30 +08:00
if (data.round % out_limit === 0) {
2024-05-10 19:32:51 +08:00
output_datas.push(data);
}
});
output_datas.forEach((data, index) => {
2024-05-10 19:42:01 +08:00
const win_rate = (data.score / data.round * 10000).toFixed(2);
output_str += `\n${win_rate}(${data.round})`;
2024-05-10 19:32:51 +08:00
});
}
return output_str;
}
}
2024-05-09 22:54:23 +08:00
async function main() {
// 从相对位置导入内容
const fs = require("fs");
const path = require("path");
const names = fs.readFileSync(path.resolve(__dirname, "input.txt"), "utf-8");
2024-05-10 19:03:03 +08:00
// const result = await fight(names);
2024-05-10 19:32:51 +08:00
// const result = await md5_module.run_any(names, 50000);
2024-05-10 19:03:03 +08:00
// console.log(`赢家:|${result.source_plr}|`);
2024-05-10 23:01:19 +08:00
const start_time = Date.now();
const result = await wrap_any(names, 10000);
const end_time = Date.now();
2024-05-10 19:03:03 +08:00
console.log(result);
2024-05-10 23:01:19 +08:00
console.log(`Node.js 耗时: ${end_time - start_time} ms`);
2024-05-09 22:54:23 +08:00
}
main();