]> Sergey Matveev's repositories - vors.git/blob - cmd/client/gui.go
Working version
[vors.git] / cmd / client / gui.go
1 // VoRS -- Vo(IP) Really Simple
2 // Copyright (C) 2024 Sergey Matveev <stargrave@stargrave.org>
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Affero General Public License as
6 // published by the Free Software Foundation, version 3 of the License.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 package main
17
18 import (
19         "sort"
20
21         "github.com/jroimartin/gocui"
22 )
23
24 var (
25         GUI       *gocui.Gui
26         GUIReady  bool
27         GUIReadyC = make(chan struct{})
28         GUIMaxY   int
29 )
30
31 func guiQuit(gui *gocui.Gui, v *gocui.View) error {
32         Finish <- struct{}{}
33         return gocui.ErrQuit
34 }
35
36 func mute(gui *gocui.Gui, v *gocui.View) error {
37         Muted = !Muted
38         return nil
39 }
40
41 func guiLayout(gui *gocui.Gui) error {
42         var maxX int
43         maxX, GUIMaxY = gui.Size()
44         prevY := 0
45         v, err := gui.SetView("logs", 0, prevY, maxX-1, prevY+10+2)
46         prevY += 10 + 2
47         if err != nil {
48                 if err != gocui.ErrUnknownView {
49                         return err
50                 }
51                 v.Title = "Logs"
52                 v.Autoscroll = true
53         }
54         sids := make([]int, 0, len(Streams))
55         for sid := range Streams {
56                 sids = append(sids, int(sid))
57         }
58         sort.Ints(sids)
59         var stream *Stream
60         for _, sid := range sids {
61                 stream = Streams[byte(sid)]
62                 v, err = gui.SetView(stream.name, 0, prevY, maxX/2-1, prevY+2)
63                 if err != nil {
64                         if err != gocui.ErrUnknownView {
65                                 return err
66                         }
67                         v.Title = stream.name
68                 }
69                 _, err = gui.SetView(stream.name+"-vol", maxX/2, prevY, maxX-1, prevY+2)
70                 prevY += 3
71                 if err != nil {
72                         if err != gocui.ErrUnknownView {
73                                 return err
74                         }
75                 }
76         }
77         if !GUIReady {
78                 close(GUIReadyC)
79                 GUIReady = true
80                 gui.SetCurrentView(*Name)
81         }
82         return nil
83 }