mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add packet palettes (#1236)
* Add packet type palette * Fix * test new palette * Fix 1.16.2 palette * Add packet ID dumper * Add document * Update naming * Delete old implementation of packet type * Rename PacketTypeHandler to PacketType18Handler * Fix packet type namespace * Add dump to file method for packet type * Rename packet palette version number * Replace unknown packet type to explicit type name Prevent duplicated key while creating reverse mapping * Include packets ID in packet palette Add packet palette helper class * Remove packet ID dumper methods As packets ID are included in source code now
This commit is contained in:
parent
896cabb6ce
commit
3434d95b81
19 changed files with 1978 additions and 906 deletions
|
|
@ -152,10 +152,21 @@
|
|||
<Compile Include="Protocol\EntityActionType.cs" />
|
||||
<Compile Include="Protocol\Handlers\DataTypes.cs" />
|
||||
<Compile Include="Protocol\Handlers\Forge\FMLVersion.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketIncomingType.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketOutgoingType.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette110.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette112.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette1122.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette113.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette114.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette115.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette116.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette1162.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPalette17.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketPaletteHelper.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketType18Handler.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketPalettes\PacketTypePalette.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketTypesIn.cs" />
|
||||
<Compile Include="Protocol\Handlers\PacketTypesOut.cs" />
|
||||
<Compile Include="Protocol\Handlers\Protocol18Forge.cs" />
|
||||
<Compile Include="Protocol\Handlers\Protocol18PacketTypes.cs" />
|
||||
<Compile Include="Protocol\Handlers\Protocol18Terrain.cs" />
|
||||
<Compile Include="Protocol\Handlers\SocketWrapper.cs" />
|
||||
<Compile Include="Protocol\DataTypeGenerator.cs" />
|
||||
|
|
@ -335,4 +346,4 @@
|
|||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue