forked from ousaka99/DiscordBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbot_command.py
More file actions
413 lines (355 loc) · 14.4 KB
/
bot_command.py
File metadata and controls
413 lines (355 loc) · 14.4 KB
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
import random
from collections import defaultdict
class BotCommand:
def __init__(self, logger, config, json_data):
self.logger = logger
self.config = config
self.json_data = json_data
self.commands_comment = dict()
self.commands_comment[self.config.command_help] = ''
self.commands_comment[self.config.command_tier] = ' 最小Tier 最大Tier'
self.commands_comment[self.config.command_ship] = (' 最小Tier 最大Tier '
'(リクエスト回数やBB、CA、DD、日、米指定など)')
self.commands_comment[self.config.command_choice] = ' 選択肢1 (選択肢2 選択肢3...)'
self.commands_comment[self.config.command_pickup] = ' 選択数 選択肢1 (選択肢2 選択肢3...)'
self.commands_comment[self.config.command_team] = ' チーム数 選択肢1 選択肢2 (選択肢3 選択肢4...)'
self.commands_comment_recruit_open = '- 使用例: ぶんぼ 対空艦@2'
self.commands_comment_recruit_close = '- 使用例: しめきり'
self.commands_comment_recruit_regist = '- 使用例: つうち(現在の通知設定を確認)/ つうち ON / つうち OFF'
kinds = set()
for x in self.json_data.luck_data["luck_comment"]:
kinds.add(x)
self.commands_comment[self.config.command_luck] = " (" + "、".join(kinds) + ")"
def bot_command_help(self, words):
params = words[1:]
options = params[0:]
comment = "使用できるコマンドは以下です。"
comments = []
for option in options:
if option.startswith("-c"):
comment = option[2:]
for x in self.config.release_commands:
comments.append(f"{x}{self.commands_comment[x]}")
msg = f'{comment}\n'
msg += ('\n'.join(comments) + '\n'
'上記コマンドには-cオプションがあり、見出しが設定できます。\n例) !luck -c明日の運勢は\n\n')
msg += 'その他に、以下のコマンドが使えます。\n'
msg += '/'.join(self.config.command_recruit_open) + '\n' + self.commands_comment_recruit_open + '\n'
msg += '/'.join(self.config.command_recruit_close) + '\n' + self.commands_comment_recruit_close + '\n'
msg += '/'.join(self.config.command_recruit_regist) + '\n' + self.commands_comment_recruit_regist + '\n'
return msg
def bot_command_tier(self, words):
result = self.bot_command_tier_execute(words)
tier = result[0]
comment = result[1]
msg = ''
if tier is not None:
if len(comment) > 0:
msg = f"{comment}\n"
msg += f'Tier{tier} がいいと思います。'
else:
msg = (f'すみません。よく分かりませんでした。'
f'```'
f'例){self.config.command_tier}{self.commands_comment[self.config.command_tier]}'
f'```')
return msg
def bot_command_tier_execute(self, words):
params = words[1:]
min_tier = -1
max_tier = -1
options = params[2:]
comment = ""
if len(params) >= 2:
try:
min_tier = int(params[0])
max_tier = int(params[1])
except ValueError:
# PythonにはTryParseが無いため、実際にキャストしてみる(エラーは握り潰し)
pass
for option in options:
if option.startswith("-c"):
comment = option[2:]
self.logger.debug(f'min_tier={min_tier},'
f'max_tier={max_tier},'
f'comment={comment}')
if (1 <= min_tier <= 10) and (1 <= max_tier <= 10) and min_tier <= max_tier:
tiers = list(range(min_tier, max_tier + 1))
tier = random.choice(tiers)
else:
tier = None
return tier, comment
def bot_command_ship(self, words):
result = self.bot_command_ship_execute(words)
ships = result[0]
comment = result[1]
msg = ''
if ships is not None:
if len(ships) == 0:
msg = f'すみません。おすすめを見つけることができませんでした。'
elif len(comment) > 0:
msg = f"{comment}\n"
msg += '\n'.join(ships) + '\nがいいと思います。'
else:
msg = (f'すみません。よく分かりませんでした。'
f'```'
f'例){self.config.command_ship}{self.commands_comment[self.config.command_ship]}'
f'```')
return msg
def bot_command_ship_execute(self, words):
params = words[1:]
min_tier = -1
max_tier = -1
options = [] # 変動
request_count = 1
kinds = set()
nations = set()
comment = ""
if len(params) >= 2:
try:
min_tier = int(params[0])
max_tier = int(params[1])
except ValueError:
# PythonにはTryParseが無いため、実際にキャストしてみる(エラーは握り潰し)
pass
if len(params) >= 3:
try:
request_count = int(params[2])
except ValueError:
# PythonにはTryParseが無いため、実際にキャストしてみる(エラーは握り潰し)
request_count = -1
if request_count > 0:
options = params[3:]
else:
request_count = 1
options = params[2:]
for option in options:
if option.startswith("-c"):
comment = option[2:]
if 'CV' in option:
kinds.add('空母')
if 'BB' in option:
kinds.add('戦艦')
if 'CA' in option:
kinds.add('巡洋')
if 'DD' in option:
kinds.add('駆逐')
if '日' in option:
nations.add('日本')
if '米' in option:
nations.add('アメリカ')
if 'ソ' in option:
nations.add('ソ連')
if '独' in option:
nations.add('ドイツ')
if '英' in option:
nations.add('イギリス')
if '仏' in option:
nations.add('フランス')
if 'パ' in option:
nations.add('パンジア')
if '伊' in option:
nations.add('イタリア')
if '波' in option:
nations.add('ポーランド')
if 'イ' in option:
nations.add('イギリス連邦')
if 'ア' in option:
nations.add('パンアメリカ')
self.logger.debug(f'min_tier={min_tier},'
f'max_tier={max_tier},'
f'request_count={request_count},'
f'kinds={kinds},'
f'nations={nations},'
f'comment={comment}')
if request_count > 20:
msg = f'すみません。欲張りすぎです。もうちょっと少なくしてください。'
return msg
elif (1 <= min_tier <= 10) and (1 <= max_tier <= 10) and min_tier <= max_tier and 0 < request_count:
ship_data = self.json_data.ship_data
target_ship_data = [x for x in ship_data['ships'] if min_tier <= int(x['tier']) <= max_tier]
if len(kinds) > 0:
target_ship_data = [x for x in target_ship_data if x['kind'] in kinds]
if len(nations) > 0:
target_ship_data = [x for x in target_ship_data if x['nation'] in nations]
if len(target_ship_data) < 1:
ships = []
else:
ships = []
if len(target_ship_data) < request_count:
request_count = len(target_ship_data)
samples = random.sample(target_ship_data, request_count)
for x in samples:
name = samples[x]['name']
tier = samples[x]['tier']
ships.append(f'{name}(Tier{tier})')
else:
ships = None
return ships, comment
def bot_command_choice(self, words):
result = self.bot_command_choice_execute(words)
choice = result[0]
comment = result[1]
msg = ''
if choice is not None:
if len(comment) > 0:
msg = f"{comment}\n"
msg += f'{choice} がいいと思います。'
else:
msg = (f'すみません。よく分かりませんでした。'
f'```'
f'例){self.config.command_choice}{self.commands_comment[self.config.command_choice]}'
f'```')
return msg
def bot_command_choice_execute(self, words):
params = words[1:]
options = params[0:]
choices = []
comment = ""
for option in options:
if option.startswith("-c"):
comment = option[2:]
else:
choices.append(option)
self.logger.debug(f'choices={choices},'
f'comment={comment}')
if len(choices) >= 1:
choice = random.choice(choices)
else:
choice = None
return choice, comment
def bot_command_pickup(self, words):
result = self.bot_command_pickup_execute(words)
pickups = result[0]
comment = result[1]
msg = ''
if pickups is not None:
if len(comment) > 0:
msg = f"{comment}\n"
msg += '\n'.join(pickups) + '\nがいいと思います。'
else:
msg = (f'すみません。よく分かりませんでした。'
f'```'
f'例){self.config.command_pickup}{self.commands_comment[self.config.command_pickup]}'
f'```')
return msg
def bot_command_pickup_execute(self, words):
params = words[1:]
options = params[1:]
pickup_count = -1
choices = []
comment = ""
if len(params) >= 1:
try:
pickup_count = int(params[0])
except ValueError:
# PythonにはTryParseが無いため、実際にキャストしてみる(エラーは握り潰し)
pass
for option in options:
if option.startswith("-c"):
comment = option[2:]
else:
choices.append(option)
self.logger.debug(f'pickup_count={pickup_count},'
f'choices={choices},'
f'comment={comment}')
if 0 < pickup_count <= len(choices):
pickups = random.sample(choices, pickup_count)
else:
pickups = None
return pickups, comment
def bot_command_team(self, words):
result = self.bot_command_team_execute(words)
teams = result[0]
comment = result[1]
msg = ''
if teams is not None:
if len(comment) > 0:
msg = f"{comment}"
for x in teams.keys():
team_idx = x + 1
msg += f"\n■Team{team_idx}が\n"
msg += '\n'.join(teams[x])
msg += '\nでいいと思います。'
else:
msg = (f'すみません。よく分かりませんでした。'
f'```'
f'例){self.config.command_team}{self.commands_comment[self.config.command_team]}'
f'```')
return msg
def bot_command_team_execute(self, words):
params = words[1:]
options = params[1:]
team_count = -1
choices = []
teams = defaultdict(list)
comment = "チーム分けは"
if len(params) >= 1:
try:
team_count = int(params[0])
except ValueError:
# PythonにはTryParseが無いため、実際にキャストしてみる(エラーは握り潰し)
pass
for option in options:
if option.startswith("-c"):
comment = option[2:]
else:
choices.append(option)
self.logger.debug(f'pickup_count={team_count},'
f'choices={choices},'
f'comment={comment}')
if 0 < team_count <= len(choices):
random.shuffle(choices)
for i, choice in enumerate(choices):
team_idx = i % team_count
teams[team_idx].append(choice)
else:
teams = None
return teams, comment
def bot_command_luck(self, words):
result = self.bot_command_luck_execute(words)
choice = result[0]
comment = result[1]
msg = ''
if len(comment) > 0:
msg = f"{comment}\n"
msg += f'{choice} です。'
return msg
def bot_command_luck_execute(self, words):
params = words[1:]
options = params[0:]
choices = []
kinds = set()
kind = "くじ"
comment = ""
for x in self.json_data.luck_data["luck_comment"]:
kinds.add(x)
for option in options:
if option.startswith("-c"):
comment = option[2:]
elif option in kinds:
kind = option
if comment == "":
comment = self.json_data.luck_data["luck_comment"][kind]
items = self.json_data.luck_data["luck_items"][kind]
for item in items:
choices.append(item[0]) in range(0, int(item[1]))
self.logger.debug(f'choices={choices},'
f'comment={comment}')
choice = random.choice(choices)
return choice, comment
def bot_command_kuji(self, words):
result = self.bot_command_kuji_execute(words)
choice = result[0]
comment = result[1]
msg = ''
if len(comment) > 0:
msg = f"{comment}\n"
msg += f'{choice} です。'
return msg
def bot_command_kuji_execute(self, words):
# params = words[1:]
# choices = []
comment = ""
# TODO 未実装
choice = ""
return choice, comment