custom lingo for those who don't like honking
This commit is contained in:
parent
86b4af8654
commit
60c27f27fc
43
admin.go
43
admin.go
|
@ -43,12 +43,16 @@ func adminscreen() {
|
|||
|
||||
var avatarColors string
|
||||
getconfig("avatarcolors", &avatarColors)
|
||||
loadLingo()
|
||||
|
||||
messages := []*struct {
|
||||
type adminfield struct {
|
||||
name string
|
||||
label string
|
||||
text string
|
||||
}{
|
||||
oneline bool
|
||||
}
|
||||
|
||||
messages := []*adminfield{
|
||||
{
|
||||
name: "servermsg",
|
||||
label: "server",
|
||||
|
@ -68,8 +72,17 @@ func adminscreen() {
|
|||
name: "avatarcolors",
|
||||
label: "avatar colors (4 RGBA hex numbers)",
|
||||
text: string(avatarColors),
|
||||
oneline: true,
|
||||
},
|
||||
}
|
||||
for _, l := range []string{"honked", "bonked", "honked back", "qonked", "evented"} {
|
||||
messages = append(messages, &adminfield{
|
||||
name: "lingo-" + strings.ReplaceAll(l, " ", ""),
|
||||
label: "lingo for " + l,
|
||||
text: relingo[l],
|
||||
oneline: true,
|
||||
})
|
||||
}
|
||||
cursel := 0
|
||||
|
||||
hidecursor := func() {
|
||||
|
@ -145,17 +158,20 @@ func adminscreen() {
|
|||
}
|
||||
|
||||
msglineno := func(idx int) int {
|
||||
off := 2
|
||||
off := 1
|
||||
if idx == -1 {
|
||||
return off
|
||||
}
|
||||
for i, m := range messages {
|
||||
off += 2
|
||||
off += 1
|
||||
if i == idx {
|
||||
return off
|
||||
}
|
||||
if !m.oneline {
|
||||
off += 1
|
||||
off += linecount(m.text)
|
||||
}
|
||||
}
|
||||
off += 2
|
||||
return off
|
||||
}
|
||||
|
@ -170,13 +186,15 @@ func adminscreen() {
|
|||
label := messages[idx].label
|
||||
if idx == cursel {
|
||||
label = reverse(label)
|
||||
if editing {
|
||||
}
|
||||
label = magenta(label)
|
||||
}
|
||||
}
|
||||
text := forscreen(messages[idx].text)
|
||||
if messages[idx].oneline {
|
||||
stdout.WriteString(fmt.Sprintf("%s\t %s", label, text))
|
||||
} else {
|
||||
stdout.WriteString(fmt.Sprintf("%s\n %s", label, text))
|
||||
}
|
||||
}
|
||||
|
||||
drawscreen := func() {
|
||||
clearscreen()
|
||||
|
@ -202,20 +220,20 @@ func adminscreen() {
|
|||
selectnext := func() {
|
||||
if cursel < len(messages)-1 {
|
||||
movecursor(4, msglineno(cursel))
|
||||
stdout.WriteString(messages[cursel].label)
|
||||
stdout.WriteString(magenta(messages[cursel].label))
|
||||
cursel++
|
||||
movecursor(4, msglineno(cursel))
|
||||
stdout.WriteString(reverse(messages[cursel].label))
|
||||
stdout.WriteString(reverse(magenta(messages[cursel].label)))
|
||||
stdout.Flush()
|
||||
}
|
||||
}
|
||||
selectprev := func() {
|
||||
if cursel > 0 {
|
||||
movecursor(4, msglineno(cursel))
|
||||
stdout.WriteString(messages[cursel].label)
|
||||
stdout.WriteString(magenta(messages[cursel].label))
|
||||
cursel--
|
||||
movecursor(4, msglineno(cursel))
|
||||
stdout.WriteString(reverse(messages[cursel].label))
|
||||
stdout.WriteString(reverse(magenta(messages[cursel].label)))
|
||||
stdout.Flush()
|
||||
}
|
||||
}
|
||||
|
@ -231,6 +249,9 @@ func adminscreen() {
|
|||
case '\x1b':
|
||||
break loop
|
||||
case '\n':
|
||||
if m.oneline {
|
||||
break loop
|
||||
}
|
||||
m.text += "\n"
|
||||
drawscreen()
|
||||
case 127:
|
||||
|
|
|
@ -2,6 +2,8 @@ changelog
|
|||
|
||||
=== next
|
||||
|
||||
- Custom lingo for those who don't like honking.
|
||||
|
||||
+ Better support for rich text bios.
|
||||
|
||||
+ Follow and unfollow should work a little better.
|
||||
|
|
12
fun.go
12
fun.go
|
@ -51,6 +51,17 @@ func init() {
|
|||
allowedclasses["dl"] = true
|
||||
}
|
||||
|
||||
var relingo = make(map[string]string)
|
||||
|
||||
func loadLingo() {
|
||||
for _, l := range []string{"honked", "bonked", "honked back", "qonked", "evented"} {
|
||||
v := l
|
||||
k := "lingo-" + strings.ReplaceAll(l, " ", "")
|
||||
getconfig(k, &v)
|
||||
relingo[l] = v
|
||||
}
|
||||
}
|
||||
|
||||
func reverbolate(userid int64, honks []*Honk) {
|
||||
var user *WhatAbout
|
||||
somenumberedusers.Get(userid, &user)
|
||||
|
@ -162,6 +173,7 @@ func reverbolate(userid int64, honks []*Honk) {
|
|||
|
||||
h.HTPrecis = template.HTML(h.Precis)
|
||||
h.HTML = template.HTML(h.Noise)
|
||||
h.What = relingo[h.What]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue