Files
itgmania212121/stepmania/src/NetworkSyncServer.h
T
2004-10-29 01:58:56 +00:00

168 lines
4.6 KiB
C++

#ifndef NetworkSyncServer_H
#define NetworkSyncServer_H
#include "NetworkSyncManager.h"
#if !defined(WITHOUT_NETWORKING)
#include "ezsockets.h"
#define NETMAXBUFFERSIZE 1020
class LanPlayer
{
public:
CString name;
long score;
int health;
int feet;
int projgrade;
int combo;
int currstep;
int steps[9];
int maxCombo;
int Grade;
double offset;
int PlayerID;
int diff;
CString options;
LanPlayer();
};
class GameInfo
{
public:
CString title;
CString subtitle;
CString artist;
CString course;
};
class GameClient
{
public:
bool GotStartRequest;
EzSockets clientSocket;
void UpdateStats(PacketFunctions &Packet);
void SetClientVersion(int ver, const CString& b);
void StartRequest(PacketFunctions &Packet);
int GetData(PacketFunctions &Packet);
GameClient();
LanPlayer Player[2];
bool IsPlaying(int Player);
void StyleUpdate(PacketFunctions &Packet);
bool InGame;
int twoPlayers;
bool hasSong;
bool forceHas;
bool inNetMusicSelect;
int startPosition;
bool isStarting;
bool wasIngame;
bool lowerJudge;
enum LastNetScreen
{
NS_NOWHERE = 0,
NS_SELECTSCREEN,
NS_OPTIONS,
NS_EVALUATION
} NetScreenInfo;
private:
string build;
GameInfo gameInfo;
int version;
};
#endif
class StepManiaLanServer
{
public:
bool ServerStart();
void ServerStop();
void ServerUpdate();
StepManiaLanServer();
~StepManiaLanServer();
CString servername;
CString lastError;
int lastErrorCode;
private:
#if !defined(WITHOUT_NETWORKING)
bool stop;
PacketFunctions Packet;
PacketFunctions Reply;
vector<GameClient*> Client;
EzSockets server;
int ClientHost;
vector<LanPlayer*> playersPtr;
time_t statsTime;
GameInfo CurrentSongInfo;
GameInfo LastSongInfo;
bool SecondSameSelect;
vector<CString> bannedIPs;
void Hello(PacketFunctions& Packet, const unsigned int clientNum);
void UpdateClients();
void NewClientCheck();
void ParseData(PacketFunctions& Packet, const unsigned int clientNum);
void SendValue(uint8_t value, const unsigned int clientNum);
void CheckReady();
void MoveClientToHost();
void StatsComboColumn(PacketFunctions &data, vector<LanPlayer*> &playresPtr);
void SendStatsToClients();
void StatsProjgradeColumn(PacketFunctions& data, vector<LanPlayer*> &playresPtr);
void StatsNameColumn(PacketFunctions& data, vector<LanPlayer*> &playresPtr);
void SendNetPacket(const unsigned int clientNum, PacketFunctions &Packet);
int SortStats(vector<LanPlayer*> &playresPtr);
void RelayChat(CString &passedmessage, const unsigned int clientNum);
void SelectSong(PacketFunctions& Packet, const unsigned int clientNum);
void ServerChat(const CString& message);
void SendToAllClients(PacketFunctions& Packet);
bool CheckHasSongState();
void ClearHasSong();
void AssignPlayerIDs();
void SendUserList();
void GameOver(PacketFunctions& Packet, const unsigned int clientNum);
void ScreenNetMusicSelectStatus(PacketFunctions& Packet, const unsigned int clientNum);
void AnalizeChat(PacketFunctions &Packet, const unsigned int clientNum);
CString StepManiaLanServer::ListPlayers();
void Kick(CString &name);
void Ban(CString &name);
bool IsBanned(CString &ip);
void ForceStart();
void CheckLowerJudge(const unsigned int clientNum);
bool CheckConnection(const unsigned int clientNum);
void PopulatePlayersPtr(vector<LanPlayer*> &playersPtr);
void Disconnect(const unsigned int clientNum);
void ClientsSongSelectStart();
void ResetLastSongInfo();
#endif
};
#endif
/*
* (c) 2003-2004 Joshua Allen
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/