2019-06-23 23:15:09 +00:00
|
|
|
package uix
|
|
|
|
|
2019-06-28 05:54:46 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
2021-01-03 23:19:21 +00:00
|
|
|
"sort"
|
2019-06-28 05:54:46 +00:00
|
|
|
|
2019-07-04 00:19:25 +00:00
|
|
|
"git.kirsle.net/apps/doodle/pkg/drawtool"
|
2019-06-28 05:54:46 +00:00
|
|
|
"git.kirsle.net/apps/doodle/pkg/shmem"
|
|
|
|
)
|
2019-06-23 23:15:09 +00:00
|
|
|
|
|
|
|
// LinkStart initializes the Link tool.
|
|
|
|
func (w *Canvas) LinkStart() {
|
2019-07-04 00:19:25 +00:00
|
|
|
w.Tool = drawtool.LinkTool
|
2019-06-23 23:15:09 +00:00
|
|
|
w.linkFirst = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// LinkAdd adds an actor to be linked in the Link tool.
|
|
|
|
func (w *Canvas) LinkAdd(a *Actor) error {
|
|
|
|
if w.linkFirst == nil {
|
|
|
|
// First click, hold onto this actor.
|
|
|
|
w.linkFirst = a
|
2019-06-28 05:54:46 +00:00
|
|
|
shmem.Flash("Doodad '%s' selected, click the next Doodad to link it to",
|
2020-04-05 04:00:32 +00:00
|
|
|
a.Doodad().Title,
|
2019-06-28 05:54:46 +00:00
|
|
|
)
|
2019-06-23 23:15:09 +00:00
|
|
|
} else {
|
|
|
|
// Second click, call the OnLinkActors handler with the two actors.
|
|
|
|
if w.OnLinkActors != nil {
|
2019-06-28 05:54:46 +00:00
|
|
|
w.OnLinkActors(w.linkFirst, a)
|
2019-06-23 23:15:09 +00:00
|
|
|
} else {
|
|
|
|
return errors.New("Canvas.LinkAdd: no OnLinkActors handler is ready")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset the link state.
|
|
|
|
w.linkFirst = nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2021-01-03 23:19:21 +00:00
|
|
|
|
|
|
|
// GetLinkedActors returns the live Actor instances (Play Mode) which are linked
|
|
|
|
// to the live actor given.
|
|
|
|
func (w *Canvas) GetLinkedActors(a *Actor) []*Actor {
|
|
|
|
// Identify the linked actor UUIDs from the level file.
|
|
|
|
linkedIDs := map[string]interface{}{}
|
|
|
|
matching := map[string]*Actor{}
|
|
|
|
for _, id := range a.Actor.Links {
|
|
|
|
linkedIDs[id] = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find live instances of these actors.
|
|
|
|
for _, live := range w.actors {
|
|
|
|
if _, ok := linkedIDs[live.ID()]; ok {
|
|
|
|
matching[live.ID()] = live
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort them deterministically and return.
|
|
|
|
keys := []string{}
|
|
|
|
for key, _ := range matching {
|
|
|
|
keys = append(keys, key)
|
|
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
|
|
|
|
result := []*Actor{}
|
|
|
|
for _, key := range keys {
|
|
|
|
result = append(result, matching[key])
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|