-
Notifications
You must be signed in to change notification settings - Fork 0
/
FindInstallers.cs
333 lines (310 loc) · 13.5 KB
/
FindInstallers.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
using Playnite.SDK;
using Playnite.SDK.Models;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Windows;
using API = Playnite.SDK.API;
namespace LocalLibrary
{
internal class Finder
{
private static readonly ILogger logger = LogManager.GetLogger();
public List<string> GetDirectories(string parentDir)
{
List<string> dirs = new List<string>();
//get parent directory with parameter of method
DirectoryInfo di = new DirectoryInfo(parentDir);
//get directories that match in the parent directory
DirectoryInfo[] directories =
di.GetDirectories("*", SearchOption.TopDirectoryOnly);
//iterate the parent directory matching directories and add to list
foreach (DirectoryInfo dinfo in directories)
{
dirs.Add(dinfo.FullName);
}
return dirs;
}
public string GetDeepestDirectory(string path)
{
path = path.Replace(":", "");
if (File.Exists(path))
{
// If it's a file, get its directory
path = Path.GetDirectoryName(path);
}
// Get the last part of the directory path
return new DirectoryInfo(path).Name;
}
public Tuple<string, string, List<GameAction>> GetActions(Game game)
{
string gameImagePath = null;
string gameInstallArgs = null;
List<GameAction> gameActions = new List<GameAction>();
if (game.GameActions != null)
{
gameActions = game.GameActions.ToList();
foreach (GameAction g in gameActions)
{
if (g.Name == "Install" || g.Name == "Installer")
{
gameImagePath = API.Instance.ExpandGameVariables(game, g).Path;
gameInstallArgs = API.Instance.ExpandGameVariables(game, g).Arguments;
break;
}
}
if (String.IsNullOrEmpty(gameImagePath) && gameActions.Count > 0)
{
gameImagePath = API.Instance.ExpandGameVariables(game, gameActions[0]).Path;
}
}
else
{
gameImagePath = API.Instance.ExpandGameVariables(game, game.InstallDirectory);
}
return Tuple.Create(gameImagePath, gameInstallArgs, gameActions);
}
public Tuple<string, string, List<GameRom>> GetRoms(Game game)
{
string gameImagePath = null;
string gameInstallArgs = null;
List<GameRom> gameRoms = new List<GameRom>();
if (game.Roms != null)
{
gameRoms = game.Roms.ToList();
foreach (GameRom gr in gameRoms)
{
//Take the ROM with the name Install or Installer and use it as the installer
if (gr.Name == "Install" || gr.Name == "Installer")
{
gameImagePath = gr.Path;
break;
}
}
if (String.IsNullOrEmpty(gameImagePath) && gameRoms.Count > 0)
{
//If no Install or Installer ROM is found, use the first ROM in the list
gameImagePath = gameRoms[0].Path;
}
}
if (String.IsNullOrEmpty(gameImagePath))
{
gameImagePath = API.Instance.ExpandGameVariables(game, game.InstallDirectory);
}
return Tuple.Create(gameImagePath, gameInstallArgs, gameRoms);
}
public List<Game> AddGame(List<Game> gamesAdded, string dir, bool useActions, string source, string platform, List<MergedItem> ignorelist)
{
string gamename = Path.GetFileName(dir);
if (ignorelist != null)
{
foreach (MergedItem item in ignorelist)
{
var type = item.Source;
var value = item.Value;
if (type == "String")
{
if (gamename.Contains(value))
{
gamename = gamename.Replace(value, "");
}
}
else if (type == "Regex")
{
if (Regex.IsMatch(gamename, value))
{
gamename = Regex.Replace(gamename, value, "");
}
}
gamename = Regex.Replace(gamename, @"\s+", " ").Trim();
}
}
Game newGame = new Game
{
Name = gamename,
Added = DateTime.Now,
PluginId = Guid.Parse("2d01017d-024e-444d-80d3-f62f5be3fca5"),
SourceId = API.Instance.Database.Sources.FirstOrDefault(a => a.Name == source)?.Id ?? Guid.Empty,
PlatformIds = new List<Guid> { API.Instance.Database.Platforms.FirstOrDefault(a => a.Name == platform)?.Id ?? Guid.Empty }
};
string gameInstaller = "";
List<string> validExt = new List<string> { ".iso", ".rar", ".zip", ".7z" };
List<string> dirFiles = Directory.GetFiles(dir).ToList();
foreach (string file in dirFiles)
{
if (Path.GetExtension(file) == ".exe")
{
if (Path.GetFileNameWithoutExtension(file).ToLower() == "setup" || Path.GetFileNameWithoutExtension(file).ToLower() == "install")
{
gameInstaller = file;
break;
}
}
else if (validExt.Contains(Path.GetExtension(file)))
{
gameInstaller = file;
}
}
if (gameInstaller == "")
{
return gamesAdded;
}
else if (useActions)
{
GameAction action = new GameAction();
try
{
action.Type = GameActionType.File;
}
catch (Exception ex)
{
logger.Error(ex.ToString());
}
action.Path = gameInstaller;
action.Name = "Install";
action.TrackingMode = TrackingMode.Default;
action.IsPlayAction = false;
newGame.GameActions = new ObservableCollection<GameAction>();
newGame.GameActions.AddMissing(action);
}
else
{
GameRom installRom = new GameRom();
installRom.Name = "Install";
installRom.Path = gameInstaller;
newGame.Roms = new ObservableCollection<GameRom>();
newGame.Roms.AddMissing(installRom);
}
gamesAdded.Add(newGame);
return gamesAdded;
}
public List<Game> FindInstallers(List<string> installPaths, bool useActions, int lpercent, string source, string platform, List<MergedItem> ignorelist)
{
IEnumerable<Game> games = API.Instance.Database.Games;
List<string> gameInstallDirs = new List<string>();
foreach (Game game in games)
{
if ((game.Source?.ToString() ?? "") != source)
{
continue;
}
string gameImagePath = useActions ? GetActions(game).Item1 : GetRoms(game).Item1;
List<string> exts = new List<string> { ".exe", ".iso", ".rar", ".zip", ".7z" };
if (exts.Contains(Path.GetExtension(gameImagePath)) || File.Exists(gameImagePath))
{
gameImagePath = Path.GetDirectoryName(gameImagePath);
}
gameInstallDirs.Add(gameImagePath);
}
GlobalProgressOptions globalProgressOptions = new GlobalProgressOptions(
$"Local Library - Finding Installers...",
true
);
globalProgressOptions.IsIndeterminate = false;
List<Game> gamesAdded = new List<Game>();
API.Instance.Dialogs.ActivateGlobalProgress((activateGlobalProgress) =>
{
try
{
List<string> dirsFinal = installPaths
.Where(Directory.Exists)
.SelectMany(GetDirectories)
.ToList();
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
activateGlobalProgress.ProgressMaxValue = dirsFinal.Count;
string cancelText = string.Empty;
foreach (string dir in dirsFinal)
{
activateGlobalProgress.CurrentProgressValue++;
string dirName = dir;
List<string> regPaths = new List<string>();
foreach (string p in installPaths)
{
string doubled = Regex.Replace(p, @"\\", @"\\");
regPaths.Add(doubled);
}
string pattern = @"(" + String.Join("|", regPaths.ToArray()) + @")([^\\]*)\\*";
pattern.Replace(@"\", @"\\");
RegexOptions options = RegexOptions.IgnoreCase | RegexOptions.Compiled;
Regex reg = new Regex(pattern, options);
MatchCollection matches = reg.Matches(dir);
if (matches.Count == 1)
{
dirName = dir.Replace(matches[0].ToString(), "");
}
if (activateGlobalProgress.CancelToken.IsCancellationRequested)
{
cancelText = " canceled";
break;
}
if (gameInstallDirs.Contains(dir))
{
continue;
}
Levenshtein myLevenshtein = new Levenshtein();
List<string> posmatches = new List<string>();
gameInstallDirs.Sort();
foreach (string gameInstallDir in gameInstallDirs)
{
if (gameInstallDir == null)
{
continue;
}
string gameInstallDirName = GetDeepestDirectory(gameInstallDir);
int ldistance = myLevenshtein.Distance(dirName, gameInstallDirName);
float percent = 1 - (Convert.ToSingle(ldistance) / Convert.ToSingle(Math.Max(gameInstallDir.Length, dir.Length)));
percent = percent * 100;
if (percent >= lpercent)
{
posmatches.Add(gameInstallDir);
}
}
if (posmatches.Count() > 0)
{
if (posmatches.Count() == 1)
{
continue;
}
else
{
posmatches.Sort();
ObservableCollection<string> lmatches = new ObservableCollection<string>(
posmatches.Select(match => match)
);
Application.Current.Dispatcher.Invoke(() =>
{
SelectionDialog dialog = new SelectionDialog(lmatches);
dialog.SelectText.Text = $"Below are possible matches for {dirName}. Select a match from the list or choose 'None are correct'.";
dialog.ShowDialog();
if (dialog.IsCancelled)
{
gamesAdded = AddGame(gamesAdded, dir, useActions, source, platform, ignorelist);
}
});
}
}
else
{
gamesAdded = AddGame(gamesAdded, dir, useActions, source, platform, ignorelist);
}
}
API.Instance.Database.Games.Add(gamesAdded);
stopWatch.Stop();
TimeSpan ts = stopWatch.Elapsed;
logger.Info($"Task FindInstallers(){cancelText} - {ts:mm\\:ss\\.ff} for {activateGlobalProgress.CurrentProgressValue}/{dirsFinal.Count} items");
}
catch (Exception ex)
{
logger.Error(ex, ex.ToString());
}
}, globalProgressOptions);
return gamesAdded;
}
}
}