You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

163 lines
4.4 KiB

#include <memory>
#include "all.h"
#include "stubs.h"
#include "dvlnet/abstract_net.h"
namespace dvl {
static std::unique_ptr<net::abstract_net> dvlnet_inst;
static char gpszGameName[128] = {};
static char gpszGamePassword[128] = {};
BOOL SNetReceiveMessage(int *senderplayerid, char **data, int *databytes)
{
if (!dvlnet_inst->SNetReceiveMessage(senderplayerid, data, databytes)) {
SErrSetLastError(STORM_ERROR_NO_MESSAGES_WAITING);
return false;
}
return true;
}
BOOL SNetSendMessage(int playerID, void *data, unsigned int databytes)
{
return dvlnet_inst->SNetSendMessage(playerID, data, databytes);
}
BOOL SNetReceiveTurns(int a1, int arraysize, char **arraydata, unsigned int *arraydatabytes,
DWORD *arrayplayerstatus)
{
if (a1 != 0)
UNIMPLEMENTED();
if (arraysize != MAX_PLRS)
UNIMPLEMENTED();
if (!dvlnet_inst->SNetReceiveTurns(arraydata, arraydatabytes, arrayplayerstatus)) {
SErrSetLastError(STORM_ERROR_NO_MESSAGES_WAITING);
return false;
}
return true;
}
BOOL SNetSendTurn(char *data, unsigned int databytes)
{
return dvlnet_inst->SNetSendTurn(data, databytes);
}
int SNetGetProviderCaps(struct _SNETCAPS *caps)
{
return dvlnet_inst->SNetGetProviderCaps(caps);
}
bool SNetUnregisterEventHandler(event_type evtype, SEVTHANDLER func)
{
return dvlnet_inst->SNetUnregisterEventHandler(evtype, func);
}
bool SNetRegisterEventHandler(event_type evtype, SEVTHANDLER func)
{
return dvlnet_inst->SNetRegisterEventHandler(evtype, func);
}
BOOL SNetDestroy()
{
return true;
}
BOOL SNetDropPlayer(int playerid, DWORD flags)
{
return dvlnet_inst->SNetDropPlayer(playerid, flags);
}
BOOL SNetGetGameInfo(int type, void *dst, unsigned int length)
{
switch (type) {
case GAMEINFO_NAME:
strncpy((char *)dst, gpszGameName, length);
break;
case GAMEINFO_PASSWORD:
strncpy((char *)dst, gpszGamePassword, length);
break;
}
return true;
}
BOOL SNetLeaveGame(int type)
{
if (dvlnet_inst == NULL)
return true;
return dvlnet_inst->SNetLeaveGame(type);
}
/**
* @brief Called by engine for single, called by ui for multi
* @param provider BNET, IPXN, MODM, SCBL or UDPN
* @param fileinfo Ignore
*/
int SNetInitializeProvider(unsigned long provider, struct _SNETPROGRAMDATA *client_info,
struct _SNETPLAYERDATA *user_info, struct _SNETUIDATA *ui_info,
struct _SNETVERSIONDATA *fileinfo)
{
dvlnet_inst = net::abstract_net::make_net(provider);
return ui_info->selectnamecallback(client_info, user_info, ui_info, fileinfo, provider, NULL, 0, NULL, 0, NULL);
}
/**
* @brief Called by engine for single, called by ui for multi
*/
BOOL SNetCreateGame(const char *pszGameName, const char *pszGamePassword, const char *pszGameStatString,
DWORD dwGameType, char *GameTemplateData, int GameTemplateSize, int playerCount,
const char *creatorName, const char *a11, int *playerID)
{
if (GameTemplateSize != sizeof(GameData))
ABORT();
net::buffer_t game_init_info(GameTemplateData, GameTemplateData + GameTemplateSize);
dvlnet_inst->setup_gameinfo(std::move(game_init_info));
strncpy(gpszGameName, sgOptions.Network.szBindAddress, sizeof(gpszGameName) - 1);
if (pszGamePassword)
strncpy(gpszGamePassword, pszGamePassword, sizeof(gpszGamePassword) - 1);
*playerID = dvlnet_inst->create(sgOptions.Network.szBindAddress, pszGamePassword);
return *playerID != -1;
}
BOOL SNetJoinGame(int id, char *pszGameName, char *pszGamePassword, char *playerName, char *userStats, int *playerID)
{
if (pszGameName)
strncpy(gpszGameName, pszGameName, sizeof(gpszGameName) - 1);
if (pszGamePassword)
strncpy(gpszGamePassword, pszGamePassword, sizeof(gpszGamePassword) - 1);
*playerID = dvlnet_inst->join(pszGameName, pszGamePassword);
return *playerID != -1;
}
/**
* @brief Is this the mirror image of SNetGetTurnsInTransit?
*/
BOOL SNetGetOwnerTurnsWaiting(DWORD *turns)
{
return dvlnet_inst->SNetGetOwnerTurnsWaiting(turns);
}
BOOL SNetGetTurnsInTransit(DWORD *turns)
{
return dvlnet_inst->SNetGetTurnsInTransit(turns);
}
/**
* @brief engine calls this only once with argument 1
*/
BOOLEAN SNetSetBasePlayer(int)
{
return true;
}
/**
* @brief since we never signal STORM_ERROR_REQUIRES_UPGRADE the engine will not call this function
*/
BOOL SNetPerformUpgrade(DWORD *upgradestatus)
{
UNIMPLEMENTED();
}
} // namespace dvl