diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..18eaf1e --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2025 github.com/AaronJY + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index ebd022f..0b0c47e 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,13 @@ A rudimentary TCP/UDP game server mimicking the architecture of Graal Online's GServer from the 90s-00s. +## Projects + +The repo is made up of the following projects: +* GServer.Server - the server to be connected to +* GServer.Client - the client that connects to the server +* GServer.Common - a class library used by both of the above projects. Contains shared code. + ## Networking Packets are sent between the client and server to enable communication. Specific packets can carry data specific purposes, referred to as messages. A message has an ID that defines its type/purpose, as well as data related to its purpose. @@ -22,10 +29,12 @@ For example: when authenticating, the following message is used: (see *Messages* section for this message and others' ASN.1 definitions) -All possible client and server message IDs can be found in `Networking/Enums/ClientPacketIn.cs` or `Networking/Enums/ServerPacketIn.cs`, according to whether the message is being received (_in_) or transmitted (_out_) +All possible client and server message IDs can be found in [GServer.Common/Networking/Enums/ClientPacketIn.cs](GServer.Common/Networking/Enums/ClientPacketIn.cs) (for packets processed by the client) or [GServer.Common/Networking/Enums/ServerPacketIn.cs](GServer.Common/Networking/Enums/ServerPacketIn.cs) (for messages processed by the server) ### Messages +The below lists [ASN.1](https://en.wikipedia.org/wiki/ASN.1) definitions for each message exactly as they are intended to be send and received by the game client and server. All C# message definitons can be found in [GServer.Common/Networking/Messages](GServer.Common/Networking/Messages) + **AuthMessage** ```asn.1 @@ -52,13 +61,7 @@ ServerListingBlock ::= SEQUENCE { ServerListing ::= SEQUENCE { messageId INTEGER (0..255), - ... + TODO } ``` -## Projects - -The repo is made up of the following projects: -* GServer.Server - the server to be connected to -* GServer.Client - the client that connects to the server -* GServer.Common - a class library used by both of the above projects. Contains shared code. diff --git a/notes b/notes deleted file mode 100644 index 468cda7..0000000 --- a/notes +++ /dev/null @@ -1,5 +0,0 @@ -potentially move flag type to short from byte - - -single thread accept - - spin up multiple threads to deal with actions \ No newline at end of file