mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-23 01:57:22 +00:00
22 lines
1 KiB
Go
22 lines
1 KiB
Go
package config
|
|
|
|
import (
|
|
"flag"
|
|
"time"
|
|
)
|
|
|
|
const defaultoverlord = "ws://localhost:9000/wso"
|
|
const DefaultSTUNTURN = `[{"urls":"stun:stun-turn.webgame2d.com:3478"},{"urls":"turn:stun-turn.webgame2d.com:3478","username":"root","credential":"root"}]`
|
|
|
|
var IsDebug = flag.Bool("debug", false, "Is game running in debug mode?")
|
|
var OverlordHost = flag.String("overlordhost", defaultoverlord, "Specify the path for overlord. If the flag is `overlord`, the server will be run as overlord")
|
|
var Port = flag.String("port", "8000", "Port of the game")
|
|
var IsMonitor = flag.Bool("monitor", false, "Turn on monitor")
|
|
var FrontendSTUNTURN = flag.String("stunturn", DefaultSTUNTURN, "Frontend STUN TURN servers")
|
|
var Mode = flag.String("mode", "dev", "Environment")
|
|
var IsRetro = flag.Bool("isretro", true, "Is retro")
|
|
var StunTurnTemplate = `[{"urls":"stun:stun.l.google.com:19302"},{"urls":"stun:%s:3478"},{"urls":"turn:%s:3478","username":"root","credential":"root"}]`
|
|
|
|
var WSWait = 20 * time.Second
|
|
var MatchWorkerRandom = false
|
|
var ProdEnv = "prod"
|