31-TitleHandler
This commit is contained in:
parent
63d5ef6693
commit
f26c11ac73
@ -43,6 +43,9 @@ namespace PSO2SERVER
|
||||
public const int ServerShipListProtNums_NA = 6;
|
||||
public const int ServerShipListProt_NA = 13001;
|
||||
|
||||
public const string ServerBlockBalanceName = "Test";
|
||||
public const int ServerBlockBalanceProt = 12205;
|
||||
|
||||
public const string ServerSettingsKey = "Resources\\settings.txt";
|
||||
public const string ServerMemoryPacket = "Resources\\setMemoryPacket.bin"; //TODO
|
||||
|
||||
|
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using PSO2SERVER.Models;
|
||||
using PSO2SERVER.Protocol.Packets;
|
||||
|
||||
namespace PSO2SERVER.Protocol.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x31, 0x01)]
|
||||
public class NewTitlesRequest : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
|
||||
Logger.WriteHex(info, data);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using PSO2SERVER.Models;
|
||||
using PSO2SERVER.Protocol.Packets;
|
||||
|
||||
namespace PSO2SERVER.Protocol.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x31, 0x03)]
|
||||
public class TitleListRequest : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
|
||||
Logger.WriteHex(info, data);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using PSO2SERVER.Models;
|
||||
using PSO2SERVER.Protocol.Packets;
|
||||
|
||||
namespace PSO2SERVER.Protocol.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x31, 0x06)]
|
||||
public class TitleConditionRequest : PacketHandler
|
||||
{
|
||||
public struct GetTitleConditionPacket
|
||||
{
|
||||
/// Requested title ID.
|
||||
public uint title_id;
|
||||
}
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
|
||||
Logger.WriteHex(info, data);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using PSO2SERVER.Models;
|
||||
using PSO2SERVER.Protocol.Packets;
|
||||
|
||||
namespace PSO2SERVER.Protocol.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x31, 0x08)]
|
||||
public class PlayAchievementsRequest : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
|
||||
Logger.WriteHex(info, data);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using PSO2SERVER.Models;
|
||||
using PSO2SERVER.Protocol.Packets;
|
||||
|
||||
namespace PSO2SERVER.Protocol.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x31, 0x0A)]
|
||||
public class ReceiveTitleRewardRequest : PacketHandler
|
||||
{
|
||||
public struct ReceiveTitleRewardRequestPacket
|
||||
{
|
||||
/// Requested title ID.
|
||||
public uint title_id;
|
||||
}
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
|
||||
Logger.WriteHex(info, data);
|
||||
}
|
||||
}
|
||||
}
|
@ -106,7 +106,7 @@ namespace PSO2SERVER
|
||||
|
||||
private async Task DoBlockBalanceAsync(Socket socket)
|
||||
{
|
||||
var balancepacket = new BlockBalancePacket("test", 12205).GetPacketBytes();
|
||||
var balancepacket = new BlockBalancePacket(ServerApp.ServerBlockBalanceName, ServerApp.ServerBlockBalanceProt).GetPacketBytes();
|
||||
|
||||
await Task.Factory.FromAsync(
|
||||
(cb, state) => socket.BeginSend(balancepacket, 0, balancepacket.Length, SocketFlags.None, cb, state),
|
||||
|
@ -11,8 +11,9 @@ namespace PSO2SERVER
|
||||
{
|
||||
public static Server Instance { get; private set; }
|
||||
|
||||
private readonly SocketServer _server;
|
||||
public string _name { get; private set; }
|
||||
|
||||
private readonly SocketServer _server;
|
||||
public List<Client> Clients { get; private set; }
|
||||
public DateTime StartTime { get; private set; }
|
||||
public Timer PingTimer;
|
||||
@ -20,7 +21,8 @@ namespace PSO2SERVER
|
||||
public Server()
|
||||
{
|
||||
Clients = new List<Client>();
|
||||
_server = new SocketServer(12205);
|
||||
_name = ServerApp.ServerBlockBalanceName;
|
||||
_server = new SocketServer(ServerApp.ServerBlockBalanceProt);
|
||||
_server.NewClient += HandleNewClient;
|
||||
Instance = this;
|
||||
StartTime = DateTime.Now;
|
||||
|
@ -410,9 +410,14 @@
|
||||
<Compile Include="Protocol\Handlers\2B-SettingHandler\2B-01-SavePlayerSettings.cs" />
|
||||
<Compile Include="Protocol\Handlers\2B-SettingHandler\2B-00-SettingsRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\2F-SymbolHandler\2F-06-SymbolArtHandler.cs" />
|
||||
<Compile Include="Protocol\Handlers\31-TitleHandler\31-0A-ReceiveTitleRewardRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\31-TitleHandler\31-06-TitleConditionRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\31-TitleHandler\31-08-PlayAchievementsRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\31-TitleHandler\31-03-TitleListRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\34-UNK\34-72-UNK.cs" />
|
||||
<Compile Include="Protocol\Handlers\3B-ForgeHandler\3B-00-CharacterForgeInfoRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\0F-ItemHandler\0F-DA-UNK0FDA.cs" />
|
||||
<Compile Include="Protocol\Handlers\34-UNK\34-72-UNK.cs" />
|
||||
<Compile Include="Protocol\Handlers\31-TitleHandler\31-01-NewTitlesRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\48-UNK\48-16-UNK4816.cs" />
|
||||
<Compile Include="Protocol\Handlers\49-UNK\49-00-UNK4900.cs" />
|
||||
<Compile Include="Protocol\Handlers\4A-ARKSMisionsHandler\4A-0C-SetTrackedMission.cs" />
|
||||
|
Loading…
Reference in New Issue
Block a user