forked from tModLoader/tModLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstaller.cs
253 lines (227 loc) · 5.47 KB
/
Installer.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Forms;
namespace Installer
{
public partial class Installer : Form
{
public const string version = "v1.3.0.8";
#if WINDOWS
public const Platform platform = Platform.WINDOWS;
#elif MAC
public const Platform platform = Platform.MAC;
#elif LINUX
public const Platform platform = Platform.LINUX;
#elif SETUP
public const Platform platform = Platform.SETUP;
#endif
public Installer()
{
InitializeComponent();
}
private void Init(object sender, EventArgs e)
{
this.header.Text = "";
this.message.Text = "";
if (platform == Platform.SETUP)
{
this.choosePath.Enabled = false;
this.install.Enabled = false;
this.devSetup.Enabled = false;
this.restoreVanilla.Enabled = false;
this.restoreMod.Enabled = false;
}
else
{
this.setup.Enabled = false;
this.setup.Visible = false;
}
}
private void ChoosePath(object sender, EventArgs e)
{
new PathTask().Run(this);
}
private void Install(object sender, EventArgs e)
{
new InstallTask().Run(this);
}
private void SetupDevEnv(object sender, EventArgs e)
{
new DevSetupTask().Run(this);
}
private void RestoreVanilla(object sender, EventArgs e)
{
new RestoreTask(true).Run(this);
}
private void RestoreMod(object sender, EventArgs e)
{
new RestoreTask(false).Run(this);
}
private void Setup(object sender, EventArgs e)
{
new SetupTask().Run(this);
}
private void DragFile(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
e.Effect = DragDropEffects.Link;
}
}
private void DropFile(object sender, DragEventArgs e)
{
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
string file = null;
foreach (string f in files)
{
if (Path.GetExtension(f) == ".exe")
{
file = f;
break;
}
}
if (file != null)
{
SetTerrariaPath(file);
}
}
public void SetProgressVisible(bool visible)
{
this.progressBar.Visible = visible;
}
public int GetProgress()
{
return this.progressBar.Value;
}
public void SetProgress(int progress)
{
if (progress + 1 <= this.progressBar.Maximum)
{
this.progressBar.Value = progress + 1;
this.progressBar.Value = progress;
}
else
{
this.progressBar.Maximum = this.progressBar.Value;
}
}
public void IncrementProgress()
{
this.SetProgress(this.GetProgress() + 1);
}
public void SetMaxProgress(int maxProgress)
{
this.progressBar.Maximum = maxProgress;
}
public void SetHeader(string text)
{
this.header.Text = text;
}
public void SetMessage(string text)
{
this.message.Text = text;
}
private IList<Button> reenable = new List<Button>();
public void DisableButtons()
{
foreach (Control control in this.Controls)
{
Button button = control as Button;
if (button != null && button.Enabled)
{
button.Enabled = false;
reenable.Add(button);
}
}
}
public void ReenableButtons()
{
foreach (Button button in reenable)
{
button.Enabled = true;
}
reenable.Clear();
}
public static string GetPath()
{
string file = "Resources" + Path.DirectorySeparatorChar + "Path.txt";
if (!File.Exists(file))
{
return GetDefaultPath();
}
file = File.ReadAllText(file);
if (!File.Exists(file))
{
return GetDefaultPath();
}
return file;
}
public static string GetDefaultPath()
{
if (platform == Platform.MAC)
{
string path = Environment.GetEnvironmentVariable("HOME");
if (string.IsNullOrEmpty(path))
{
return ".";
}
path = Path.Combine(path, "Library", "Application Support");
path = Path.Combine(path, "Steam", "steamapps", "common", "Terraria");
path = Path.Combine(path, "Terraria.app", "Contents", "MacOS", "Terraria.exe");
return path;
}
else if (platform == Platform.LINUX)
{
string path = Environment.GetEnvironmentVariable("XDG_DATA_HOME");
if (string.IsNullOrEmpty(path))
{
path = Environment.GetEnvironmentVariable("HOME");
if (string.IsNullOrEmpty(path))
{
return ".";
}
path = Path.Combine(path, ".local", "share");
}
path = Path.Combine(path, "Steam", "steamapps", "common", "Terraria", "Terraria.exe");
return path;
}
else
{
string path = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
bool use32Bit = false;
if (path.Length == 0)
{
if (!Environment.Is64BitOperatingSystem)
{
return ".";
}
path = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);
if (path.Length == 0)
{
return ".";
}
use32Bit = true;
}
path = Path.Combine(path, "Steam", "steamapps", "common", "Terraria", "Terraria.exe");
if (!File.Exists(path))
{
if (use32Bit || !Environment.Is64BitOperatingSystem)
{
return ".";
}
path = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);
path = Path.Combine(path, "Steam", "steamapps", "common", "Terraria", "Terraria.exe");
}
return path;
}
}
public static void SetTerrariaPath(string file)
{
Directory.CreateDirectory("Resources");
File.WriteAllText("Resources" + Path.DirectorySeparatorChar + "Path.txt", file);
MessageBox.Show("Terraria path set to:" + Environment.NewLine + file, "Choose File",
MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}