Hilbish/lua.go

76 lines
1.7 KiB
Go
Raw Normal View History

2021-03-19 23:03:11 +00:00
package main
import (
2021-03-31 02:37:08 +00:00
"fmt"
"os"
2022-03-28 21:40:36 +00:00
"hilbish/util"
"hilbish/golibs/bait"
"hilbish/golibs/commander"
"hilbish/golibs/fs"
"hilbish/golibs/terminal"
2022-03-29 12:52:26 +00:00
rt "github.com/arnodel/golua/runtime"
"github.com/arnodel/golua/lib"
2021-03-19 23:03:11 +00:00
)
var minimalconf = `hilbish.prompt '& '`
2021-12-09 03:31:48 +00:00
func luaInit() {
l = rt.New(os.Stdout)
lib.LoadAll(l)
2021-03-31 02:37:08 +00:00
lib.LoadLibs(l, hilbishLoader)
// yes this is stupid, i know
util.DoString(l, "hilbish = require 'hilbish'")
// Add fs and terminal module module to Lua
2022-03-28 23:36:06 +00:00
lib.LoadLibs(l, fs.Loader)
2022-03-29 12:52:26 +00:00
lib.LoadLibs(l, terminal.Loader)
2021-03-31 02:37:08 +00:00
cmds := commander.New()
2021-03-31 02:37:08 +00:00
// When a command from Lua is added, register it for use
2022-03-28 23:12:58 +00:00
cmds.Events.On("commandRegister", func(cmdName string, cmd *rt.Closure) {
commands[cmdName] = cmd
})
cmds.Events.On("commandDeregister", func(cmdName string) {
delete(commands, cmdName)
})
2022-03-28 23:12:58 +00:00
lib.LoadLibs(l, cmds.Loader)
2021-03-31 02:37:08 +00:00
hooks = bait.New()
2022-03-28 21:48:12 +00:00
lib.LoadLibs(l, hooks.Loader)
// Add Ctrl-C handler
hooks.Em.On("signal.sigint", func() {
if !interactive {
os.Exit(0)
}
})
2021-03-31 02:37:08 +00:00
// Add more paths that Lua can require from
err := util.DoString(l, "package.path = package.path .. " + requirePaths)
if err != nil {
fmt.Fprintln(os.Stderr, "Could not add preload paths! Libraries will be missing. This shouldn't happen.")
}
2021-03-31 02:37:08 +00:00
err = util.DoFile(l, "prelude/init.lua")
2021-03-31 02:37:08 +00:00
if err != nil {
err = util.DoFile(l, preloadPath)
2021-03-31 02:37:08 +00:00
if err != nil {
fmt.Fprintln(os.Stderr, "Missing preload file, builtins may be missing.")
2021-03-31 02:37:08 +00:00
}
}
}
func runConfig(confpath string) {
2021-04-28 11:26:23 +00:00
if !interactive {
return
}
2022-03-28 21:40:36 +00:00
err := util.DoFile(l, confpath)
2021-03-31 02:37:08 +00:00
if err != nil {
fmt.Fprintln(os.Stderr, err, "\nAn error has occured while loading your config! Falling back to minimal default config.")
2022-03-28 21:40:36 +00:00
util.DoString(l, minimalconf)
2021-03-31 02:37:08 +00:00
}
}