No description
Find a file
Noa Aarts 2df3485ea0
flake.lock: Update
Flake lock file updates:

• Updated input 'fenix':
    'github:nix-community/fenix/2853e7d9b5c52a148a9fb824bfe4f9f433f557ab?narHash=sha256-bRo4xVwUhvJ4Gz%2BOhWMREFMdBOYSw4Yi1Apj01ebbug%3D' (2024-10-19)
  → 'github:nix-community/fenix/4002a1ec3486b855f341d2b864ba06b61e73af28?narHash=sha256-d6L4bBlUWr4sHC%2BeRXo%2B4acFPEFXKmqHpM/BfQ5gQQw%3D' (2024-10-21)
• Updated input 'fenix/rust-analyzer-src':
    'github:rust-lang/rust-analyzer/72b214fbfbe6f7b95a7877b962783bd42062cc0a?narHash=sha256-yODOuZxBkS0UfqMa6nmbqNbVfIbsu0tYLbV5vZzmsqI%3D' (2024-10-18)
  → 'github:rust-lang/rust-analyzer/9323b5385863739d1c113f02e4cf3f2777c09977?narHash=sha256-1W5B/CnLgdC03iIFG0wtawO1%2BdGDWDpc84PeOHo2ecU%3D' (2024-10-20)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/f475eae805c96e954789505bb128945c7613abe4?narHash=sha256-gpq5GiQF3psJ7UeclSA8SlOrHYkhywLf9a/Si6mxODM%3D' (2024-10-20)
  → 'github:nixos/nixpkgs/49cdf14c561f31da8717c300466d6c952b0d3dc7?narHash=sha256-Ob7rmFhbNyEE1dEpOVlbMkjkacK%2BL7F4FAWYVQlDMqU%3D' (2024-10-21)
2024-10-21 19:32:20 +02:00
.github/workflows workflow: add check to update 2024-10-21 09:36:06 +02:00
.vscode initial commit 2024-07-11 19:05:37 +02:00
src missing import + ci fixes 2024-10-19 16:02:55 +02:00
.envrc feat: true async 2024-07-12 15:59:27 +02:00
.gitignore add result to gitignore 2024-10-18 16:49:58 +02:00
Cargo.lock Revert "added webapi sketch" 2024-10-19 15:37:51 +02:00
Cargo.toml Revert "added webapi sketch" 2024-10-19 15:37:51 +02:00
config.toml refactor: split grid into mod 2024-07-25 16:45:15 +02:00
flake.lock flake.lock: Update 2024-10-21 19:32:20 +02:00
flake.nix flake: add hydra jobs 2024-10-21 15:03:43 +02:00
protocol.md initial commit 2024-07-11 19:05:37 +02:00
README.md feat: swap from u16_le to u16 2024-10-10 09:37:43 +02:00

Flurry is a pixelflut compatible server written in rust with a focus on minimizing latency while keeping high performance.

Protocols

Multiple protocols are supported:

  • Text: The default protocol, it is compliant with pixelflut but it defines some extra commands
    • CANVAS <id>: used to change to a completely seperate canvas, the amount and size is defined by the host
    • PROTOCOL <protocol name>: used to change to different protocols, the useable names are:
      • text: goes to the Text protocol
      • binary: goes to the Binary protocol
  • Binary: A binary analog to the text version, about twice as efficient with bandwidth, the commands are
    • size: 0x73 <u8 canvas> -> <u16 x> <u16 y>
    • help: 0x68 -> help message (in UTF-8)
    • get pixel: 0x20 <u8 canvas> <u16 x> <u16 y> -> <u8 red> <u8 green> <u8 blue>
    • set pixel rgb: 0x80 <u8 canvas> <u16 x> <u16 y> <u8 red> <u8 green> <u8 blue>
    • blend pixel rgba: 0x81 <u8 canvas> <u16 x> <u16 y> <u8 red> <u8 green> <u8 blue> <u8 blend>
    • set pixel grayscale: 0x82 <u8 canvas> <u16 x> <u16 y> <u8 white>