You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fishfightback/flags.go

35 lines
840 B
Go

//go:build !js || !wasm
// +build !js !wasm
package main
import (
"flag"
"code.rocketnine.space/tslocum/fishfightback/world"
"github.com/hajimehoshi/ebiten/v2"
)
func parseFlags() {
var (
fullscreen bool
noSplash bool
)
flag.BoolVar(&fullscreen, "fullscreen", false, "run in fullscreen mode")
flag.BoolVar(&world.World.StartMuted, "mute", false, "mute music")
flag.Int64Var(&world.World.ForceSeed, "seed", 0, "seed for random level generation")
flag.BoolVar(&noSplash, "no-splash", false, "skip splash screen")
flag.BoolVar(&world.World.GodMode, "god", false, "enable god mode")
flag.IntVar(&world.World.Debug, "debug", 0, "print debug information")
flag.Parse()
if fullscreen {
ebiten.SetFullscreen(true)
}
if noSplash || world.World.Debug > 0 {
world.StartGame()
//world.World.MessageVisible = false
}
}