Update servicepoint (#22)
This commit is contained in:
commit
1ecd11a9e4
14
shell.nix
14
shell.nix
|
@ -1,11 +1,23 @@
|
|||
{pkgs ? import <nixpkgs> {}}:
|
||||
let
|
||||
rust-toolchain = pkgs.symlinkJoin {
|
||||
name = "rust-toolchain";
|
||||
paths = with pkgs; [rustc cargo rustPlatform.rustcSrc rustfmt clippy];
|
||||
};
|
||||
in
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs.buildPackages; [
|
||||
rustup
|
||||
rust-toolchain
|
||||
|
||||
pkg-config
|
||||
xe
|
||||
lzma
|
||||
cargo-tarpaulin
|
||||
gnumake
|
||||
iconv
|
||||
|
||||
dotnet-sdk_8
|
||||
];
|
||||
|
||||
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ internal sealed class SendToServicePointDisplay : IFrameConsumer
|
|||
private readonly MapService _mapService;
|
||||
private readonly ILogger<SendToServicePointDisplay> _logger;
|
||||
private readonly PlayerServer _players;
|
||||
private readonly ByteGrid _scoresBuffer;
|
||||
private readonly Cp437Grid _scoresBuffer;
|
||||
private readonly TimeSpan _minFrameTime;
|
||||
private readonly IOptionsMonitor<HostConfiguration> _options;
|
||||
|
||||
|
@ -43,7 +43,7 @@ internal sealed class SendToServicePointDisplay : IFrameConsumer
|
|||
|
||||
var localIp = GetLocalIPv4(displayConfig.Value).Split('.');
|
||||
Debug.Assert(localIp.Length == 4);
|
||||
_scoresBuffer = ByteGrid.New(12, 20);
|
||||
_scoresBuffer = Cp437Grid.New(12, 20);
|
||||
|
||||
_scoresBuffer[00] = "== TANKS! ==";
|
||||
_scoresBuffer[01] = "-- scores --";
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<ItemGroup>
|
||||
<PackageReference Include="DotNext.Threading" Version="5.3.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
|
||||
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.4" />
|
||||
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ff713690e3799eaaf7aed5ec5ac557cc91d96178
|
||||
Subproject commit c5cb6475b24fdcdcd073ea44457628daed4e21a6
|
Loading…
Reference in a new issue