2018-02-21 14:53:01 -08:00
|
|
|
/* Copyright (C) 2018 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"
|
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
|
|
|
|
2018-02-17 09:36:43 -08:00
|
|
|
JS::Value JSI_Mod::GetEngineInfo(ScriptInterface::CxPrivate* pCxPrivate)
|
|
|
|
|
{
|
|
|
|
|
return Mod::GetEngineInfo(*(pCxPrivate->pScriptInterface));
|
|
|
|
|
}
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2015-01-24 06:46:52 -08:00
|
|
|
JS::Value JSI_Mod::GetAvailableMods(ScriptInterface::CxPrivate* pCxPrivate)
|
2014-08-25 09:02:54 -07:00
|
|
|
{
|
2017-12-05 09:17:21 -08:00
|
|
|
return Mod::GetAvailableMods(*(pCxPrivate->pScriptInterface));
|
2014-08-25 09:02:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void JSI_Mod::RestartEngine(ScriptInterface::CxPrivate* UNUSED(pCxPrivate))
|
|
|
|
|
{
|
2018-05-08 02:45:54 -07:00
|
|
|
::RestartEngine();
|
2014-08-25 09:02:54 -07:00
|
|
|
}
|
|
|
|
|
|
2016-01-23 07:17:56 -08:00
|
|
|
void JSI_Mod::SetMods(ScriptInterface::CxPrivate* UNUSED(pCxPrivate), const std::vector<CStr>& mods)
|
2014-08-25 09:02:54 -07:00
|
|
|
{
|
|
|
|
|
g_modsLoaded = mods;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-23 17:32:42 -07:00
|
|
|
void JSI_Mod::RegisterScriptFunctions(const ScriptInterface& scriptInterface)
|
2014-08-25 09:02:54 -07:00
|
|
|
{
|
2018-02-17 09:36:43 -08:00
|
|
|
scriptInterface.RegisterFunction<JS::Value, &GetEngineInfo>("GetEngineInfo");
|
2015-01-24 06:46:52 -08:00
|
|
|
scriptInterface.RegisterFunction<JS::Value, &JSI_Mod::GetAvailableMods>("GetAvailableMods");
|
2014-08-25 09:02:54 -07:00
|
|
|
scriptInterface.RegisterFunction<void, &JSI_Mod::RestartEngine>("RestartEngine");
|
|
|
|
|
scriptInterface.RegisterFunction<void, std::vector<CStr>, &JSI_Mod::SetMods>("SetMods");
|
|
|
|
|
}
|