1 unstable release

0.1.0 Sep 11, 2022

#12 in #graphite

Download history 26/week @ 2024-07-20 33/week @ 2024-07-27 32/week @ 2024-08-03 24/week @ 2024-08-10 21/week @ 2024-08-17 24/week @ 2024-08-24 33/week @ 2024-08-31 25/week @ 2024-09-07 31/week @ 2024-09-14 44/week @ 2024-09-21 31/week @ 2024-09-28 3/week @ 2024-10-05 21/week @ 2024-10-12 15/week @ 2024-10-19 18/week @ 2024-10-26 19/week @ 2024-11-02

73 downloads per month
Used in 12 crates (via graphite_binary)

Apache-2.0

23KB
523 lines

Graphite -- CURRENTLY ON HIATUS

1.19.1 Minecraft Server

TODO

  • Complete protocol with all 1.19.1 Minecraft packets
  • Command dispatch system
  • Viewable objects (entities)
  • Allow multiple players to connect (and see each other)
  • Base lib crate that reexports everything
  • ItemStacks with NBT
  • Add layer for modifying the NBT of items easily
  • Player Input Handling (Left/Right Click Air/Block)
  • TextComponent things & macro
  • Allow chunk/world modification
  • Complete missing block placement (walls, double blocks, candles, etc.)
  • "Extras" subproject - raycasting, collision, ...

Subprojects

  • example_server: Example server using various Graphite components
  • server: The minecraft server. Entities, chunks, players, all that good stuff
  • concierge: Component that accepts new connections, handles status and login. Can be used to create proxies, servers, etc.
  • protocol: The minecraft protocol
  • net: Networking components and utilities
  • binary: Zero-copy serialization
  • command: Command dispatch and low-level creation
  • command_derive: Attribute macro to easily create commands
  • sticky: Collection(s) that guarantee the memory-location of its contents

Warning

Project is currently under heavy development, many things are completely non-functional

Building

Make sure to run git submodule update --init --recursive before building/running

How to run the example server

!!! Currently Graphite only supports modern versions of Linux with io_uring !!!
(An alternative network backend will be available eventually, but is not a priority)

$ cargo run --bin example_server

Dependencies

~1.5MB
~39K SLoC