forked from antonmedv/walk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavigation.go
More file actions
82 lines (72 loc) · 1.37 KB
/
Copy pathnavigation.go
File metadata and controls
82 lines (72 loc) · 1.37 KB
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
package main
func (m *model) moveUp() {
m.r--
if m.r < 0 {
m.r = m.rows - 1
m.c--
}
if m.c < 0 {
m.r = m.rows - 1 - (m.columns*m.rows - len(m.files))
m.c = m.columns - 1
}
}
func (m *model) moveDown() {
m.r++
if m.r >= m.rows {
m.r = 0
m.c++
}
if m.c >= m.columns {
m.c = 0
}
if m.c == m.columns-1 && (m.columns-1)*m.rows+m.r >= len(m.files) {
m.r = 0
m.c = 0
}
}
func (m *model) moveLeft() {
m.c--
if m.c < 0 {
m.c = m.columns - 1
}
if m.c == m.columns-1 && (m.columns-1)*m.rows+m.r >= len(m.files) {
m.r = m.rows - 1 - (m.columns*m.rows - len(m.files))
m.c = m.columns - 1
}
}
func (m *model) moveRight() {
m.c++
if m.c >= m.columns {
m.c = 0
}
if m.c == m.columns-1 && (m.columns-1)*m.rows+m.r >= len(m.files) {
m.r = m.rows - 1 - (m.columns*m.rows - len(m.files))
m.c = m.columns - 1
}
}
func (m *model) moveTop() {
m.r = 0
}
func (m *model) moveBottom() {
m.r = m.rows - 1
if m.c == m.columns-1 && (m.columns-1)*m.rows+m.r >= len(m.files) {
m.r = m.rows - 1 - (m.columns*m.rows - len(m.files))
}
}
func (m *model) moveLeftmost() {
m.c = 0
}
func (m *model) moveRightmost() {
m.c = m.columns - 1
if (m.columns-1)*m.rows+m.r >= len(m.files) {
m.r = m.rows - 1 - (m.columns*m.rows - len(m.files))
}
}
func (m *model) moveStart() {
m.moveLeftmost()
m.moveTop()
}
func (m *model) moveEnd() {
m.moveRightmost()
m.moveBottom()
}