-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup_shipclassifications.py
262 lines (218 loc) · 7.67 KB
/
setup_shipclassifications.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
import logging
from decimal import Decimal
from typing import Optional, List, Tuple
from waitlist.storage.database import Waitlist, ShipCheckCollection, ShipCheck,\
InvType, InvGroup, MarketGroup, WaitlistGroup
from waitlist.base import db
from waitlist.storage import modules
from waitlist.utility.constants import check_types
def add_default_sorting(collection: ShipCheckCollection, logi_wl, dps_wl, sniper_wl):
# how old WTM sorting worked was to first sort out T2 logi ships :>
check = ShipCheck(
checkName = 'SortOutLogiHulls',
checkTargetID = logi_wl.id,
checkType = check_types.SHIP_CHECK_TYPEID,
order = 0,
modifier = Decimal('1.00'),
checkTag = 'logi'
)
collection.checks.append(check)
for k, v in modules.logi_ships.items():
inv_type: InvType = db.session.query(InvType).get(k)
if inv_type is None:
print('ERROR NONE', inv_type)
check.ids.append(inv_type)
# check dps weapons
check = ShipCheck(
checkName = 'SortToDpsByWeapon',
checkTargetID=dps_wl.id,
checkType = check_types.MODULE_CHECK_TYPEID,
order = 1,
modifier = Decimal('1.00'),
checkTag = 'dps'
)
collection.checks.append(check)
for k, v in modules.dps_weapons.items():
inv_type = db.session.query(InvType).get(k)
if inv_type is None:
print('ERROR NONE', inv_type)
check.ids.append(inv_type)
# check sniper weapons
check = ShipCheck(
checkName = 'SortToSniperByWeapon',
checkTargetID = sniper_wl.id,
checkType = check_types.MODULE_CHECK_TYPEID,
order = 1,
modifier = Decimal('1.00'),
checkTag = 'sniper'
)
collection.checks.append(check)
for k, v in modules.sniper_weapons.items():
inv_type = db.session.query(InvType).get(k)
if inv_type is None:
print('ERROR NONE', inv_type)
check.ids.append(inv_type)
# check sniper by market group
check = ShipCheck(
checkName = 'SortToSniperByWeaponMarketGroup',
checkTargetID = sniper_wl.id,
checkType = check_types.MODULE_CHECK_MARKETGROUP,
order = 2,
modifier = Decimal('1.00'),
checkTag = 'sniper'
)
collection.checks.append(check)
for k, v in modules.weapongroups['sniper'].items():
grp = db.session.query(MarketGroup).get(v)
if grp is None:
print('ERROR NONE sniper weapon grps', v)
check.ids.append(grp)
# check dps by market group
check = ShipCheck(
checkName = 'SortToDpsByWeaponMarketGroup',
checkTargetID = dps_wl.id,
checkType = check_types.MODULE_CHECK_MARKETGROUP,
order = 2,
modifier = Decimal('1.00'),
checkTag = 'dps'
)
collection.checks.append(check)
for k, v in modules.weapongroups['dps'].items():
if v == 2432: # skip Entropic Disintigrators
continue
grp = db.session.query(MarketGroup).get(v)
if grp is None:
print('ERROR NONE dps weapongroups', v)
check.ids.append(grp)
# special rule for entropic disintigrators because it needs a higher modifier
check = ShipCheck(
checkName = 'SortToSniperEntropicDisintigrators',
checkTargetID = sniper_wl.id,
checkType = check_types.MODULE_CHECK_MARKETGROUP,
order = 2,
modifier = Decimal('4.00'),
checkTag = 'sniper'
)
collection.checks.append(check)
check.ids.append(db.session.query(MarketGroup).get(2432))
# check dps by ship_type
check = ShipCheck(
checkName = 'SortToDpsByShipType',
checkTargetID = dps_wl.id,
checkType = check_types.SHIP_CHECK_TYPEID,
order = 3,
modifier = Decimal('1.00'),
checkTag = 'dps'
)
collection.checks.append(check)
for k, v in modules.dps_ships.items():
inv_type = db.session.query(InvType).get(k)
if inv_type is None:
print('ERROR NONE', inv_type)
check.ids.append(inv_type)
# sniper ships by typeid
check = ShipCheck(
checkName = 'SortToSniperByShipType',
checkTargetID = sniper_wl.id,
checkType = check_types.SHIP_CHECK_TYPEID,
order = 3,
modifier = Decimal('1.00'),
checkTag = 'sniper'
)
collection.checks.append(check)
for k, v in modules.sniper_ships.items():
inv_type = db.session.query(InvType).get(k)
if inv_type is None:
print('ERROR NONE', inv_type)
check.ids.append(inv_type)
# dps ships by market group id
check = ShipCheck(
checkName = 'SortToDpsByInvGroup',
checkTargetID = dps_wl.id,
checkType = check_types.SHIP_CHECK_INVGROUP,
order = 4,
modifier = Decimal('1.00'),
checkTag = 'dps'
)
collection.checks.append(check)
for k, v in modules.dps_groups.items():
grp = db.session.query(InvGroup).get(k)
if grp is None:
print('ERROR NONE dps groups', k)
check.ids.append(grp)
# logiships by marketgroup
check = ShipCheck(
checkName = 'SortToLogiByInvGroup',
checkTargetID = dps_wl.id,
checkType = check_types.SHIP_CHECK_INVGROUP,
order = 4,
modifier = Decimal('1.00'),
checkTag = 'logi'
)
collection.checks.append(check)
for k, v in modules.logi_groups.items():
grp = db.session.query(InvGroup).get(k)
if grp is None:
print('ERROR NONE logi invgroups', k)
check.ids.append(grp)
if __name__ == '__main__':
waitlistGroup = db.session.query(WaitlistGroup).filter(WaitlistGroup.groupName == 'default').one()
logi_wl = None
dps_wl = None
sniper_wl = None
for wl in waitlistGroup.waitlists:
if wl.waitlistType == 'dps':
dps_wl = wl
if wl.waitlistType == 'logi':
logi_wl = wl
if wl.waitlistType == 'sniper':
sniper_wl = wl
collection = ShipCheckCollection(
checkCollectionName = 'HQAssignments',
waitlistGroupID = waitlistGroup.groupID,
defaultTargetID = dps_wl.id,
defaultTag = 'other'
)
db.session.add(collection)
add_default_sorting(collection, logi_wl, dps_wl, sniper_wl)
db.session.commit()
waitlistGroup = db.session.query(WaitlistGroup).filter(WaitlistGroup.groupName == 'assault').one()
logi_wl = None
dps_wl = None
sniper_wl = None
for wl in waitlistGroup.waitlists:
if wl.waitlistType == 'dps':
dps_wl = wl
if wl.waitlistType == 'logi':
logi_wl = wl
if wl.waitlistType == 'sniper':
sniper_wl = wl
collection = ShipCheckCollection(
checkCollectionName = 'AssaultAssignments',
waitlistGroupID = waitlistGroup.groupID,
defaultTargetID = dps_wl.id,
defaultTag = 'other'
)
db.session.add(collection)
add_default_sorting(collection, logi_wl, dps_wl, sniper_wl)
db.session.commit()
waitlistGroup = db.session.query(WaitlistGroup).filter(WaitlistGroup.groupName == 'vanguard').one()
logi_wl = None
dps_wl = None
sniper_wl = None
for wl in waitlistGroup.waitlists:
if wl.waitlistType == 'dps':
dps_wl = wl
if wl.waitlistType == 'logi':
logi_wl = wl
if wl.waitlistType == 'sniper':
sniper_wl = wl
collection = ShipCheckCollection(
checkCollectionName = 'VanguardAssignments',
waitlistGroupID = waitlistGroup.groupID,
defaultTargetID = dps_wl.id,
defaultTag = 'other'
)
db.session.add(collection)
add_default_sorting(collection, logi_wl, dps_wl, sniper_wl)
db.session.commit()