1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-27 22:37:16 +08:00

Add: Wall data in chapter B

This commit is contained in:
LmeSzinc
2023-08-18 23:17:58 +08:00
parent 68571e67d9
commit 788d486b70
3 changed files with 79 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ MAP.map_data = """
-- Me ME ++ ++ ++ ME --
ME -- -- Me -- -- -- ME
++ ME -- -- __ ME ++ ++
MS -- -- ++ -- -- ++ ++
MS -- -- ++ ++ -- ++ ++
-- -- MS ++ -- -- -- MB
-- SP -- MS __ -- ME --
SP -- Me ++ Me -- -- ME
@@ -58,6 +58,34 @@ class Config:
MAP_HAS_MYSTERY = False
# ===== End of generated config =====
INTERNAL_LINES_FIND_PEAKS_PARAMETERS = {
'height': (150, 255 - 17),
'width': (0.9, 10),
'prominence': 10,
'distance': 35,
}
EDGE_LINES_FIND_PEAKS_PARAMETERS = {
'height': (255 - 17, 255),
'prominence': 10,
'distance': 50,
# 'width': (0, 7),
'wlen': 1000
}
HOMO_EDGE_HOUGHLINES_THRESHOLD = 180
HOMO_EDGE_COLOR_RANGE = (0, 17)
MAP_ENSURE_EDGE_INSIGHT_CORNER = 'bottom'
MAP_ENEMY_GENRE_DETECTION_SCALING = {
'DD': 1.111,
'CL': 1.111,
'CA': 1.111,
'CV': 1.111,
'BB': 1.111,
}
MAP_SWIPE_MULTIPLY = (1.082, 1.102)
MAP_SWIPE_MULTIPLY_MINITOUCH = (1.046, 1.065)
MAP_SWIPE_MULTIPLY_MAATOUCH = (1.016, 1.034)
class Campaign(CampaignBase):
MAP = MAP