2014-11-15 18:10:24 -08:00
|
|
|
/* Copyright (C) 2014 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"
|
2013-11-16 10:38:40 -08:00
|
|
|
#include "scriptinterface/ScriptVal.h"
|
|
|
|
|
|
|
|
|
|
namespace JSI_Lobby
|
|
|
|
|
{
|
2014-11-15 18:10:24 -08:00
|
|
|
void RegisterScriptFunctions(ScriptInterface& scriptInterface);
|
|
|
|
|
|
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
|
2014-01-25 21:39:55 -08:00
|
|
|
void StartXmppClient(ScriptInterface::CxPrivate* pCxPrivate, std::wstring username, std::wstring password, std::wstring room, std::wstring nick, int historyRequestSize);
|
2014-01-04 02:14:53 -08:00
|
|
|
void StartRegisterXmppClient(ScriptInterface::CxPrivate* pCxPrivate, std::wstring username, std::wstring password);
|
|
|
|
|
void StopXmppClient(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
void ConnectXmppClient(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
void DisconnectXmppClient(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
void SendGetGameList(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
void SendGetBoardList(ScriptInterface::CxPrivate* pCxPrivate);
|
2014-01-23 15:13:13 -08:00
|
|
|
void SendGetRatingList(ScriptInterface::CxPrivate* pCxPrivate);
|
2014-09-20 08:35:26 -07:00
|
|
|
void SendGetProfile(ScriptInterface::CxPrivate* pCxPrivate, 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);
|
|
|
|
|
void SendChangeStateGame(ScriptInterface::CxPrivate* pCxPrivate, std::wstring nbp, std::wstring players);
|
2015-01-24 06:46:52 -08:00
|
|
|
JS::Value GetPlayerList(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
JS::Value GetGameList(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
JS::Value GetBoardList(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
JS::Value GetProfile(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
JS::Value LobbyGuiPollMessage(ScriptInterface::CxPrivate* pCxPrivate);
|
2014-01-04 02:14:53 -08:00
|
|
|
void LobbySendMessage(ScriptInterface::CxPrivate* pCxPrivate, std::wstring message);
|
|
|
|
|
void LobbySetPlayerPresence(ScriptInterface::CxPrivate* pCxPrivate, std::wstring presence);
|
|
|
|
|
void LobbySetNick(ScriptInterface::CxPrivate* pCxPrivate, std::wstring nick);
|
|
|
|
|
std::wstring LobbyGetNick(ScriptInterface::CxPrivate* pCxPrivate);
|
|
|
|
|
void LobbyKick(ScriptInterface::CxPrivate* pCxPrivate, std::wstring nick, std::wstring reason);
|
|
|
|
|
void LobbyBan(ScriptInterface::CxPrivate* pCxPrivate, std::wstring nick, std::wstring reason);
|
|
|
|
|
std::wstring LobbyGetPlayerPresence(ScriptInterface::CxPrivate* pCxPrivate, std::wstring nickname);
|
2014-04-12 16:40:36 -07:00
|
|
|
std::wstring LobbyGetPlayerRole(ScriptInterface::CxPrivate* pCxPrivate, 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.
|
2014-01-04 02:14:53 -08:00
|
|
|
std::wstring EncryptPassword(ScriptInterface::CxPrivate* pCxPrivate, std::wstring pass, std::wstring user);
|
2014-01-24 10:20:15 -08:00
|
|
|
#endif // CONFIG2_LOBBY
|
2013-11-16 10:38:40 -08:00
|
|
|
}
|
|
|
|
|
|
2014-01-23 15:13:13 -08:00
|
|
|
#endif
|