Civ backgrounds for minimap
[0ad.git] / source / ps / ModInstaller.h
blob1f8236ca32836372b8ec7ce567e5ad16f8534de4
1 /* Copyright (C) 2022 Wildfire Games.
2 * This file is part of 0 A.D.
4 * 0 A.D. is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
9 * 0 A.D. is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef INCLUDED_MODINSTALLER
19 #define INCLUDED_MODINSTALLER
21 #include "CStr.h"
22 #include "lib/file/vfs/vfs.h"
24 #include <memory>
25 #include <vector>
27 class ScriptContext;
29 /**
30 * Install a mod into the mods directory.
32 class CModInstaller
34 public:
35 enum ModInstallationResult
37 SUCCESS,
38 FAIL_ON_VFS_MOUNT,
39 FAIL_ON_MOD_LOAD,
40 FAIL_ON_PARSE_JSON,
41 FAIL_ON_EXTRACT_NAME,
42 FAIL_ON_MOD_MOVE,
43 FAIL_ON_JSON_WRITE,
44 FAIL_ON_MOD_COPY
47 /**
48 * Initialise the mod installer for processing the given mod.
50 * @param modsdir path to the data directory that contains mods
51 * @param tempdir path to a writable directory for temporary files
53 CModInstaller(const OsPath& modsdir, const OsPath& tempdir);
55 ~CModInstaller();
57 /**
58 * Process and unpack the mod.
59 * @param mod path of .pyromod/.zip file
60 * @param keepFile if true, copy the file, if false move it
62 ModInstallationResult Install(
63 const OsPath& mod,
64 const std::shared_ptr<ScriptContext>& scriptContext,
65 bool keepFile);
67 /**
68 * @return a list of all mods installed so far by this CModInstaller.
70 const std::vector<CStr>& GetInstalledMods() const;
72 /**
73 * @return whether the path has a mod-like extension.
75 static bool IsDefaultModExtension(const Path& ext)
77 return ext == ".pyromod" || ext == ".zip";
80 private:
81 PIVFS m_VFS;
82 OsPath m_ModsDir;
83 OsPath m_TempDir;
84 VfsPath m_CacheDir;
85 std::vector<CStr> m_InstalledMods;
88 #endif // INCLUDED_MODINSTALLER