forked from icexin/gocraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
camera.go
130 lines (112 loc) · 2.32 KB
/
camera.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
package main
import "github.com/go-gl/mathgl/mgl32"
type CameraMovement int
const (
MoveForward CameraMovement = iota
MoveBackward
MoveLeft
MoveRight
)
type Camera struct {
pos mgl32.Vec3
up mgl32.Vec3
right mgl32.Vec3
front mgl32.Vec3
wfront mgl32.Vec3
rotatex, rotatey float32
Sens float32
flying bool
}
func NewCamera(pos mgl32.Vec3) *Camera {
c := &Camera{
pos: pos,
front: mgl32.Vec3{0, 0, -1},
rotatey: 0,
rotatex: -90,
Sens: 0.14,
flying: false,
}
c.updateAngles()
return c
}
func (c *Camera) Restore(state PlayerState) {
c.pos = mgl32.Vec3{state.X, state.Y, state.Z}
c.rotatex = state.Rx
c.rotatey = state.Ry
c.updateAngles()
}
func (c *Camera) State() PlayerState {
return PlayerState{
X: c.pos.X(),
Y: c.pos.Y(),
Z: c.pos.Z(),
Rx: c.rotatex,
Ry: c.rotatey,
}
}
func (c *Camera) Matrix() mgl32.Mat4 {
return mgl32.LookAtV(c.pos, c.pos.Add(c.front), c.up)
}
func (c *Camera) SetPos(pos mgl32.Vec3) {
c.pos = pos
}
func (c *Camera) Pos() mgl32.Vec3 {
return c.pos
}
func (c *Camera) Front() mgl32.Vec3 {
return c.front
}
func (c *Camera) FlipFlying() {
c.flying = !c.flying
}
func (c *Camera) Flying() bool {
return c.flying
}
func (c *Camera) OnAngleChange(dx, dy float32) {
if mgl32.Abs(dx) > 200 || mgl32.Abs(dy) > 200 {
return
}
c.rotatex += dx * c.Sens
c.rotatey += dy * c.Sens
if c.rotatey > 89 {
c.rotatey = 89
}
if c.rotatey < -89 {
c.rotatey = -89
}
c.updateAngles()
}
func (c *Camera) OnMoveChange(dir CameraMovement, delta float32) {
if c.flying {
delta = 5 * delta
}
switch dir {
case MoveForward:
if c.flying {
c.pos = c.pos.Add(c.front.Mul(delta))
} else {
c.pos = c.pos.Add(c.wfront.Mul(delta))
}
case MoveBackward:
if c.flying {
c.pos = c.pos.Sub(c.front.Mul(delta))
} else {
c.pos = c.pos.Sub(c.wfront.Mul(delta))
}
case MoveLeft:
c.pos = c.pos.Sub(c.right.Mul(delta))
case MoveRight:
c.pos = c.pos.Add(c.right.Mul(delta))
}
}
func (c *Camera) updateAngles() {
front := mgl32.Vec3{
cos(radian(c.rotatey)) * cos(radian(c.rotatex)),
sin(radian(c.rotatey)),
cos(radian(c.rotatey)) * sin(radian(c.rotatex)),
}
c.front = front.Normalize()
c.right = c.front.Cross(mgl32.Vec3{0, 1, 0}).Normalize()
c.up = c.right.Cross(c.front).Normalize()
c.wfront = mgl32.Vec3{0, 1, 0}.Cross(c.right).Normalize()
}