-
Notifications
You must be signed in to change notification settings - Fork 1
/
localSettings.py
162 lines (141 loc) · 4.85 KB
/
localSettings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import os
import json
import logging
import threading
fileLock = threading.Lock()
class LocalSettings:
def __init__(self):
self.checkSize = 32
self.mapBrightness = 50
self.showOutOfLogic = False
self.animateChecks = True
self.swapMouseButtons = False
self.swapItemsAndMap = False
self.showChecked = True
self.showHigherLogic = True
self.showVanilla = True
self.showVanillaEntrances = True
self.showGoMode = True
self.showLogicHints = True
self.dungeonItemsTemplate = 'default.html'
self.itemsTemplate = 'sevenbysix.html'
self.customDungeonItems = None
self.customItems = None
self.showDungeonItemCount = False
self.showItemsOnly = False
self.highlightItemsOnHover = True
self.ownedHighlight = 'bar'
self.enableAutotracking = False
self.autotrackItems = True
self.autotrackChecks = True
self.autotrackEntrances = True
self.autotrackSettings = True
self.autotrackSpoilers = True
self.autotrackGraphicsPack = True
self.autotrackerAddress = ''
self.gps = True
self.followMap = True
self.followToUnderworld = "advanced"
self.linkFace = True
self.spoilOnCollect = False
self.showOwnedPickups = False
self.graphicsPack = ''
self.broadcastItems = 'none'
self.broadcastMap = 'none'
self.stacked = False
self.playerName = None
self.eventName = None
self.apServer = 'archipelago.gg:12345'
self.apSlot = ''
self.apPassword = ''
self.exportAp = True
self.exportTimestamp = True
self.exportFilename = 'Magpie-state'
self.showLegend = True
self.showStats = True
self.ndiEnabled = False
self.showHints = True
self.starHints = False
self.showHintPanel = True
self.diff0Color = '#0066ff'
self.diff0VColor = '#ffffff'
self.diff1Color = '#ffff00'
self.diff1VColor = '#ffffff'
self.diff2Color = '#ff8800'
self.diff2VColor = '#ffffff'
self.diff3Color = '#ff0000'
self.diff3VColor = '#ffffff'
self.diff8Color = '#0066ff'
self.diff8VColor = '#ffffff'
self.diff9Color = '#444444'
self.diff9VColor = '#aaaaaa'
self.diffCheckedColor = '#00ff00'
self.diff0Alpha = 1
self.diff0VAlpha = 1
self.diff1Alpha = 1
self.diff1VAlpha = 1
self.diff2Alpha = 1
self.diff2VAlpha = 1
self.diff3Alpha = 1
self.diff3VAlpha = 1
self.diff8Alpha = 1
self.diff8VAlpha = 1
self.diff9Alpha = 1
self.diff9VAlpha = 1
self.diffCheckedAlpha = 1
self.colorAssistMaps = False
self.bgColor = '#212529'
self.textColor = '#f8f9fa'
self.highlightColor = '#444444'
self.nativeBgColor = '#212529'
def parse(settingsString):
localSettings = json.loads(settingsString)
if 'py/object' in localSettings:
del localSettings['py/object']
obj = LocalSettings()
obj.__dict__ = localSettings
return obj
def graphicsPacks():
return ["Subrosian", "Mario", "Rooster", "Rosa", "Kirby", "Martha", "Meme", "Bunny", "Matty", "Bowwow", "Luigi", "Tarin", "AgesGirl", "Marin", "GrandmaUlrira", "Richard", "NESLink", "Ninten", "MarinAlpha", "X"]
# gfxPath = 'LADXR/gfx/'
# options = []
# with os.scandir(gfxPath) as ls:
# for entry in ls:
# if entry.name.endswith('.bin') and entry.is_file():
# options.append(entry.name[:-4])
# return options
nested = False
def settingsPath():
return 'settings.json' if not nested else os.path.join('..', 'settings.json')
def updateSettings(argsText=None, settingsText=None, localStorage=None, prefix=''):
settings = readSettings()
if argsText:
settings[prefix + 'args'] = argsText
if settingsText:
settings[prefix + 'localSettings'] = settingsText
if localStorage:
settings['localStorage'] = localStorage
writeSettings(settings)
def writeSettings(settings):
text = json.dumps(settings)
try:
with fileLock:
with open(settingsPath(), 'w') as file:
file.write(text)
except Exception as e:
print(f"Error writing settings: {e}")
def readSettings():
try:
with fileLock:
with open(settingsPath(), 'r') as file:
text = file.read()
parsed = json.loads(text)
return parsed
except Exception as e:
print(f"Error reading settings, loading defaults: {e}")
return defaultSettings()
def defaultSettings():
return {
'width': 1150,
'height': 720,
}