aboutsummaryrefslogtreecommitdiff
path: root/pkg/pointer/pointer.go
blob: 5847e70e23be115f71158650a9d83645e7107231 (plain)
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
package pointer

import "git.adyxax.org/adyxax/gofunge/pkg/field"

type Pointer struct {
	// the position
	x int
	y int
	// The delta
	dx int
	dy int
	// The Storage offset
	sox int
	soy int
}

func NewPointer() *Pointer {
	return &Pointer{dx: 1}
}

func (p Pointer) Split() *Pointer {
	return &p // p is already a copy
}

func (p *Pointer) Step(f field.Field) {
	p.x, p.y = f.Step(p.x, p.y, p.dx, p.dy)
}