This repository was archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtcell.go
146 lines (134 loc) · 2.75 KB
/
tcell.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// +build tcell
package main
import (
"runtime"
"github.com/gdamore/tcell"
)
type gameui struct {
g *game
tcell.Screen
cursor position
small bool
// below unused for this backend
menuHover menu
itemHover int
}
func (ui *gameui) Init() error {
screen, err := tcell.NewScreen()
ui.Screen = screen
if err != nil {
return err
}
err = ui.Screen.Init()
if err != nil {
return err
}
ui.Screen.SetStyle(tcell.StyleDefault)
if runtime.GOOS != "openbsd" {
ui.Screen.EnableMouse()
}
ui.Screen.HideCursor()
ui.HideCursor()
ui.menuHover = -1
return nil
}
func (ui *gameui) Close() {
ui.Screen.Fini()
}
var SmallScreen = false
func (ui *gameui) Flush() {
ui.DrawLogFrame()
for _, cdraw := range ui.g.DrawLog[len(ui.g.DrawLog)-1].Draws {
cell := cdraw.Cell
st := tcell.StyleDefault
fg := cell.Fg
bg := cell.Bg
if Only8Colors {
fg = Map16ColorTo8Color(fg)
bg = Map16ColorTo8Color(bg)
}
st = st.Foreground(tcell.Color(fg)).Background(tcell.Color(bg))
ui.Screen.SetContent(cdraw.X, cdraw.Y, cell.R, nil, st)
}
//ui.g.Printf("%d %d %d", ui.g.DrawFrame, ui.g.DrawFrameStart, len(ui.g.DrawLog))
ui.Screen.Show()
w, h := ui.Screen.Size()
if w <= UIWidth-8 || h <= UIHeight-2 {
SmallScreen = true
} else {
SmallScreen = false
}
}
func (ui *gameui) ApplyToggleLayout() {
GameConfig.Small = !GameConfig.Small
if GameConfig.Small {
ui.Clear()
ui.Flush()
UIHeight = 24
UIWidth = 80
} else {
UIHeight = 26
UIWidth = 100
}
ui.g.DrawBuffer = make([]UICell, UIWidth*UIHeight)
ui.Clear()
}
func (ui *gameui) Small() bool {
return GameConfig.Small || SmallScreen
}
func (ui *gameui) Interrupt() {
ui.Screen.PostEvent(tcell.NewEventInterrupt(nil))
}
func (ui *gameui) PollEvent() (in uiInput) {
switch tev := ui.Screen.PollEvent().(type) {
case *tcell.EventKey:
switch tev.Key() {
case tcell.KeyEsc:
in.key = " "
case tcell.KeyLeft:
// TODO: will not work if user changes keybindings
in.key = "4"
case tcell.KeyDown:
in.key = "2"
case tcell.KeyUp:
in.key = "8"
case tcell.KeyRight:
in.key = "6"
case tcell.KeyHome:
in.key = "7"
case tcell.KeyEnd:
in.key = "1"
case tcell.KeyPgUp:
in.key = "9"
case tcell.KeyPgDn:
in.key = "3"
case tcell.KeyDelete:
in.key = "5"
case tcell.KeyCtrlW:
in.key = "W"
case tcell.KeyCtrlQ:
in.key = "Q"
case tcell.KeyCtrlP:
in.key = "m"
}
if tev.Rune() != 0 && in.key == "" {
in.key = string(tev.Rune())
}
case *tcell.EventMouse:
in.mouseX, in.mouseY = tev.Position()
switch tev.Buttons() {
case tcell.Button1:
in.mouse = true
in.button = 0
case tcell.Button2:
in.mouse = true
in.button = 1
case tcell.Button3:
in.mouse = true
in.button = 2
}
case *tcell.EventInterrupt:
in.interrupt = true
}
return in
}