-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFindInstallers.cs
472 lines (436 loc) · 19.2 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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
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, Guid 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 = source,
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 int FindGameUpdates(Game game, string dir, bool useActions)
{
var gameUpdates = new List<Dictionary<string, string>>();
var updatesPath = Path.Combine(dir, "Updates");
if (!Directory.Exists(updatesPath))
{
return 0;
}
// Get all top-level files and directories
var entries = Directory.GetFileSystemEntries(updatesPath).OrderBy(Path.GetFileName);
// Filter out invalid actions
if (useActions)
{
gameUpdates = game.GameActions
.Where(action => File.Exists(action.Path) || Directory.Exists(action.Path))
.Select(action => new Dictionary<string, string>
{
{ "Path", action.Path },
{ "Name", action.Name }
})
.ToList();
}
else
{
gameUpdates = game.Roms
.Where(rom => File.Exists(rom.Path) || Directory.Exists(rom.Path))
.Select(rom => new Dictionary<string, string>
{
{ "Path", rom.Path },
{ "Name", rom.Name }
})
.ToList();
}
var validExecutables = new[] { "Patch.exe", "Setup.exe", "Install.exe" };
foreach (var entry in entries)
{
string entryName = string.Empty;
if (game.GameActions?.Any(action => action.Path == entry) == true
|| game.Roms?.Any(rom => rom.Path == entry) == true)
{
continue;
}
if (File.Exists(entry))
{
var newentry = new Dictionary<string, string> { { "Path", entry }, { "Name", "" } };
gameUpdates.Add(newentry);
}
else if (Directory.Exists(entry))
{
var validExecutable = Directory.GetFiles(entry, "*.exe", SearchOption.AllDirectories)
.FirstOrDefault(file => validExecutables.Contains(Path.GetFileName(file), StringComparer.OrdinalIgnoreCase));
if (validExecutable != null)
{
var newentry = new Dictionary<string, string> { { "Path", validExecutable }, { "Name", "" } };
gameUpdates.Add(newentry);
}
}
}
// Sort and rename updates
var seenPaths = new HashSet<string>();
gameUpdates = gameUpdates
.Where(update => seenPaths.Add(update["Path"].ToString())) // Adds path if not already in HashSet
.ToList();
gameUpdates = gameUpdates
.OrderBy(update => update["Name"].StartsWith("install", StringComparison.OrdinalIgnoreCase) ? 0 : 1)
.ThenBy(update => update["Path"])
.ToList();
for (int i = 1; i < gameUpdates.Count; i++)
{
gameUpdates[i]["Name"] = $"Update {i}";
}
if (useActions)
{
var gameActions = gameUpdates.Select(update => new GameAction
{
Name = update["Name"],
Path = update["Path"],
Type = GameActionType.File,
TrackingMode = TrackingMode.Default,
IsPlayAction = false
});
game.GameActions = new ObservableCollection<GameAction>(gameActions);
}
else
{
var gameRoms = gameUpdates.Select(update => new GameRom
{
Name = update["Name"],
Path = update["Path"]
});
game.Roms = new ObservableCollection<GameRom>(gameRoms);
}
return gameUpdates.Count - 1;
}
public List<Game> FindInstallers(List<string> installPaths, bool useActions, int lpercent, ObservableCollection<GameSourceOption> sources, string platform, List<MergedItem> ignorelist, bool findupdates)
{
List<ReportItem> reportItems = new List<ReportItem>();
int totalupdates = 0;
Guid primarysourceid = sources.FirstOrDefault(a => a.IsPrimary)?.Id ?? Guid.Empty;
if (primarysourceid == Guid.Empty)
{
API.Instance.Dialogs.ShowMessage("You must designate a Source as the primary source in order to find and add new games. Open the Local Library addon settings and select a primary source.", "No Primary Source selected");
}
IEnumerable<Game> games = API.Instance.Database.Games;
List<string> gameInstallDirs = new List<string>();
foreach (Game game in games)
{
if (!sources.Any(source => source.Name == (game.Source?.ToString() ?? "")))
{
continue;
}
string gameImagePath = useActions ? GetActions(game).Item1 : GetRoms(game).Item1;
if (gameImagePath == null)
{
continue;
}
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);
if (findupdates)
{
int updatescount = FindGameUpdates(game, gameImagePath, useActions);
totalupdates += updatescount;
reportItems.Add(new ReportItem(game.Name, false, updatescount > 0, updatescount));
}
}
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, primarysourceid, platform, ignorelist);
}
});
}
}
else
{
gamesAdded = AddGame(gamesAdded, dir, useActions, primarysourceid, platform, ignorelist);
}
}
int totalNewUpdates = 0;
foreach (Game game in gamesAdded)
{
int updatescount =
FindGameUpdates(
game,
useActions && game.GameActions.Any()
? Path.GetDirectoryName(game.GameActions.First().Path)
: game.Roms.Any()
? Path.GetDirectoryName(game.Roms.First().Path)
: string.Empty,
useActions);
totalNewUpdates += updatescount;
reportItems.Add(new ReportItem(game.Name, true, updatescount > 0, updatescount));
}
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;
}
}
}