From a17ff36719a762f13b01dcad7c1a9b577eedda5e Mon Sep 17 00:00:00 2001 From: martin Date: Thu, 14 Sep 2023 16:36:43 +0200 Subject: [PATCH] README, moved Regex to GeneratedRegex --- README.md | 27 +++++++++++++++++++ .../ClientApp/src/types/types.d.ts | 1 + pac-man-board-game/Utils/Extensions.cs | 9 ++++--- 3 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6813fae --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Pac-Man The Board Game + +Work in progress. + +## Development + +```bash +cd pac-man-board-game/ClientApp +pnpm install +cd .. +dotnet run +``` + +## Stack + +- Frontend + - [TypeScript](https://www.typescriptlang.org/) + - [React](https://reactjs.org/) + - [Jotai](https://jotai.org/) + - [Vite](https://vitejs.dev/) + - [Tailwind CSS](https://tailwindcss.com/) + - [Jest](https://jestjs.io/) +- Backend + - [.NET 7](https://dotnet.microsoft.com/) + - [C#](https://docs.microsoft.com/en-us/dotnet/csharp/) + - [ASP.NET Core](https://docs.microsoft.com/en-us/aspnet/core/?view=aspnetcore-7.0) + - [WebSockets](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API) diff --git a/pac-man-board-game/ClientApp/src/types/types.d.ts b/pac-man-board-game/ClientApp/src/types/types.d.ts index d02e173..00ea66d 100644 --- a/pac-man-board-game/ClientApp/src/types/types.d.ts +++ b/pac-man-board-game/ClientApp/src/types/types.d.ts @@ -33,6 +33,7 @@ type DirectionalPosition = { type Path = { path?: Position[] | null, + // TODO replace with DirectionalPosition end: Position, direction: import("../game/direction").Direction } diff --git a/pac-man-board-game/Utils/Extensions.cs b/pac-man-board-game/Utils/Extensions.cs index be90bc3..9cc7a59 100644 --- a/pac-man-board-game/Utils/Extensions.cs +++ b/pac-man-board-game/Utils/Extensions.cs @@ -4,13 +4,13 @@ using System.Text.RegularExpressions; namespace pacMan.Utils; -public static class Extensions +public static partial class Extensions { public static string GetString(this byte[] bytes, int length) { var s = Encoding.UTF8.GetString(bytes, 0, length); // Removes invalid characters from the string - return Regex.Replace(s, @"\p{C}+", ""); + return InvalidCharacters().Replace(s, ""); } public static ArraySegment ToArraySegment(this object obj) @@ -19,4 +19,7 @@ public static class Extensions var bytes = Encoding.UTF8.GetBytes(json); return new ArraySegment(bytes, 0, json.Length); } -} \ No newline at end of file + + [GeneratedRegex("\\p{C}+")] + private static partial Regex InvalidCharacters(); +}