bb/bot/dice.go

106 lines
1.7 KiB
Go
Raw Permalink Normal View History

package bot
2022-07-26 14:28:02 +00:00
import (
"errors"
"fmt"
"regexp"
"strconv"
"strings"
2022-08-24 14:06:00 +00:00
"git.kill0.net/chill9/beepboop/lib"
2022-07-26 14:28:02 +00:00
"github.com/bwmarrin/discordgo"
2022-07-26 14:28:02 +00:00
log "github.com/sirupsen/logrus"
)
const (
2022-08-25 15:00:43 +00:00
MaxDice = 100
MaxSides = 100
2022-07-26 14:28:02 +00:00
)
type (
Roll struct {
N, D, Sum int
Rolls []int
S string
}
)
func NewRoll(n, d int) *Roll {
r := new(Roll)
r.N = n
r.D = d
r.S = fmt.Sprintf("%dd%d", r.N, r.D)
return r
}
func ParseRoll(roll string) (*Roll, error) {
var (
dice []string
err error
n, d int
)
match, _ := regexp.MatchString(`^(?:\d+)?d\d+$`, roll)
if !match {
return nil, errors.New("invalid roll, use `<n>d<sides>` e.g. `4d6`")
}
dice = strings.Split(roll, "d")
if dice[0] == "" {
n = 1
} else {
n, err = strconv.Atoi(dice[0])
if err != nil {
return nil, err
}
}
d, err = strconv.Atoi(dice[1])
if err != nil {
return nil, err
}
if n > MaxDice || d > MaxSides {
return nil, fmt.Errorf("invalid roll, n must be <= %d and sides must be <= %d", MaxDice, MaxSides)
}
return NewRoll(n, d), nil
}
func (r *Roll) RollDice() {
for i := 1; i <= r.N; i++ {
2022-08-24 14:06:00 +00:00
roll := lib.RandInt(1, r.D)
2022-07-26 14:28:02 +00:00
r.Rolls = append(r.Rolls, roll)
r.Sum += roll
}
}
func (b *Bot) RollCommand() CommandFunc {
return func(args []string, m *discordgo.MessageCreate) error {
var (
err error
msg, roll string
r *Roll
)
2022-07-26 14:28:02 +00:00
roll = args[0]
2022-07-26 14:28:02 +00:00
r, err = ParseRoll(roll)
if err != nil {
b.Session.ChannelMessageSend(m.ChannelID, err.Error())
return nil
}
2022-07-26 14:28:02 +00:00
r.RollDice()
log.Debugf("rolled dice: %+v", r)
2022-07-26 14:28:02 +00:00
msg = fmt.Sprintf("🎲 %s = %d", lib.JoinInt(r.Rolls, " + "), r.Sum)
2022-07-26 14:28:02 +00:00
b.Session.ChannelMessageSend(m.ChannelID, msg)
return nil
}
2022-07-26 14:28:02 +00:00
}