2
0
mirror of https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git synced 2024-12-23 03:20:52 +08:00
xiaoyao-cvs-plugin/apps/xiaoyao_image.js

158 lines
4.3 KiB
JavaScript
Raw Normal View History

import {
segment
} from "oicq";
import fs from "fs";
2022-06-28 00:32:56 +08:00
import {
Cfg
} from "../components/index.js";
2022-06-20 21:43:24 +08:00
import Data from "../components/Data.js"
import path from 'path';
2022-06-20 21:43:24 +08:00
import fetch from "node-fetch";
2022-07-24 11:46:05 +08:00
import gsCfg from '../model/gsCfg.js'
const _path = process.cwd();
const __dirname = path.resolve();
2022-07-24 11:46:05 +08:00
const list = ["wuqi_tujian","shiwu_tujian", "yuanmo_tujian", "mijin_tujian", "shengyiwu_tujian"]
2022-06-20 21:43:24 +08:00
export async function AtlasAlias(e) {
2022-06-28 23:33:05 +08:00
if (!Cfg.get("Atlas.all")) {
return false;
}
2022-06-28 00:32:56 +08:00
let reg = /#(.*)/;
if (Cfg.get("sys.Atlas")) {
reg = /#*(.*)图鉴/;
2022-06-26 19:31:18 +08:00
}
2022-06-28 00:32:56 +08:00
if (!reg.test(e.msg)) {
2022-06-26 19:31:18 +08:00
return false;
}
2022-06-28 00:32:56 +08:00
if (await Atlas_list(e)) return true;
2022-06-20 21:43:24 +08:00
if (await roleInfo(e)) return true;
2022-07-24 11:46:05 +08:00
// if (await weaponInfo(e)) return true;
2022-06-20 21:43:24 +08:00
// if (await foodInfo(e)) return true;
2022-06-26 22:20:34 +08:00
// if (await RelicsInfo(e)) return true;
2022-06-20 21:43:24 +08:00
// if (await monsterInfo(e)) return true;
var name = e.msg.replace(/#||信息|图鉴|圣遗物|食物|食材|特殊|特色|料理/g, "");
2022-06-26 19:31:18 +08:00
return send_Msg(e, "all", name);
2022-06-20 21:43:24 +08:00
}
export async function roleInfo(e) {
// let msg=e.msg.replace(/#|图鉴/g,"");
let msg = e.msg.replace(/#||信息|图鉴|命座|天赋|突破/g, "");
2022-07-24 11:46:05 +08:00
let id = gsCfg.roleNameToID(msg)
let name;
if (["10000005", "10000007", "20000000"].includes(id)) {
2022-07-26 21:33:33 +08:00
if (!["风主", "岩主", "雷主","草主"].includes(msg)) {
e.reply("请选择:风主图鉴、岩主图鉴、雷主图鉴、草主图鉴");
return true;
}
name = msg;
} else {
2022-07-24 11:46:05 +08:00
name = gsCfg.roleIdToName(id, true);
if (!name) return false;
}
2022-06-18 21:30:24 +08:00
send_Msg(e, "juese_tujian", name)
return true;
}
2022-06-18 21:30:24 +08:00
const send_Msg = function(e, type, name) {
2022-06-20 21:43:24 +08:00
if (type == "all") {
for (let val of list) {
2022-08-02 20:20:34 +08:00
let path = `${_path}/plugins/xiaoyao-cvs-plugin/resources/xiaoyao-plus/${val}/${name}.png`
if (fs.existsSync(path)) {
e.reply(segment.image(`file:///${path}`));
return true;
}
2022-06-20 21:43:24 +08:00
let new_name = info_img(e, Data.readJSON(`${_path}/plugins/xiaoyao-cvs-plugin/resources/Atlas_alias/`,
val), name)
if (new_name) {
name = new_name
type = val;
break;
}
}
}
2022-06-26 19:31:18 +08:00
path = `${_path}/plugins/xiaoyao-cvs-plugin/resources/xiaoyao-plus/${type}/${name}.png`
if (!fs.existsSync(path)) {
2022-06-26 19:31:18 +08:00
return false;
}
e.reply(segment.image(`file:///${path}`));
2022-06-19 18:33:42 +08:00
return true;
}
2022-07-24 11:46:05 +08:00
// let weapon = new Map();
// let weaponFile = [];
// await init();
// export async function init(isUpdate = false) {
// let weaponJson = JSON.parse(fs.readFileSync("./config/genshin/weapon.json", "utf8"));
// for (let i in weaponJson) {
// for (let val of weaponJson[i]) {
// weapon.set(val, i);
// }
// }
// let paths = "./plugins/xiaoyao-cvs-plugin/resources/xiaoyao-plus/wuqi_tujian";
// if (!fs.existsSync(paths)) {
// return true;
// }
// weaponFile = fs.readdirSync(paths);
// for (let val of weaponFile) {
// let name = val.replace(".png", "");
// weapon.set(name, name);
// }
// }
2022-07-24 11:46:05 +08:00
// export async function weaponInfo(e) {
// let msg = e.msg || '';
// if (e.atBot) {
// msg = "#" + msg.replace("#", "");
// }
// if (!/(#*(.*)(信息|图鉴|突破|武器|材料)|#(.*))$/.test(msg)) return;
2022-07-24 11:46:05 +08:00
// let name = weapon.get(msg.replace(/#||信息|图鉴|突破|武器|材料/g, ""));
2022-07-24 11:46:05 +08:00
// if (name) {
// send_Msg(e, "wuqi_tujian", name)
// return true;
// }
2022-07-24 11:46:05 +08:00
// return false;
// }
2022-06-28 00:32:56 +08:00
export async function Atlas_list(e) {
let list = Data.readJSON(`${_path}/plugins/xiaoyao-cvs-plugin/resources/Atlas_alias/`, "Atlas_list");
let name = e.msg.replace(/#|井/g, "")
for (let i in list) {
var title = i.split("|");
for (let j = 0; j < title.length;j++) {
if (title[j] == name) {
await e.reply("请选择:\n"+list[i].join("\n"))
return true;
}
}
}
return false;
}
2022-06-26 22:20:34 +08:00
// export async function RelicsInfo(e) {
// let msg = e.msg || '';
// if (e.atBot) {
// msg = "#" + msg.replace("#", "");
// }
// // if (!/(#*圣遗物(.*)|#(.*))$/.test(msg)) return;
// let name = msg.replace(/#||信息|副本|本|圣遗物|图鉴/g, "");
// let response = await fetch(`https://info.minigg.cn/artifacts?query=${encodeURIComponent(name)}`);
// let res = await response.json();
// if (res?.errcode == "10006") return false;
// name = res["name"];
// if (name) {
// send_Msg(e, "shengyiwu_tujian", name)
// return true;
// }
// return false;
// }
2022-06-20 21:43:24 +08:00
const info_img = function(e, list, name) {
for (let i in list) {
for (let val of list[i]) {
2022-06-28 00:32:56 +08:00
if (val == name || i == name) {
2022-06-20 21:43:24 +08:00
return i;
}
}
2022-06-19 18:33:42 +08:00
}
}