feat: wip: start create reusable game client
This commit is contained in:
parent
1207fc7218
commit
6b641bd857
5 changed files with 64 additions and 6 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
31
GServer.Common/Networking/TcpGameClient.cs
Normal file
31
GServer.Common/Networking/TcpGameClient.cs
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
21
GServer.RC/Services/AuthService.cs
Normal file
21
GServer.RC/Services/AuthService.cs
Normal 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
8
GServer.RC/Static.cs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
using GServer.Common.Networking;
|
||||||
|
|
||||||
|
namespace GServer.RC;
|
||||||
|
|
||||||
|
public static class Static
|
||||||
|
{
|
||||||
|
public static ITcpGameClient TcpGameClient { get; } = new TcpGameClient();
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue