]> git.deb.at Git - rhonda/impostor.git/commit
Created Impostor.Server.Api
authorGerard Smit <gsmit1996@gmail.com>
Fri, 9 Oct 2020 00:00:08 +0000 (02:00 +0200)
committerGerard Smit <gsmit1996@gmail.com>
Fri, 9 Oct 2020 00:00:08 +0000 (02:00 +0200)
commit47e2e3a06a212893974e4b42654bb9d5949cf178
treeb1227cd81b457272352abcbdf5710de3238c863b
parent3d74e0e93ffd13e6135206b243e83623d6f8a763
Created Impostor.Server.Api
76 files changed:
src/Imposter.Reactive/AsyncObservableExtensions.cs [new file with mode: 0644]
src/Imposter.Reactive/IAsyncObservable.cs [new file with mode: 0644]
src/Imposter.Reactive/IAsyncObserver.cs [new file with mode: 0644]
src/Imposter.Reactive/Imposter.Reactive.csproj [new file with mode: 0644]
src/Imposter.Reactive/Reactive/AsyncObservable.cs [new file with mode: 0644]
src/Imposter.Reactive/Reactive/AsyncObservableBase.cs [new file with mode: 0644]
src/Imposter.Reactive/Reactive/AsyncObserver.cs [new file with mode: 0644]
src/Imposter.Reactive/Reactive/AsyncObserverBase.cs [new file with mode: 0644]
src/Imposter.Reactive/Reactive/Disposables/AsyncDisposable.cs [new file with mode: 0644]
src/Imposter.Reactive/Reactive/Subjects/ConcurrentSimpleAsyncSubject.cs [new file with mode: 0644]
src/Imposter.Reactive/Reactive/Subjects/IAsyncSubject.cs [new file with mode: 0644]
src/Imposter.Reactive/Reactive/Subjects/SequentialSimpleAsyncSubject.cs [new file with mode: 0644]
src/Imposter.Reactive/Reactive/Subjects/SimpleAsyncSubject.cs [new file with mode: 0644]
src/Impostor.Server.Api/Exceptions/ClientVersionUnsupportedException.cs [new file with mode: 0644]
src/Impostor.Server.Api/Exceptions/ImpostorException.cs [new file with mode: 0644]
src/Impostor.Server.Api/GameCode.cs [new file with mode: 0644]
src/Impostor.Server.Api/IGame.cs [new file with mode: 0644]
src/Impostor.Server.Api/Impostor.Server.Api.csproj [new file with mode: 0644]
src/Impostor.Server.Api/Impostor.Server.Api.csproj.DotSettings [new file with mode: 0644]
src/Impostor.Server.Api/LimboStates.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Extensions/GameMessageWriterExtensions.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Factories/IClientFactory.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/IClient.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/IClientPlayer.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/IConnection.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Manager/IClientManager.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Manager/IMatchmaker.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Messages/IConnectionMessageWriter.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Messages/IGameMessageWriter.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Messages/IMessage.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Messages/IMessageReader.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Messages/IMessageWriter.cs [new file with mode: 0644]
src/Impostor.Server.Api/Net/Messages/MessageType.cs [new file with mode: 0644]
src/Impostor.Server.Hazel/Extensions/ServiceExtensions.cs [new file with mode: 0644]
src/Impostor.Server.Hazel/HazelConnection.cs [new file with mode: 0644]
src/Impostor.Server.Hazel/HazelMatchmaker.cs [new file with mode: 0644]
src/Impostor.Server.Hazel/Impostor.Server.Hazel.csproj [new file with mode: 0644]
src/Impostor.Server.Hazel/Impostor.Server.Hazel.csproj.DotSettings [new file with mode: 0644]
src/Impostor.Server.Hazel/Messages/BufferMessageReader.cs [new file with mode: 0644]
src/Impostor.Server.Hazel/Messages/HazelConnectionMessageWriter.cs [new file with mode: 0644]
src/Impostor.Server.Hazel/Messages/HazelGameMessageWriter.cs [new file with mode: 0644]
src/Impostor.Server.Hazel/Messages/HazelMessage.cs [new file with mode: 0644]
src/Impostor.Server.Hazel/Messages/HazelMessageWriter.cs [new file with mode: 0644]
src/Impostor.Server/Impostor.Server.csproj
src/Impostor.Server/Net/Client.cs
src/Impostor.Server/Net/ClientBase.cs [new file with mode: 0644]
src/Impostor.Server/Net/Factories/ClientFactory.cs [new file with mode: 0644]
src/Impostor.Server/Net/Manager/ClientManager.cs
src/Impostor.Server/Net/Manager/GameManager.cs
src/Impostor.Server/Net/Manager/IClientManager.cs [deleted file]
src/Impostor.Server/Net/Matchmaker.cs [deleted file]
src/Impostor.Server/Net/MatchmakerService.cs
src/Impostor.Server/Net/Messages/Message00HostGame.cs
src/Impostor.Server/Net/Messages/Message01JoinGame.cs
src/Impostor.Server/Net/Messages/Message04RemovePlayer.cs
src/Impostor.Server/Net/Messages/Message07JoinedGame.cs
src/Impostor.Server/Net/Messages/Message10AlterGame.cs
src/Impostor.Server/Net/Messages/Message11KickPlayer.cs
src/Impostor.Server/Net/Messages/Message12WaitForHost.cs
src/Impostor.Server/Net/Messages/Message13Redirect.cs
src/Impostor.Server/Net/Messages/Message16GetGameListV2.cs
src/Impostor.Server/Net/Redirector/ClientManagerRedirector.cs [deleted file]
src/Impostor.Server/Net/Redirector/ClientRedirector.cs
src/Impostor.Server/Net/State/ClientPlayer.Events.cs
src/Impostor.Server/Net/State/ClientPlayer.cs
src/Impostor.Server/Net/State/Game.Incoming.cs
src/Impostor.Server/Net/State/Game.Outgoing.cs
src/Impostor.Server/Net/State/Game.State.cs
src/Impostor.Server/Net/State/Game.cs
src/Impostor.Server/Program.cs
src/Impostor.Shared/Innersloth/Data/LimboStates.cs [deleted file]
src/Impostor.Shared/Innersloth/GameCode.cs [deleted file]
src/Impostor.Shared/Innersloth/GameCodeParser.cs [new file with mode: 0644]
src/Impostor.Shared/Innersloth/GameOptionsData.cs
src/Impostor.Tests/GameCodeTests.cs
src/Impostor.sln