55 lines
1.1 KiB
Go
55 lines
1.1 KiB
Go
package mainwindow
|
|
|
|
import (
|
|
"fmt"
|
|
"lab.zaar.be/thefish/alchemyst-go/engine/gamestate"
|
|
"lab.zaar.be/thefish/alchemyst-go/engine/types"
|
|
)
|
|
|
|
type ViewPort struct {
|
|
types.Rect
|
|
CameraCoords types.Coords
|
|
}
|
|
|
|
func NewViewPort(x, y, w, h int) *ViewPort {
|
|
vp := ViewPort{
|
|
Rect: types.Rect{x, y, w, h},
|
|
}
|
|
return &vp
|
|
}
|
|
|
|
func (vp *ViewPort) Move(state *gamestate.GameState, newCoords types.Coords) {
|
|
|
|
x := newCoords.X - vp.Rect.W/2
|
|
y := newCoords.Y - vp.Rect.H/2
|
|
|
|
if x < 0 {
|
|
x = 0
|
|
}
|
|
if y < 0 {
|
|
y = 0
|
|
}
|
|
if x > state.Level.W - vp.W - 1 {
|
|
x = state.Level.W - vp.W
|
|
}
|
|
if y > state.Level.H-vp.H - 1 {
|
|
y = state.Level.H - vp.H
|
|
}
|
|
if x != vp.CameraCoords.X || y != vp.CameraCoords.Y {
|
|
state.FovRecompute <- struct{}{}
|
|
}
|
|
vp.CameraCoords.X = x
|
|
vp.CameraCoords.Y = y
|
|
|
|
}
|
|
|
|
func (vp *ViewPort) ToVPCoords(c types.Coords) (newCoords types.Coords, err error) {
|
|
//coords on map to coords on vp
|
|
x, y := c.X-vp.CameraCoords.X, c.Y-vp.CameraCoords.Y
|
|
if x < 0 || y < 0 || x > vp.W || y > vp.H {
|
|
return types.Coords{-1, -1}, fmt.Errorf("Not in viewport: {%d, %d}", x, y)
|
|
}
|
|
return types.Coords{x, y}, nil
|
|
}
|
|
|