1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-11 10:20:41 +00:00
OpenDiablo2/d2core/d2config/defaults.go

56 lines
1.1 KiB
Go
Raw Normal View History

2020-07-08 13:16:16 +00:00
package d2config
import (
"os/user"
"path/filepath"
2020-07-08 13:16:16 +00:00
"runtime"
)
// DefaultConfig creates and returns a default configuration
func DefaultConfig() *Configuration {
2020-07-08 13:16:16 +00:00
const (
defaultSfxVolume = 1.0
defaultBgmVolume = 0.3
)
config := &Configuration{
FullScreen: false,
TicksPerSecond: -1,
RunInBackground: true,
VsyncEnabled: true,
SfxVolume: defaultSfxVolume,
BgmVolume: defaultBgmVolume,
MpqPath: "C:/Program Files (x86)/Diablo II",
Backend: "Ebiten",
MpqLoadOrder: []string{
"patch_d2.mpq",
2020-07-08 13:16:16 +00:00
"d2exp.mpq",
"d2xmusic.mpq",
"d2xtalk.mpq",
"d2xvideo.mpq",
"d2data.mpq",
"d2char.mpq",
"d2music.mpq",
"d2sfx.mpq",
"d2video.mpq",
"d2speech.mpq",
},
2020-12-16 07:11:28 +00:00
path: DefaultConfigPath(),
2020-07-08 13:16:16 +00:00
}
switch runtime.GOOS {
case "windows":
if runtime.GOARCH == "386" {
config.MpqPath = "C:/Program Files/Diablo II"
}
case "darwin":
config.MpqPath = "/Applications/Diablo II/"
case "linux":
if usr, err := user.Current(); err == nil {
config.MpqPath = filepath.Join(usr.HomeDir, ".wine", "drive_c", "Program Files (x86)", "Diablo II")
2020-07-08 13:16:16 +00:00
}
}
return config
}