Files
realworld/inc/boot.manager.go
T
2026-08-29 23:59:56 +02:00

45 lines
891 B
Go

package inc
import (
inkwell "git.teletypegames.org/engines/inkwell"
)
type Opts struct {
Screen string
Finale bool
}
func New(o Opts) *inkwell.Game {
start := o.Screen
if start == "" {
start = ScreenAlley
}
g := inkwell.NewGame("Real World", ScreenW, ScreenH)
g.MaxLogLines = 64
World.attach(g)
registerTheme()
registerContent()
g.UseTheme(RealWorld)
registerUI()
g.StartAt(start)
g.OnStart(inkwell.Seq(bootOpening(start, o.Finale)...))
return g
}
func bootOpening(start string, finale bool) []inkwell.Action {
acts := []inkwell.Action{
EnterScene(start),
inkwell.SetFlag(FlagPoliceTip),
inkwell.Say(Paul, "Back alley. Just like the clerk said."),
TapeSay(Dex, "A government office tipped you off to remove something from a scene. That doesn't strike you as odd?"),
}
if finale {
acts = append(acts, inkwell.RunScript(ScriptFinale))
}
return acts
}