Noah Petherbridge
1f00af5741
Fix collision detection when an actor's hitbox is offset from 0,0: * Actors having a hitbox that didn't begin at X,Y 0,0 used to experience clipping issues with level geometry: because the game tracks their Position (top left corner of their graphical sprite) and their target position wasn't being correctly offset by their hitbox offset. * To resolve the issue, an "ActorOffset" struct is added: you give it the original game's Actor (with its offset hitbox) and it will record the offset and give a mocked Actor for collision detection purposes: where the Position and Target can be offset and where its Hitbox claims to begin at 0,0 matching its offsetted Position. * The translation between your original Actor and Offset Actor is handled at the boundary of the CollidesWithGrid function, so the main algorithm didn't need to be messed with and the game itself doesn't need to care about the offset. Make some fixes to the doodad CLI tool: * Fix palette colors being duplicated/doubled when converting from an image. * The --palette flag in `doodad convert` now actually functions: so you can supply an initial palette.json with colors and attributes to e.g. mark which colors should be solid or fire and give them names. The palette.json doesn't need to be comprehensive: it will be extended with new distinct colors as needed during the conversion.
32 lines
523 B
Go
32 lines
523 B
Go
package collision
|
|
|
|
import "git.kirsle.net/go/render"
|
|
|
|
// MockActor implements the Actor interface for unit testing.
|
|
type MockActor struct {
|
|
P render.Point
|
|
S render.Rect
|
|
HB render.Rect
|
|
G bool
|
|
}
|
|
|
|
func (actor *MockActor) Position() render.Point {
|
|
return actor.P
|
|
}
|
|
|
|
func (actor *MockActor) Size() render.Rect {
|
|
return actor.S
|
|
}
|
|
|
|
func (actor *MockActor) Hitbox() render.Rect {
|
|
return actor.HB
|
|
}
|
|
|
|
func (actor *MockActor) Grounded() bool {
|
|
return actor.G
|
|
}
|
|
|
|
func (actor *MockActor) SetGrounded(v bool) {
|
|
actor.G = v
|
|
}
|