ica-plugins/plugins/namerena.py

184 lines
5.7 KiB
Python
Raw Normal View History

from __future__ import annotations
2024-08-02 19:08:49 +08:00
import io
import sys
import time
import traceback
import subprocess
from pathlib import Path
from typing import TYPE_CHECKING, TypeVar
if str(Path(__file__).parent.absolute()) not in sys.path:
sys.path.append(str(Path(__file__).parent.absolute()))
import name_utils
if TYPE_CHECKING:
from ica_typing import (
IcaNewMessage,
IcaClient,
ConfigData,
ReciveMessage,
TailchatReciveMessage,
)
CONFIG_DATA: ConfigData
else:
CONFIG_DATA = None # type: ignore
IcaNewMessage = TypeVar("NewMessage")
IcaClient = TypeVar("IcaClient")
ReciveMessage = TypeVar("ReciveMessage")
TailchatReciveMessage = TypeVar("TailchatReciveMessage")
2024-09-24 23:40:21 +08:00
_version_ = "0.7.0"
2024-08-02 19:08:49 +08:00
2024-09-24 23:40:21 +08:00
CMD_PREFIX = "/namer"
2024-08-02 19:08:49 +08:00
2024-09-24 23:40:21 +08:00
EVAL_CMD = "/namerena"
EVAL_SIMPLE_CMD = f"{CMD_PREFIX}" # 用于简化输入
CONVERT_CMD = f"{CMD_PREFIX}-peek"
2024-09-24 23:43:37 +08:00
FIGHT_CMD = f"{CMD_PREFIX}-fight"
2024-09-24 23:40:21 +08:00
HELP_CMD = f"{EVAL_CMD}-help"
HELP_MSG = f"""namerena-v[{_version_}]
名字竞技场 一款不建议入坑的文字类游戏
- {HELP_CMD} - 查看帮助
- {EVAL_CMD} - 运行名字竞技场, 每一行是一个输入, 输入格式与网页版相同
- {EVAL_SIMPLE_CMD} - 简化输入
- {CONVERT_CMD} - 查看一个名字的属性, 每一行一个名字
- {FIGHT_CMD} - 1v1 战斗, 格式是 "AAA+BBB+[seed]"
- 例如: "AAA+BBB+seed:123@!" 表示 AAA BBB 123@! 为种子进行战斗
- 可以输入多行"""
2024-08-02 19:08:49 +08:00
def convert_name(msg: ReciveMessage, client) -> None:
# 也是多行
if msg.content.find("\n") == -1:
client.send_message(
msg.reply_with(
2024-09-24 23:40:21 +08:00
f"请使用 {CONVERT_CMD} 命令,然后换行输入名字,例如:\n{CONVERT_CMD}\n张三\n李四\n王五\n"
2024-08-02 19:08:49 +08:00
)
)
return
# 去掉 prefix
2024-09-24 23:40:21 +08:00
names = msg.content[len(CONVERT_CMD) :]
2024-08-02 19:08:49 +08:00
# 去掉第一个 \n
names = names[names.find("\n") + 1 :]
cache = io.StringIO()
raw_players = [x for x in names.split("\n") if x != ""]
players = [name_utils.Player() for _ in raw_players]
for i, player in enumerate(players):
if not player.load(raw_players[i]):
cache.write(f"{i+1} {raw_players[i]} 无法解析\n")
raw_players[i] = ""
for i, player in enumerate(players):
if raw_players[i] == "":
continue
cache.write(player.display())
cache.write("\n")
reply = msg.reply_with(f"{cache.getvalue()}版本:{_version_}")
client.send_message(reply)
def eval_fight(msg: ReciveMessage, client) -> None:
if msg.content.find("\n") == -1:
# 在判断一下是不是 /xxx xxxx
if msg.content.find(" ") != -1:
client.send_message(
msg.reply_with(
2024-09-24 23:40:21 +08:00
f"请使用 {EVAL_CMD} 命令,然后换行输入名字,例如:\n{EVAL_CMD}\n张三\n李四\n王五\n"
2024-08-02 19:08:49 +08:00
)
)
return
# 去掉 prefix
2024-09-24 23:40:21 +08:00
names = msg.content[len(EVAL_CMD) :]
2024-08-02 19:08:49 +08:00
# 去掉第一个 \n
names = names[names.find("\n") + 1 :]
2024-08-28 01:27:06 +08:00
# 判空, 别报错了
if names.strip() == "":
client.send_message(msg.reply_with("请输入名字"))
return
2024-08-02 19:08:49 +08:00
start_time = time.time()
# 开始 try
try:
# 内容写入到 ./md5/input.txt
# 路径是插件文件的相对路径
root_path = Path(__file__).parent
with open(root_path / "md5" / "input.txt", "w") as f:
f.write(names)
# 执行 node md5-api.js / bun md5-api.ts
use_bun = CONFIG_DATA["use_bun"]
runner_path = root_path / "md5" / ("md5-api.ts" if use_bun else "md5-api.js")
2024-08-02 19:08:49 +08:00
result = subprocess.run(
["bun", "run", runner_path.absolute()] if use_bun else ["node", runner_path.absolute()],
2024-08-02 19:08:49 +08:00
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
# 获取结果
out_result = result.stdout.decode("utf-8")
err_result = result.stderr.decode("utf-8")
# 发送结果
end_time = time.time()
reply = msg.reply_with(
f"{out_result}{err_result}外部耗时:{end_time - start_time:.2f}s\n版本:{_version_}-{'bun' if use_bun else 'node'}"
2024-08-02 19:08:49 +08:00
)
client.send_message(reply)
except Exception as e:
# 发送错误
reply = msg.reply_with(f"发生错误:{e}\n{traceback.format_exc()}")
client.send_message(reply)
2024-09-24 23:40:21 +08:00
def run_fights(msg: ReciveMessage, client) -> None:
# 先解析出要运行的东西
# 格式
# aaaa+bbb+seed:123@!
# aaa+bbb
content = msg.content[len(FIGHT_CMD) :]
# 去掉第一个 \n
content = content[content.find("\n") + 1 :]
# 判空, 别报错了
if content.strip() == "":
client.send_message(msg.reply_with("请输入名字"))
return
# 以换行分割
fights = content.split("\n")
2024-09-24 23:42:32 +08:00
2024-09-24 23:40:21 +08:00
2024-08-02 19:08:49 +08:00
def dispatch_msg(msg: ReciveMessage, client) -> None:
if msg.is_reply or msg.is_from_self:
return
2024-09-24 23:40:21 +08:00
if msg.content == HELP_CMD:
client.send_message(msg.reply_with(HELP_MSG))
2024-09-24 23:42:32 +08:00
if msg.content.startswith(EVAL_CMD):
2024-08-02 19:08:49 +08:00
eval_fight(msg, client)
2024-09-24 23:40:21 +08:00
elif msg.content.startswith(FIGHT_CMD):
run_fights(msg, client)
elif msg.content.startswith(CONVERT_CMD):
2024-08-02 19:08:49 +08:00
convert_name(msg, client)
2024-09-24 23:42:32 +08:00
elif msg.content.startswith(EVAL_SIMPLE_CMD):
# 放在最后, 避免覆盖 前面的命令
# 同时过滤掉别的 /namer-xxxxx
if msg.content.find(" ") == -1:
return
2024-08-02 19:08:49 +08:00
def on_ica_message(msg: IcaNewMessage, client: IcaClient) -> None:
dispatch_msg(msg, client) # type: ignore
def on_tailchat_message(msg: TailchatReciveMessage, client) -> None:
dispatch_msg(msg, client) # type: ignore
def on_config() -> tuple[str, str]:
return (
"namer.toml",
"use_bun = false # 是否使用 bun"
)