feat: wip: start create reusable game client

This commit is contained in:
Aaron Yarborough 2025-02-22 20:28:05 +00:00
parent 1207fc7218
commit 6b641bd857
5 changed files with 64 additions and 6 deletions

View file

@ -20,7 +20,7 @@ public static class Program
TcpClient tcpClient = new(); TcpClient tcpClient = new();
tcpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); tcpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
tcpClient.Connect(serverEp); tcpClient.ConnectAsync(serverEp);
try try
{ {

View file

@ -0,0 +1,31 @@
using System.Net.Sockets;
namespace GServer.Common.Networking;
public interface ITcpGameClient
{
/// <summary>
/// Connects to the game server.
/// </summary>
/// <param name="host">Game server host.</param>
/// <param name="port">Game server port.</param>
Task ConnectAsync(string host, int port);
}
public class TcpGameClient : ITcpGameClient, IDisposable
{
private TcpClient _tcpClient;
public async Task ConnectAsync(string host, int port)
{
_tcpClient = new TcpClient();
_tcpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
await _tcpClient.ConnectAsync(host, port);
}
public void Dispose()
{
GC.SuppressFinalize(this);
_tcpClient.Dispose();
}
}

View file

@ -27,11 +27,9 @@ internal static class Program
{ {
try try
{ {
IPEndPoint serverEp = new(IPAddress.Any, GameServerPort); string gameServerIp = IPAddress.Any.ToString();
Static.TcpGameClient.ConnectAsync(gameServerIp, GameServerPort).Wait();
TcpClient tcpClient = new(); Console.WriteLine($"Successfully connected to game server @ {gameServerIp}:{GameServerPort}");
tcpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
tcpClient.Connect(serverEp);
} }
catch (Exception e) catch (Exception e)
{ {

View file

@ -0,0 +1,21 @@
using GServer.Common.Networking.Messages.Client;
using GServer.Common.Networking.Messages.Server;
namespace GServer.RC.Services;
public interface IAuthService
{
AuthResponseMessage Authenticate(AuthMessage msg);
}
public class AuthService : IAuthService
{
public AuthService()
{
}
public AuthResponseMessage Authenticate(AuthMessage msg)
{
throw new NotImplementedException();
}
}

8
GServer.RC/Static.cs Normal file
View file

@ -0,0 +1,8 @@
using GServer.Common.Networking;
namespace GServer.RC;
public static class Static
{
public static ITcpGameClient TcpGameClient { get; } = new TcpGameClient();
}