Compare commits
3 Commits
3e5b99e1a9
...
7ec49a9769
Author | SHA1 | Date | |
---|---|---|---|
7ec49a9769 | |||
b6187e0077 | |||
accf16c92a |
@ -65,8 +65,12 @@ func NewWatDb() *WatDb {
|
|||||||
|
|
||||||
func (w *WatDb) User(nick, host string, create bool) Player {
|
func (w *WatDb) User(nick, host string, create bool) Player {
|
||||||
var player Player
|
var player Player
|
||||||
|
query := "nick = ?"
|
||||||
|
if host != "" {
|
||||||
|
query = query + " or host = ?"
|
||||||
|
}
|
||||||
// Try and get a user
|
// Try and get a user
|
||||||
if err := w.db.First(&player, "nick = ? or host = ?", nick, host).Error; err != nil && create {
|
if err := w.db.First(&player, query, nick, host).Error; err != nil && create {
|
||||||
fmt.Printf("Creating user: %s\n", err.Error())
|
fmt.Printf("Creating user: %s\n", err.Error())
|
||||||
// No user, make another
|
// No user, make another
|
||||||
player.Nick = nick
|
player.Nick = nick
|
||||||
|
@ -28,7 +28,7 @@ var unconscious = "wat, your hands fumble and fail you. try resting, weakling."
|
|||||||
|
|
||||||
func NewWatGame(bot *WatBot, db *WatDb) *WatGame {
|
func NewWatGame(bot *WatBot, db *WatDb) *WatGame {
|
||||||
g := WatGame{bot, db, Player{}, nil, nil, nil, nil, map[string]int{}}
|
g := WatGame{bot, db, Player{}, nil, nil, nil, nil, map[string]int{}}
|
||||||
g.me = g.db.User(bot.Nick, "amia8t89xfp8y.liberta.casa", true)
|
g.me = g.db.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,
|
||||||
"steroid": g.Steroid,
|
"steroid": g.Steroid,
|
||||||
|
@ -65,6 +65,23 @@ func (w *WatIntegration) Jeopardy(m *irc.Message, msgargs []string) {
|
|||||||
// 8. The result is an array like "[nick1:1000, nick2:2000]"
|
// 8. The result is an array like "[nick1:1000, nick2:2000]"
|
||||||
finisherPrizes := strings.Split(strings.Replace(strings.Replace(strings.Replace(strings.Replace(strings.Join(msgargs[2:], " "), ") (", ";", -1), ": ", ":", -1), "(", "", 1), ")", "", 1), ";")
|
finisherPrizes := strings.Split(strings.Replace(strings.Replace(strings.Replace(strings.Replace(strings.Join(msgargs[2:], " "), ") (", ";", -1), ": ", ":", -1), "(", "", 1), ")", "", 1), ";")
|
||||||
fmt.Printf("Processing Jeopardy: %s\n", finisherPrizes)
|
fmt.Printf("Processing Jeopardy: %s\n", finisherPrizes)
|
||||||
|
var msg string
|
||||||
|
var many bool
|
||||||
|
fiprcount := len(finisherPrizes)
|
||||||
|
cashoutcount := 0
|
||||||
|
// only a single winner
|
||||||
|
if fiprcount == 1 {
|
||||||
|
msg = "smartass %s :) gave u %d"
|
||||||
|
many = false
|
||||||
|
// multiple winners
|
||||||
|
} else if fiprcount > 1 {
|
||||||
|
msg = "gang of smartasses :) gave %s %d"
|
||||||
|
many = true
|
||||||
|
// no winners (should never get here)
|
||||||
|
} else {
|
||||||
|
fmt.Printf("Empty finishers, aborting Jeopardy processing")
|
||||||
|
return
|
||||||
|
}
|
||||||
// iterate over the "$nick:$value" string elements
|
// iterate over the "$nick:$value" string elements
|
||||||
for _, pair := range finisherPrizes {
|
for _, pair := range finisherPrizes {
|
||||||
// turn the string element into an array, where the first entry is the nickname, and the second the value
|
// turn the string element into an array, where the first entry is the nickname, and the second the value
|
||||||
@ -77,6 +94,10 @@ func (w *WatIntegration) Jeopardy(m *irc.Message, msgargs []string) {
|
|||||||
name := nameCoinPair[0]
|
name := nameCoinPair[0]
|
||||||
// Jeopardy prizes are quite a lot of $$$, make it a bit more sane
|
// Jeopardy prizes are quite a lot of $$$, make it a bit more sane
|
||||||
coins = coins / 40
|
coins = coins / 40
|
||||||
|
if coins == 0 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
cashoutcount += 1
|
||||||
// name = we assume the Jeopardy player name to match a Watbot player name
|
// name = we assume the Jeopardy player name to match a Watbot player name
|
||||||
// host = we could use some WHO logic to find the host, but assuming nickname lookup to be sufficient here
|
// host = we could use some WHO logic to find the host, but assuming nickname lookup to be sufficient here
|
||||||
// create = based on the above, maybe rather not create Watbot players based on only a nick?
|
// create = based on the above, maybe rather not create Watbot players based on only a nick?
|
||||||
@ -85,10 +106,21 @@ func (w *WatIntegration) Jeopardy(m *irc.Message, msgargs []string) {
|
|||||||
if player.Nick == "" {
|
if player.Nick == "" {
|
||||||
fmt.Printf("Player %s does not exist in Watbot, skipping cashout.\n", name)
|
fmt.Printf("Player %s does not exist in Watbot, skipping cashout.\n", name)
|
||||||
continue
|
continue
|
||||||
} else {
|
|
||||||
w.bot.reply(m, fmt.Sprintf("smartass %s, gave u %d :)", player.Nick, coins))
|
|
||||||
player.Coins += coins
|
|
||||||
w.db.Update(player)
|
|
||||||
}
|
}
|
||||||
|
// fill previous format placeholders
|
||||||
|
msg = fmt.Sprintf(msg, player.Nick, coins)
|
||||||
|
if many {
|
||||||
|
// append additional ones for filling in the next loop iteration
|
||||||
|
msg = msg + ", %s %d"
|
||||||
|
}
|
||||||
|
player.Coins += coins
|
||||||
|
w.db.Update(player)
|
||||||
|
}
|
||||||
|
if many {
|
||||||
|
// remove format placeholders from last loop iteration
|
||||||
|
msg = strings.Replace(msg, ", %s %d", ".", 1)
|
||||||
|
}
|
||||||
|
if cashoutcount > 0 {
|
||||||
|
w.bot.reply(m, msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user