ichigo/game/aw.go

125 lines
3.1 KiB
Go
Raw Normal View History

2021-08-05 12:26:41 +10:00
package game
import (
2021-08-05 12:33:23 +10:00
"encoding/gob"
2021-08-05 12:26:41 +10:00
"image"
2021-08-12 15:55:42 +10:00
"math"
2021-08-05 12:26:41 +10:00
"drjosh.dev/gurgle/engine"
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/inpututil"
)
2021-08-05 12:33:23 +10:00
func init() {
gob.Register(Awakeman{})
}
2021-08-05 12:26:41 +10:00
type Awakeman struct {
engine.Sprite
2021-08-08 22:07:55 +10:00
CameraID string
camera *engine.Camera
2021-08-07 21:24:15 +10:00
vx, vy float64
facingLeft bool
coyoteTimer int
2021-08-05 12:26:41 +10:00
animIdleLeft, animIdleRight, animRunLeft, animRunRight *engine.Anim
}
func (aw *Awakeman) Update() error {
const (
2021-08-12 16:23:52 +10:00
ε = 0.2
restitution = -0.3
gravity = 0.3
2021-08-12 16:24:59 +10:00
airResistance = -0.01 // ⇒ terminal velocity = 30
2021-08-12 16:29:14 +10:00
jumpVelocity = -4.2
2021-08-12 16:23:52 +10:00
runVelocity = 1.4
coyoteTime = 5
2021-08-05 12:26:41 +10:00
)
2021-08-12 15:37:09 +10:00
// High-school physics time! Under constant acceleration:
// v = v_0 + a*t
// and
// s = t * (v_0 + v) / 2
// (note t is in ticks and s is in world units)
// and since we get one Update per tick (t = 1),
// v = v_0 + a,
// and
// s = (v_0 + v) / 2.
// Capture current v_0 to use later.
ux, uy := aw.vx, aw.vy
2021-08-12 15:55:42 +10:00
// Has traction?
2021-08-12 16:14:51 +10:00
if aw.CollidesAt(aw.Pos.Add(image.Pt(0, 1))) {
2021-08-14 17:22:14 +10:00
// Not falling.
// Instantly decelerate (AW absorbs all kinetic E in legs, or something)
2021-08-05 12:26:41 +10:00
aw.vy = 0
2021-08-12 16:14:51 +10:00
aw.coyoteTimer = coyoteTime
2021-08-05 12:26:41 +10:00
} else {
2021-08-12 16:24:59 +10:00
// Falling. v = v_0 + a, and a = gravity + airResistance(v_0)
2021-08-12 16:23:52 +10:00
aw.vy += gravity + airResistance*aw.vy
2021-08-07 21:24:15 +10:00
if aw.coyoteTimer > 0 {
aw.coyoteTimer--
}
}
2021-08-12 15:37:09 +10:00
// Handle controls
2021-08-09 12:03:51 +10:00
// NB: spacebar sometimes does things on web pages (scrolls down)
if aw.coyoteTimer > 0 && (inpututil.IsKeyJustPressed(ebiten.KeySpace) || inpututil.IsKeyJustPressed(ebiten.KeyZ)) {
2021-08-12 15:37:09 +10:00
// Jump. One frame of a = jumpVelocity (ignoring any gravity already applied this tick).
2021-08-07 21:24:15 +10:00
aw.vy = jumpVelocity
2021-08-05 12:26:41 +10:00
}
switch {
2021-08-07 16:38:02 +10:00
case ebiten.IsKeyPressed(ebiten.KeyLeft) || ebiten.IsKeyPressed(ebiten.KeyA):
2021-08-05 12:26:41 +10:00
aw.vx = -runVelocity
aw.SetAnim(aw.animRunLeft)
aw.facingLeft = true
2021-08-07 16:38:02 +10:00
case ebiten.IsKeyPressed(ebiten.KeyRight) || ebiten.IsKeyPressed(ebiten.KeyD):
2021-08-05 12:26:41 +10:00
aw.vx = runVelocity
aw.SetAnim(aw.animRunRight)
aw.facingLeft = false
default:
aw.vx = 0
aw.SetAnim(aw.animIdleRight)
if aw.facingLeft {
aw.SetAnim(aw.animIdleLeft)
}
}
2021-08-10 14:56:01 +10:00
aw.camera.Zoom = 1
if ebiten.IsKeyPressed(ebiten.KeyShift) {
aw.camera.Zoom = 2
2021-08-09 13:58:33 +10:00
}
2021-08-12 13:49:22 +10:00
/*
if inpututil.IsKeyJustPressed(ebiten.KeyR) {
aw.camera.Rotation += math.Pi / 6
}
*/
2021-08-12 15:37:09 +10:00
// s = (v_0 + v) / 2.
2021-08-12 16:14:51 +10:00
aw.MoveX((ux+aw.vx)/2, nil)
// For Y, on collision, bounce a little bit.
// Does not apply to X because controls override it anyway.
aw.MoveY((uy+aw.vy)/2, func() {
aw.vy *= restitution
if math.Abs(aw.vy) < ε {
aw.vy = 0
}
})
2021-08-10 15:23:13 +10:00
// aw.Pos is top-left corner, so add half size to get centre
2021-08-10 14:56:01 +10:00
aw.camera.Centre = aw.Pos.Add(aw.Size.Div(2))
2021-08-05 12:26:41 +10:00
return aw.Sprite.Update()
}
2021-08-08 22:07:55 +10:00
func (aw *Awakeman) Prepare(game *engine.Game) {
aw.camera = game.Component(aw.CameraID).(*engine.Camera)
2021-08-05 12:26:41 +10:00
aw.animIdleLeft = &engine.Anim{Def: engine.AnimDefs["aw_idle_left"]}
aw.animIdleRight = &engine.Anim{Def: engine.AnimDefs["aw_idle_right"]}
2021-08-05 15:24:16 +10:00
aw.animRunLeft = &engine.Anim{Def: engine.AnimDefs["aw_run_left"]}
aw.animRunRight = &engine.Anim{Def: engine.AnimDefs["aw_run_right"]}
2021-08-05 12:26:41 +10:00
}
func (aw *Awakeman) Scan() []interface{} { return []interface{}{&aw.Sprite} }