tabletop-companion/app/services/dice_roller.rb

56 lines
1.1 KiB
Ruby
Raw Normal View History

2024-06-11 13:55:39 +00:00
# frozen_string_literal: true
2024-07-08 14:08:17 +00:00
require "dice"
2024-06-11 13:55:39 +00:00
class DiceRoller
2024-06-20 07:26:33 +00:00
attr_reader :dice
attr_reader :result
2024-06-11 13:55:39 +00:00
def initialize(roll_command, stat: nil)
@roll_command = roll_command
@stat = stat&.value
2024-06-20 07:26:33 +00:00
@dice = []
2024-06-11 13:55:39 +00:00
end
def roll
2024-07-08 14:08:17 +00:00
@roll_command = @roll_command.sub("self", @stat.to_s) if @roll_command.include?("self")
Dice.roll(@roll_command)
2024-06-11 13:55:39 +00:00
end
def valid?
return if @roll_command.blank?
# No repeated math operators
return false if @roll_command.match?(/[+\-*\/]{2,}/)
# No leading or trailing math operators
return false if @roll_command.match?(/\A[+\-*\/]/) || @roll_command.match?(/[+\-*\/]\z/)
@roll_command.match?(
/
\A(
(\d*d\d*) |
([+\-*\/]) |
(\d+) |
(self)
)*\z/xi,
)
end
private
def roll_dice(command)
parts = command.downcase.split("d").compact_blank
die_type = parts.last
dice_number = parts.length > 1 ? parts.first.to_i : 1
result = 0
dice_number.times do
2024-06-20 07:26:33 +00:00
roll = rand(1..die_type.to_i)
result += roll
dice << [ die_type, result ]
2024-06-11 13:55:39 +00:00
end
result
end
end