feat: 「长夜临光」复刻活动导航预更新

This commit is contained in:
uye
2022-09-21 23:56:42 +08:00
committed by MistEO
parent b9c1cfb440
commit f7c49205b6
2 changed files with 139 additions and 10 deletions

View File

@@ -469,6 +469,135 @@
120
]
},
"NL-10": {
"algorithm": "JustReturn",
"action": "DoNothing",
"sub": [
"NL-Open"
],
"next": [
"StageNL-10",
"SwipeToStageNL-10"
]
},
"NL-9": {
"algorithm": "JustReturn",
"action": "DoNothing",
"sub": [
"NL-Open"
],
"next": [
"StageNL-9",
"SwipeToStageNL-9"
]
},
"NL-8": {
"algorithm": "JustReturn",
"action": "DoNothing",
"sub": [
"NL-Open"
],
"next": [
"StageNL-8",
"SwipeToStageNL-8"
]
},
"NL-Open": {
"action": "ClickSelf",
"algorithm": "OcrDetect",
"text": [
"长夜临光",
"复刻"
],
"roi": [
0,
500,
500,
150
],
"next": [
"NLChapterToNL"
]
},
"NLChapterToNL": {
"algorithm": "OcrDetect",
"action": "ClickSelf",
"cache": false,
"text": [
"大骑士岭"
],
"rearDelay": 2000,
"next": [
"NLChapterToNL",
"SwipeToTheRight"
]
},
"SwipeToStageNL-10": {
"algorithm": "JustReturn",
"action": "SlowlySwipeToTheLeft",
"next": [
"StageNL-10",
"SwipeToStageNL-10"
]
},
"SwipeToStageNL-9": {
"algorithm": "JustReturn",
"action": "SlowlySwipeToTheLeft",
"next": [
"StageNL-9",
"SwipeToStageNL-9"
]
},
"SwipeToStageNL-8": {
"algorithm": "JustReturn",
"action": "SlowlySwipeToTheLeft",
"next": [
"StageNL-8",
"SwipeToStageNL-8"
]
},
"StageNL-10": {
"algorithm": "OcrDetect",
"action": "ClickSelf",
"cache": false,
"text": [
"NL-10"
],
"roi": [
0,
145,
1280,
332
]
},
"StageNL-9": {
"algorithm": "OcrDetect",
"action": "ClickSelf",
"cache": false,
"text": [
"NL-9"
],
"roi": [
0,
145,
1280,
332
]
},
"StageNL-8": {
"algorithm": "OcrDetect",
"action": "ClickSelf",
"cache": false,
"text": [
"NL-8"
],
"roi": [
0,
145,
1280,
332
]
},
"GT-5": {
"algorithm": "JustReturn",
"action": "DoNothing",

View File

@@ -30,12 +30,12 @@ namespace MeoAsstGui
/// </summary>
public StageManager()
{
// var sideStory = new StageActivityInfo()
// {
// Tip = "SideStory「理想城:长夏狂欢季」活动",
// UtcExpireTime = new DateTime(2022, 9, 1, 4, 0, 0).AddHours(-8),
// IsResourceCollection = false,
// };
var sideStory = new StageActivityInfo()
{
Tip = "SideStory「长夜临光」复刻活动",
UtcExpireTime = new DateTime(2022, 10, 6, 4, 0, 0).AddHours(-8),
IsResourceCollection = false,
};
var resourceCollection = new StageActivityInfo()
{
Tip = "「夏日嘉年华」,“资源收集”限时全天开放",
@@ -45,10 +45,10 @@ namespace MeoAsstGui
_stages = new Dictionary<string, StageInfo>
{
// SideStory「理想城:长夏狂欢季」活动
// { "IC-9", new StageInfo { Display = "IC-9", Value = "IC-9", Activity = sideStory } },
// { "IC-8", new StageInfo { Display = "IC-8", Value = "IC-8", Activity = sideStory } },
// { "IC-7", new StageInfo { Display = "IC-7", Value = "IC-7", Activity = sideStory } },
// SideStory「长夜临光」复刻活动
// { "NL-10", new StageInfo { Display = "NL-10", Value = "NL-10", Activity = sideStory } },
// { "NL-9", new StageInfo { Display = "NL-9", Value = "NL-9", Activity = sideStory } },
// { "NL-8", new StageInfo { Display = "NL-8", Value = "NL-8", Activity = sideStory } },
// 「当前/上次」关卡导航
{ string.Empty, new StageInfo { Display = Localization.GetString("DefaultStage"), Value = string.Empty } },