]> git.lizzy.rs Git - dragonfireclient.git/blob - src/server/mods.cpp
609d8c3462dcf028592a83a6035f794787f36ec1
[dragonfireclient.git] / src / server / mods.cpp
1 /*
2 Minetest
3 Copyright (C) 2018 nerzhul, Loic Blot <loic.blot@unix-experience.fr>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "mods.h"
21 #include "filesys.h"
22 #include "log.h"
23 #include "scripting_server.h"
24 #include "content/subgames.h"
25 #include "porting.h"
26 #include "util/metricsbackend.h"
27
28 /**
29  * Manage server mods
30  *
31  * All new calls to this class must be tested in test_servermodmanager.cpp
32  */
33
34 /**
35  * Creates a ServerModManager which targets worldpath
36  * @param worldpath
37  */
38 ServerModManager::ServerModManager(const std::string &worldpath) :
39                 ModConfiguration(worldpath)
40 {
41         SubgameSpec gamespec = findWorldSubgame(worldpath);
42
43         // Add all game mods and all world mods
44         addModsInPath(gamespec.gamemods_path);
45         addModsInPath(worldpath + DIR_DELIM + "worldmods");
46
47         // Load normal mods
48         std::string worldmt = worldpath + DIR_DELIM + "world.mt";
49         addModsFromConfig(worldmt, gamespec.addon_mods_paths);
50 }
51
52 // clang-format off
53 // This function cannot be currenctly easily tested but it should be ASAP
54 void ServerModManager::loadMods(ServerScripting *script)
55 {
56         // Print mods
57         infostream << "Server: Loading mods: ";
58         for (const ModSpec &mod : m_sorted_mods) {
59                 infostream << mod.name << " ";
60         }
61         infostream << std::endl;
62         // Load and run "mod" scripts
63         for (const ModSpec &mod : m_sorted_mods) {
64                 mod.checkAndLog();
65
66                 std::string script_path = mod.path + DIR_DELIM + "init.lua";
67                 auto t = porting::getTimeMs();
68                 script->loadMod(script_path, mod.name);
69                 infostream << "Mod \"" << mod.name << "\" loaded after "
70                         << (porting::getTimeMs() - t) << " ms" << std::endl;
71         }
72
73         // Run a callback when mods are loaded
74         script->on_mods_loaded();
75 }
76
77 // clang-format on
78 const ModSpec *ServerModManager::getModSpec(const std::string &modname) const
79 {
80         std::vector<ModSpec>::const_iterator it;
81         for (it = m_sorted_mods.begin(); it != m_sorted_mods.end(); ++it) {
82                 const ModSpec &mod = *it;
83                 if (mod.name == modname)
84                         return &mod;
85         }
86         return NULL;
87 }
88
89 void ServerModManager::getModNames(std::vector<std::string> &modlist) const
90 {
91         for (const ModSpec &spec : m_sorted_mods)
92                 modlist.push_back(spec.name);
93 }
94
95 void ServerModManager::getModsMediaPaths(std::vector<std::string> &paths) const
96 {
97         for (auto it = m_sorted_mods.crbegin(); it != m_sorted_mods.crend(); it++) {
98                 const ModSpec &spec = *it;
99                 fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "textures");
100                 fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "sounds");
101                 fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "media");
102                 fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "models");
103                 fs::GetRecursiveDirs(paths, spec.path + DIR_DELIM + "locale");
104         }
105 }