mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
72 lines
2.4 KiB
C#
72 lines
2.4 KiB
C#
namespace Giants.Launcher
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Windows.Forms;
|
|
using Newtonsoft.Json;
|
|
|
|
public class Config
|
|
{
|
|
private const string defaultConfigFileName = "GiantsDefault.config";
|
|
private const string playerConfigFileName = "Giants.config";
|
|
|
|
private IDictionary<string, dynamic> defaultConfig = new Dictionary<string, dynamic>();
|
|
private IDictionary<string, dynamic> userConfig = new Dictionary<string, dynamic>();
|
|
|
|
public void Read()
|
|
{
|
|
string defaultConfigFilePath = this.GetDefaultConfigPath();
|
|
if (!File.Exists(defaultConfigFilePath))
|
|
{
|
|
string message = string.Format(Resources.ErrorNoConfigFile, defaultConfigFilePath);
|
|
MessageBox.Show(message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
Environment.Exit(-1);
|
|
return;
|
|
}
|
|
|
|
this.defaultConfig = ReadConfig(defaultConfigFilePath);
|
|
|
|
string userConfigFilePath = this.GetUserConfigPath();
|
|
if (File.Exists(userConfigFilePath))
|
|
{
|
|
this.userConfig = ReadConfig(userConfigFilePath);
|
|
}
|
|
}
|
|
|
|
public string GetString(string section, string key)
|
|
{
|
|
if (this.userConfig.ContainsKey(section))
|
|
{
|
|
dynamic sectionObject = this.userConfig[section];
|
|
if (sectionObject != null)
|
|
{
|
|
return sectionObject.ContainsKey(key) ? (string)sectionObject[key] : "";
|
|
}
|
|
}
|
|
|
|
return this.defaultConfig[section][key];
|
|
}
|
|
|
|
// TODO: other accessors unimplemented as we only need master server host name for now
|
|
|
|
private static IDictionary<string, dynamic> ReadConfig(string filePath)
|
|
{
|
|
string fileContents = File.ReadAllText(filePath);
|
|
return JsonConvert.DeserializeObject<IDictionary<string, object>>(fileContents);
|
|
}
|
|
|
|
private string GetDefaultConfigPath()
|
|
{
|
|
return defaultConfigFileName;
|
|
}
|
|
|
|
private string GetUserConfigPath()
|
|
{
|
|
string applicationDataPath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
|
|
|
return Path.Combine(applicationDataPath, "Giants", playerConfigFileName);
|
|
}
|
|
}
|
|
}
|