-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathupdate.go
58 lines (55 loc) · 1.04 KB
/
update.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
package main
import tea "github.com/charmbracelet/bubbletea"
func (m *model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case tea.KeyMsg:
switch msg.String() {
case "ctrl+c":
return m, tea.Quit
case "w", "W":
m.yStart -= m.height / 20
case "a", "A":
m.xStart -= m.width / 20
case "s", "S":
m.yStart += m.height / 20
case "d", "D":
m.xStart += m.width / 20
case "i", "I":
m.zoom *= 2
m.xStart *= 2
m.yStart *= 2
m.resetCache()
case "o", "O":
m.zoom /= 2
m.xStart /= 2
m.yStart /= 2
m.resetCache()
case "c", "C":
m.nextPalette()
case "n", "N":
m.nextState()
m.resetCache()
case "+":
m.maxIterations += 5
m.resetCache()
case "-":
if m.maxIterations > 5 {
m.maxIterations -= 5
m.resetCache()
}
case "b", "B":
m.bailout += 0.1
m.resetCache()
case "v", "V":
if m.bailout > 0.1 {
m.bailout -= 0.1
m.resetCache()
}
}
case tea.WindowSizeMsg:
m.height = msg.Height
m.width = msg.Width
m.resetCache()
}
return m, nil
}