formatting changes from goimport

added a link to source, healing
parse ints through one function and return helpful errors that can be used as return values
added more error checking
improved some output
made some more joke methods
lazily added more if conditions for people i'm sick of
This commit is contained in:
alex 2018-11-08 10:40:08 +00:00
parent ecb988a3d9
commit 237d91de16
3 changed files with 185 additions and 102 deletions

View File

@ -1,10 +1,11 @@
package wat package wat
import ( import (
"github.com/go-irc/irc"
"crypto/tls" "crypto/tls"
"fmt" "fmt"
"strings" "strings"
"github.com/go-irc/irc"
) )
type WatBot struct { type WatBot struct {
@ -60,7 +61,7 @@ func (w *WatBot) AllowedChannel(c string) bool {
func (w *WatBot) Msg(m *irc.Message) { func (w *WatBot) Msg(m *irc.Message) {
// bail out if you're not yves, if you're not tripsit or if you're not in an allowed channel // bail out if you're not yves, if you're not tripsit or if you're not in an allowed channel
// but if you're an admin you can do whatever // but if you're an admin you can do whatever
if m.Prefix.Host == "tripsit/user/Yves" || !strings.Contains(m.Prefix.Host, "tripsit") || (!w.AllowedChannel(m.Params[0]) && !w.Admin(m)) { if m.Prefix.Host == "tripsit/user/creatonez" || m.Prefix.Host == "tripsit/user/Yves" || !strings.Contains(m.Prefix.Host, "tripsit") || (!w.AllowedChannel(m.Params[0]) && !w.Admin(m)) {
return return
} }

View File

@ -2,6 +2,7 @@ package wat
import ( import (
"time" "time"
"github.com/jinzhu/gorm" "github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/sqlite" _ "github.com/jinzhu/gorm/dialects/sqlite"
) )
@ -89,8 +90,11 @@ func (w *WatDb) User(nick, host string, create bool) Player {
return player return player
} }
func (w *WatDb) Update(upd interface{}) { func (w *WatDb) Update(upd ...interface{}) {
w.db.Save(upd) for _, u := range upd {
fmt.Printf("Updating %+v\n", u)
w.db.Save(u)
}
} }
func (w *WatDb) TopTen() []Player { func (w *WatDb) TopTen() []Player {

View File

@ -1,12 +1,13 @@
package wat package wat
import ( import (
"fmt"
"time"
"strings"
"strconv"
"crypto/rand" "crypto/rand"
"fmt"
"math/big" "math/big"
"strconv"
"strings"
"time"
"github.com/go-irc/irc" "github.com/go-irc/irc"
) )
@ -14,14 +15,14 @@ type WatGame struct {
bot *WatBot bot *WatBot
db *WatDb db *WatDb
me Player me Player
commands map[string](func(*Player,[]string)(string)) commands map[string](func(*Player, []string) string)
lifeCommands map[string](func(*Player, []string)(string)) lifeCommands map[string](func(*Player, []string) string)
} }
func NewWatGame(bot *WatBot, db *WatDb) *WatGame { func NewWatGame(bot *WatBot, db *WatDb) *WatGame {
g := WatGame{bot, db, Player{}, nil, nil} g := WatGame{bot, db, Player{}, nil, nil}
g.me = g.db.User(bot.Nick, "tripsit/user/"+bot.Nick, true) g.me = g.db.User(bot.Nick, "tripsit/user/"+bot.Nick, true)
g.commands = map[string](func(*Player,[]string)(string)) { g.commands = map[string](func(*Player, []string) string){
"wat": g.megaWat, "wat": g.megaWat,
"watch": g.Watch, "watch": g.Watch,
"coins": g.Balance, "coins": g.Balance,
@ -29,10 +30,14 @@ func NewWatGame(bot *WatBot, db *WatDb) *WatGame {
"rest": g.Rest, "rest": g.Rest,
"leech": g.Leech, "leech": g.Leech,
"roll": g.Roll, "roll": g.Roll,
"flip": g.Roll,
"dice": g.Dice, "dice": g.Dice,
"mine": g.Mine, "mine": g.Mine,
"riot": g.Riot,
"bench": g.Bench,
} }
g.lifeCommands = map[string](func(*Player, []string)(string)) { g.lifeCommands = map[string](func(*Player, []string) string){
"heal": g.Heal,
"steal": g.Steal, "steal": g.Steal,
"frame": g.Frame, "frame": g.Frame,
"punch": g.Punch, "punch": g.Punch,
@ -45,7 +50,8 @@ var currency = "watcoin"
var currencys = "watcoins" var currencys = "watcoins"
var unconscious = "wat, your hands fumble and fail you. try resting, weakling." var unconscious = "wat, your hands fumble and fail you. try resting, weakling."
var helpText = fmt.Sprintf("coins <nick>, watch <nick>, topten, mine, send <nick> <%s>, roll <%s>, steal <nick> <%s>, frame <nick> <%s>, punch <nick>", currency, currency, currency, currency) var helpText = fmt.Sprintf("coins <nick>, watch <nick>, topten, mine, send <nick> <%s>, roll <%s>, steal <nick> <%s>, frame <nick> <%s>, punch <nick>", currency, currency, currency, currency)
var rules = "A new account is created with 5 hours time credit. Mining exchanges time credit for %s: 1-10h: 1 p/h; >10h: 10 p/h; >1 day: 50 p/h; >1 month: 1000 p/h."
//var rules = "A new account is created with 5 hours time credit. Mining exchanges time credit for %s: 1-10h: 1 p/h; >10h: 10 p/h; >1 day: 50 p/h; >1 month: 1000 p/h."
// missing // missing
// invent, create, give inventory // invent, create, give inventory
@ -57,12 +63,14 @@ func (g *WatGame) Msg(m *irc.Message, player *Player, fields []string) {
} else { } else {
// one liners // one liners
switch strings.ToLower(fields[0]) { switch strings.ToLower(fields[0]) {
case "rules":
reply = rules
case "help": case "help":
reply = helpText reply = helpText
case "topten": case "topten":
reply = fmt.Sprintf("%s holders: %s", currency, g.TopTen()) reply = fmt.Sprintf("%s holders: %s", currency, g.TopTen())
case "source":
reply = "https://git.circuitco.de/self/watbot"
case "butt":
reply = "I LOVE BUTTS"
} }
} }
if g.lifeCommands[fields[0]] != nil { if g.lifeCommands[fields[0]] != nil {
@ -80,6 +88,37 @@ func (g *WatGame) RandInt(max int64) int64 {
return i.Int64() return i.Int64()
} }
func (g *WatGame) Heal(player *Player, fields []string) string {
multiplier := int64(5)
if len(fields) < 3 {
return "#heal <player> <coins> - sacrifice your money to me, peasant! i might heal someone!"
}
target, e := g.GetTarget("", fields[1])
if e != "" {
return e
}
amount, err := g.Int(fields[2])
if err != nil {
return err.Error()
}
if amount > player.Coins {
return "u poor lol"
}
if amount < multiplier {
return fmt.Sprintf("too cheap lol at least %d", multiplier)
}
target.Health += amount / multiplier
player.Coins -= amount
if target.Nick == player.Nick {
target.Coins -= amount
g.db.Update(target)
} else {
g.db.Update(target, player)
}
fmtStr := "%s throws %d on the dirt. %s picks it up and waves their hand across %s, healing them. %s now has %d health."
return fmt.Sprintf(fmtStr, player.Nick, amount, g.bot.Nick, target.Nick, target.Nick, target.Health)
}
func (g *WatGame) Dice(player *Player, fields []string) string { func (g *WatGame) Dice(player *Player, fields []string) string {
roll := int64(6) roll := int64(6)
if len(fields) > 1 { if len(fields) > 1 {
@ -93,13 +132,21 @@ func (g *WatGame) Dice(player *Player, fields []string) string {
} }
type PositiveError struct{} type PositiveError struct{}
func (e PositiveError) Error() string {return ""} type ParseIntError struct {
original string
}
func (e PositiveError) Error() string { return "i don't do negative numbers lol" }
func (e ParseIntError) Error() string { return fmt.Sprintf("wat kinda number is %s", e.original) }
func (g *WatGame) Int(str string) (int64, error) { func (g *WatGame) Int(str string) (int64, error) {
i, e := strconv.ParseInt(str, 10, 64) i, e := strconv.ParseInt(str, 10, 64)
if i < 0 { if i < 0 {
return 0, PositiveError{} return 0, PositiveError{}
} }
if e != nil {
e = ParseIntError{}
}
return i, e return i, e
} }
@ -109,7 +156,7 @@ func (g *WatGame) Roll(player *Player, fields []string) string {
} }
amount, e := g.Int(fields[1]) amount, e := g.Int(fields[1])
if e != nil { if e != nil {
return "wat kinda number is that" return e.Error()
} }
if amount > player.Coins { if amount > player.Coins {
return "wat? brokeass" return "wat? brokeass"
@ -137,6 +184,9 @@ func (g *WatGame) Punch(player *Player, fields []string) string {
if err != "" { if err != "" {
return err return err
} }
if !target.Conscious() {
return "wat? you're punching someone who is already unconscious. u crazy?"
}
chance := g.RandInt(6) + 1 chance := g.RandInt(6) + 1
dmg := g.RandInt(6) + 1 dmg := g.RandInt(6) + 1
ret := fmt.Sprintf("%s rolls a d6... %s ", player.Nick, player.Nick) ret := fmt.Sprintf("%s rolls a d6... %s ", player.Nick, player.Nick)
@ -164,8 +214,8 @@ func (g *WatGame) Frame(player *Player, fields []string) string {
return fmt.Sprintf("frame <nick> <%s> - d6 roll. Sneaky? You force the target to pay me. Clumsy? You pay a fine to the target and myself.", currency) return fmt.Sprintf("frame <nick> <%s> - d6 roll. Sneaky? You force the target to pay me. Clumsy? You pay a fine to the target and myself.", currency)
} }
amount, e := g.Int(fields[2]) amount, e := g.Int(fields[2])
if amount <= 0 || e != nil { if e != nil {
return "wat kinda number is "+fields[2]+"?" return e.Error()
} }
if player.Coins < amount { if player.Coins < amount {
return "wat? you too poor for that." return "wat? you too poor for that."
@ -190,8 +240,7 @@ func (g *WatGame) Frame(player *Player, fields []string) string {
g.me.Coins += amount / 2 g.me.Coins += amount / 2
g.db.Update(g.me) g.db.Update(g.me)
} }
g.db.Update(player) g.db.Update(player, target)
g.db.Update(target)
return ret return ret
} }
@ -200,11 +249,11 @@ func (g *WatGame) Steal(player *Player, fields []string) string {
return fmt.Sprintf("steal <nick> <%s> - d6 roll. If you fail, you pay double the %s to %s", currency, currency, g.bot.Nick) return fmt.Sprintf("steal <nick> <%s> - d6 roll. If you fail, you pay double the %s to %s", currency, currency, g.bot.Nick)
} }
amount, e := g.Int(fields[2]) amount, e := g.Int(fields[2])
if amount <= 0 || e != nil { if e != nil {
return "wat kinda number is "+fields[2]+"?" return e.Error()
} }
if player.Coins < amount*2 { if player.Coins < amount*2 {
return "wat? You'd go bankrupt if they steal back..." return "wat? you need double your theft or you'd go bankrupt if they steal back..."
} }
target, err := g.GetTarget(player.Nick, fields[1]) target, err := g.GetTarget(player.Nick, fields[1])
if target == nil { if target == nil {
@ -267,8 +316,7 @@ func (g *WatGame) Leech(player *Player, fields []string) string {
player.Health += hpDown player.Health += hpDown
player.Anarchy += 1 player.Anarchy += 1
reply += fmt.Sprintf("The deal is done, you took %d HP from %s. They now have %d HP, you have %d.", hpDown, target.Nick, target.Health, player.Health) reply += fmt.Sprintf("The deal is done, you took %d HP from %s. They now have %d HP, you have %d.", hpDown, target.Nick, target.Health, player.Health)
g.db.Update(target) g.db.Update(target, player)
g.db.Update(player)
} else { } else {
reply += "The gods do not smile upon you this waturday. Your money vanishes and nothing happens." reply += "The gods do not smile upon you this waturday. Your money vanishes and nothing happens."
} }
@ -296,6 +344,42 @@ func (g *WatGame) Rest(player *Player, fields []string) string {
return ret return ret
} }
func (g *WatGame) Bench(player *Player, fields []string) string {
weight := g.RandInt(370) + 50
reps := g.RandInt(10)
value := int64(0)
reply := fmt.Sprintf("%s benches %dwatts for %d reps, ", player.Nick, weight, reps)
if weight < 150 {
reply += "do u even lift bro?"
return reply
} else if weight < 250 {
value = 1
} else if weight < 420 {
value = 2
} else if weight == 420 {
value = 10
reply += "four twenty blaze it bro! "
}
player.Anarchy += value
g.db.Update(player)
reply += fmt.Sprintf("ur %d stronger lol", value)
return reply
}
func (g *WatGame) Riot(player *Player, fields []string) string {
r := g.RandInt(100)
reply := ""
if r > 30 {
player.Anarchy += 10
reply = fmt.Sprintf("You have successfully smashed the state! The brogeoise have been toppled. You're now a little more anarchistic (lv %d / exp %d)", player.Anarchy, player.Level(player.Anarchy))
} else {
player.Health -= 3
reply = fmt.Sprintf("The proletariat have been hunted down by the secret police and had their faces smashed in! Your rebellion fails and you lose 3HP.")
}
g.db.Update(player)
return reply
}
func (g *WatGame) QuestStart(player *Player, fields []string) string { func (g *WatGame) QuestStart(player *Player, fields []string) string {
// Begin a quest with some people. It will involve multiple dice rolls. // Begin a quest with some people. It will involve multiple dice rolls.
return "" return ""
@ -305,9 +389,9 @@ func (g *WatGame) Send(player *Player, fields []string) string {
if len(fields) < 3 { if len(fields) < 3 {
return fmt.Sprintf("You forgot somethin'. send <nick> <%s>", currency) return fmt.Sprintf("You forgot somethin'. send <nick> <%s>", currency)
} }
amount, err := strconv.Atoi(fields[2]) amount, err := g.Int(fields[2])
if err != nil { if err != nil {
return fields[2] + " is not an integer, wat?" return err.Error()
} }
if int64(amount) > player.Coins { if int64(amount) > player.Coins {
return "wat? you're too poor!" return "wat? you're too poor!"
@ -318,8 +402,7 @@ func (g *WatGame) Send(player *Player, fields []string) string {
} }
player.Coins -= int64(amount) player.Coins -= int64(amount)
target.Coins += int64(amount) target.Coins += int64(amount)
g.db.Update(player) g.db.Update(player, target)
g.db.Update(target)
return fmt.Sprintf("%s sent %s %d %s. %s has %d %s, %s has %d %s", player.Nick, target.Nick, amount, currency, player.Nick, player.Coins, currency, target.Nick, target.Coins, currency) return fmt.Sprintf("%s sent %s %d %s. %s has %d %s, %s has %d %s", player.Nick, target.Nick, amount, currency, player.Nick, player.Coins, currency, target.Nick, target.Coins, currency)
} }
@ -359,7 +442,7 @@ func (g *WatGame) Watch(player *Player, fields []string) string {
} }
player = maybePlayer player = maybePlayer
} }
return fmt.Sprintf("%s's Watting: %d (%d) / Anarchy: %d (%d) / Trickery: %d (%d) / Coins: %d / Health: %d", player.Nick, player.Level(player.Watting), player.Watting, player.Level(player.Anarchy), player.Anarchy, player.Trickery, player.Trickery, player.Coins, player.Health) return fmt.Sprintf("%s's Watting: %d (%d) / Strength: %d (%d) / Trickery: %d (%d) / Coins: %d / Health: %d", player.Nick, player.Level(player.Watting), player.Watting, player.Level(player.Anarchy), player.Anarchy, player.Trickery, player.Trickery, player.Coins, player.Health)
} }
func (g *WatGame) Balance(player *Player, fields []string) string { func (g *WatGame) Balance(player *Player, fields []string) string {
@ -372,11 +455,6 @@ func (g *WatGame) Balance(player *Player, fields []string) string {
return err return err
} }
} }
if balPlayer.Nick == "hibs" {
ptwo, _ := g.GetTarget("", "vlk")
//balPlayer.Coins = ptwo.Coins
balPlayer.Coins = -1*ptwo.Coins
}
return fmt.Sprintf(balStr, balPlayer.Nick, currency, balPlayer.Coins, time.Now().Unix()-balPlayer.LastMined, balPlayer.CoinsLost) return fmt.Sprintf(balStr, balPlayer.Nick, currency, balPlayer.Coins, time.Now().Unix()-balPlayer.LastMined, balPlayer.CoinsLost)
} }