namerena-work/branch/latest/test.ts

153 lines
3.3 KiB
TypeScript
Raw Normal View History

2024-05-09 00:02:13 +08:00
const md5_module = require("./md5.js");
/**
*
* source_plr ,
*/
type FightResult = {
message: string;
source_plr: string;
target_plr: string;
affect: string | number;
};
/**
*
*/
type WinRate = {
round: number;
win_count: number;
};
/**
*
*/
type WinRateResult = {
souce: number;
raw_data: WinRate[];
};
/**
*
* bool, true , false
*/
type WinRateCallback = (run_round: number, win_count: number) => boolean;
/**
*
*/
type Score = {
round: number;
score: number;
};
/**
*
*/
type ScoreResult = {
source: number;
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!
if (names.startsWith("!test!")) {
throw new Error("你怎么在对战输入里加 !test!(恼)\n${names}");
}
return await md5_module.fight(names);
}
/**
* /
* @param names
* @returns
*/
function test_check(names: string): boolean {
const have_test = names.startsWith("!test!");
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-08 00:57:21 +08:00
// 启动一个 async 函数
async function main() {
2024-05-09 00:02:13 +08:00
const result = await md5_module.fight("aaaaaa\nbbbbb");
2024-05-08 00:57:21 +08:00
2024-05-09 00:02:13 +08:00
console.log("对战结果: ", result);
2024-05-08 00:57:21 +08:00
2024-05-09 00:02:13 +08:00
const win_rate = await md5_module.win_rate("!test!\n\naaaaaa\n\nbbbbb", 1000);
2024-05-08 00:57:21 +08:00
2024-05-09 00:02:13 +08:00
console.log("胜率: ", win_rate);
2024-05-08 01:16:18 +08:00
2024-05-09 00:02:13 +08:00
const score = await md5_module.score("!test!\n\naaaaaabbbb", 1000);
2024-05-08 01:16:18 +08:00
2024-05-09 00:02:13 +08:00
console.log("分数: ", score);
}
2024-05-08 00:57:21 +08:00
main();