aboutsummaryrefslogtreecommitdiff
path: root/pkg/field/utils.go
blob: 769af37aa2ec3246fc86d3cc169eea67e5021bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package field

func (f Field) Get(x, y int) int {
	if y >= f.y && y < f.y+f.ly {
		l := f.lines[y-f.y]
		if x >= l.x && x < l.x+l.l {
			return l.columns[x-l.x]
		}
	}
	return ' '
}

func (f Field) isIn(x, y int) bool {
	return x >= f.x && x < f.x+f.lx && y >= f.y && y < f.y+f.ly
}