2019-05-07 05:57:32 +00:00
|
|
|
package uix
|
|
|
|
|
2019-12-23 02:21:58 +00:00
|
|
|
import "git.kirsle.net/go/render"
|
2019-05-07 05:57:32 +00:00
|
|
|
|
|
|
|
// CollideEvent holds data sent to an actor's Collide handler.
|
|
|
|
type CollideEvent struct {
|
2019-05-29 04:43:30 +00:00
|
|
|
Actor *Actor
|
|
|
|
Overlap render.Rect
|
|
|
|
InHitbox bool // If the two elected hitboxes are overlapping
|
Improve Collision Detection: More Active w/ Actors
* Improve the collision detection algorithm so that Actor OnCollide
scripts get called more often WHILE an actor is moving, to prevent a
fast-moving actor from zipping right through the "solid" hitbox and
not giving the subject actor time to protest the movement.
* It's implemented by adding a `Settled` boolean to the OnCollide event
object. When the game is testing out movement, Settled=false to give
the actor a chance to say "I'm solid!" and have the moving party be
stopped early.
* After all this is done, for any pair of actors still with overlapping
hitboxes, OnCollide is called one last time with Settled=true. This is
when the actor should run its actions (like publishing messages to
other actors, changing state as in a trapdoor, etc.)
* The new collision detection algorithm works as follows:
* Stage 1 is the same as before, all mobile actors are moved and
tested against level geometry. They record their Original and New
position during this phase.
* Stage 2 is where we re-run that movement but ping actors being
intersected each step of the way. We trace the steps between
Original and New position, test OnCollide handler, and if it returns
false we move the mobile actor to the Last Good Position along the
trace.
* Stage 3 we run the final OnCollide(Settled=true) to let actors run
actions they wanted to for their collide handler, WITHOUT spamming
those actions during Stage 2.
* This should now allow for tweaking of gravity speed and player speed
without breaking all actor collision checking.
2019-07-17 04:07:38 +00:00
|
|
|
Settled bool // Movement phase finished, actor script can fire actions
|
2019-05-07 05:57:32 +00:00
|
|
|
}
|
2021-01-03 23:19:21 +00:00
|
|
|
|
|
|
|
// UseEvent holds data sent to an actor's OnUse handler.
|
|
|
|
type UseEvent struct {
|
|
|
|
Actor *Actor
|
|
|
|
}
|