Merge pull request #206 from velour/zork_fix

zork: make path to exec and dat configurable
This commit is contained in:
Chris Sexton 2019-10-01 14:46:55 -04:00 committed by GitHub
commit b28b1f9e17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 4 deletions

View File

@ -39,12 +39,17 @@ func New(b bot.Bot) bot.Plugin {
func (p *ZorkPlugin) runZork(c bot.Connector, ch string) error {
const importString = "github.com/velour/catbase/plugins/zork"
pkgPath := ""
pkg, err := build.Import(importString, "", build.FindOnly)
if err != nil {
return err
if err == nil {
pkgPath = pkg.Dir
}
zorkdat := filepath.Join(pkg.Dir, "ZORK1.DAT")
cmd := exec.Command("dfrotz", zorkdat)
zorkPath := p.bot.Config().GetString("zork.path", pkgPath)
zorkdat := filepath.Join(zorkPath, "ZORK1.DAT")
zorkFlags := p.bot.Config().GetArray("zork.args", []string{"-p"})
zorkExec := p.bot.Config().GetString("zork.binary", "frotz")
zorkFlags = append(zorkFlags, zorkdat)
cmd := exec.Command(zorkExec, zorkFlags...)
var r io.ReadCloser
r, cmd.Stdout = io.Pipe()