1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-26 18:37:54 +08:00

Add: Parameters in Pledge of the Radiant Court chapter AC

This commit is contained in:
LmeSzinc
2022-05-26 20:11:07 +08:00
parent 4f1ea74817
commit a8e92abd61
7 changed files with 122 additions and 15 deletions

View File

@@ -6,7 +6,7 @@ from .a1 import Config as ConfigBase
MAP = CampaignMap('A3')
MAP.shape = 'J8'
MAP.camera_data = ['E2', 'E6', 'G2', 'G6']
MAP.camera_data = ['E2', 'E5', 'G2', 'G5']
MAP.camera_data_spawn_point = ['E6']
MAP.map_data = """
++ ++ -- -- -- -- -- ME -- MB
@@ -58,6 +58,32 @@ class Config(ConfigBase):
MAP_HAS_MYSTERY = False
# ===== End of generated config =====
INTERNAL_LINES_FIND_PEAKS_PARAMETERS = {
'height': (120, 255 - 33),
'width': (1.5, 10),
'prominence': 10,
'distance': 35,
}
EDGE_LINES_FIND_PEAKS_PARAMETERS = {
'height': (255 - 33, 255),
'prominence': 10,
'distance': 50,
'wlen': 1000
}
HOMO_EDGE_COLOR_RANGE = (0, 33)
HOMO_EDGE_HOUGHLINES_THRESHOLD = 210
MAP_ENSURE_EDGE_INSIGHT_CORNER = 'bottom'
MAP_ENEMY_GENRE_DETECTION_SCALING = {
'DD': 1.111,
'CL': 1.111,
'CA': 1.111,
'CAred': 1.111,
'CV': 1.111,
'BB': 1.111,
}
MAP_SWIPE_MULTIPLY = 1.626
MAP_SWIPE_MULTIPLY_MINITOUCH = 1.572
class Campaign(CampaignBase):
MAP = MAP