mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 01:37:18 -04:00
119 lines
4.3 KiB
C#
119 lines
4.3 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using NetMQ;
|
|
using NetMQ.Sockets;
|
|
using OpenDiablo2.Common.Attributes;
|
|
using OpenDiablo2.Common.Enums;
|
|
using OpenDiablo2.Common.Interfaces;
|
|
using OpenDiablo2.Common.Interfaces.MessageBus;
|
|
using OpenDiablo2.ServiceBus.Message_Frames.Server;
|
|
|
|
namespace OpenDiablo2.ServiceBus
|
|
{
|
|
public sealed class SessionServer : ISessionServer, ISessionEventProvider
|
|
{
|
|
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
private readonly eSessionType sessionType;
|
|
private readonly IGameServer gameServer;
|
|
private readonly Func<eMessageFrameType, IMessageFrame> getMessageFrame;
|
|
|
|
private AutoResetEvent resetEvent = new AutoResetEvent(false);
|
|
public AutoResetEvent WaitServerStartEvent { get; set; } = new AutoResetEvent(false);
|
|
private bool running = false;
|
|
private ResponseSocket responseSocket;
|
|
|
|
public OnSetSeedEvent OnSetSeed { get; set; }
|
|
public OnJoinGameEvent OnJoinGame { get; set; }
|
|
public OnLocatePlayersEvent OnLocatePlayers { get; set; }
|
|
public OnPlayerInfoEvent OnPlayerInfo { get; set; }
|
|
public OnFocusOnPlayer OnFocusOnPlayer { get; set; }
|
|
|
|
public SessionServer(
|
|
eSessionType sessionType,
|
|
IGameServer gameServer,
|
|
Func<eMessageFrameType, IMessageFrame> getMessageFrame
|
|
)
|
|
{
|
|
this.sessionType = sessionType;
|
|
this.getMessageFrame = getMessageFrame;
|
|
this.gameServer = gameServer;
|
|
}
|
|
|
|
public void Start()
|
|
{
|
|
// TODO: Loading existing games...
|
|
gameServer.InitializeNewGame();
|
|
|
|
Task.Run(() => Serve());
|
|
}
|
|
|
|
private void Serve()
|
|
{
|
|
log.Info("Session server is starting.");
|
|
responseSocket = new ResponseSocket();
|
|
|
|
switch (sessionType)
|
|
{
|
|
case eSessionType.Local:
|
|
responseSocket.Bind("inproc://opendiablo2-session");
|
|
break;
|
|
case eSessionType.Server:
|
|
case eSessionType.Remote:
|
|
default:
|
|
throw new ApplicationException("This session type is currently unsupported.");
|
|
}
|
|
|
|
OnJoinGame += OnJoinGameHandler;
|
|
|
|
var proactor = new NetMQProactor(responseSocket, (socket, message) =>
|
|
{
|
|
var bytes = message.First().ToByteArray();
|
|
var frameType = (eMessageFrameType)bytes[0];
|
|
var frameData = bytes.Skip(1).ToArray(); // TODO: Can we maybe use pointers? This seems wasteful
|
|
var messageFrame = getMessageFrame(frameType);
|
|
messageFrame.Data = frameData;
|
|
messageFrame.Process(socket.GetHashCode(), this);
|
|
});
|
|
running = true;
|
|
WaitServerStartEvent.Set();
|
|
resetEvent.WaitOne();
|
|
proactor.Dispose();
|
|
running = false;
|
|
responseSocket.Dispose();
|
|
log.Info("Session server has stopped.");
|
|
}
|
|
|
|
|
|
public void Stop()
|
|
{
|
|
if (!running)
|
|
return;
|
|
|
|
resetEvent.Set();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Stop();
|
|
}
|
|
|
|
private void Send(IMessageFrame messageFrame, bool more = false)
|
|
{
|
|
var attr = messageFrame.GetType().GetCustomAttributes(true).First(x => typeof(MessageFrameAttribute).IsAssignableFrom(x.GetType())) as MessageFrameAttribute;
|
|
responseSocket.SendFrame(new byte[] { (byte)attr.FrameType }.Concat(messageFrame.Data).ToArray(), more);
|
|
}
|
|
|
|
private void OnJoinGameHandler(int clientHash, eHero heroType, string playerName)
|
|
{
|
|
gameServer.SpawnNewPlayer(clientHash, playerName, heroType);
|
|
Send(new MFSetSeed(gameServer.Seed), true);
|
|
Send(new MFPlayerInfo(gameServer.Players.Select(x => x.ToPlayerInfo())), true);
|
|
Send(new MFLocatePlayers(gameServer.Players.Select(x => x.ToPlayerLocationDetails())), true);
|
|
Send(new MFFocusOnPlayer(gameServer.Players.First(x => x.ClientHash == clientHash).Id));
|
|
}
|
|
}
|
|
}
|