Append built-in crypto description

This commit is contained in:
2026-09-09 02:38:38 +08:00
parent 5b48051288
commit 54409d9e8a
4 files changed
+47 -18

No files matched your search

+8 -10
View File
@@ -16,16 +16,14 @@ A lightweight minecraft client-side protocol library for Kotlin Native and JVM
## Implementation details
- [x] **Online Mode Authentication & Encryption**: See [Implement Encryption](docs/implement-encryption.md)
- [x] **Structured `TextComponent` Parser**: TextComponent AST decoder (Some packets fallback to Raw NBTCompound)
- [x] **Command Tree Parser (0x10)**: Full binary graph decoder for brigadier nodes, argument types, and suggestions
- [ ] **Recipe Book & Recipe Data (0x3F, 0x4A, 0x4B, 0x4C, 0x85)**: Recipe layout declarations and client-side recipe
settings
- [ ] **Chunk & World Data (0x2D)**: Level Chunk Data with Light decoder (Bitsets, Paletted Containers, Direct/Indirect
Palettes)
- [ ] **Light Engine Update (0x30)**: Sky & Block light nibble array parser
- [ ] **Explosion Event Decoder (0x24)**: Knockback vectors and destroyed block offsets array
- [ ] **Debug Packets Parsing (0x1A - 0x1E)**: Debug subs, block/entity states, and game performance sample events
- [x] **Online Mode Authentication & Encryption/Decryption**: See [Embedded cryptography](docs/Embedded-cryptography.md)
- [x] **Structured `TextComponent` Parser**: TextComponent AST decoder
- [x] **Command Tree Parser**: Full binary graph decoder for brigadier nodes, argument types, and suggestions
- [ ] **Recipe Book & Recipe Data**: Recipe layout declarations and client-side recipe settings
- [ ] **Chunk & World Data**: Level Chunk Data with Light decoder (Paletted Containers, Direct/Indirect Palettes)
- [ ] **Light Engine Update**: Sky & Block light nibble array parser
- [ ] **Explosion Event Decoder**: Knockback vectors and destroyed block offsets array
- [ ] **Debug Packets Parsing**: Debug subs, block/entity states, and game performance sample events
- [ ] **Particle Parsing**
- [ ] **Slot Data Parsing**