2019-04-16 06:07:15 +00:00
|
|
|
package scripting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-01-03 01:58:22 +00:00
|
|
|
"sync"
|
2019-04-16 06:07:15 +00:00
|
|
|
|
|
|
|
"git.kirsle.net/apps/doodle/pkg/log"
|
|
|
|
"github.com/robertkrimen/otto"
|
|
|
|
)
|
|
|
|
|
|
|
|
// VM manages a single isolated JavaScript VM.
|
|
|
|
type VM struct {
|
|
|
|
Name string
|
|
|
|
|
|
|
|
// Globals available to the scripts.
|
|
|
|
Events *Events
|
|
|
|
Self interface{}
|
|
|
|
|
2019-06-24 00:30:12 +00:00
|
|
|
// Channels for inbound and outbound PubSub messages.
|
|
|
|
// Each VM has a single Inbound channel that watches for received messages
|
|
|
|
// and invokes the Message.Subscribe() handlers for relevant ones.
|
|
|
|
// Each VM also has an array of Outbound channels which map to the Inbound
|
|
|
|
// channel of the VMs it is linked to, for pushing out Message.Publish()
|
|
|
|
// messages.
|
2020-01-03 01:58:22 +00:00
|
|
|
Inbound chan Message
|
|
|
|
Outbound []chan Message
|
|
|
|
subscribe map[string][]otto.Value // Subscribed message handlers by name.
|
|
|
|
muSubscribe sync.RWMutex
|
2019-06-24 00:30:12 +00:00
|
|
|
|
2019-04-16 06:07:15 +00:00
|
|
|
vm *otto.Otto
|
2019-04-19 01:15:05 +00:00
|
|
|
|
|
|
|
// setTimeout and setInterval variables.
|
|
|
|
timerLastID int // becomes 1 when first timer is set
|
|
|
|
timers map[int]*Timer
|
2019-04-16 06:07:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewVM creates a new JavaScript VM.
|
|
|
|
func NewVM(name string) *VM {
|
|
|
|
vm := &VM{
|
|
|
|
Name: name,
|
|
|
|
Events: NewEvents(),
|
|
|
|
vm: otto.New(),
|
2019-04-19 01:15:05 +00:00
|
|
|
timers: map[int]*Timer{},
|
2019-06-24 00:30:12 +00:00
|
|
|
|
|
|
|
// Pub/sub structs.
|
|
|
|
Inbound: make(chan Message),
|
|
|
|
Outbound: []chan Message{},
|
|
|
|
subscribe: map[string][]otto.Value{},
|
2019-04-16 06:07:15 +00:00
|
|
|
}
|
|
|
|
return vm
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run code in the VM.
|
|
|
|
func (vm *VM) Run(src interface{}) (otto.Value, error) {
|
|
|
|
v, err := vm.vm.Run(src)
|
|
|
|
return v, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a value in the VM.
|
|
|
|
func (vm *VM) Set(name string, v interface{}) error {
|
|
|
|
return vm.vm.Set(name, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterLevelHooks registers accessors to the level hooks
|
|
|
|
// and Doodad API for Play Mode.
|
|
|
|
func (vm *VM) RegisterLevelHooks() error {
|
2020-04-22 06:50:45 +00:00
|
|
|
bindings := NewJSProxy(vm)
|
2019-04-16 06:07:15 +00:00
|
|
|
for name, v := range bindings {
|
|
|
|
err := vm.vm.Set(name, v)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("RegisterLevelHooks(%s): %s",
|
|
|
|
name, err,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Main calls the main function of the script.
|
|
|
|
func (vm *VM) Main() error {
|
|
|
|
function, err := vm.vm.Get("main")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !function.IsFunction() {
|
2019-04-19 01:15:05 +00:00
|
|
|
return nil
|
2019-04-16 06:07:15 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 05:02:59 +00:00
|
|
|
// Catch panics.
|
|
|
|
defer func() {
|
|
|
|
if err := recover(); err != nil {
|
|
|
|
log.Error("Panic caught in JavaScript VM: %s", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-04-16 06:07:15 +00:00
|
|
|
_, err = function.Call(otto.Value{})
|
|
|
|
return err
|
|
|
|
}
|