mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 20:52:20 +00:00
Do not export ASCII chars
This commit is contained in:
parent
177ed189ff
commit
e56b21b819
@ -16,7 +16,7 @@ var (
|
|||||||
currentMessage map[string]*string
|
currentMessage map[string]*string
|
||||||
clientCount map[string]int
|
clientCount map[string]int
|
||||||
|
|
||||||
ASCIICHARS = []byte{' ', '.', ',', ':', ';', '+', '*', '?', '%', '$', '#', '@'}
|
asciiChars = []byte{' ', '.', ',', ':', ';', '+', '*', '?', '%', '$', '#', '@'}
|
||||||
)
|
)
|
||||||
|
|
||||||
// Options holds telnet package configuration
|
// Options holds telnet package configuration
|
||||||
@ -161,8 +161,8 @@ func StartASCIIArtStream(streamID string, reader io.ReadCloser) {
|
|||||||
// Convert image to ASCII
|
// Convert image to ASCII
|
||||||
for j := 0; j < Cfg.Height; j++ {
|
for j := 0; j < Cfg.Height; j++ {
|
||||||
for i := 0; i < Cfg.Width; i++ {
|
for i := 0; i < Cfg.Width; i++ {
|
||||||
textBuff.WriteByte(ASCIICHARS[pixelBuff[Cfg.Width*j+i]/22])
|
textBuff.WriteByte(asciiChars[pixelBuff[Cfg.Width*j+i]/22])
|
||||||
textBuff.WriteByte(ASCIICHARS[pixelBuff[Cfg.Width*j+i]/22])
|
textBuff.WriteByte(asciiChars[pixelBuff[Cfg.Width*j+i]/22])
|
||||||
}
|
}
|
||||||
textBuff.WriteByte('\n')
|
textBuff.WriteByte('\n')
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user