#region Copyright & License Information /* * Copyright 2007-2022 The OpenRA Developers (see AUTHORS) * This file is part of OpenRA, which is free software. It is made * available to you under the terms of the GNU General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. For more * information, see COPYING. */ #endregion using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using OpenRA.FileSystem; using OpenRA.Graphics; namespace OpenRA { public class InstalledMods : IReadOnlyDictionary { readonly Dictionary mods; readonly SheetBuilder sheetBuilder; /// Initializes the collection of locally installed mods. /// Filesystem paths to search for mod packages. /// Filesystem paths to additional mod packages. public InstalledMods(IEnumerable searchPaths, IEnumerable explicitPaths) { sheetBuilder = new SheetBuilder(SheetType.BGRA, 256); mods = GetInstalledMods(searchPaths, explicitPaths); } static IEnumerable<(string Id, string Path)> GetCandidateMods(IEnumerable searchPaths) { var mods = new List<(string, string)>(); foreach (var path in searchPaths) { try { var resolved = Platform.ResolvePath(path); if (!Directory.Exists(resolved)) continue; var directory = new DirectoryInfo(resolved); foreach (var subdir in directory.EnumerateDirectories()) mods.Add((subdir.Name, subdir.FullName)); } catch (Exception e) { Console.WriteLine("Failed to enumerate mod search path {0}: {1}", path, e.Message); } } return mods; } Manifest LoadMod(string id, string path) { IReadOnlyPackage package = null; try { if (!Directory.Exists(path)) { Log.Write("debug", path + " is not a valid mod package"); return null; } package = new Folder(path); if (package.Contains("mod.yaml")) return new Manifest(id, package); } catch (Exception e) { Log.Write("debug", $"Load mod '{path}': {e}"); } package?.Dispose(); return null; } Dictionary GetInstalledMods(IEnumerable searchPaths, IEnumerable explicitPaths) { var ret = new Dictionary(); var candidates = GetCandidateMods(searchPaths) .Concat(explicitPaths.Select(p => (Id: Path.GetFileNameWithoutExtension(p), Path: p))); foreach (var pair in candidates) { var mod = LoadMod(pair.Id, pair.Path); if (mod != null) ret[pair.Id] = mod; } return ret; } public Manifest this[string key] => mods[key]; public IEnumerable Keys => mods.Keys; public IEnumerable Values => mods.Values; public int Count => mods.Count; public bool ContainsKey(string key) { return mods.ContainsKey(key); } public IEnumerator> GetEnumerator() { return mods.GetEnumerator(); } public bool TryGetValue(string key, out Manifest value) { return mods.TryGetValue(key, out value); } IEnumerator IEnumerable.GetEnumerator() { return mods.GetEnumerator(); } } }