From ddc0af73a244acc709c6b23705ea61b20e23fe80 Mon Sep 17 00:00:00 2001 From: skkiesel Date: Tue, 7 Nov 2017 09:19:25 -0500 Subject: [PATCH] Sometimes you just want some sexy time --- plugins/capturetheflag/capturetheflag.go | 28 ++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/plugins/capturetheflag/capturetheflag.go b/plugins/capturetheflag/capturetheflag.go index c22efdc..c56899a 100644 --- a/plugins/capturetheflag/capturetheflag.go +++ b/plugins/capturetheflag/capturetheflag.go @@ -14,7 +14,11 @@ import ( ) const ( - TIMESTAMP = "2006-01-02 15:04:05" + SECONDS_PER_SECOND = 1 + SECONDS_PER_MINUTE = 60 + SECONDS_PER_HOUR = SECONDS_PER_MINUTE * SECONDS_PER_MINUTE + SECONDS_PER_DAY = SECONDS_PER_HOUR * 24 + SECONDS_PER_YEAR = SECONDS_PER_DAY * 365 ) type CaptureTheFlagPlugin struct { @@ -226,7 +230,7 @@ func (p *CaptureTheFlagPlugin) transferActivePossession(pos *Possession, usr *Us } } - return fmt.Sprintf("%s now has '%s'. %s had it last for %d seconds (total %d seconds).", usr.UserName, flag.FlagName, last.UserName, extraTime, newTime), nil + return fmt.Sprintf("%s now has '%s'. %s had it last for %d seconds (total %d seconds).", usr.UserName, flag.FlagName, last.UserName, sexyTime(extraTime), sexyTime(newTime)), nil } func (p *CaptureTheFlagPlugin) createFirstPossession(usr *User, flag *Flag) error { @@ -308,3 +312,23 @@ func (p *CaptureTheFlagPlugin) tryCapture(username, what string) (string, error) return fmt.Sprintf("You now have '%s'", what), nil } } + +func sexyTime(seconds int64) string { + timeString := "" + units := []int64{SECONDS_PER_YEAR, SECONDS_PER_DAY, SECONDS_PER_HOUR, SECONDS_PER_MINUTE, SECONDS_PER_SECOND} + labels := []string{"year", "day", "hour", "minute", "second"} + + for i, unit := range units { + howMany := seconds / unit + if howMany > 0 { + seconds -= howMany * unit + label := labels[i] + if howMany > 1 { + label += "s" + } + timeString = fmt.Sprintf("%s %d %s", timeString, howMany, label) + } + } + + return strings.TrimSpace(timeString) +}