2018-01-14 20:30:33 -08:00
|
|
|
/* Copyright (C) 2018 Wildfire Games.
|
2013-11-16 10:38:40 -08: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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INCLUDED_JSI_LOBBY
|
|
|
|
|
#define INCLUDED_JSI_LOBBY
|
|
|
|
|
|
2014-11-15 18:10:24 -08:00
|
|
|
#include "lib/config2.h"
|
2014-01-04 02:14:53 -08:00
|
|
|
#include "scriptinterface/ScriptInterface.h"
|
2018-08-25 07:34:30 -07:00
|
|
|
|
|
|
|
|
#include <string>
|
2013-11-16 10:38:40 -08:00
|
|
|
|
|
|
|
|
namespace JSI_Lobby
|
|
|
|
|
{
|
2017-08-23 17:32:42 -07:00
|
|
|
void RegisterScriptFunctions(const ScriptInterface& scriptInterface);
|
2014-11-15 18:10:24 -08:00
|
|
|
|
2014-01-04 02:14:53 -08:00
|
|
|
bool HasXmppClient(ScriptInterface::CxPrivate* pCxPrivate);
|
2014-04-15 23:03:49 -07:00
|
|
|
bool IsRankedGame(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
void SetRankedGame(ScriptInterface::CxPrivate* pCxPrivate, bool isRanked);
|
|
|
|
|
|
2014-01-24 10:20:15 -08:00
|
|
|
#if CONFIG2_LOBBY
|
2016-01-23 07:17:56 -08:00
|
|
|
void StartXmppClient(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& username, const std::wstring& password, const std::wstring& room, const std::wstring& nick, int historyRequestSize);
|
|
|
|
|
void StartRegisterXmppClient(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& username, const std::wstring& password);
|
2014-01-04 02:14:53 -08:00
|
|
|
void StopXmppClient(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
void ConnectXmppClient(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
void DisconnectXmppClient(ScriptInterface::CxPrivate* pCxPrivate);
|
2018-01-14 20:30:33 -08:00
|
|
|
bool IsXmppClientConnected(ScriptInterface::CxPrivate* pCxPrivate);
|
2014-01-04 02:14:53 -08:00
|
|
|
void SendGetBoardList(ScriptInterface::CxPrivate* pCxPrivate);
|
2016-01-23 07:17:56 -08:00
|
|
|
void SendGetProfile(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& player);
|
2015-01-24 06:46:52 -08:00
|
|
|
void SendGameReport(ScriptInterface::CxPrivate* pCxPrivate, JS::HandleValue data);
|
|
|
|
|
void SendRegisterGame(ScriptInterface::CxPrivate* pCxPrivate, JS::HandleValue data);
|
2014-01-04 02:14:53 -08:00
|
|
|
void SendUnregisterGame(ScriptInterface::CxPrivate* pCxPrivate);
|
2016-01-23 07:17:56 -08:00
|
|
|
void SendChangeStateGame(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& nbp, const std::wstring& players);
|
2015-01-24 06:46:52 -08:00
|
|
|
JS::Value GetPlayerList(ScriptInterface::CxPrivate* pCxPrivate);
|
2015-09-09 22:30:18 -07:00
|
|
|
void LobbyClearPresenceUpdates(ScriptInterface::CxPrivate* pCxPrivate);
|
2015-01-24 06:46:52 -08:00
|
|
|
JS::Value GetGameList(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
JS::Value GetBoardList(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
JS::Value GetProfile(ScriptInterface::CxPrivate* pCxPrivate);
|
2017-08-29 09:04:45 -07:00
|
|
|
JS::Value LobbyGuiPollNewMessage(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
JS::Value LobbyGuiPollHistoricMessages(ScriptInterface::CxPrivate* pCxPrivate);
|
2016-01-23 07:17:56 -08:00
|
|
|
void LobbySendMessage(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& message);
|
|
|
|
|
void LobbySetPlayerPresence(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& presence);
|
|
|
|
|
void LobbySetNick(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& nick);
|
2014-01-04 02:14:53 -08:00
|
|
|
std::wstring LobbyGetNick(ScriptInterface::CxPrivate* pCxPrivate);
|
2016-01-23 07:17:56 -08:00
|
|
|
void LobbyKick(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& nick, const std::wstring& reason);
|
|
|
|
|
void LobbyBan(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& nick, const std::wstring& reason);
|
|
|
|
|
std::wstring LobbyGetPlayerPresence(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& nickname);
|
|
|
|
|
std::wstring LobbyGetPlayerRole(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& nickname);
|
2014-01-24 10:20:15 -08:00
|
|
|
std::wstring LobbyGetRoomSubject(ScriptInterface::CxPrivate* pCxPrivate);
|
2013-11-16 10:38:40 -08:00
|
|
|
|
|
|
|
|
// Non-public secure PBKDF2 hash function with salting and 1,337 iterations
|
|
|
|
|
std::string EncryptPassword(const std::string& password, const std::string& username);
|
|
|
|
|
|
|
|
|
|
// Public hash interface.
|
2016-01-23 07:17:56 -08:00
|
|
|
std::wstring EncryptPassword(ScriptInterface::CxPrivate* pCxPrivate, const std::wstring& pass, const std::wstring& user);
|
2014-01-24 10:20:15 -08:00
|
|
|
#endif // CONFIG2_LOBBY
|
2013-11-16 10:38:40 -08:00
|
|
|
}
|
|
|
|
|
|
2018-04-27 09:48:44 -07:00
|
|
|
#endif // INCLUDED_JSI_LOBBY
|