2023-10-27 17:47:17 +00:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
2023-11-13 20:12:12 +00:00
|
|
|
using Server.DB.Documents;
|
|
|
|
using Wonderking.Game.Data.Character;
|
2023-10-27 17:47:17 +00:00
|
|
|
using Wonderking.Packets.Incoming;
|
2023-11-13 20:12:12 +00:00
|
|
|
using Wonderking.Packets.Outgoing;
|
2023-10-27 17:47:17 +00:00
|
|
|
|
2023-10-12 07:15:34 +00:00
|
|
|
namespace Server.PacketHandlers;
|
2023-08-14 20:22:43 +00:00
|
|
|
|
|
|
|
using DB;
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using NetCoreServer;
|
|
|
|
|
|
|
|
public class ChannelSelectionHandler : IPacketHandler<ChannelSelectionPacket>
|
|
|
|
{
|
2023-10-27 17:47:17 +00:00
|
|
|
private readonly IConfiguration _configuration;
|
|
|
|
private readonly ILogger<ChannelSelectionHandler> _logger;
|
|
|
|
private readonly WonderkingContext _wonderkingContext;
|
2023-08-14 20:22:43 +00:00
|
|
|
|
|
|
|
public ChannelSelectionHandler(IConfiguration configuration, ILogger<ChannelSelectionHandler> logger,
|
|
|
|
WonderkingContext wonderkingContext)
|
|
|
|
{
|
2023-10-27 17:47:17 +00:00
|
|
|
this._configuration = configuration;
|
|
|
|
this._logger = logger;
|
|
|
|
this._wonderkingContext = wonderkingContext;
|
2023-08-14 20:22:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public ChannelSelectionHandler()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public Task HandleAsync(ChannelSelectionPacket packet, TcpSession session)
|
|
|
|
{
|
|
|
|
var authSession = (AuthSession)session;
|
2023-10-27 17:47:17 +00:00
|
|
|
var charactersOfAccount = this._wonderkingContext.Accounts.Include(account => account.Characters)
|
2023-11-13 20:12:12 +00:00
|
|
|
.ThenInclude(character => character.InventoryItems)
|
2023-10-27 17:47:17 +00:00
|
|
|
.FirstOrDefault(a => a.Id == authSession.AccountId)
|
|
|
|
?.Characters;
|
2023-11-13 20:12:12 +00:00
|
|
|
ChannelSelectionResponsePacket responsePacket;
|
|
|
|
|
2023-11-13 20:14:38 +00:00
|
|
|
var testingChars = true;
|
|
|
|
if (charactersOfAccount != null && testingChars)
|
2023-11-13 20:12:12 +00:00
|
|
|
{
|
|
|
|
responsePacket = new ChannelSelectionResponsePacket
|
|
|
|
{
|
|
|
|
ChannelIsFullFlag = 0,
|
|
|
|
Endpoint = "127.0.0.1",
|
|
|
|
Port = 12345,
|
|
|
|
Characters = charactersOfAccount.Select((character,
|
|
|
|
_) => new CharacterData
|
|
|
|
{
|
|
|
|
Name = character.Name,
|
|
|
|
Job = character.JobData,
|
|
|
|
Gender = character.Gender,
|
|
|
|
Level = character.Level,
|
|
|
|
Experience = 0,
|
|
|
|
Stats = character.BaseStats,
|
|
|
|
Health = character.Health,
|
|
|
|
Mana = character.Mana,
|
|
|
|
EquippedItems =
|
|
|
|
character.InventoryItems.Where(item => item.ItemType == ItemType.WornEquipment)
|
|
|
|
.Select(item => item.ItemId)
|
|
|
|
.ToArray(),
|
|
|
|
EquippedCashItems = character.InventoryItems
|
|
|
|
.Where(item => item.ItemType == ItemType.WornCashEquipment)
|
|
|
|
.Select(item => item.ItemId)
|
|
|
|
.ToArray(),
|
|
|
|
})
|
|
|
|
.ToArray(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
responsePacket = new ChannelSelectionResponsePacket
|
|
|
|
{
|
|
|
|
ChannelIsFullFlag = 0,
|
|
|
|
Endpoint = "127.0.0.1",
|
|
|
|
Port = 12345,
|
|
|
|
Characters = new[]
|
|
|
|
{
|
|
|
|
new CharacterData
|
|
|
|
{
|
|
|
|
Name = "Test243",
|
|
|
|
Job = new JobData { FirstJob = 1, SecondJob = 0, ThirdJob = 0, FourthJob = 0 },
|
|
|
|
Gender = Gender.None,
|
|
|
|
Level = ushort.MaxValue - 1,
|
|
|
|
Experience = 255,
|
|
|
|
Stats = new BaseStats
|
|
|
|
{
|
|
|
|
Strength = 5,
|
|
|
|
Dexterity = 5,
|
|
|
|
Intelligence = 5,
|
|
|
|
Vitality = 5,
|
|
|
|
Luck = 5,
|
|
|
|
Wisdom = 5
|
|
|
|
},
|
|
|
|
Health = int.MaxValue - 1,
|
|
|
|
Mana = int.MaxValue - 1,
|
2023-11-13 20:14:38 +00:00
|
|
|
EquippedItems = Enumerable.Repeat((ushort)25, 20).ToArray(),
|
|
|
|
EquippedCashItems = Enumerable.Repeat((ushort)25, 20).ToArray()
|
2023-11-13 20:12:12 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
authSession.Send(responsePacket);
|
2023-08-14 20:22:43 +00:00
|
|
|
return Task.CompletedTask;
|
|
|
|
}
|
|
|
|
}
|