2021-03-01 12:52:24 -08:00
|
|
|
/* Copyright (C) 2021 Wildfire Games.
|
2014-08-25 09:02:54 -07:00
|
|
|
* This file is part of 0 A.D.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "precompiled.h"
|
|
|
|
|
|
2018-04-22 11:14:45 -07:00
|
|
|
#include "JSInterface_Mod.h"
|
2014-08-25 09:02:54 -07:00
|
|
|
|
2017-12-05 09:17:21 -08:00
|
|
|
#include "ps/Mod.h"
|
2021-03-01 12:52:24 -08:00
|
|
|
#include "scriptinterface/FunctionWrapper.h"
|
2018-04-27 09:48:44 -07:00
|
|
|
#include "scriptinterface/ScriptInterface.h"
|
2014-08-25 09:02:54 -07:00
|
|
|
|
2018-05-08 02:45:54 -07:00
|
|
|
extern void RestartEngine();
|
2014-08-25 09:02:54 -07:00
|
|
|
|
2021-03-01 12:52:24 -08:00
|
|
|
namespace
|
|
|
|
|
{
|
|
|
|
|
JS::Value GetEngineInfo(ScriptInterface::CmptPrivate* pCmptPrivate)
|
2018-02-17 09:36:43 -08:00
|
|
|
{
|
2020-11-13 08:44:15 -08:00
|
|
|
return Mod::GetEngineInfo(*(pCmptPrivate->pScriptInterface));
|
2018-02-17 09:36:43 -08:00
|
|
|
}
|
|
|
|
|
|
2014-08-25 09:02:54 -07:00
|
|
|
/**
|
|
|
|
|
* Returns a JS object containing a listing of available mods that
|
|
|
|
|
* have a modname.json file in their modname folder. The returned
|
|
|
|
|
* object looks like { modname1: json1, modname2: json2, ... } where
|
|
|
|
|
* jsonN is the content of the modnameN/modnameN.json file as a JS
|
|
|
|
|
* object.
|
|
|
|
|
*
|
|
|
|
|
* @return JS object with available mods as the keys of the modname.json
|
|
|
|
|
* properties.
|
|
|
|
|
*/
|
2021-03-01 12:52:24 -08:00
|
|
|
JS::Value GetAvailableMods(ScriptInterface::CmptPrivate* pCmptPrivate)
|
2014-08-25 09:02:54 -07:00
|
|
|
{
|
2020-11-13 08:44:15 -08:00
|
|
|
return Mod::GetAvailableMods(*(pCmptPrivate->pScriptInterface));
|
2014-08-25 09:02:54 -07:00
|
|
|
}
|
|
|
|
|
|
2021-03-01 12:52:24 -08:00
|
|
|
void SetMods(const std::vector<CStr>& mods)
|
2014-08-25 09:02:54 -07:00
|
|
|
{
|
|
|
|
|
g_modsLoaded = mods;
|
|
|
|
|
}
|
2021-03-01 12:52:24 -08:00
|
|
|
}
|
2014-08-25 09:02:54 -07:00
|
|
|
|
2021-03-01 12:52:24 -08:00
|
|
|
void JSI_Mod::RegisterScriptFunctions(const ScriptRequest& rq)
|
2014-08-25 09:02:54 -07:00
|
|
|
{
|
2021-03-01 12:52:24 -08:00
|
|
|
ScriptFunction::Register<&GetEngineInfo>(rq, "GetEngineInfo");
|
|
|
|
|
ScriptFunction::Register<&GetAvailableMods>(rq, "GetAvailableMods");
|
|
|
|
|
ScriptFunction::Register<&RestartEngine>(rq, "RestartEngine");
|
|
|
|
|
ScriptFunction::Register<&SetMods>(rq, "SetMods");
|
2014-08-25 09:02:54 -07:00
|
|
|
}
|