]> git.deb.at Git - rhonda/impostor.git/commit
Implement deserialization for most GameData objects
authorAeonLucid <aeonlucid@outlook.com>
Fri, 23 Oct 2020 03:38:32 +0000 (05:38 +0200)
committerAeonLucid <aeonlucid@outlook.com>
Fri, 23 Oct 2020 03:38:32 +0000 (05:38 +0200)
commitbe5a876113d8ff4af066e3874417af85ebf97b9c
tree238fcb0b2bd4f3619bf2a4b6a54c4a4d7ce66ba4
parent93230823b478519a498cdc918ac2d3b1368e21bf
Implement deserialization for most GameData objects
50 files changed:
src/Impostor.Api/Extensions/SpanReaderExtensions.cs
src/Impostor.Api/Games/IGame.cs
src/Impostor.Api/Innersloth/Data/GameNet.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Data/MapId.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/GameOptionsData.cs
src/Impostor.Api/Innersloth/Net/GameObject.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/InnerNetObject.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Components/InnerCustomNetworkTransform.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Components/InnerPlayerPhysics.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Components/InnerVoteBanSystem.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/InnerGameData.PlayerInfo.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/InnerGameData.TaskInfo.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/InnerGameData.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/InnerLobbyBehaviour.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/InnerMeetingHud.PlayerVoteArea.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/InnerMeetingHud.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/InnerPlayerControl.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/InnerShipStatus.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/IActivatable.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ISystemType.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ShipStatus/DoorsSystemType.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ShipStatus/HudOverrideSystemType.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ShipStatus/LifeSuppSystemType.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ShipStatus/MedScanSystem.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ShipStatus/ReactorSystemType.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ShipStatus/SabotageSystemType.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ShipStatus/SecurityCameraSystemType.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/ShipStatus/SwitchSystem.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/SystemTypeHelpers.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/Objects/Systems/SystemTypes.cs [new file with mode: 0644]
src/Impostor.Api/Innersloth/Net/SpawnFlags.cs [new file with mode: 0644]
src/Impostor.Api/Net/Messages/C2S/Message01JoinGameC2S.cs
src/Impostor.Api/Net/Messages/C2S/Message10AlterGameC2S.cs
src/Impostor.Api/Properties/AssemblyInfo.cs [new file with mode: 0644]
src/Impostor.Server/GameData/GameObject.cs [deleted file]
src/Impostor.Server/GameData/InnerNetObject.cs [deleted file]
src/Impostor.Server/GameData/Objects/Components/InnerCustomNetworkTransform.cs [deleted file]
src/Impostor.Server/GameData/Objects/Components/InnerPlayerPhysics.cs [deleted file]
src/Impostor.Server/GameData/Objects/Components/InnerVoteBanSystem.cs [deleted file]
src/Impostor.Server/GameData/Objects/InnerGameData.PlayerInfo.cs [deleted file]
src/Impostor.Server/GameData/Objects/InnerGameData.TaskInfo.cs [deleted file]
src/Impostor.Server/GameData/Objects/InnerGameData.cs [deleted file]
src/Impostor.Server/GameData/Objects/InnerLobbyBehaviour.cs [deleted file]
src/Impostor.Server/GameData/Objects/InnerMeetingHud.cs [deleted file]
src/Impostor.Server/GameData/Objects/InnerPlayerControl.cs [deleted file]
src/Impostor.Server/GameData/Objects/InnerShipStatus.cs [deleted file]
src/Impostor.Server/GameData/SpawnFlags.cs [deleted file]
src/Impostor.Server/Net/State/Game.Data.cs
src/Impostor.Server/Net/State/Game.cs
src/Impostor.Tools.ServerReplay/Program.cs