1
0
forked from 0ad/0ad
0ad/source/ps/scripting/JSInterface_Mod.h
Itms 833c9f108c mod.io support.
mod.io is a new platform for sharing mods, that 0 A.D. can make use of
in order to download mods and install them.

Based on patch by leper, numerous changes from s0600204, vladislavbelov,
Imarok, elexis, temple and myself.
Differential Revision: https://code.wildfiregames.com/D1029
This was SVN commit r21759.
2018-04-22 18:14:45 +00:00

44 lines
1.7 KiB
C++

/* Copyright (C) 2018 Wildfire Games.
* 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/>.
*/
#ifndef INCLUDED_JSI_MOD
#define INCLUDED_JSI_MOD
#include "ps/CStr.h"
#include "scriptinterface/ScriptInterface.h"
class ScriptInterface;
namespace JSI_Mod
{
void RegisterScriptFunctions(const ScriptInterface& scriptInterface);
JS::Value GetEngineInfo(ScriptInterface::CxPrivate* pCxPrivate);
JS::Value GetAvailableMods(ScriptInterface::CxPrivate* pCxPrivate);
void RestartEngine(ScriptInterface::CxPrivate* pCxPrivate);
void SetMods(ScriptInterface::CxPrivate* pCxPrivate, const std::vector<CStr>& mods);
void ModIoStartGetGameId(ScriptInterface::CxPrivate* pCxPrivate);
void ModIoStartListMods(ScriptInterface::CxPrivate* pCxPrivate);
void ModIoStartDownloadMod(ScriptInterface::CxPrivate* pCxPrivate, uint32_t idx);
bool ModIoAdvanceRequest(ScriptInterface::CxPrivate* pCxPrivate);
void ModIoCancelRequest(ScriptInterface::CxPrivate* pCxPrivate);
JS::Value ModIoGetMods(ScriptInterface::CxPrivate* pCxPrivate);
JS::Value ModIoGetDownloadProgress(ScriptInterface::CxPrivate* pCxPrivate);
}
#endif