mirror of
https://github.com/earthjasonlin/zzz-signal-search-export.git
synced 2025-04-21 07:50:19 +08:00
Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
bebb14b63d
|
|||
2adf56d062
|
|||
ee94ae36cd
|
|||
e575e46238
|
|||
3fac233471
|
|||
d99af2cc26
|
|||
681e664e32
|
|||
5f9fc94709
|
|||
d96bd9f355
|
|||
3ff2879041
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
## 使用说明
|
## 使用说明
|
||||||
|
|
||||||
1. 下载工具后解压 - 下载地址: [GitHub](https://github.com/earthjasonlin/zzz-signal-search-export/releases/latest/download/ZzzSignalSearchExport.zip) / [123云盘](https://www.123pan.com/s/Vs9uVv-ShhE.html)
|
1. 下载工具后解压 - 下载地址: [GitHub](https://github.com/earthjasonlin/zzz-signal-search-export/releases/latest/download/ZzzSignalSearchExport.zip) / [123云盘](https://www.123pan.com/s/Vs9uVv-ShhE.html) / [蓝奏云(密码:zzzz)](https://www.lanzouh.com/b00eewtvxa)
|
||||||
2. 打开游戏的跃迁详情页面
|
2. 打开游戏的跃迁详情页面
|
||||||
|
|
||||||

|

|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "zzz-signal-search-export",
|
"name": "zzz-signal-search-export",
|
||||||
"version": "1.0.0",
|
"version": "1.0.4",
|
||||||
"main": "./dist/electron/main/main.js",
|
"main": "./dist/electron/main/main.js",
|
||||||
"author": "earthjasonlin <https://git.loliquq.cn/earthjasonlin>",
|
"author": "earthjasonlin <https://git.loliquq.cn/earthjasonlin>",
|
||||||
"homepage": "https://github.com/earthjasonlin/zzz-signal-search-export",
|
"homepage": "https://github.com/earthjasonlin/zzz-signal-search-export",
|
||||||
|
@ -138,15 +138,20 @@ const readLog = async () => {
|
|||||||
}
|
}
|
||||||
const promises = logPaths.map(async logpath => {
|
const promises = logPaths.map(async logpath => {
|
||||||
const logText = await fs.readFile(logpath, 'utf8')
|
const logText = await fs.readFile(logpath, 'utf8')
|
||||||
const gamePathMch = logText.match(/\w:\/.*?\/StarRail_Data\//i)
|
const url = logText.match(/https:\/\/.*?\/info/g)
|
||||||
|
if (url) {
|
||||||
|
return getLatestUrl(url)
|
||||||
|
}
|
||||||
|
const gamePathMch = logText.match(/([A-Z]:\/.*?\/)(?=ZenlessZoneZero_Data)/i)
|
||||||
if (gamePathMch) {
|
if (gamePathMch) {
|
||||||
const [cacheText, cacheFile] = await getCacheText(gamePathMch[0])
|
const[cacheText, cacheFile] = await getCacheText(gamePathMch[0]+"/ZenlessZoneZero_Data")
|
||||||
const urlMch = cacheText.match(/https[^?]+?\?[^?]+?&auth_appid=webview_gacha&.+?authkey=.+?&game_biz=hkrpg_.+?&plat_type=pc/g)
|
const urlMch = cacheText.match(/https.+?authkey=.+?end_id=/g)
|
||||||
if (urlMch) {
|
if (urlMch) {
|
||||||
cacheFolder = cacheFile.replace(/Cache_Data[/\\]data_2$/, '')
|
cacheFolder = cacheFile.replace(/Cache_Data[/\\]data_2$/, '')
|
||||||
return getLatestUrl(urlMch)
|
return getLatestUrl(urlMch)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
const result = await Promise.all(promises)
|
const result = await Promise.all(promises)
|
||||||
for (let url of result) {
|
for (let url of result) {
|
||||||
@ -288,8 +293,8 @@ const fixAuthkey = (url) => {
|
|||||||
const getQuerystring = (url) => {
|
const getQuerystring = (url) => {
|
||||||
const text = i18n.log
|
const text = i18n.log
|
||||||
const { searchParams, host } = new URL(fixAuthkey(url))
|
const { searchParams, host } = new URL(fixAuthkey(url))
|
||||||
if (host.includes('webstatic-sea') || host.includes('hkrpg-api-os') || host.includes('api-os-takumi') || host.includes('hoyoverse.com')) {
|
if (host.includes('webstatic-sea') || host.includes('hoyoverse.com')) {
|
||||||
apiDomain = 'https://api-os-takumi.mihoyo.com'
|
apiDomain = 'https://public-operation-nap-sg.hoyoverse.com'
|
||||||
} else {
|
} else {
|
||||||
apiDomain = 'https://public-operation-nap.mihoyo.com'
|
apiDomain = 'https://public-operation-nap.mihoyo.com'
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ const gachaDetail = (data) => {
|
|||||||
detail.ssrPos.push([name, index + 1 - lastSSR, time, key])
|
detail.ssrPos.push([name, index + 1 - lastSSR, time, key])
|
||||||
lastSSR = index + 1
|
lastSSR = index + 1
|
||||||
detail.count4++
|
detail.count4++
|
||||||
detail.countMio++
|
detail.countMio = 0
|
||||||
if (isWeapon(type)) {
|
if (isWeapon(type)) {
|
||||||
detail.count4w++
|
detail.count4w++
|
||||||
itemCount(detail.weapon4, name)
|
itemCount(detail.weapon4, name)
|
||||||
|
Reference in New Issue
Block a user