-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path__init__.py
48 lines (37 loc) · 1.5 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import base64
import json
import os
from hoshino import Service
from .get_target import get_tar
from ..plugin_utils.base_util import get_img_cq
from ..uma_info.info_utils import *
sv = Service('uma_target')
with open(os.path.join(os.path.dirname(__file__), f'{sv.name}_help.png'), 'rb') as f:
base64_data = base64.b64encode(f.read())
s = base64_data.decode()
sv.help = f''
config_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'uma_info')
current_dir = os.path.join(config_dir, 'config_v2.json')
@sv.on_fullmatch('育成目标帮助')
async def get_help(bot, ev):
img_path = os.path.join(os.path.dirname(__file__), f'{sv.name}_help.png')
sv_help = await get_img_cq(img_path)
await bot.send(ev, sv_help)
@sv.on_prefix('查目标')
async def search_target(bot, ev):
uma_name_tmp = str(ev.message).strip().replace('-f', '')
is_force = True if str(ev.message).strip().endswith('-f') else False
with open(current_dir, 'r', encoding='UTF-8') as file:
f_data = json.load(file)
rep_dir = os.path.join(config_dir, 'replace_dict.json')
with open(rep_dir, 'r', encoding='UTF-8') as file:
replace_data = json.load(file)
uma = await query_uma_by_name(uma_name_tmp, f_data, replace_data)
if not uma:
return
uma_target = await get_tar(uma.cn_name, is_force)
if not uma_target:
msg = f'马娘 [{uma.cn_name}] 暂时没有育成模板呢'
else:
msg = uma_target
await bot.send(ev, msg)