├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation-improvements.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto_assign-issues.yml ├── dependabot.yml ├── release-drafter.yml ├── semantic.yml ├── stale.yml └── workflows │ ├── build.yml │ ├── docs.yml │ ├── post_release.js │ ├── release-drafter.yml │ └── release-prep.yml ├── .gitignore ├── AmazonGameliftTestingToolkit.sln ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── ManagementConsole ├── Backend │ ├── AssemblyInfo.cs │ ├── Common │ │ ├── BaseEvent.cs │ │ ├── FlexMatchEvent.cs │ │ ├── QueuePlacementEvent.cs │ │ └── Utils.cs │ ├── ManagementConsoleBackend.csproj │ ├── ManagementService │ │ ├── Data │ │ │ ├── CfnRequest.cs │ │ │ ├── ClientMessage.cs │ │ │ ├── GameLiftStateEvent.cs │ │ │ ├── LatencyProfile.cs │ │ │ ├── LocationsList.cs │ │ │ ├── MatchmakingSimulation.cs │ │ │ ├── MultipartMessage.cs │ │ │ ├── PlayerProfile.cs │ │ │ ├── PlayerProfileAttributeConverter.cs │ │ │ ├── ServerMessage.cs │ │ │ └── VirtualPlayers.cs │ │ ├── EventHandlers.cs │ │ ├── FlexMatchSimulator.cs │ │ ├── Lib │ │ │ ├── CloudWatchRequestHandler.cs │ │ │ ├── DynamoDbRequestHandler.cs │ │ │ ├── GameLiftRequestHandler.cs │ │ │ ├── GameLiftStateHandler.cs │ │ │ ├── SchedulerHandler.cs │ │ │ └── VirtualPlayersHandler.cs │ │ ├── ManagementService.cs │ │ ├── PurgeData.cs │ │ ├── StepFunctions.cs │ │ └── VirtualPlayerTaskScheduledAction.cs │ └── aws-lambda-tools-defaults.json ├── Infra │ ├── README.md │ ├── cdk.context.json │ ├── cdk.json │ └── src │ │ ├── Constructs │ │ ├── FleetIqAmiBuild.cs │ │ ├── FleetIqGameServerGroup.cs │ │ └── GameLiftBuildAsset.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Lib │ │ ├── ApiGwLogsStack.cs │ │ ├── BackendStack.cs │ │ ├── DataStack.cs │ │ ├── InfraStage.cs │ │ ├── SecurityStack.cs │ │ └── WebStack.cs │ │ ├── ManagementConsoleInfra.csproj │ │ └── Program.cs └── UI │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── src │ ├── Config │ │ └── Config.ts │ ├── Data │ │ ├── DataTypes.d.ts │ │ ├── FlexMatchEventType.ts │ │ ├── Locations.ts │ │ ├── QueuePlacementEventType.ts │ │ └── ScreenResolution.ts │ ├── Elements │ │ ├── Abstract │ │ │ ├── BaseContainer.ts │ │ │ ├── Page.ts │ │ │ ├── Popup.ts │ │ │ ├── SimpleButton.ts │ │ │ ├── SimpleMenu.ts │ │ │ ├── SubPopup.ts │ │ │ └── ToggleButton.ts │ │ ├── Buttons │ │ │ ├── FleetLocationButton.ts │ │ │ ├── FleetMenuButton.ts │ │ │ ├── MatchmakingConfigMenuButton.ts │ │ │ ├── QueueMenuButton.ts │ │ │ ├── SettingsButton.ts │ │ │ └── ToggleAnimationButton.ts │ │ ├── Fleet.ts │ │ ├── Fleets.ts │ │ ├── GameSession.ts │ │ ├── GameSessionQueue.ts │ │ ├── GameSessionQueues.ts │ │ ├── Instance.ts │ │ ├── MatchmakingConfig.ts │ │ ├── MatchmakingConfigs.ts │ │ ├── Menus │ │ │ ├── FleetMenu.ts │ │ │ ├── LocationPopover.ts │ │ │ ├── MatchmakingConfigMenu.ts │ │ │ └── QueueMenu.ts │ │ ├── Pages │ │ │ ├── PageManager.ts │ │ │ ├── Pages.ts │ │ │ ├── SimulateMatchmakingFailedTicketsPage.ts │ │ │ ├── SimulateMatchmakingFormPage.ts │ │ │ ├── SimulateMatchmakingMatchInfoPage.ts │ │ │ ├── SimulateMatchmakingOutputPage.ts │ │ │ ├── SimulateMatchmakingResultsPage.ts │ │ │ ├── SimulateMatchmakingSimulationsPage.ts │ │ │ ├── SimulateMatchmakingTicketsPage.ts │ │ │ ├── VirtualPlayerLaunchRequestTaskLogsPage.ts │ │ │ ├── VirtualPlayerLaunchRequestTasksPage.ts │ │ │ ├── VirtualPlayerLaunchRequestsPage.ts │ │ │ ├── VirtualPlayerTaskScheduleViewPage.ts │ │ │ ├── VirtualPlayerTaskSchedulesFormPage.ts │ │ │ ├── VirtualPlayerTaskSchedulesTablePage.ts │ │ │ ├── VirtualPlayerTasksLaunchPage.ts │ │ │ └── VirtualPlayerTasksOverviewPage.ts │ │ ├── Player.ts │ │ ├── PlayerMatch.ts │ │ ├── PlayerSprite.ts │ │ ├── Popups │ │ │ ├── FleetEventsPopup.ts │ │ │ ├── FleetGraphPopup.ts │ │ │ ├── FleetLocationsPopup.ts │ │ │ ├── FleetScalingPopup.ts │ │ │ ├── FlexMatchSimulatorPopup.ts │ │ │ ├── GameSessionsTablePopup.ts │ │ │ ├── MatchmakingConfigPopup.ts │ │ │ ├── MatchmakingGraphPopup.ts │ │ │ ├── MatchmakingRuleSetsPopup.ts │ │ │ ├── MatchmakingTicketsPopup.ts │ │ │ ├── PopupHandler.ts │ │ │ ├── PurgeDataPopup.ts │ │ │ ├── QueueEventsPopup.ts │ │ │ ├── QueueGraphPopup.ts │ │ │ ├── QueueSettingsPopup.ts │ │ │ ├── SimpleJsonPopup.ts │ │ │ └── VirtualPlayerTasksPopup.ts │ │ ├── RoundedRectangle.ts │ │ ├── Settings │ │ │ ├── SettingsForm.ts │ │ │ └── SettingsPanel.ts │ │ ├── SubPopups │ │ │ ├── LatencyProfilesSubPopup.ts │ │ │ ├── ManageRuleSetsSubPopup.ts │ │ │ ├── PlayerProfilesSubPopup.ts │ │ │ ├── QueueDestinationOrderSubPopup.ts │ │ │ ├── QueuePlacementPrioritySubPopup.ts │ │ │ ├── QueueSettingsSubPopup.ts │ │ │ ├── RuleSetBuilderSubPopup.ts │ │ │ ├── SimulateMatchmakingSubPopup.ts │ │ │ ├── SubPopups.ts │ │ │ ├── VirtualPlayerLaunchRequestsSubPopup.ts │ │ │ ├── VirtualPlayerTasksLaunchSubPopup.ts │ │ │ ├── VirtualPlayerTasksOverviewSubPopup.ts │ │ │ ├── VirtualPlayerTasksRunningSubPopup.ts │ │ │ └── VirtualPlayerTasksSchedulesSubPopup.ts │ │ └── WebFontFile.ts │ ├── Events │ │ ├── DummyEventHandler.ts │ │ ├── EventDispatcher.ts │ │ ├── Events.ts │ │ ├── GameLiftEventHandler.ts │ │ └── PopupClickEvent.ts │ ├── Game.ts │ ├── Managers │ │ ├── MatchManager.ts │ │ └── PlayerManager.ts │ ├── Network │ │ ├── MessageHandler.ts │ │ ├── MultipartMessageHandler.ts │ │ └── Network.ts │ ├── Scenes │ │ ├── BootScene.ts │ │ ├── ConsoleScene.ts │ │ ├── LoginScene.ts │ │ └── PreloaderScene.ts │ └── Utils │ │ └── Utils.ts │ ├── static │ ├── assets │ │ ├── animationoff.png │ │ ├── animationon.png │ │ ├── backbutton.png │ │ ├── characters │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── closebutton.png │ │ ├── cog.png │ │ ├── gtlogo.png │ │ ├── html │ │ │ ├── fragments │ │ │ │ ├── playerAttributeTemplate.html │ │ │ │ ├── playerLatencyPolicyTemplate.html │ │ │ │ ├── playerProfileTemplate.html │ │ │ │ ├── regionLatencyTemplate.html │ │ │ │ └── scheduleProgress.html │ │ │ ├── pages │ │ │ │ ├── simulateMatchmakingFailedTicketsPage.html │ │ │ │ ├── simulateMatchmakingFormPage.html │ │ │ │ ├── simulateMatchmakingMatchInfoPage.html │ │ │ │ ├── simulateMatchmakingOutputPage.html │ │ │ │ ├── simulateMatchmakingResultsPage.html │ │ │ │ ├── simulateMatchmakingSimulationsPage.html │ │ │ │ ├── simulateMatchmakingTicketsPage.html │ │ │ │ ├── virtualPlayerLaunchRequestTaskLogsPage.html │ │ │ │ ├── virtualPlayerLaunchRequestTasksPage.html │ │ │ │ ├── virtualPlayerLaunchRequestsPage.html │ │ │ │ ├── virtualPlayerTaskScheduleViewPage.html │ │ │ │ ├── virtualPlayerTaskSchedulesFormPage.html │ │ │ │ ├── virtualPlayerTaskSchedulesTablePage.html │ │ │ │ ├── virtualPlayerTasksLaunchPage.html │ │ │ │ └── virtualPlayerTasksOverviewPage.html │ │ │ ├── popups │ │ │ │ ├── fleetEventsPopup.html │ │ │ │ ├── fleetLocationsPopup.html │ │ │ │ ├── fleetScalingPopup.html │ │ │ │ ├── flexMatchSimulatorPopup.html │ │ │ │ ├── gameSessionsTablePopup.html │ │ │ │ ├── matchmakingConfigPopup.html │ │ │ │ ├── matchmakingTicketHeadersTablePopup.html │ │ │ │ ├── purgeDataPopup.html │ │ │ │ ├── queueEventsPopup.html │ │ │ │ ├── queueSettingsPopup.html │ │ │ │ ├── ruleSetsPopup.html │ │ │ │ ├── simpleGraphPopup.html │ │ │ │ ├── simpleJsonPopup.html │ │ │ │ └── virtualPlayerTasksPopup.html │ │ │ ├── settings.html │ │ │ ├── subpopups │ │ │ │ ├── configureLatencyProfilesSubPopup.html │ │ │ │ ├── configurePlayerProfilesSubPopup.html │ │ │ │ ├── manageRuleSetsSubPopup.html │ │ │ │ ├── queueDestinationOrderSubPopup.html │ │ │ │ ├── queuePlacementPrioritySubPopup.html │ │ │ │ ├── queueSettingsSubPopup.html │ │ │ │ ├── ruleSetBuilderSubPopup.html │ │ │ │ ├── simulateMatchmakingSubPopup.html │ │ │ │ ├── virtualPlayerTaskLaunchRequestsSubPopup.html │ │ │ │ ├── virtualPlayerTasksLaunchSubPopup.html │ │ │ │ ├── virtualPlayerTasksOverviewSubPopup.html │ │ │ │ ├── virtualPlayerTasksRunningSubPopup.html │ │ │ │ ├── virtualPlayerTasksScheduleLaunchSubPopup.html │ │ │ │ └── virtualPlayerTasksSchedulesSubPopup.html │ │ │ └── tokenForm.html │ │ ├── instance.png │ │ ├── location.png │ │ ├── refresh.png │ │ ├── textures.json │ │ ├── textures.png │ │ └── webfonts │ │ │ ├── Noto Sans.fnt │ │ │ └── Noto Sans.png │ ├── package.json │ ├── styles.css │ └── yarn.lock │ ├── texturepacker │ ├── assets │ │ ├── animationoff.png │ │ ├── animationon.png │ │ ├── characters │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── cog.png │ │ ├── gtlogo.png │ │ ├── instance.png │ │ ├── location.png │ │ └── refresh.png │ └── textures.tps │ ├── tsconfig.json │ ├── webpack │ ├── base.js │ └── prod.js │ └── yarn.lock ├── NOTICE ├── README.md ├── SampleGame ├── Backend │ ├── AssemblyInfo.cs │ ├── Common │ │ ├── BaseEvent.cs │ │ ├── FlexMatchEvent.cs │ │ ├── QueuePlacementEvent.cs │ │ └── Utils.cs │ ├── GameClientService │ │ ├── Data │ │ │ ├── ClientMessage.cs │ │ │ └── ServerMessage.cs │ │ └── GameClientService.cs │ ├── SampleGameBackend.csproj │ └── aws-lambda-tools-defaults.json ├── Game │ ├── ArgumentHandler.cs │ ├── Dockerfile │ ├── Game.cs │ ├── GameLiftIntegration │ │ ├── Client │ │ │ ├── WSClient.cs │ │ │ ├── WSMessageFromClient.cs │ │ │ └── WSMessageFromServer.cs │ │ └── Server │ │ │ ├── GameLiftHandler.cs │ │ │ ├── GameLiftMetadata.cs │ │ │ └── IGameLiftServer.cs │ ├── Network │ │ ├── Client │ │ │ ├── Client.cs │ │ │ ├── IClient.cs │ │ │ └── IGameClient.cs │ │ ├── NetworkProtocol.cs │ │ └── Server │ │ │ ├── IGameServer.cs │ │ │ └── Server.cs │ ├── NumbersQuiz │ │ ├── Client │ │ │ ├── APIGatewayRequestSigner.cs │ │ │ ├── QuizClient.cs │ │ │ ├── Signers │ │ │ │ ├── AWS4SignerBase.cs │ │ │ │ ├── AWS4SignerForAuthorizationHeader.cs │ │ │ │ ├── AWS4SignerForPOST.cs │ │ │ │ └── AWS4SignerForQueryParameterAuth.cs │ │ │ └── Util │ │ │ │ └── HttpHelpers.cs │ │ ├── Data │ │ │ ├── AnswerResult.cs │ │ │ ├── GameResult.cs │ │ │ ├── MessageFromClient.cs │ │ │ ├── MessageFromClientType.cs │ │ │ ├── MessageFromServer.cs │ │ │ ├── MessageFromServerType.cs │ │ │ ├── Question.cs │ │ │ ├── QuizConfig.cs │ │ │ ├── ScheduleEntry.cs │ │ │ └── ScheduleEntryType.cs │ │ └── Server │ │ │ ├── AwsHandler.cs │ │ │ ├── GameLogger.cs │ │ │ ├── GameState.cs │ │ │ ├── Player.cs │ │ │ ├── Players.cs │ │ │ └── QuizServer.cs │ ├── Program.cs │ ├── QuizConfig.json │ ├── SampleGameBuild.csproj │ ├── install.bat │ ├── install.ps1 │ ├── install.sh │ └── log4net.config └── Infra │ ├── Infra.sln │ ├── README.md │ ├── cdk.context.json │ ├── cdk.json │ └── src │ ├── Constructs │ ├── GameLiftBuild.cs │ └── GameLiftBuildAsset.cs │ ├── GlobalSuppressions.cs │ ├── Lib │ ├── ApiGwLogsStack.cs │ ├── BackendStack.cs │ ├── InfraStage.cs │ └── VirtualPlayersStack.cs │ ├── Program.cs │ └── SampleGameInfra.csproj ├── THIRD_PARTY_LICENSES.md ├── VERSION ├── cdk.context.json ├── docs ├── docs │ ├── Dockerfile │ ├── additional_resources.md │ ├── aws_services.md │ ├── img │ │ └── amazon_gamelift_testing_toolkit.png │ ├── index.md │ ├── quick_start.md │ ├── removing_the_toolkit.md │ ├── security.md │ ├── testing_your_game.md │ ├── toolkit_design.md │ └── using_the_toolkit.md └── mkdocs.yml ├── package.json └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/ISSUE_TEMPLATE/documentation-improvements.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto_assign-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/auto_assign-issues.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/post_release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/workflows/post_release.js -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release-prep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.github/workflows/release-prep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /AmazonGameliftTestingToolkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/AmazonGameliftTestingToolkit.sln -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /ManagementConsole/Backend/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/AssemblyInfo.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/Common/BaseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/Common/BaseEvent.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/Common/FlexMatchEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/Common/FlexMatchEvent.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/Common/QueuePlacementEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/Common/QueuePlacementEvent.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/Common/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/Common/Utils.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementConsoleBackend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementConsoleBackend.csproj -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/CfnRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/CfnRequest.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/ClientMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/ClientMessage.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/GameLiftStateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/GameLiftStateEvent.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/LatencyProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/LatencyProfile.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/LocationsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/LocationsList.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/MatchmakingSimulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/MatchmakingSimulation.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/MultipartMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/MultipartMessage.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/PlayerProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/PlayerProfile.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/PlayerProfileAttributeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/PlayerProfileAttributeConverter.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/ServerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/ServerMessage.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Data/VirtualPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Data/VirtualPlayers.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/EventHandlers.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/FlexMatchSimulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/FlexMatchSimulator.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Lib/CloudWatchRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Lib/CloudWatchRequestHandler.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Lib/DynamoDbRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Lib/DynamoDbRequestHandler.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Lib/GameLiftRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Lib/GameLiftRequestHandler.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Lib/GameLiftStateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Lib/GameLiftStateHandler.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Lib/SchedulerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Lib/SchedulerHandler.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/Lib/VirtualPlayersHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/Lib/VirtualPlayersHandler.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/ManagementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/ManagementService.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/PurgeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/PurgeData.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/StepFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/StepFunctions.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/ManagementService/VirtualPlayerTaskScheduledAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/ManagementService/VirtualPlayerTaskScheduledAction.cs -------------------------------------------------------------------------------- /ManagementConsole/Backend/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Backend/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /ManagementConsole/Infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/README.md -------------------------------------------------------------------------------- /ManagementConsole/Infra/cdk.context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/cdk.context.json -------------------------------------------------------------------------------- /ManagementConsole/Infra/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/cdk.json -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Constructs/FleetIqAmiBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Constructs/FleetIqAmiBuild.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Constructs/FleetIqGameServerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Constructs/FleetIqGameServerGroup.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Constructs/GameLiftBuildAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Constructs/GameLiftBuildAsset.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/GlobalSuppressions.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Lib/ApiGwLogsStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Lib/ApiGwLogsStack.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Lib/BackendStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Lib/BackendStack.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Lib/DataStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Lib/DataStack.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Lib/InfraStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Lib/InfraStage.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Lib/SecurityStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Lib/SecurityStack.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Lib/WebStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Lib/WebStack.cs -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/ManagementConsoleInfra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/ManagementConsoleInfra.csproj -------------------------------------------------------------------------------- /ManagementConsole/Infra/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/Infra/src/Program.cs -------------------------------------------------------------------------------- /ManagementConsole/UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/.gitignore -------------------------------------------------------------------------------- /ManagementConsole/UI/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/index.html -------------------------------------------------------------------------------- /ManagementConsole/UI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/package.json -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Config/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Config/Config.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Data/DataTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Data/DataTypes.d.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Data/FlexMatchEventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Data/FlexMatchEventType.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Data/Locations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Data/Locations.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Data/QueuePlacementEventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Data/QueuePlacementEventType.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Data/ScreenResolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Data/ScreenResolution.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Abstract/BaseContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Abstract/BaseContainer.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Abstract/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Abstract/Page.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Abstract/Popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Abstract/Popup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Abstract/SimpleButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Abstract/SimpleButton.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Abstract/SimpleMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Abstract/SimpleMenu.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Abstract/SubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Abstract/SubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Abstract/ToggleButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Abstract/ToggleButton.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Buttons/FleetLocationButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Buttons/FleetLocationButton.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Buttons/FleetMenuButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Buttons/FleetMenuButton.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Buttons/MatchmakingConfigMenuButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Buttons/MatchmakingConfigMenuButton.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Buttons/QueueMenuButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Buttons/QueueMenuButton.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Buttons/SettingsButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Buttons/SettingsButton.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Buttons/ToggleAnimationButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Buttons/ToggleAnimationButton.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Fleet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Fleet.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Fleets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Fleets.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/GameSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/GameSession.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/GameSessionQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/GameSessionQueue.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/GameSessionQueues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/GameSessionQueues.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Instance.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/MatchmakingConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/MatchmakingConfig.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/MatchmakingConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/MatchmakingConfigs.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Menus/FleetMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Menus/FleetMenu.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Menus/LocationPopover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Menus/LocationPopover.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Menus/MatchmakingConfigMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Menus/MatchmakingConfigMenu.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Menus/QueueMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Menus/QueueMenu.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/PageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/PageManager.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/Pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/Pages.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingFailedTicketsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingFailedTicketsPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingFormPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingFormPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingMatchInfoPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingMatchInfoPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingOutputPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingOutputPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingResultsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingResultsPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingSimulationsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingSimulationsPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingTicketsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/SimulateMatchmakingTicketsPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/VirtualPlayerLaunchRequestTaskLogsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/VirtualPlayerLaunchRequestTaskLogsPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/VirtualPlayerLaunchRequestTasksPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/VirtualPlayerLaunchRequestTasksPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/VirtualPlayerLaunchRequestsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/VirtualPlayerLaunchRequestsPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTaskScheduleViewPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTaskScheduleViewPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTaskSchedulesFormPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTaskSchedulesFormPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTaskSchedulesTablePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTaskSchedulesTablePage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTasksLaunchPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTasksLaunchPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTasksOverviewPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Pages/VirtualPlayerTasksOverviewPage.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Player.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/PlayerMatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/PlayerMatch.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/PlayerSprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/PlayerSprite.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/FleetEventsPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/FleetEventsPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/FleetGraphPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/FleetGraphPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/FleetLocationsPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/FleetLocationsPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/FleetScalingPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/FleetScalingPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/FlexMatchSimulatorPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/FlexMatchSimulatorPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/GameSessionsTablePopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/GameSessionsTablePopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/MatchmakingConfigPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/MatchmakingConfigPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/MatchmakingGraphPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/MatchmakingGraphPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/MatchmakingRuleSetsPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/MatchmakingRuleSetsPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/MatchmakingTicketsPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/MatchmakingTicketsPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/PopupHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/PopupHandler.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/PurgeDataPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/PurgeDataPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/QueueEventsPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/QueueEventsPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/QueueGraphPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/QueueGraphPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/QueueSettingsPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/QueueSettingsPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/SimpleJsonPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/SimpleJsonPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Popups/VirtualPlayerTasksPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Popups/VirtualPlayerTasksPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/RoundedRectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/RoundedRectangle.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Settings/SettingsForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Settings/SettingsForm.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/Settings/SettingsPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/Settings/SettingsPanel.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/LatencyProfilesSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/LatencyProfilesSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/ManageRuleSetsSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/ManageRuleSetsSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/PlayerProfilesSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/PlayerProfilesSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/QueueDestinationOrderSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/QueueDestinationOrderSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/QueuePlacementPrioritySubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/QueuePlacementPrioritySubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/QueueSettingsSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/QueueSettingsSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/RuleSetBuilderSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/RuleSetBuilderSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/SimulateMatchmakingSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/SimulateMatchmakingSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/SubPopups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/SubPopups.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerLaunchRequestsSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerLaunchRequestsSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerTasksLaunchSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerTasksLaunchSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerTasksOverviewSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerTasksOverviewSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerTasksRunningSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerTasksRunningSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerTasksSchedulesSubPopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/SubPopups/VirtualPlayerTasksSchedulesSubPopup.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Elements/WebFontFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Elements/WebFontFile.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Events/DummyEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Events/DummyEventHandler.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Events/EventDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Events/EventDispatcher.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Events/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Events/Events.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Events/GameLiftEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Events/GameLiftEventHandler.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Events/PopupClickEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Events/PopupClickEvent.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Game.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Managers/MatchManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Managers/MatchManager.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Managers/PlayerManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Managers/PlayerManager.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Network/MessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Network/MessageHandler.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Network/MultipartMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Network/MultipartMessageHandler.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Network/Network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Network/Network.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Scenes/BootScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Scenes/BootScene.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Scenes/ConsoleScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Scenes/ConsoleScene.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Scenes/LoginScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Scenes/LoginScene.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Scenes/PreloaderScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Scenes/PreloaderScene.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/src/Utils/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/src/Utils/Utils.ts -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/animationoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/animationoff.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/animationon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/animationon.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/backbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/backbutton.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/1.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/10.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/11.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/12.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/13.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/14.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/15.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/16.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/2.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/3.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/4.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/5.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/6.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/7.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/8.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/characters/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/characters/9.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/closebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/closebutton.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/cog.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/gtlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/gtlogo.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/fragments/playerAttributeTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/fragments/playerAttributeTemplate.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/fragments/playerLatencyPolicyTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/fragments/playerLatencyPolicyTemplate.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/fragments/playerProfileTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/fragments/playerProfileTemplate.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/fragments/regionLatencyTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/fragments/regionLatencyTemplate.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/fragments/scheduleProgress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/fragments/scheduleProgress.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingFailedTicketsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingFailedTicketsPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingFormPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingFormPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingMatchInfoPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingMatchInfoPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingOutputPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingOutputPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingResultsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingResultsPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingSimulationsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingSimulationsPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingTicketsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/simulateMatchmakingTicketsPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/virtualPlayerLaunchRequestTaskLogsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/virtualPlayerLaunchRequestTaskLogsPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/virtualPlayerLaunchRequestTasksPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/virtualPlayerLaunchRequestTasksPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/virtualPlayerLaunchRequestsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/virtualPlayerLaunchRequestsPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/virtualPlayerTaskScheduleViewPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/virtualPlayerTaskScheduleViewPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/virtualPlayerTaskSchedulesFormPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/virtualPlayerTaskSchedulesFormPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/virtualPlayerTaskSchedulesTablePage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/virtualPlayerTaskSchedulesTablePage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/virtualPlayerTasksLaunchPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/virtualPlayerTasksLaunchPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/pages/virtualPlayerTasksOverviewPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/pages/virtualPlayerTasksOverviewPage.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/fleetEventsPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/fleetEventsPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/fleetLocationsPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/fleetLocationsPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/fleetScalingPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/fleetScalingPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/flexMatchSimulatorPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/flexMatchSimulatorPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/gameSessionsTablePopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/gameSessionsTablePopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/matchmakingConfigPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/matchmakingConfigPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/matchmakingTicketHeadersTablePopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/matchmakingTicketHeadersTablePopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/purgeDataPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/purgeDataPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/queueEventsPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/queueEventsPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/queueSettingsPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/queueSettingsPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/ruleSetsPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/ruleSetsPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/simpleGraphPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/simpleGraphPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/simpleJsonPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/simpleJsonPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/popups/virtualPlayerTasksPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/popups/virtualPlayerTasksPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/settings.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/configureLatencyProfilesSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/configureLatencyProfilesSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/configurePlayerProfilesSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/configurePlayerProfilesSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/manageRuleSetsSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/manageRuleSetsSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/queueDestinationOrderSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/queueDestinationOrderSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/queuePlacementPrioritySubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/queuePlacementPrioritySubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/queueSettingsSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/queueSettingsSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/ruleSetBuilderSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/ruleSetBuilderSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/simulateMatchmakingSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/simulateMatchmakingSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTaskLaunchRequestsSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTaskLaunchRequestsSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksLaunchSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksLaunchSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksOverviewSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksOverviewSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksRunningSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksRunningSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksScheduleLaunchSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksScheduleLaunchSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksSchedulesSubPopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/subpopups/virtualPlayerTasksSchedulesSubPopup.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/html/tokenForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/html/tokenForm.html -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/instance.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/location.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/refresh.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/textures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/textures.json -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/textures.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/webfonts/Noto Sans.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/webfonts/Noto Sans.fnt -------------------------------------------------------------------------------- /ManagementConsole/UI/static/assets/webfonts/Noto Sans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/assets/webfonts/Noto Sans.png -------------------------------------------------------------------------------- /ManagementConsole/UI/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/package.json -------------------------------------------------------------------------------- /ManagementConsole/UI/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/styles.css -------------------------------------------------------------------------------- /ManagementConsole/UI/static/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/static/yarn.lock -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/animationoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/animationoff.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/animationon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/animationon.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/1.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/10.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/11.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/12.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/13.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/14.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/15.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/16.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/2.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/3.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/4.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/5.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/6.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/7.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/8.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/characters/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/characters/9.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/cog.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/gtlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/gtlogo.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/instance.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/location.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/assets/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/assets/refresh.png -------------------------------------------------------------------------------- /ManagementConsole/UI/texturepacker/textures.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/texturepacker/textures.tps -------------------------------------------------------------------------------- /ManagementConsole/UI/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/tsconfig.json -------------------------------------------------------------------------------- /ManagementConsole/UI/webpack/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/webpack/base.js -------------------------------------------------------------------------------- /ManagementConsole/UI/webpack/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/webpack/prod.js -------------------------------------------------------------------------------- /ManagementConsole/UI/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/ManagementConsole/UI/yarn.lock -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /SampleGame/Backend/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/AssemblyInfo.cs -------------------------------------------------------------------------------- /SampleGame/Backend/Common/BaseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/Common/BaseEvent.cs -------------------------------------------------------------------------------- /SampleGame/Backend/Common/FlexMatchEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/Common/FlexMatchEvent.cs -------------------------------------------------------------------------------- /SampleGame/Backend/Common/QueuePlacementEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/Common/QueuePlacementEvent.cs -------------------------------------------------------------------------------- /SampleGame/Backend/Common/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/Common/Utils.cs -------------------------------------------------------------------------------- /SampleGame/Backend/GameClientService/Data/ClientMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/GameClientService/Data/ClientMessage.cs -------------------------------------------------------------------------------- /SampleGame/Backend/GameClientService/Data/ServerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/GameClientService/Data/ServerMessage.cs -------------------------------------------------------------------------------- /SampleGame/Backend/GameClientService/GameClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/GameClientService/GameClientService.cs -------------------------------------------------------------------------------- /SampleGame/Backend/SampleGameBackend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/SampleGameBackend.csproj -------------------------------------------------------------------------------- /SampleGame/Backend/aws-lambda-tools-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Backend/aws-lambda-tools-defaults.json -------------------------------------------------------------------------------- /SampleGame/Game/ArgumentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/ArgumentHandler.cs -------------------------------------------------------------------------------- /SampleGame/Game/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Dockerfile -------------------------------------------------------------------------------- /SampleGame/Game/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Game.cs -------------------------------------------------------------------------------- /SampleGame/Game/GameLiftIntegration/Client/WSClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/GameLiftIntegration/Client/WSClient.cs -------------------------------------------------------------------------------- /SampleGame/Game/GameLiftIntegration/Client/WSMessageFromClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/GameLiftIntegration/Client/WSMessageFromClient.cs -------------------------------------------------------------------------------- /SampleGame/Game/GameLiftIntegration/Client/WSMessageFromServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/GameLiftIntegration/Client/WSMessageFromServer.cs -------------------------------------------------------------------------------- /SampleGame/Game/GameLiftIntegration/Server/GameLiftHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/GameLiftIntegration/Server/GameLiftHandler.cs -------------------------------------------------------------------------------- /SampleGame/Game/GameLiftIntegration/Server/GameLiftMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/GameLiftIntegration/Server/GameLiftMetadata.cs -------------------------------------------------------------------------------- /SampleGame/Game/GameLiftIntegration/Server/IGameLiftServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/GameLiftIntegration/Server/IGameLiftServer.cs -------------------------------------------------------------------------------- /SampleGame/Game/Network/Client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Network/Client/Client.cs -------------------------------------------------------------------------------- /SampleGame/Game/Network/Client/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Network/Client/IClient.cs -------------------------------------------------------------------------------- /SampleGame/Game/Network/Client/IGameClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Network/Client/IGameClient.cs -------------------------------------------------------------------------------- /SampleGame/Game/Network/NetworkProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Network/NetworkProtocol.cs -------------------------------------------------------------------------------- /SampleGame/Game/Network/Server/IGameServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Network/Server/IGameServer.cs -------------------------------------------------------------------------------- /SampleGame/Game/Network/Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Network/Server/Server.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Client/APIGatewayRequestSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Client/APIGatewayRequestSigner.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Client/QuizClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Client/QuizClient.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Client/Signers/AWS4SignerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Client/Signers/AWS4SignerBase.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Client/Signers/AWS4SignerForAuthorizationHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Client/Signers/AWS4SignerForAuthorizationHeader.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Client/Signers/AWS4SignerForPOST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Client/Signers/AWS4SignerForPOST.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Client/Signers/AWS4SignerForQueryParameterAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Client/Signers/AWS4SignerForQueryParameterAuth.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Client/Util/HttpHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Client/Util/HttpHelpers.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/AnswerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/AnswerResult.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/GameResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/GameResult.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/MessageFromClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/MessageFromClient.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/MessageFromClientType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/MessageFromClientType.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/MessageFromServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/MessageFromServer.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/MessageFromServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/MessageFromServerType.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/Question.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/QuizConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/QuizConfig.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/ScheduleEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/ScheduleEntry.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Data/ScheduleEntryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Data/ScheduleEntryType.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Server/AwsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Server/AwsHandler.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Server/GameLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Server/GameLogger.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Server/GameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Server/GameState.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Server/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Server/Player.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Server/Players.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Server/Players.cs -------------------------------------------------------------------------------- /SampleGame/Game/NumbersQuiz/Server/QuizServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/NumbersQuiz/Server/QuizServer.cs -------------------------------------------------------------------------------- /SampleGame/Game/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/Program.cs -------------------------------------------------------------------------------- /SampleGame/Game/QuizConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/QuizConfig.json -------------------------------------------------------------------------------- /SampleGame/Game/SampleGameBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/SampleGameBuild.csproj -------------------------------------------------------------------------------- /SampleGame/Game/install.bat: -------------------------------------------------------------------------------- 1 | powershell.exe "& 'C:\Game\install.ps1'" 2 | 3 | -------------------------------------------------------------------------------- /SampleGame/Game/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/install.ps1 -------------------------------------------------------------------------------- /SampleGame/Game/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/install.sh -------------------------------------------------------------------------------- /SampleGame/Game/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Game/log4net.config -------------------------------------------------------------------------------- /SampleGame/Infra/Infra.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/Infra.sln -------------------------------------------------------------------------------- /SampleGame/Infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/README.md -------------------------------------------------------------------------------- /SampleGame/Infra/cdk.context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/cdk.context.json -------------------------------------------------------------------------------- /SampleGame/Infra/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/cdk.json -------------------------------------------------------------------------------- /SampleGame/Infra/src/Constructs/GameLiftBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/Constructs/GameLiftBuild.cs -------------------------------------------------------------------------------- /SampleGame/Infra/src/Constructs/GameLiftBuildAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/Constructs/GameLiftBuildAsset.cs -------------------------------------------------------------------------------- /SampleGame/Infra/src/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/GlobalSuppressions.cs -------------------------------------------------------------------------------- /SampleGame/Infra/src/Lib/ApiGwLogsStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/Lib/ApiGwLogsStack.cs -------------------------------------------------------------------------------- /SampleGame/Infra/src/Lib/BackendStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/Lib/BackendStack.cs -------------------------------------------------------------------------------- /SampleGame/Infra/src/Lib/InfraStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/Lib/InfraStage.cs -------------------------------------------------------------------------------- /SampleGame/Infra/src/Lib/VirtualPlayersStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/Lib/VirtualPlayersStack.cs -------------------------------------------------------------------------------- /SampleGame/Infra/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/Program.cs -------------------------------------------------------------------------------- /SampleGame/Infra/src/SampleGameInfra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/SampleGame/Infra/src/SampleGameInfra.csproj -------------------------------------------------------------------------------- /THIRD_PARTY_LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/THIRD_PARTY_LICENSES.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /cdk.context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/cdk.context.json -------------------------------------------------------------------------------- /docs/docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/Dockerfile -------------------------------------------------------------------------------- /docs/docs/additional_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/additional_resources.md -------------------------------------------------------------------------------- /docs/docs/aws_services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/aws_services.md -------------------------------------------------------------------------------- /docs/docs/img/amazon_gamelift_testing_toolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/img/amazon_gamelift_testing_toolkit.png -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/quick_start.md -------------------------------------------------------------------------------- /docs/docs/removing_the_toolkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/removing_the_toolkit.md -------------------------------------------------------------------------------- /docs/docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/security.md -------------------------------------------------------------------------------- /docs/docs/testing_your_game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/testing_your_game.md -------------------------------------------------------------------------------- /docs/docs/toolkit_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/toolkit_design.md -------------------------------------------------------------------------------- /docs/docs/using_the_toolkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/docs/using_the_toolkit.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-gamelift-testing-toolkit/HEAD/yarn.lock --------------------------------------------------------------------------------