#region Copyright & License Information /* * Copyright 2007-2017 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.Drawing; using System.IO; using System.Linq; using OpenRA.FileSystem; using OpenRA.Graphics; using OpenRA.Primitives; namespace OpenRA { public class InstalledMods : IReadOnlyDictionary { readonly Dictionary mods; readonly SheetBuilder sheetBuilder; readonly Dictionary icons = new Dictionary(); public readonly IReadOnlyDictionary Icons; /// 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); Icons = new ReadOnlyDictionary(icons); mods = GetInstalledMods(searchPaths, explicitPaths); } static IEnumerable> GetCandidateMods(IEnumerable searchPaths) { var mods = new List>(); 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(Pair.New(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)) throw new InvalidDataException(path + " is not a valid mod package"); package = new Folder(path); if (!package.Contains("mod.yaml")) throw new InvalidDataException(path + " is not a valid mod package"); using (var stream = package.GetStream("icon.png")) if (stream != null) using (var bitmap = new Bitmap(stream)) icons[id] = sheetBuilder.Add(bitmap); return new Manifest(id, package); } catch (Exception) { if (package != null) package.Dispose(); return null; } } Dictionary GetInstalledMods(IEnumerable searchPaths, IEnumerable explicitPaths) { var ret = new Dictionary(); var candidates = GetCandidateMods(searchPaths) .Concat(explicitPaths.Select(p => Pair.New(Path.GetFileNameWithoutExtension(p), p))); foreach (var pair in candidates) { var mod = LoadMod(pair.First, pair.Second); // Mods in the support directory and oramod packages (which are listed later // in the CandidateMods list) override mods in the main install. if (mod != null) ret[pair.First] = mod; } return ret; } public Manifest this[string key] { get { return mods[key]; } } public int Count { get { return mods.Count; } } public ICollection Keys { get { return mods.Keys; } } public ICollection Values { get { return mods.Values; } } 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(); } } }