├── .gitignore ├── README.md ├── config.toml ├── draco ├── chunk │ ├── chunk.go │ ├── decode.go │ ├── encode.go │ ├── encoding.go │ ├── palette.go │ ├── paletted_storage.go │ └── sub_chunk.go ├── latestmappings │ ├── block_states.nbt │ ├── item_runtime_ids.nbt │ └── state.go ├── legacymappings │ ├── block_aliases.nbt │ ├── block_states.nbt │ ├── item_runtime_ids.nbt │ └── state.go ├── legacypackets │ ├── add_actor.go │ ├── add_player.go │ ├── add_volume_entity.go │ ├── modal_form_response.go │ ├── network_chunk_publisher_update.go │ ├── player_auth_input.go │ ├── remove_volume_entity.go │ ├── spawn_particle_effect.go │ ├── start_game.go │ └── update_attributes.go ├── legacystructures │ └── attribute.go ├── protocol.go ├── proxy │ ├── draco.go │ ├── listener.go │ └── player │ │ └── player.go └── state │ └── state.go ├── go.mod ├── go.sum └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | /token.tok 2 | /.vscode/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/config.toml -------------------------------------------------------------------------------- /draco/chunk/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/chunk/chunk.go -------------------------------------------------------------------------------- /draco/chunk/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/chunk/decode.go -------------------------------------------------------------------------------- /draco/chunk/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/chunk/encode.go -------------------------------------------------------------------------------- /draco/chunk/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/chunk/encoding.go -------------------------------------------------------------------------------- /draco/chunk/palette.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/chunk/palette.go -------------------------------------------------------------------------------- /draco/chunk/paletted_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/chunk/paletted_storage.go -------------------------------------------------------------------------------- /draco/chunk/sub_chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/chunk/sub_chunk.go -------------------------------------------------------------------------------- /draco/latestmappings/block_states.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/latestmappings/block_states.nbt -------------------------------------------------------------------------------- /draco/latestmappings/item_runtime_ids.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/latestmappings/item_runtime_ids.nbt -------------------------------------------------------------------------------- /draco/latestmappings/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/latestmappings/state.go -------------------------------------------------------------------------------- /draco/legacymappings/block_aliases.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacymappings/block_aliases.nbt -------------------------------------------------------------------------------- /draco/legacymappings/block_states.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacymappings/block_states.nbt -------------------------------------------------------------------------------- /draco/legacymappings/item_runtime_ids.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacymappings/item_runtime_ids.nbt -------------------------------------------------------------------------------- /draco/legacymappings/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacymappings/state.go -------------------------------------------------------------------------------- /draco/legacypackets/add_actor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/add_actor.go -------------------------------------------------------------------------------- /draco/legacypackets/add_player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/add_player.go -------------------------------------------------------------------------------- /draco/legacypackets/add_volume_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/add_volume_entity.go -------------------------------------------------------------------------------- /draco/legacypackets/modal_form_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/modal_form_response.go -------------------------------------------------------------------------------- /draco/legacypackets/network_chunk_publisher_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/network_chunk_publisher_update.go -------------------------------------------------------------------------------- /draco/legacypackets/player_auth_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/player_auth_input.go -------------------------------------------------------------------------------- /draco/legacypackets/remove_volume_entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/remove_volume_entity.go -------------------------------------------------------------------------------- /draco/legacypackets/spawn_particle_effect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/spawn_particle_effect.go -------------------------------------------------------------------------------- /draco/legacypackets/start_game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/start_game.go -------------------------------------------------------------------------------- /draco/legacypackets/update_attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacypackets/update_attributes.go -------------------------------------------------------------------------------- /draco/legacystructures/attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/legacystructures/attribute.go -------------------------------------------------------------------------------- /draco/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/protocol.go -------------------------------------------------------------------------------- /draco/proxy/draco.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/proxy/draco.go -------------------------------------------------------------------------------- /draco/proxy/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/proxy/listener.go -------------------------------------------------------------------------------- /draco/proxy/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/proxy/player/player.go -------------------------------------------------------------------------------- /draco/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/draco/state/state.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqdetdev/draco/HEAD/main.go --------------------------------------------------------------------------------