3 Commits

Author SHA1 Message Date
qornwh1
2ebd0120ab feat : 코드 주석 정리 2026-03-30 12:47:36 +09:00
qornwh1
849105f8ff feat : 더미 스폰 위치 정리 2026-03-30 12:29:41 +09:00
qornwh1
0617e6a194 feat : 코드 단락 정리 2026-03-30 12:29:20 +09:00
4 changed files with 148 additions and 80 deletions

View File

@@ -29,7 +29,7 @@ public class DummyClients
private float dirZ = 0f;
// 맵 경계
public MapBounds Map { get; set; } = new MapBounds(-50f, 50f, -50f, 50f);
public MapBounds Map { get; set; } = new MapBounds(-95f, -25f, -30f, 10f);
// 통계
public int SentCount
@@ -86,6 +86,9 @@ public class DummyClients
manager.Start();
manager.Connect(ip, port, key);
position.X = -60;
position.Z = 25;
}
public void UpdateDummy()
@@ -144,7 +147,7 @@ public class DummyClients
Position = new Packet.Position
{
X = position.X,
Y = -11.09f, // 높이는 버린다.
Y = -3.7f, // 높이는 버린다.
Z = position.Z
}
};

View File

@@ -9,10 +9,9 @@ namespace MMOserver.Api;
public class RestApi : Singleton<RestApi>
{
private readonly HttpClient httpClient = new HttpClient { Timeout = TimeSpan.FromSeconds(5) };
private const int MAX_RETRY = 3;
private static readonly TimeSpan RETRY_DELAY = TimeSpan.FromSeconds(1);
private readonly HttpClient httpClient = new() { Timeout = TimeSpan.FromSeconds(5) };
public RestApi()
{
@@ -91,58 +90,6 @@ public class RestApi : Singleton<RestApi>
return null;
}
private sealed class AuthVerifyResponse
{
[JsonPropertyName("username")]
public string? Username
{
get;
set;
}
}
public sealed class PlayerProfileResponse
{
[JsonPropertyName("nickname")]
public string Nickname { get; set; } = string.Empty;
[JsonPropertyName("level")]
public int Level { get; set; }
[JsonPropertyName("experience")]
public int Experience { get; set; }
[JsonPropertyName("nextExp")]
public int NextExp { get; set; }
[JsonPropertyName("maxHp")]
public double MaxHp { get; set; }
[JsonPropertyName("maxMp")]
public double MaxMp { get; set; }
[JsonPropertyName("attackPower")]
public double AttackPower { get; set; }
[JsonPropertyName("attackRange")]
public double AttackRange { get; set; }
[JsonPropertyName("sprintMultiplier")]
public double SprintMultiplier { get; set; }
[JsonPropertyName("lastPosX")]
public double LastPosX { get; set; }
[JsonPropertyName("lastPosY")]
public double LastPosY { get; set; }
[JsonPropertyName("lastPosZ")]
public double LastPosZ { get; set; }
[JsonPropertyName("lastRotY")]
public double LastRotY { get; set; }
}
// 레이드 채널 접속 여부 체크
// 성공 시 BossRaidResult 반환, 실패/거절 시 null 반환
public async Task<BossRaidResult?> BossRaidAccessAsync(List<string> userNames, int bossId)
@@ -153,7 +100,7 @@ public class RestApi : Singleton<RestApi>
{
try
{
HttpResponseMessage response = await httpClient.PostAsJsonAsync(url, new { usernames = userNames, bossId = bossId });
HttpResponseMessage response = await httpClient.PostAsJsonAsync(url, new { usernames = userNames, bossId });
// 401: API 키 인증 실패
if (response.StatusCode == HttpStatusCode.Unauthorized)
@@ -210,12 +157,31 @@ public class RestApi : Singleton<RestApi>
{
string url = AppConfig.RestApi.BaseUrl + "/api/internal/player/save?username=" + Uri.EscapeDataString(username);
var body = new Dictionary<string, object?>();
if (posX.HasValue) body["lastPosX"] = posX.Value;
if (posY.HasValue) body["lastPosY"] = posY.Value;
if (posZ.HasValue) body["lastPosZ"] = posZ.Value;
if (rotY.HasValue) body["lastRotY"] = rotY.Value;
if (playTimeDelta.HasValue) body["playTimeDelta"] = playTimeDelta.Value;
Dictionary<string, object?> body = new();
if (posX.HasValue)
{
body["lastPosX"] = posX.Value;
}
if (posY.HasValue)
{
body["lastPosY"] = posY.Value;
}
if (posZ.HasValue)
{
body["lastPosZ"] = posZ.Value;
}
if (rotY.HasValue)
{
body["lastRotY"] = rotY.Value;
}
if (playTimeDelta.HasValue)
{
body["playTimeDelta"] = playTimeDelta.Value;
}
for (int attempt = 1; attempt <= MAX_RETRY; attempt++)
{
@@ -235,9 +201,114 @@ public class RestApi : Singleton<RestApi>
Log.Error("[RestApi] 게임 데이터 저장 최종 실패 ({Max}회 시도): {Message}", MAX_RETRY, ex.Message);
}
}
return false;
}
private sealed class AuthVerifyResponse
{
[JsonPropertyName("username")]
public string? Username
{
get;
set;
}
}
public sealed class PlayerProfileResponse
{
[JsonPropertyName("nickname")]
public string Nickname
{
get;
set;
} = string.Empty;
[JsonPropertyName("level")]
public int Level
{
get;
set;
}
[JsonPropertyName("experience")]
public int Experience
{
get;
set;
}
[JsonPropertyName("nextExp")]
public int NextExp
{
get;
set;
}
[JsonPropertyName("maxHp")]
public double MaxHp
{
get;
set;
}
[JsonPropertyName("maxMp")]
public double MaxMp
{
get;
set;
}
[JsonPropertyName("attackPower")]
public double AttackPower
{
get;
set;
}
[JsonPropertyName("attackRange")]
public double AttackRange
{
get;
set;
}
[JsonPropertyName("sprintMultiplier")]
public double SprintMultiplier
{
get;
set;
}
[JsonPropertyName("lastPosX")]
public double LastPosX
{
get;
set;
}
[JsonPropertyName("lastPosY")]
public double LastPosY
{
get;
set;
}
[JsonPropertyName("lastPosZ")]
public double LastPosZ
{
get;
set;
}
[JsonPropertyName("lastRotY")]
public double LastRotY
{
get;
set;
}
}
private sealed class BossRaidAccessResponse
{
[JsonPropertyName("roomId")]

View File

@@ -176,11 +176,15 @@ public abstract class ServerBase : INetEventListener
_ = HandleAuth(peer, payload).ContinueWith(t =>
{
if (t.IsFaulted)
{
Log.Error(t.Exception, "[Server] HandleAuth 예외 PeerId={Id}", peer.Id);
}
}, TaskContinuationOptions.OnlyOnFaulted);
return;
}
else if (type == (ushort)PacketType.DUMMY_ACC_TOKEN)
// Auth 이외 패킷 처리
if (type == (ushort)PacketType.DUMMY_ACC_TOKEN)
{
HandleAuthDummy(peer, payload);
return;
@@ -205,9 +209,9 @@ public abstract class ServerBase : INetEventListener
return;
}
Log.Warning("[Server] 레이트 리밋 초과 ({Count}회) HashKey={Key} PeerId={Id}", session.RateLimitViolations, session.HashKey,
peer.Id);
return; // 패킷 드롭
// 패킷 드롭
Log.Warning("[Server] 레이트 리밋 초과 ({Count}회) HashKey={Key} PeerId={Id}", session.RateLimitViolations, session.HashKey, peer.Id);
return;
}
HandlePacket(peer, session.HashKey, type, payload);
@@ -237,23 +241,19 @@ public abstract class ServerBase : INetEventListener
if (PingLogRtt)
{
// rtt 시간 출력
// Log.Debug("[Server] latency : {Latency} ", latency);
}
}
// Echo 서버 테스트
protected abstract void HandleEcho(NetPeer peer, byte[] payload);
// ─── Auth 처리 (더미) ────────────────────────────────────────────────
// Auth 처리 (더미)
protected abstract void HandleAuthDummy(NetPeer peer, byte[] payload);
// ─── Auth 처리 ────────────────────────────────────────────────
// Auth 처리
protected abstract Task HandleAuth(NetPeer peer, byte[] payload);
// ─── 전송 헬퍼 ───────────────────────────────────────────────────────
// peer에게 전송
protected void SendTo(NetPeer peer, byte[] data, DeliveryMethod method = DeliveryMethod.ReliableOrdered)
{
@@ -278,8 +278,6 @@ public abstract class ServerBase : INetEventListener
netManager.SendToAll(cachedWriter, 0, method, exclude);
}
// ─── 서브클래스 구현 ─────────────────────────────────────────────────
// 인증(Auth) 완료 후 호출
protected abstract void OnSessionConnected(NetPeer peer, int hashKey);

View File

@@ -36,8 +36,6 @@ public static class CrashDumpHandler
Log.Information("[CrashDump] 핸들러 등록 완료 (CrashDir={Dir})", Path.GetFullPath(CRASH_DIR));
}
// ─── 핸들러 ──────────────────────────────────────────────────────────
private static void OnUnhandledException(object sender, UnhandledExceptionEventArgs e)
{
Exception? ex = e.ExceptionObject as Exception;
@@ -52,8 +50,6 @@ public static class CrashDumpHandler
WriteCrash(tag, e.Exception);
}
// ─── 핵심 처리 ───────────────────────────────────────────────────────
private static void WriteCrash(string tag, Exception? ex)
{
try