-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsData.cs
174 lines (163 loc) · 6.13 KB
/
SettingsData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.Storage;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
namespace Utilities_Fix
{
class SettingsData
{
// General
public int display_theme;
public bool language_eng;
public bool pane_top;
public bool first_time_open;
// freecalc
public bool degree;
public bool ovr_form;
public int decimal_accuracy;
// physics ex calc
public bool keep_integers;
public bool auto_rounding;
public int physex_accuracy;
// tianapi
public bool custom_apikey_switch;
public string apikey;
// bing wallpaper
public bool custom_mkt_switch;
public string mkt;
public int resolution;
public SettingsData()
{
display_theme = 2;
language_eng = false;
pane_top = false;
first_time_open = true;
degree = false;
ovr_form = false;
decimal_accuracy = 5;
keep_integers = false;
auto_rounding = false;
physex_accuracy = 5;
custom_apikey_switch = false;
apikey = "a9c1ad156691364ebfe8b3f1ff4eb153";
custom_mkt_switch = false ;
mkt = "zh-CN";
resolution = 1;
}
public string GetDataFrom(string yaml, string arg)
{
string res = "";
bool start = false;
for (int i = 0; i < yaml.Length - arg.Length + 1; i++)
{
if (yaml.Substring(i, arg.Length + 1) == arg+":")
{
i += arg.Length + 2;
start = true;
}
if (start)
{
while (yaml[i] != '\n' && yaml[i] != '\r')
{
res += yaml[i];
i++;
}
return res;
}
}
return "";
}
public async void SyncPreviousSettings(StorageFile file)
{
string yaml = await FileIO.ReadTextAsync(file);
display_theme = GetDataFrom(yaml, "display_theme")[0] - '0';
language_eng = GetDataFrom(yaml, "language") == "true";
pane_top = GetDataFrom(yaml, "pane_top") == "true";
degree = GetDataFrom(yaml, "degree") == "true";
decimal_accuracy = int.Parse(GetDataFrom(yaml, "decimal_accuracy"));
custom_apikey_switch = GetDataFrom(yaml, "custom_apikey_switch") == "true";
apikey = GetDataFrom(yaml, "apikey");
custom_mkt_switch = GetDataFrom(yaml, "custom_mkt_switch") == "true";
mkt = GetDataFrom(yaml, "mkt");
resolution = GetDataFrom(yaml, "resolution")[0] - '0';
}
/// <summary>
/// 从 f_path.txt 中读取 Yaml 格式的设置数据,若本地无数据则初始化。
/// </summary>
public async Task GetLocalSettingsAsync()
{
var deserializer = new DeserializerBuilder().WithNamingConvention(UnderscoredNamingConvention.Instance).Build();
StorageFolder folder = KnownFolders.DocumentsLibrary;
StorageFile file = await folder.CreateFileAsync("utilities\\datav2_8_0.txt", CreationCollisionOption.OpenIfExists);
string yaml_data = await FileIO.ReadTextAsync(file);
SettingsData sd = deserializer.Deserialize<SettingsData>(yaml_data);
if (sd == null)
{
yaml_data =
"display_theme: 2\n" +
"language_eng: false\n" +
"pane_top: false\n" +
"first_time_open: true\n" +
"degree: false\n" +
"ovr_form: false\n" +
"decimal_accuracy: 5\n" +
"keep_integers: false\n" +
"auto_rounding: false\n" +
"physex_accuracy: 5\n" +
"custom_apikey_switch: false\n" +
"apikey: a9c1ad156691364ebfe8b3f1ff4eb153\n" +
"custom_mkt_switch: false\n" +
"mkt: zh-CN\n" +
"resolution: 1\n";
await FileIO.WriteTextAsync(file, yaml_data);
sd = deserializer.Deserialize<SettingsData>(yaml_data);
CopyDataFrom(sd);
try
{
StorageFile prevFile = await folder.GetFileAsync("utilities\\datav2_7_0.txt");
SyncPreviousSettings(prevFile);
await RefreshLocalFileAsync();
}
catch {}
}
else
{
CopyDataFrom(sd);
}
}
public void CopyDataFrom(SettingsData a)
{
display_theme = a.display_theme;
language_eng = a.language_eng;
pane_top = a.pane_top;
first_time_open = a.first_time_open;
degree = a.degree;
ovr_form = a.ovr_form;
decimal_accuracy = a.decimal_accuracy;
keep_integers = a.keep_integers;
auto_rounding = a.auto_rounding;
physex_accuracy = a.physex_accuracy;
custom_apikey_switch = a.custom_apikey_switch;
apikey = a.apikey;
custom_mkt_switch = a.custom_mkt_switch;
mkt = a.mkt;
resolution = a.resolution;
}
/// <summary>
/// 改了某一个值之后保存到本地用
/// </summary>
/// <returns></returns>
public async Task RefreshLocalFileAsync()
{
StorageFolder folder = KnownFolders.DocumentsLibrary;
StorageFile file = await folder.GetFileAsync("utilities\\datav2_8_0.txt");
var serializer = new SerializerBuilder().WithNamingConvention(UnderscoredNamingConvention.Instance).Build();
string s = serializer.Serialize(this);
await FileIO.WriteTextAsync(file, s);
}
}
}