No description
Find a file
Noa Aarts 97a6759718
flake: update flake.lock (#46)
Automated changes by the
[update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock)
GitHub Action.

```
Flake lock file updates:

• Updated input 'fenix':
    'github:nix-community/fenix/c9f079dab2456bd75da8539b7129f8aaea9d4a2d?narHash=sha256-xPyVQvwmze7zVa85B%2BhfR9W11q4Gs/Sy3TVZMaYIsq8%3D' (2024-10-25)
  → 'github:nix-community/fenix/482b57f3f27a9336e0fbc62fa99ee0f624ccf4d0?narHash=sha256-ufvRff76Y19mkRsmx%2BmAnxKE9A9VaNWC2mVY6TwumOw%3D' (2024-10-28)
• Updated input 'fenix/nixpkgs':
    'github:nixos/nixpkgs/2768c7d042a37de65bb1b5b3268fc987e534c49d?narHash=sha256-AlcmCXJZPIlO5dmFzV3V2XF6x/OpNWUV8Y/FMPGd8Z4%3D' (2024-10-23)
  → 'github:nixos/nixpkgs/18536bf04cd71abd345f9579158841376fdd0c5a?narHash=sha256-RP%2BOQ6koQQLX5nw0NmcDrzvGL8HDLnyXt/jHhL1jwjM%3D' (2024-10-25)
• Updated input 'fenix/rust-analyzer-src':
    'github:rust-lang/rust-analyzer/6a67a4d3cd480dbbc3b1dec461a31b1bea1dfba4?narHash=sha256-op9TGD9sVZojTD6tgjmvH/49g9xyuT9mdjx7SQo10/Y%3D' (2024-10-24)
  → 'github:rust-lang/rust-analyzer/3b3a87fe9bd3f2a79942babc1d1e385b6805c384?narHash=sha256-FsPsSjqnqMHBgDdM24DFLw4YOw0mFKYFJBcLaI6CvI8%3D' (2024-10-27)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/2768c7d042a37de65bb1b5b3268fc987e534c49d?narHash=sha256-AlcmCXJZPIlO5dmFzV3V2XF6x/OpNWUV8Y/FMPGd8Z4%3D' (2024-10-23)
  → 'github:nixos/nixpkgs/18536bf04cd71abd345f9579158841376fdd0c5a?narHash=sha256-RP%2BOQ6koQQLX5nw0NmcDrzvGL8HDLnyXt/jHhL1jwjM%3D' (2024-10-25)
```

### Running GitHub Actions on this PR

GitHub Actions will not run workflows on pull requests which are opened
by a GitHub Action.

To run GitHub Actions workflows on this PR, run:

```sh
git branch -D update_flake_lock_action
git fetch origin
git checkout update_flake_lock_action
git commit --amend --no-edit
git push origin update_flake_lock_action --force
```

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-28 11:14:39 +01:00
.github/workflows flake: don't make flurry a recursive package (#39) 2024-10-23 09:17:50 +02:00
.vscode initial commit 2024-07-11 19:05:37 +02:00
src feat: Website (#15) 2024-10-22 21:58:25 +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 flake: update flake.lock (#46) 2024-10-28 11:14:39 +01:00
Cargo.toml feat: Website (#15) 2024-10-22 21:58:25 +02:00
config.toml refactor: split grid into mod 2024-07-25 16:45:15 +02:00
flake.lock flake: update flake.lock (#46) 2024-10-28 11:14:39 +01:00
flake.nix flake: don't make flurry a recursive package (#39) 2024-10-23 09:17:50 +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
test.html feat: Website (#15) 2024-10-22 21:58:25 +02:00
test.js feat: Website (#15) 2024-10-22 21:58:25 +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>