2019-03-14 20:21:53 +01:00
|
|
|
package common
|
|
|
|
|
|
|
|
import "strings"
|
|
|
|
|
|
|
|
const CommandNameSeparator = ","
|
|
|
|
|
|
|
|
type ChatCommandNames []string
|
|
|
|
|
|
|
|
func (c ChatCommandNames) String() string {
|
|
|
|
return strings.Join(c, CommandNameSeparator)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Names for commands
|
|
|
|
var (
|
|
|
|
// User Commands
|
|
|
|
CNMe ChatCommandNames = []string{"me"}
|
|
|
|
CNHelp ChatCommandNames = []string{"help"}
|
|
|
|
CNCount ChatCommandNames = []string{"count"}
|
|
|
|
CNColor ChatCommandNames = []string{"color", "colour"}
|
|
|
|
CNWhoAmI ChatCommandNames = []string{"w", "whoami"}
|
|
|
|
CNAuth ChatCommandNames = []string{"auth"}
|
|
|
|
CNUsers ChatCommandNames = []string{"users"}
|
2019-03-19 22:03:34 +01:00
|
|
|
CNNick ChatCommandNames = []string{"nick", "name"}
|
2019-03-14 20:21:53 +01:00
|
|
|
// Mod Commands
|
|
|
|
CNSv ChatCommandNames = []string{"sv"}
|
|
|
|
CNPlaying ChatCommandNames = []string{"playing"}
|
|
|
|
CNUnmod ChatCommandNames = []string{"unmod"}
|
|
|
|
CNKick ChatCommandNames = []string{"kick"}
|
|
|
|
CNBan ChatCommandNames = []string{"ban"}
|
|
|
|
CNUnban ChatCommandNames = []string{"unban"}
|
2019-03-18 03:29:31 +01:00
|
|
|
CNPurge ChatCommandNames = []string{"purge"}
|
2019-03-23 02:39:55 +01:00
|
|
|
CNPin ChatCommandNames = []string{"pin", "password"}
|
2019-03-14 20:21:53 +01:00
|
|
|
// Admin Commands
|
|
|
|
CNMod ChatCommandNames = []string{"mod"}
|
|
|
|
CNReloadPlayer ChatCommandNames = []string{"reloadplayer"}
|
|
|
|
CNReloadEmotes ChatCommandNames = []string{"reloademotes"}
|
|
|
|
CNModpass ChatCommandNames = []string{"modpass"}
|
2019-03-23 02:39:55 +01:00
|
|
|
CNNewPin ChatCommandNames = []string{"newpin", "newpassword"}
|
|
|
|
CNRoomAccess ChatCommandNames = []string{"changeaccess", "hodor"}
|
2019-03-14 20:21:53 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var ChatCommands = []ChatCommandNames{
|
2019-03-22 04:01:21 +01:00
|
|
|
// User
|
|
|
|
CNMe, CNHelp, CNCount, CNColor, CNWhoAmI, CNAuth, CNUsers, CNNick,
|
|
|
|
// Mod
|
2019-03-23 02:39:55 +01:00
|
|
|
CNSv, CNPlaying, CNUnmod, CNKick, CNBan, CNUnban, CNPurge, CNPin,
|
2019-03-22 04:01:21 +01:00
|
|
|
// Admin
|
2019-03-23 02:39:55 +01:00
|
|
|
CNMod, CNReloadPlayer, CNReloadEmotes, CNModpass, CNRoomAccess,
|
2019-03-14 20:21:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func GetFullChatCommand(c string) string {
|
|
|
|
for _, names := range ChatCommands {
|
|
|
|
for _, n := range names {
|
|
|
|
if c == n {
|
|
|
|
return names.String()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|