2021-08-02 15:16:58 +10:00
|
|
|
package engine
|
|
|
|
|
2021-08-03 14:56:53 +10:00
|
|
|
import (
|
|
|
|
"encoding/gob"
|
2021-08-20 15:01:31 +10:00
|
|
|
"errors"
|
2021-08-03 14:56:53 +10:00
|
|
|
"image"
|
|
|
|
)
|
|
|
|
|
2021-08-18 16:34:51 +10:00
|
|
|
// Ensure Actor satisfies interfaces.
|
|
|
|
var _ Prepper = &Actor{}
|
|
|
|
|
2021-08-20 15:01:31 +10:00
|
|
|
var errCollision = errors.New("collision detected")
|
|
|
|
|
2021-08-03 14:56:53 +10:00
|
|
|
func init() {
|
|
|
|
gob.Register(Actor{})
|
|
|
|
}
|
2021-08-02 15:16:58 +10:00
|
|
|
|
|
|
|
// Thorson-style movement:
|
|
|
|
// https://maddythorson.medium.com/celeste-and-towerfall-physics-d24bd2ae0fc5
|
|
|
|
|
2021-08-04 15:07:57 +10:00
|
|
|
// Actor handles basic movement.
|
2021-08-02 15:16:58 +10:00
|
|
|
type Actor struct {
|
2021-08-05 12:26:41 +10:00
|
|
|
CollisionDomain string
|
|
|
|
Pos image.Point
|
|
|
|
Size image.Point
|
2021-08-02 15:16:58 +10:00
|
|
|
|
2021-08-05 12:26:41 +10:00
|
|
|
collisionDomain interface{}
|
|
|
|
xRem, yRem float64
|
2021-08-02 15:16:58 +10:00
|
|
|
}
|
|
|
|
|
2021-08-04 15:07:57 +10:00
|
|
|
func (a *Actor) CollidesAt(p image.Point) bool {
|
2021-08-20 15:01:31 +10:00
|
|
|
return nil != Walk(a.collisionDomain, func(c interface{}) error {
|
|
|
|
coll, ok := c.(Collider)
|
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if coll.CollidesWith(image.Rectangle{Min: p, Max: p.Add(a.Size)}) {
|
|
|
|
return errCollision
|
2021-08-03 14:56:53 +10:00
|
|
|
}
|
2021-08-20 15:01:31 +10:00
|
|
|
return nil
|
2021-08-03 14:56:53 +10:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-08-02 15:16:58 +10:00
|
|
|
func (a *Actor) MoveX(dx float64, onCollide func()) {
|
|
|
|
a.xRem += dx
|
2021-08-05 14:26:23 +10:00
|
|
|
move := int(a.xRem + 0.5) // Note: math.Round can lead to vibration
|
2021-08-02 15:16:58 +10:00
|
|
|
if move == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
a.xRem -= float64(move)
|
|
|
|
sign := sign(move)
|
|
|
|
for move != 0 {
|
2021-08-05 12:26:41 +10:00
|
|
|
if a.CollidesAt(a.Pos.Add(image.Pt(sign, 0))) {
|
2021-08-02 15:16:58 +10:00
|
|
|
if onCollide != nil {
|
|
|
|
onCollide()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2021-08-05 12:26:41 +10:00
|
|
|
a.Pos.X += sign
|
2021-08-02 15:16:58 +10:00
|
|
|
move -= sign
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Actor) MoveY(dy float64, onCollide func()) {
|
|
|
|
a.yRem += dy
|
2021-08-05 14:26:23 +10:00
|
|
|
move := int(a.yRem + 0.5)
|
2021-08-02 15:16:58 +10:00
|
|
|
if move == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
a.yRem -= float64(move)
|
|
|
|
sign := sign(move)
|
|
|
|
for move != 0 {
|
2021-08-05 12:26:41 +10:00
|
|
|
if a.CollidesAt(a.Pos.Add(image.Pt(0, sign))) {
|
2021-08-02 15:16:58 +10:00
|
|
|
if onCollide != nil {
|
|
|
|
onCollide()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2021-08-05 12:26:41 +10:00
|
|
|
a.Pos.Y += sign
|
2021-08-02 15:16:58 +10:00
|
|
|
move -= sign
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-05 12:26:41 +10:00
|
|
|
func (a *Actor) Prepare(g *Game) {
|
|
|
|
a.collisionDomain = g.Component(a.CollisionDomain)
|
2021-08-02 15:16:58 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
func sign(m int) int {
|
|
|
|
if m < 0 {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
return 1
|
|
|
|
}
|