mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-10-31 16:27:18 -04:00
1c2b4869a1
* Switch items to dynamic load with a common struct, add misc.txt loading * Update Ebiten Reference * Switch references to point to D2Shared * Migrate part 2
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package d2corecommon
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/mitchellh/go-homedir"
|
|
)
|
|
|
|
// Configuration defines the configuration for the engine, loaded from config.json
|
|
type Configuration struct {
|
|
Language string
|
|
FullScreen bool
|
|
Scale float64
|
|
RunInBackground bool
|
|
TicksPerSecond int
|
|
FpsCap int
|
|
VsyncEnabled bool
|
|
MpqPath string
|
|
MpqLoadOrder []string
|
|
SfxVolume float64
|
|
BgmVolume float64
|
|
}
|
|
|
|
// ConfigBasePath is used for tests to find the base config json file
|
|
var ConfigBasePath = "./"
|
|
|
|
func LoadConfiguration() *Configuration {
|
|
configJSON, err := ioutil.ReadFile(path.Join(ConfigBasePath, "config.json"))
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
var config Configuration
|
|
err = json.Unmarshal(configJSON, &config)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
// Path fixup for wine-installed diablo 2 in linux
|
|
if config.MpqPath[0] != '/' {
|
|
if _, err := os.Stat(config.MpqPath); os.IsNotExist(err) {
|
|
homeDir, _ := homedir.Dir()
|
|
newPath := strings.ReplaceAll(config.MpqPath, `C:\`, homeDir+"/.wine/drive_c/")
|
|
newPath = strings.ReplaceAll(newPath, "C:/", homeDir+"/.wine/drive_c/")
|
|
newPath = strings.ReplaceAll(newPath, `\`, "/")
|
|
if _, err := os.Stat(newPath); !os.IsNotExist(err) {
|
|
config.MpqPath = newPath
|
|
}
|
|
}
|
|
}
|
|
return &config
|
|
}
|