forked from Humblemonk/DiceMaiden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdice_maiden_logic.rb
787 lines (674 loc) · 25.6 KB
/
dice_maiden_logic.rb
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
# All bot logic that is not handled by Dice-Bag lives here
# Returns an input string after it's been put through the aliases
def alias_input_pass(input)
# Each entry is formatted [/Alias match regex/, "Alias Name", /gsub replacement regex/, "replace with string"]
alias_input_map = [
[/\b\d+dF\b/i, "Fudge", /\b(\d+)dF\b/i, "\\1d3 f1 t3"], # Fate fudge dice
[/\bSNM\d+\b/i, "Sunsails", /\bSNM(\d+)\b/i, "\\1d6 ie6 t4"], # Sunsails: New Milennium; Fourth Edition
[/\b\d+wh\d+\+/i, "Warhammer", /\b(\d+)wh(\d+)\+/i, "\\1d6 t\\2"], # Warhammer (AoS/40k)
[/\b\d+WoD\d+\b/i, "WoD", /\b(\d+)WoD(\d+)\b/i, "\\1d10 f1 t\\2"], # World of Darkness 4th edition (note: explosions are left off for now)
[/\bdd\d\d\b/i, "Double Digit", /\bdd(\d)(\d)\b/i, "(1d\\1 * 10) + 1d\\2"], # Rolling one dice for each digit
[/\bage\b/i, "AGE System Test", /\b(age)\b/i, "2d6 + 1d6"], # 2d6 plus one drama/dragon/stunt die
[/\B\+d\d+\b/i, "Advantage", /\B\+d(\d+)\b/i, "2d\\1 d1"], # Roll two dice of the specified size and keep the highest
[/\B\-d\d+\b/i, "Disadvantage", /\B\-d(\d+)\b/i, "2d\\1 kl1"], # Roll two dice of the specified size and keep the lowest
[/\B\+d%\B/i, "Advantage on percentile", /\B\+d%\B/i, "((2d10kl1-1) *10) + 1d10"], # Roll two d10s for the tens column and keep the lowest (roll under system) then add a d10 for the ones
[/\B\-d%\B/i, "Disadvantage on percentile", /\B\-d%\B/i, "((2d10k1-1) *10) + 1d10"], # Roll two d10s for the tens column and keep the highest (roll under system) then add a d10 for the ones
[/\b\d+CoD\b/i, "CoD", /\b(\d+)CoD\b/i, "\\1d10 ie10 t8"], # Chronicles of Darkness
[/\bd6s\d+\b/i, "The D6 System", /\bd6s(\d+)\b/i, "\\1d6 + 1d6 ie"], # The D6 System
[/\bsr\d+\b/i, "Shadowrun", /\bsr(\d+)\b/i, "\\1d6 t5"], # Shadowrun system
[/\b\d+d%\B/i, "Percentile roll", /\b(\d+)d%\B/i, "\\1d100"], # Roll a d100
[/\bsp\d+\b/i, "Storypath", /\bsp(\d+)\b/i, "ul \\1d10 ie10 t8"], # storypath system
]
@alias_types = []
new_input = input
# Run through all aliases and record which ones we use
for alias_entry in alias_input_map do
if input.match?(alias_entry[0])
@alias_types.append(alias_entry[1])
new_input.gsub!(alias_entry[2], alias_entry[3])
end
end
return new_input
end
# Returns dice string after it's been put through the aliases
def alias_output_pass(roll_tally)
# Each entry is formatted "Alias Name":[[]/gsub replacement regex/, "replace with string", etc]
# Not all aliases will have an output hash
alias_output_hash = {
"Fudge" => [[/\b1\b/, "-"], [/\b2\b/, " "], [/\b3\b/, "+"]]
}
new_tally = roll_tally
for alias_type in @alias_types do
if alias_output_hash.has_key?(alias_type)
alias_output = alias_output_hash[alias_type]
for replacement in alias_output do
new_tally.gsub!(replacement[0], replacement[1])
end
end
end
return new_tally
end
def check_user_or_nick(event)
if event.user.nick != nil
@user = event.user.nick
else
@user = event.user.name
end
end
def check_comment
if @input.include?('!')
@comment = @input.partition('!').last.lstrip
# remove @ user ids from comments to prevent abuse
@comment.gsub!(/<@!\d+>/,'')
if @comment.include? 'unsort'
@do_tally_shuffle = true
end
@roll = @input[/(^.*)!/]
@roll.slice! @comment
@roll.slice! '!'
end
end
def check_roll(event)
dice_requests = @roll.scan(/\d+d\d+/i)
for dice_request in dice_requests
@special_check = dice_request.scan(/d(\d+)/i).first.join.to_i
@dice_check = dice_request.scan(/d(\d+)/i).first.join.to_i
if @dice_check < 2
event.respond 'Please roll a dice value 2 or greater'
return true
end
if @dice_check > 100
event.respond 'Please roll dice up to d100'
return true
end
# Check for too large of dice pools
@dice_check = dice_request.scan(/(\d+)d/i).first.join.to_i
if @dice_check > 500
event.respond 'Please keep the dice pool below 500'
return true
end
end
end
def check_wrath
if (@special_check == 6) && (@wng == true) && ((@comment.include? 'soak') || (@comment.include? 'exempt') || (@comment.include? 'dmg'))
elsif (@special_check == 6) && (@wng == true)
@roll = "#{@dice_check - 1}d6"
wstr = '(Wrath Dice) 1d6'
wroll = DiceBag::Roll.new(wstr)
@wresult = wroll.result
@wresult_convert = @wresult.to_s
@wrath_value = @wresult_convert.scan(/\d+/).first
true
end
end
def check_seventh
if(@seventh == true)
true
end
end
# Takes raw input and returns a reverse polish notation queue of operators and Integers
def convert_input_to_RPN_queue(event, input)
split_input = input.scan(/\b(?:\d+[d]\d+(?:\s?[a-z]+\d+|\s?[e]+\d*|\s?[ie]+\d*)*)|[\+\-\*\/]|(?:\b\d+\b)|[\(\)]/i)# This is the tokenization string for our input
# change to read left to right order
input_queue = []
while split_input.length > 0
input_queue.push(split_input.pop)
end
operator_priority = {
"+" => 1,
"-" => 1,
"*" => 2,
"/" => 2
}
output_queue = []
operator_stack = []
# Use the shunting yard algorithm to get our order of operations right
while input_queue.length > 0
input_queue_peek = input_queue.last
if input_queue_peek.match?(/\b\d+\b/)# If constant in string form
output_queue.prepend(Integer(input_queue.pop))
elsif input_queue_peek.match?(/\b\d+[d]\w+/i)# If dice roll
output_queue.prepend(process_roll_token(event, input_queue.pop))
elsif input_queue_peek.match?(/[\+\-\*\/]/)
# If the peeked operator is not higher priority than the top of the stack, pop the stack operator down
if operator_stack.length == 0 || operator_stack.last == "(" || operator_priority[input_queue_peek] > operator_priority[operator_stack.last]
operator_stack.push(input_queue.pop)
else
output_queue.prepend(operator_stack.pop)
operator_stack.push(input_queue.pop)
end
elsif input_queue_peek == "("
operator_stack.push( input_queue.pop )
elsif input_queue_peek == ")"
while operator_stack.last != '('
output_queue.prepend(operator_stack.pop)
if operator_stack.length == 0
raise "Extra ')' found!"
end
end
operator_stack.pop # Dispose of the closed "("
input_queue.pop # Dispose of the closing ")"
else
raise "Invalid token! (#{input_queue_peek})"
end
end
while operator_stack.length > 0
if operator_stack.last == '('
raise "Extra '(' found!"
end
output_queue.prepend(operator_stack.pop)
end
return output_queue
end
# Process a stack of tokens in reverse polish notation completely and return the result
def process_RPN_token_queue(input_queue)
output_stack = []
while input_queue.length > 0
input_queue_peek = input_queue.last
if input_queue_peek.is_a?(Integer)
output_stack.push(input_queue.pop)
else # Must be an operator
if output_stack.length < 2
raise input_queue.pop + " is not between two numbers!"
end
operator = input_queue.pop
operand_B = output_stack.pop
operand_A = output_stack.pop
output_stack.push(process_operator_token(operator, operand_A, operand_B))
end
end
if output_stack.length > 1
raise "Extra numbers detected!"
end
return output_stack[0]# There can be only one!
end
# Takes a operator token (e.g. '+') and return the result of the operation on the given operands
def process_operator_token(token, operand_A, operand_B)
if token == '+'
return operand_A + operand_B
elsif token == '-'
return operand_A - operand_B
elsif token == '*'
return operand_A * operand_B
elsif token == '/'
if operand_B == 0
raise 'Tried to divide by zero!'
end
return operand_A / operand_B
else
raise "Invalid Operator: #{token}"
end
end
# Takes a roll token, appends the roll results, and returns the total
def process_roll_token(event, token)
begin
dice_roll = DiceBag::Roll.new(token + @dice_modifiers)
# Rescue on bad dice roll syntax
rescue Exception => error
raise 'Roller encountered error with "' + token + @dice_modifiers + '": ' + error.message
end
token_total = dice_roll.result.total
# Check for reroll or indefinite reroll
reroll_check = dice_roll.result.sections[0].options[:reroll]
reroll_indefinite_check = dice_roll.result.sections[0].options[:reroll_indefinite]
if reroll_check > 0 || reroll_indefinite_check > 0
@reroll_count = dice_roll.result.sections[0].reroll_count()
@show_rerolls = true
else
@show_rerolls = false
end
# Parse the roll and grab the total tally
parse_roll = dice_roll.tree
parsed = parse_roll.inspect
roll_tally = parsed.scan(/tally=\[.*?, @/)
roll_tally = String(roll_tally)
roll_tally.gsub!(/\[*("tally=)|\"\]|\"|, @/, '')
roll_tally.gsub!(/\[\[/, '[')
roll_tally.gsub!(/\]\]/, ']')
if @do_tally_shuffle == true
roll_tally.gsub!("[",'')
roll_tally_array = roll_tally.split(', ').map(&:to_i)
roll_tally = roll_tally_array.shuffle!
roll_tally = String(roll_tally)
end
@tally += roll_tally
return token_total
end
def do_roll(event)
roll_result = nil
@tally = ""
begin
roll_result = process_RPN_token_queue(convert_input_to_RPN_queue(event, @roll))
rescue RuntimeError => error
event.respond 'Error: ' + error.message
return true
end
@dice_result = "Result: #{roll_result}"
end
def log_roll(event)
@server = event.server.name
@time = Time.now.getutc
unless @roll_set.nil?
File.open('dice_rolls.log','a') { |f| f.puts "#{@time} Shard: #{@shard} | #{@server}| #{@user} Rolls:\n #{@roll_set_results}" }
else
File.open('dice_rolls.log', 'a') { |f| f.puts "#{@time} Shard: #{@shard} |#{@server}| #{@user} Roll: #{@tally} #{@dice_result}" }
end
end
def check_fury(event)
if (@special_check == 10) && (@tally.include? '10') && (@dh == true)
event.respond '`Righteous Fury Activated!` Purge the Heretic!'
end
end
def check_icons
@fours = @tally.scan(/4/).count
@fives = @tally.scan(/5/).count
@exalted_icons = @tally.scan(/6/).count
@exalted_icons += 1 if @wresult_convert.include? '6'
if (@wresult_convert.include? '4') || (@wresult_convert.include? '5')
@wrath_icon = 1
else
@wrath_icon = 0
end
@exalted_total = @exalted_icons * 2
@icons = @fours + @fives + @wrath_icon
end
def check_dn(dnum)
icon_total = @icons + @exalted_total
@test_status = if icon_total >= dnum
'**TEST PASSED!**'
else
'**TEST FAILED!**'
end
end
def check_universal_modifiers
# Read universal dice modifiers
@dice_modifiers = @roll.scan(/(?:\s(?:\b[a-z]+\d+\s*))+$/i).first # Grab all options and whitespace at end of input and separated
if @dice_modifiers == nil
@dice_modifiers = ""
else
@roll = @roll[0..-@dice_modifiers.length]
end
end
def respond_wrath(event, dnum)
if @roll == '0d6'
event.respond "#{@user} Roll Wrath: `#{@wrath_value}`"
if @has_comment
event.respond "Roll Reason: `#{@comment}`"
end
else
check_icons
if dnum.to_s.empty? || dnum.to_s.nil?
else
check_dn(dnum)
end
event.respond "#{@user} Roll: `#{@tally}` Wrath: `#{@wrath_value}` | #{@test_status} TOTAL - Icons: `#{@icons}` Exalted Icons: `#{@exalted_icons} (Value:#{@exalted_total})`"
if @has_comment
event.respond "Roll Reason: `#{@comment}`"
end
if @wresult_convert.include? '6'
event.respond 'Combat critical hit and one point of Glory!'
elsif @wresult_convert.include? '1'
event.respond 'Complication!'
end
end
end
def respond_seventh(event)
raises = 0
rollCounts = Hash.new 0
nonTenRoll = []
# Determine explosions
if (@comment.include? "Skill 5") || (@dice_modifiers.include? "e")
explosions = []
explosions = @tally.gsub(/.*,\s\[/,'') # Agreed limit is 5
explosions = explosions.gsub(/\]/,'')
explosions = explosions.split(",").map(&:to_i)
# print "#{@tally} -- Explosion #{explosions}"
explosions = explosions.sample(5) # Force the explosions to 5
p explosions
end
# Clean up tally
_tally = @tally.gsub(/\[/,"")
_tally = _tally.gsub(/\]/,"")
_tally = _tally.split(", ").map(&:to_i)
origRoll = _tally.clone
rollCounts = getRollCounts(_tally)
# Check for @comment for Skill level
## seventh 8d10 !Skill 4
## seventh 8d10 !Skill 5
if(@has_comment)
if (@dice_modifiers.include? "r") # reroll 1 die
# print "Rerolling lowest die\n"
# Remove lowest die in _tally
tmpTally = _tally.clone
lowestRoll = _tally.min.clone
_tally.delete_at(_tally.index(_tally.min))
# Roll a 1d10
newRoll = DiceBag::Roll.new("1d10").result.total
_tally.push(newRoll)
event.respond "#{@user} Rolled: `#{origRoll}` and rerolled lowest `#{lowestRoll}` to have a new Roll: `#{_tally}`"
origRoll = _tally.clone
# p "#{_tally} == #{origRoll}"
rollCounts = getRollCounts(_tally)
# pp rollCounts
end
if @comment =~ /[Ss]kill\s3/
tmpTally = _tally.clone
lowestRoll = _tally.min.clone
_tally.delete_at(_tally.index(_tally.min))
# Roll a 1d10
newRoll = DiceBag::Roll.new("1d10").result.total
_tally.push(newRoll)
event.respond "#{@user} Rolled: `#{origRoll}` and rerolled lowest `#{lowestRoll}` to have a new Roll: `#{_tally}`"
origRoll = _tally.clone
# p "#{_tally} == #{origRoll}"
rollCounts = getRollCounts(_tally)
critTen, nonTenRoll = getCritTen(_tally)
permHash = Hash.new 0
permHash = getValidPerms(_tally)
finalRoll, nonTenRoll = calculateRaises(permHash, nonTenRoll, rollCounts)
# finalRoll.push(critTen)
# finalRoll.delete_if &:empty?
finalRoll += critTen
leftover = nonTenRoll
raises = finalRoll.length# + (critTen.length >= 1 ? critTen.length : 0)
event.respond "#{@user} Rolls: `#{origRoll}` and gets Raises: `#{raises}` from Groups: #{finalRoll} with leftover: #{leftover}"
end
if @comment =~ /[Ss]kill\s4/ # 15's = 2 raises
p "Counting 15's..."
permHash = Hash.new 0
permHash = getValidPerms15(_tally)
finalRoll, roll = calculateRaises15(permHash, _tally, rollCounts)
finalRoll.delete_if &:empty?
leftover = roll
p "Leftover 1: #{leftover}"
raises15 = finalRoll.length*2
# p raises15
if(raises15 == 0) || (leftover.reduce(:+) >= 10) && (leftover.empty? == false) # If raises are 0, run the 10's algorithm
p "Counting 10's..."
critTen, nonTenRoll = getCritTen(_tally)
permHash = Hash.new 0
permHash = getValidPerms(_tally)
finalRoll10, nonTenRoll = calculateRaises(permHash, nonTenRoll, rollCounts)
finalRoll10.push(critTen)
finalRoll10.delete_if &:empty?
finalRoll += finalRoll10
finalRoll.delete_if &:empty?
leftover = nonTenRoll
p leftover
p finalRoll10.length
p raises15
raises = raises15 + finalRoll10.length + (critTen.length >= 1 ? critTen.length : 0)
event.respond "#{@user} Rolls: `#{origRoll}` and gets Raises: `#{raises}` from Groups: #{finalRoll} with leftover: #{leftover}"
else
event.respond "#{@user} Rolls: `#{origRoll}` and gets Raises: `#{raises15}` from Groups: #{finalRoll} with leftover: #{leftover}"
end
end
if (@comment =~ /[Ss]kill\s5/) && (@dice_modifiers.include? "e") # 10's explode
# 10's explode, meaning you roll 1 more die and add it to the tally. Keep doing this every time a 10 is hit
# If there are explosions, let's limit the count to 5
# Add explosions to tally and run Skill 4 then Skill 3
permHash = Hash.new 0
explodedRoll = _tally.clone
p "Orig: #{@tally} - Modified: #{_tally}"
p "#{_tally} -- #{explosions}"
permHash = getValidPerms15(_tally)
raises = 0
finalRoll, roll = calculateRaises15(permHash, _tally, rollCounts)
finalRoll.delete_if &:empty?
leftover = roll
raises15 = finalRoll.length*2
if(raises == 0 || raises15= 0|| leftover.reduce(:+) >=10 ) && (!leftover.empty?)# If raises are 0, run the 10's algorithm
critTen, nonTenRoll = getCritTen(_tally)
permHash = Hash.new 0
permHash = getValidPerms(_tally)
finalRoll10, nonTenRoll = calculateRaises(permHash, nonTenRoll, rollCounts)
finalRoll10.push(critTen)
finalRoll10.delete_if &:empty?
finalRoll += finalRoll10
finalRoll.delete_if &:empty?
leftover = nonTenRoll
raises = raises15 + finalRoll10.length + (critTen.length >= 1 ? critTen.length : 0)
event.respond "#{@user} Rolls: `#{explodedRoll}` and gets Raises: `#{raises}` from Groups: #{finalRoll} with leftover: #{leftover}"
end
else
# event.respond "#{@user} Rolls: `#{@tally}` and gets Raises: `#{raises}` from Groups: #{finalRoll} with leftover: #{leftover}"
end
else
origRoll = _tally.clone
critTen, nonTenRoll = getCritTen(_tally)
permHash = Hash.new 0
permHash = getValidPerms(_tally)
finalRoll, nonTenRoll = calculateRaises(permHash, nonTenRoll, rollCounts)
finalRoll.push(critTen)
finalRoll.delete_if &:empty?
leftover = nonTenRoll
raises = finalRoll.length + (critTen.length > 1 ? critTen.length : 0)
event.respond "#{@user} Rolls: `#{origRoll}` and gets Raises: `#{raises}` from Groups: #{finalRoll} with leftover: #{leftover}"
end
end
def check_donate(event)
# this is jank right now due to a bug I need to fix
if @check =~ /^\s*(#{@prefix}1donate)\s*$/i
event.respond "\n Care to support the bot? You can donate via Patreon https://www.patreon.com/dicemaiden \n You can also do a one time donation via donate bot located here https://donatebot.io/checkout/534632036569448458"
return true
end
end
def check_help(event)
if @check =~ /^\s*(#{@prefix} help)\s*$/i
event.respond "``` Synopsis:\n\t!roll xdx [OPTIONS]\n\n\tDescription:\n\n\t\txdx : Denotes how many dice to roll and how many sides the dice have.\n\n\tThe following options are available:\n\n\t\t+ - / * : Static modifier\n\n\t\te# : The explode value.\n\n\t\tie# : The indefinite explode value.\n\n\t\tk# : How many dice to keep out of the roll, keeping highest value.\n\n\t\tr# : Reroll value.\n\n\t\tir# : Indefinite reroll value.\n\n\t\tt# : Target number for a success.\n\n\t\tf# : Target number for a failure.\n\n\t\t! : Any text after ! will be a comment.\n\n !roll donate : Care to support the bot? Get donation information here. Thanks!\n\n Find more commands at https://github.com/Humblemonk/DiceMaiden\n```"
return true
end
end
def check_purge(event)
if @check =~ /^\s*(#{@prefix} purge)\s*\d*$/i
@roll.slice! 'purge'
amount = @input.to_i
if (amount < 2) || (amount > 100)
event.respond 'Amount must be between 2-100'
return false
end
if event.user.defined_permission?(:manage_messages) == true || event.user.defined_permission?(:administrator) == true || event.user.permission?(:manage_messages, event.channel) == true
event.channel.prune(amount)
else
event.respond "#{@user} does not have permissions for this command"
end
end
end
def check_bot_info(event)
if @check =~ /^\s*(#{@prefix} bot-info)\s*$/i
if @launch_option == "lite"
event.respond "This option is not supported with Dice Maiden Lite."
return true
end
servers = $db.execute "select sum(server_count) from shard_stats;"
event.respond "| Dice Maiden | - #{servers.join.to_i} active servers"
return true
end
end
def check_prefix(event)
if event.channel.pm? || @launch_option == "lite"
@prefix = "!roll"
return
end
begin
@server = event.server.id
@row = $db.execute"select prefix from prefixes where server = #{@server}"
@prefix = @row[0].join(", ")
if @row.empty? == true
@prefix = "!roll"
end
rescue
@prefix = "!roll"
end
end
def handle_prefix(event)
if event.channel.pm?
return false
end
@prefix_setcmd = event.content.strip.to_s
@server = event.server.id
check_user_or_nick(event)
if @prefix_setcmd =~ /^(!dm prefix check)\s*$/i
@prefix_check = $db.execute "select prefix from prefixes where server = #{@server}"
if @prefix_check.empty?
event.respond "This servers prefix is set to: !roll"
return true
else
event.respond "This servers prefix is set to: #{@prefix_check[0].join(", ")}"
return true
end
end
if @prefix_setcmd =~ /^(!dm prefix reset)\s*$/i
if event.user.defined_permission?(:manage_messages) == true || event.user.defined_permission?(:administrator) == true || event.user.permission?(:manage_messages, event.channel) == true
$db.execute "delete from prefixes where server = #{@server}"
event.respond "Prefix has been reset to !roll"
return true
else
event.respond "#{@user} does not have permissions for this command"
return true
end
end
if @prefix_setcmd =~ /^(!dm prefix)/i
if event.user.defined_permission?(:manage_messages) == true || event.user.defined_permission?(:administrator) == true || event.user.permission?(:manage_messages, event.channel) == true
#remove command syntax and trailing which will be added later
@prefix_setcmd.slice! /!dm prefix\s*/i
if @prefix_setcmd.empty?
# do nothing if the set command is empty
return true
end
if @prefix_setcmd.size > 10
event.respond "Prefix too large. Keep it under 10 characters"
return true
end
@prefix_prune = @prefix_setcmd.delete(' ')
$db.execute "insert or replace into prefixes(server,prefix,timestamp) VALUES (#{@server},\"!#{@prefix_prune}\",CURRENT_TIMESTAMP)"
event.respond "Prefix is now set to: !#{@prefix_prune}"
return true
else
event.respond "#{@user} does not have permissions for this command"
return true
end
end
end
def check_server_options(event)
if event.content =~ /(^!dm prefix)/i
if @launch_option == "lite"
event.respond "This option is not supported with Dice Maiden Lite."
return true
end
return handle_prefix(event)
elsif event.content =~ /(^!dm request)/i
if @launch_option == "lite"
event.respond "This option is not supported with Dice Maiden Lite."
return true
end
return set_show_request(event)
end
end
def set_show_request(event)
if event.channel.pm?
return false
end
request_setcmd = event.content.delete_prefix("!dm request").strip
server = event.server.id
check_user_or_nick(event)
if event.user.defined_permission?(:manage_messages) == true || event.user.defined_permission?(:administrator) == true || event.user.permission?(:manage_messages, event.channel) == true
if request_setcmd == "show"
@request_option = true
$db.execute "insert or replace into server_options(server,show_requests,timestamp) VALUES (#{server},\"#{@request_option}\",CURRENT_TIMESTAMP)"
elsif request_setcmd == "hide"
$db.execute "delete from server_options where server = #{server}"
else
event.respond "'" + request_setcmd + "' is not a valid option. Please use 'show' or 'hide'."
return true
end
event.respond "Requests will now be " + (@request_option ? "shown" : "hidden") + " in responses."
return true
else
event.respond "#{@user} does not have permissions for this command"
return true
end
end
def check_request_option(event)
if event.channel.pm? || @launch_option == "lite"
@request_option = false
return
end
server = event.server.id
@request_option = $db.execute "select show_requests from server_options where server = #{server}"
if @request_option.empty?
@request_option = false
end
end
def input_valid(event)
event_input = event.content
if event_input =~ /^(#{@prefix}\s)/i
return true
else
return false
end
end
def check_roll_modes
# check for wrath and glory game mode for roll
if @input.match(/#{@prefix}\s(wng)\s/i)
@wng = true
@input.sub!("wng","")
end
# check for Dark heresy game mode for roll
if @input.match(/#{@prefix}\s(dh)\s/i)
@dh = true
@input.sub!("dh","")
end
# check for simple mode for roll
if @input.match(/#{@prefix}\s(s)\s/i)
@simple_output = true
@input.sub!("s","")
end
# check for roll having an unsorted tally list
if @input.match(/#{@prefix}\s(ul)\s/i)
@do_tally_shuffle = true
@input.sub!("ul","")
end
# Check for 7th sea roll
if @input.match(/#{@prefix}\s(seventh)\s/i)
@seventh = true
@input.sub!("seventh","")
end
if @input.match(/#{@prefix}\s(ed\d+)/i)
@ed = true
end
end
def roll_sets_valid(event)
@roll_set = @input.scan(/#{@prefix}\s+(\d+)\s/i).first.join.to_i if @input.match(/#{@prefix}\s+(\d+)\s/i)
unless @roll_set.nil?
if (@roll_set <=1) || (@roll_set > 20)
event.respond "Roll set must be between 2-20"
return false
end
end
unless @roll_set.nil?
@input.slice!(/^#{@prefix}\s*/i)
@input.slice!(0..@roll_set.to_s.size)
else
@input.slice!(/^#{@prefix}/i)
end
end
def build_response
response = "#{@user} Roll"
if !@simple_output
response = response + ": `#{@tally}`"
if @show_rerolls
response = response + " Rerolls: `#{@reroll_count}`"
end
end
response = response + " #{@dice_result}"
if @has_comment
response = response + " Reason: `#{@comment}`"
end
if @request_option
# Alias parsed initial request
request = @input.split("!")[0]
response = response + " Request: `[#{request.strip}]`"
end
return response
end