├── .github └── ISSUE_TEMPLATE │ └── aws-gamekit-bug-report.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Doxyfile-exports ├── Doxyfile-main ├── LICENSE ├── NOTICE ├── README.md ├── aws-gamekit-achievements ├── CMakeLists.txt ├── include │ └── aws │ │ └── gamekit │ │ └── achievements │ │ ├── exports.h │ │ ├── exports_admin.h │ │ ├── gamekit_achievements.h │ │ ├── gamekit_achievements_models.h │ │ └── gamekit_admin_achievements.h └── source │ └── aws │ └── gamekit │ └── achievements │ ├── exports.cpp │ ├── exports_admin.cpp │ ├── gamekit_achievement_models.cpp │ ├── gamekit_achievements.cpp │ └── gamekit_admin_achievements.cpp ├── aws-gamekit-authentication ├── CMakeLists.txt ├── include │ └── aws │ │ └── gamekit │ │ └── authentication │ │ ├── exports.h │ │ └── gamekit_session_manager.h └── source │ └── aws │ └── gamekit │ └── authentication │ ├── exports.cpp │ └── gamekit_session_manager.cpp ├── aws-gamekit-core ├── CMakeLists.txt ├── include │ └── aws │ │ └── gamekit │ │ └── core │ │ ├── api.h │ │ ├── aws_region_mappings.h │ │ ├── awsclients │ │ ├── api_initializer.h │ │ ├── default_clients.h │ │ └── http_client_factory.h │ │ ├── deployment_orchestrator.h │ │ ├── enums.h │ │ ├── errors.h │ │ ├── exports.h │ │ ├── feature_resources.h │ │ ├── feature_resources_callback.h │ │ ├── gamekit_account.h │ │ ├── gamekit_feature.h │ │ ├── gamekit_settings.h │ │ ├── internal │ │ ├── platform_string.h │ │ └── wrap_boost_filesystem.h │ │ ├── logging.h │ │ ├── model │ │ ├── account_credentials.h │ │ ├── account_info.h │ │ ├── config_consts.h │ │ ├── resource_environment.h │ │ └── template_consts.h │ │ ├── paramstore_keys.h │ │ ├── utils │ │ ├── count_ticker.h │ │ ├── current_time_provider.h │ │ ├── debug.h │ │ ├── encoding_utils.h │ │ ├── file_utils.h │ │ ├── gamekit_httpclient.h │ │ ├── gamekit_httpclient_callbacks.h │ │ ├── gamekit_httpclient_types.h │ │ ├── sts_utils.h │ │ ├── ticker.h │ │ ├── timestamp_ticker.h │ │ └── validation_utils.h │ │ └── zipper.h └── source │ └── aws │ └── gamekit │ └── core │ ├── aws_region_mappings.cpp │ ├── awsclients │ ├── api_initializer.cpp │ └── http_client_factory.cpp │ ├── deployment_orchestrator.cpp │ ├── exports.cpp │ ├── feature_resources.cpp │ ├── gamekit_account.cpp │ ├── gamekit_settings.cpp │ ├── internal │ └── wrap_boost_filesystem.cpp │ ├── logging.cpp │ ├── miniz.inc │ ├── model │ └── account_info.cpp │ ├── utils │ ├── count_ticker.cpp │ ├── encoding_utils.cpp │ ├── file_utils.cpp │ ├── gamekit_httpclient.cpp │ ├── gamekit_httpclient_types.cpp │ ├── sts_utils.cpp │ ├── ticker.cpp │ ├── timestamp_ticker.cpp │ └── validation_utils.cpp │ └── zipper.cpp ├── aws-gamekit-game-saving ├── CMakeLists.txt ├── include │ └── aws │ │ └── gamekit │ │ └── game-saving │ │ ├── exports.h │ │ ├── gamekit_game_saving.h │ │ ├── gamekit_game_saving_cached_slot.h │ │ ├── gamekit_game_saving_caller.h │ │ └── gamekit_game_saving_models.h └── source │ └── aws │ └── gamekit │ └── game-saving │ ├── exports.cpp │ ├── gamekit_game_saving.cpp │ └── gamekit_game_saving_caller.cpp ├── aws-gamekit-identity ├── CMakeLists.txt ├── include │ └── aws │ │ └── gamekit │ │ └── identity │ │ ├── exports.h │ │ ├── facebook_identity_provider.h │ │ ├── federated_identity_provider.h │ │ ├── gamekit_identity.h │ │ ├── gamekit_identity_models.h │ │ └── utils │ │ └── credentials_utils.h └── source │ └── aws │ └── gamekit │ └── identity │ ├── exports.cpp │ ├── facebook_identity_provider.cpp │ ├── gamekit_identity.cpp │ └── utils │ └── credentials_utils.cpp ├── aws-gamekit-user-gameplay-data ├── CMakeLists.txt ├── include │ └── aws │ │ └── gamekit │ │ └── user-gameplay-data │ │ ├── exports.h │ │ ├── gamekit_user_gameplay_data.h │ │ ├── gamekit_user_gameplay_data_client.h │ │ └── gamekit_user_gameplay_data_models.h └── source │ └── aws │ └── gamekit │ └── user-gameplay-data │ ├── exports.cpp │ ├── gamekit_user_gameplay_data.cpp │ ├── gamekit_user_gameplay_data_client.cpp │ └── gamekit_user_gameplay_data_models.cpp ├── aws_gamekit_py ├── CMakeLists.txt ├── README.md ├── conftest.py ├── main.cpp ├── pytest.ini ├── requirements.txt └── test_gamekit.py ├── publish └── CMakeLists.txt ├── scripts ├── Android │ ├── __init__.py │ ├── build.py │ ├── refresh_unity.py │ ├── refresh_unreal.py │ ├── regenerate_android_projects.bat │ └── sample-android-user-config.jam ├── IOS │ ├── __init__.py │ ├── build.py │ ├── refresh_unity.py │ ├── refresh_unreal.py │ └── regenerate_projects_ios.sh ├── Mac │ ├── __init__.py │ ├── build.py │ ├── load_path_everything.py │ ├── refresh_unity.py │ └── refresh_unreal.py ├── Win64 │ ├── __init__.py │ ├── build.py │ ├── refresh_unity.py │ ├── refresh_unreal.py │ └── regenerate_projects.bat ├── __init__.py ├── aws_gamekit_cpp_build.py ├── common.py └── refresh_plugin.py └── tests ├── CMakeLists.txt ├── README.md ├── achievements ├── gamekit_achievements_exports_tests.cpp ├── gamekit_achievements_exports_tests.h ├── gamekit_admin_achievements_exports_tests.cpp └── gamekit_admin_achievements_exports_tests.h ├── authentication ├── gamekit_authentication_exports_tests.cpp ├── gamekit_authentication_exports_tests.h ├── gamekit_session_manager_tests.cpp └── gamekit_session_manager_tests.h ├── core ├── aws_region_mappings_test.cpp ├── aws_region_mappings_test.h ├── count_ticker_tests.cpp ├── count_ticker_tests.h ├── custom_test_flags.cpp ├── custom_test_flags.h ├── deployment_orchestrator_tests.cpp ├── deployment_orchestrator_tests.h ├── dispatchers.h ├── feature_resources_test.cpp ├── feature_resources_test.h ├── gamekit_account_test.cpp ├── gamekit_account_test.h ├── gamekit_core_exports_tests.cpp ├── gamekit_core_exports_tests.h ├── gamekit_core_tests.cpp ├── gamekit_settings_exports_tests.cpp ├── gamekit_settings_exports_tests.h ├── gamekit_settings_test.cpp ├── gamekit_settings_test.h ├── mocks │ ├── fake_http_client.h │ ├── mock_apigateway_client.h │ ├── mock_cloudformation_client.h │ ├── mock_cognito_client.h │ ├── mock_feature_resources.h │ ├── mock_gamekit_account.h │ ├── mock_s3_client.h │ ├── mock_secretsmanager_client.h │ ├── mock_ssm_client.h │ ├── mock_sts_client.h │ └── mock_time_provider.h ├── request_serialization_test.cpp ├── request_serialization_test.h ├── simple_integration_test.cpp ├── simple_integration_test.h ├── sts_tests.cpp ├── sts_tests.h ├── test_common.h ├── test_data │ ├── sampleplugin │ │ ├── alternativeInstance │ │ │ └── testgame │ │ │ │ └── dev │ │ │ │ └── awsGameKitClientConfig.yml │ │ ├── base │ │ │ ├── cloudformation │ │ │ │ ├── achievements │ │ │ │ │ ├── cloudFormation.yml │ │ │ │ │ └── parameters.yml │ │ │ │ ├── gamesaving │ │ │ │ │ ├── cloudFormation.yml │ │ │ │ │ └── parameters.yml │ │ │ │ ├── identity │ │ │ │ │ ├── cloudFormation.yml │ │ │ │ │ └── parameters.yml │ │ │ │ └── main │ │ │ │ │ ├── cloudFormation.yml │ │ │ │ │ └── parameters.yml │ │ │ ├── configOutputs │ │ │ │ └── identity │ │ │ │ │ └── clientConfig.yml │ │ │ ├── functions │ │ │ │ ├── achievements │ │ │ │ │ ├── getall │ │ │ │ │ │ ├── another.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ └── testdir │ │ │ │ │ │ │ └── testdir.py │ │ │ │ │ ├── geticons │ │ │ │ │ │ └── index.py │ │ │ │ │ └── unlock │ │ │ │ │ │ └── index.py │ │ │ │ ├── gamesaving │ │ │ │ │ ├── delete │ │ │ │ │ │ └── index.py │ │ │ │ │ ├── getall │ │ │ │ │ │ └── index.py │ │ │ │ │ └── save │ │ │ │ │ │ └── index.py │ │ │ │ └── identity │ │ │ │ │ └── getuser │ │ │ │ │ └── index.py │ │ │ └── misc │ │ │ │ └── awsGameKitAwsRegionMappings.yml │ │ └── instance │ │ │ └── testgame │ │ │ ├── cloudformation │ │ │ └── identity │ │ │ │ ├── cloudFormation.yml │ │ │ │ └── parameters.yml │ │ │ ├── dev │ │ │ ├── awsGameKitClientConfig.yml │ │ │ ├── cloudformation │ │ │ │ ├── achievements │ │ │ │ │ ├── cloudFormation.yml │ │ │ │ │ ├── dashboard.yml │ │ │ │ │ └── parameters.yml │ │ │ │ ├── gamesaving │ │ │ │ │ ├── cloudFormation.yml │ │ │ │ │ ├── dashboard.yml │ │ │ │ │ └── parameters.yml │ │ │ │ ├── identity │ │ │ │ │ ├── cloudFormation.yml │ │ │ │ │ ├── dashboard.yml │ │ │ │ │ └── parameters.yml │ │ │ │ └── main │ │ │ │ │ ├── cloudFormation.yml │ │ │ │ │ ├── dashboard.yml │ │ │ │ │ └── parameters.yml │ │ │ └── functions │ │ │ │ ├── achievements │ │ │ │ ├── getall │ │ │ │ │ ├── another.py │ │ │ │ │ ├── index.py │ │ │ │ │ └── testdir │ │ │ │ │ │ └── testdir.py │ │ │ │ ├── geticons │ │ │ │ │ └── index.py │ │ │ │ └── unlock │ │ │ │ │ └── index.py │ │ │ │ ├── gamesaving │ │ │ │ ├── delete │ │ │ │ │ └── index.py │ │ │ │ ├── getall │ │ │ │ │ └── index.py │ │ │ │ └── save │ │ │ │ │ └── index.py │ │ │ │ └── identity │ │ │ │ └── getuser │ │ │ │ └── index.py │ │ │ └── functions │ │ │ └── identity │ │ │ └── getuser │ │ │ └── index.py │ └── testFiles │ │ ├── credentialsTests │ │ └── test_credentials │ │ ├── fileUtilTests │ │ ├── HashDirTest │ │ │ ├── TestReadEmptyFile.txt │ │ │ ├── TestReadFile.txt │ │ │ └── TestReadNonAsciiCharacters.txt │ │ ├── TestReadEmptyFile.txt │ │ ├── TestReadFile.txt │ │ ├── TestReadNonAsciiCharacters.txt │ │ └── TestWriteExistingFile.txt │ │ ├── gameSavingTests │ │ ├── ExpectedSavedSlotInformation.json │ │ ├── ExpectedSavedSlotInformationLocalOnly.json │ │ ├── InvalidSavedSlotInformation.json │ │ ├── NullSavedSlotInformation.json │ │ ├── TestSave.dat │ │ ├── TestSaveEmpty.dat │ │ └── testSlot.txt │ │ ├── regionMappingsTests │ │ └── misc │ │ │ └── awsGameKitAwsRegionMappings.yml │ │ └── zipperTests │ │ └── testFiles │ │ ├── intoZip.txt │ │ └── intoZip2.txt ├── test_log.h ├── test_stack.cpp ├── test_stack.h ├── testable_deployment_orchestrator.h ├── ticker_tests.cpp ├── ticker_tests.h ├── timestamp_ticker_tests.cpp └── timestamp_ticker_tests.h ├── encoding_utils_tests.cpp ├── encoding_utils_tests.h ├── file_utils_tests.cpp ├── file_utils_tests.h ├── game-saving ├── gamekit_game_saving_exports_tests.cpp └── gamekit_game_saving_exports_tests.h ├── identity ├── credentials_utils_tests.cpp ├── credentials_utils_tests.h ├── gamekit_identity_exports_tests.cpp └── gamekit_identity_exports_tests.h ├── main.cpp ├── user-gameplay-data ├── user_gameplay_data_client_tests.cpp ├── user_gameplay_data_client_tests.h ├── user_gameplay_data_models_tests.cpp ├── user_gameplay_data_models_tests.h ├── user_gameplay_exports_tests.cpp └── user_gameplay_exports_tests.h ├── validation_utils_tests.cpp ├── validation_utils_tests.h ├── zipper_tests.cpp └── zipper_tests.h /.github/ISSUE_TEMPLATE/aws-gamekit-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/.github/ISSUE_TEMPLATE/aws-gamekit-bug-report.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doxyfile-exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/Doxyfile-exports -------------------------------------------------------------------------------- /Doxyfile-main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/Doxyfile-main -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/README.md -------------------------------------------------------------------------------- /aws-gamekit-achievements/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/CMakeLists.txt -------------------------------------------------------------------------------- /aws-gamekit-achievements/include/aws/gamekit/achievements/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/include/aws/gamekit/achievements/exports.h -------------------------------------------------------------------------------- /aws-gamekit-achievements/include/aws/gamekit/achievements/exports_admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/include/aws/gamekit/achievements/exports_admin.h -------------------------------------------------------------------------------- /aws-gamekit-achievements/include/aws/gamekit/achievements/gamekit_achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/include/aws/gamekit/achievements/gamekit_achievements.h -------------------------------------------------------------------------------- /aws-gamekit-achievements/include/aws/gamekit/achievements/gamekit_achievements_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/include/aws/gamekit/achievements/gamekit_achievements_models.h -------------------------------------------------------------------------------- /aws-gamekit-achievements/include/aws/gamekit/achievements/gamekit_admin_achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/include/aws/gamekit/achievements/gamekit_admin_achievements.h -------------------------------------------------------------------------------- /aws-gamekit-achievements/source/aws/gamekit/achievements/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/source/aws/gamekit/achievements/exports.cpp -------------------------------------------------------------------------------- /aws-gamekit-achievements/source/aws/gamekit/achievements/exports_admin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/source/aws/gamekit/achievements/exports_admin.cpp -------------------------------------------------------------------------------- /aws-gamekit-achievements/source/aws/gamekit/achievements/gamekit_achievement_models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/source/aws/gamekit/achievements/gamekit_achievement_models.cpp -------------------------------------------------------------------------------- /aws-gamekit-achievements/source/aws/gamekit/achievements/gamekit_achievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/source/aws/gamekit/achievements/gamekit_achievements.cpp -------------------------------------------------------------------------------- /aws-gamekit-achievements/source/aws/gamekit/achievements/gamekit_admin_achievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-achievements/source/aws/gamekit/achievements/gamekit_admin_achievements.cpp -------------------------------------------------------------------------------- /aws-gamekit-authentication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-authentication/CMakeLists.txt -------------------------------------------------------------------------------- /aws-gamekit-authentication/include/aws/gamekit/authentication/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-authentication/include/aws/gamekit/authentication/exports.h -------------------------------------------------------------------------------- /aws-gamekit-authentication/include/aws/gamekit/authentication/gamekit_session_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-authentication/include/aws/gamekit/authentication/gamekit_session_manager.h -------------------------------------------------------------------------------- /aws-gamekit-authentication/source/aws/gamekit/authentication/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-authentication/source/aws/gamekit/authentication/exports.cpp -------------------------------------------------------------------------------- /aws-gamekit-authentication/source/aws/gamekit/authentication/gamekit_session_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-authentication/source/aws/gamekit/authentication/gamekit_session_manager.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/CMakeLists.txt -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/api.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/aws_region_mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/aws_region_mappings.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/awsclients/api_initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/awsclients/api_initializer.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/awsclients/default_clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/awsclients/default_clients.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/awsclients/http_client_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/awsclients/http_client_factory.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/deployment_orchestrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/deployment_orchestrator.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/enums.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/errors.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/exports.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/feature_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/feature_resources.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/feature_resources_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/feature_resources_callback.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/gamekit_account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/gamekit_account.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/gamekit_feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/gamekit_feature.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/gamekit_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/gamekit_settings.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/internal/platform_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/internal/platform_string.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/internal/wrap_boost_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/internal/wrap_boost_filesystem.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/logging.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/model/account_credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/model/account_credentials.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/model/account_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/model/account_info.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/model/config_consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/model/config_consts.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/model/resource_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/model/resource_environment.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/model/template_consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/model/template_consts.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/paramstore_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/paramstore_keys.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/count_ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/count_ticker.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/current_time_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/current_time_provider.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/debug.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/encoding_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/encoding_utils.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/file_utils.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/gamekit_httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/gamekit_httpclient.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/gamekit_httpclient_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/gamekit_httpclient_callbacks.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/gamekit_httpclient_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/gamekit_httpclient_types.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/sts_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/sts_utils.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/ticker.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/timestamp_ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/timestamp_ticker.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/utils/validation_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/utils/validation_utils.h -------------------------------------------------------------------------------- /aws-gamekit-core/include/aws/gamekit/core/zipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/include/aws/gamekit/core/zipper.h -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/aws_region_mappings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/aws_region_mappings.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/awsclients/api_initializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/awsclients/api_initializer.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/awsclients/http_client_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/awsclients/http_client_factory.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/deployment_orchestrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/deployment_orchestrator.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/exports.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/feature_resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/feature_resources.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/gamekit_account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/gamekit_account.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/gamekit_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/gamekit_settings.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/internal/wrap_boost_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/internal/wrap_boost_filesystem.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/logging.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/miniz.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/miniz.inc -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/model/account_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/model/account_info.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/count_ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/count_ticker.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/encoding_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/encoding_utils.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/file_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/file_utils.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/gamekit_httpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/gamekit_httpclient.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/gamekit_httpclient_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/gamekit_httpclient_types.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/sts_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/sts_utils.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/ticker.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/timestamp_ticker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/timestamp_ticker.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/utils/validation_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/utils/validation_utils.cpp -------------------------------------------------------------------------------- /aws-gamekit-core/source/aws/gamekit/core/zipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-core/source/aws/gamekit/core/zipper.cpp -------------------------------------------------------------------------------- /aws-gamekit-game-saving/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/CMakeLists.txt -------------------------------------------------------------------------------- /aws-gamekit-game-saving/include/aws/gamekit/game-saving/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/include/aws/gamekit/game-saving/exports.h -------------------------------------------------------------------------------- /aws-gamekit-game-saving/include/aws/gamekit/game-saving/gamekit_game_saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/include/aws/gamekit/game-saving/gamekit_game_saving.h -------------------------------------------------------------------------------- /aws-gamekit-game-saving/include/aws/gamekit/game-saving/gamekit_game_saving_cached_slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/include/aws/gamekit/game-saving/gamekit_game_saving_cached_slot.h -------------------------------------------------------------------------------- /aws-gamekit-game-saving/include/aws/gamekit/game-saving/gamekit_game_saving_caller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/include/aws/gamekit/game-saving/gamekit_game_saving_caller.h -------------------------------------------------------------------------------- /aws-gamekit-game-saving/include/aws/gamekit/game-saving/gamekit_game_saving_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/include/aws/gamekit/game-saving/gamekit_game_saving_models.h -------------------------------------------------------------------------------- /aws-gamekit-game-saving/source/aws/gamekit/game-saving/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/source/aws/gamekit/game-saving/exports.cpp -------------------------------------------------------------------------------- /aws-gamekit-game-saving/source/aws/gamekit/game-saving/gamekit_game_saving.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/source/aws/gamekit/game-saving/gamekit_game_saving.cpp -------------------------------------------------------------------------------- /aws-gamekit-game-saving/source/aws/gamekit/game-saving/gamekit_game_saving_caller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-game-saving/source/aws/gamekit/game-saving/gamekit_game_saving_caller.cpp -------------------------------------------------------------------------------- /aws-gamekit-identity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/CMakeLists.txt -------------------------------------------------------------------------------- /aws-gamekit-identity/include/aws/gamekit/identity/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/include/aws/gamekit/identity/exports.h -------------------------------------------------------------------------------- /aws-gamekit-identity/include/aws/gamekit/identity/facebook_identity_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/include/aws/gamekit/identity/facebook_identity_provider.h -------------------------------------------------------------------------------- /aws-gamekit-identity/include/aws/gamekit/identity/federated_identity_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/include/aws/gamekit/identity/federated_identity_provider.h -------------------------------------------------------------------------------- /aws-gamekit-identity/include/aws/gamekit/identity/gamekit_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/include/aws/gamekit/identity/gamekit_identity.h -------------------------------------------------------------------------------- /aws-gamekit-identity/include/aws/gamekit/identity/gamekit_identity_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/include/aws/gamekit/identity/gamekit_identity_models.h -------------------------------------------------------------------------------- /aws-gamekit-identity/include/aws/gamekit/identity/utils/credentials_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/include/aws/gamekit/identity/utils/credentials_utils.h -------------------------------------------------------------------------------- /aws-gamekit-identity/source/aws/gamekit/identity/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/source/aws/gamekit/identity/exports.cpp -------------------------------------------------------------------------------- /aws-gamekit-identity/source/aws/gamekit/identity/facebook_identity_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/source/aws/gamekit/identity/facebook_identity_provider.cpp -------------------------------------------------------------------------------- /aws-gamekit-identity/source/aws/gamekit/identity/gamekit_identity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/source/aws/gamekit/identity/gamekit_identity.cpp -------------------------------------------------------------------------------- /aws-gamekit-identity/source/aws/gamekit/identity/utils/credentials_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-identity/source/aws/gamekit/identity/utils/credentials_utils.cpp -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/CMakeLists.txt -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/include/aws/gamekit/user-gameplay-data/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/include/aws/gamekit/user-gameplay-data/exports.h -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/include/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/include/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data.h -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/include/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/include/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data_client.h -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/include/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/include/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data_models.h -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/source/aws/gamekit/user-gameplay-data/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/source/aws/gamekit/user-gameplay-data/exports.cpp -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/source/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/source/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data.cpp -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/source/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/source/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data_client.cpp -------------------------------------------------------------------------------- /aws-gamekit-user-gameplay-data/source/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data_models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws-gamekit-user-gameplay-data/source/aws/gamekit/user-gameplay-data/gamekit_user_gameplay_data_models.cpp -------------------------------------------------------------------------------- /aws_gamekit_py/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws_gamekit_py/CMakeLists.txt -------------------------------------------------------------------------------- /aws_gamekit_py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws_gamekit_py/README.md -------------------------------------------------------------------------------- /aws_gamekit_py/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws_gamekit_py/conftest.py -------------------------------------------------------------------------------- /aws_gamekit_py/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws_gamekit_py/main.cpp -------------------------------------------------------------------------------- /aws_gamekit_py/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws_gamekit_py/pytest.ini -------------------------------------------------------------------------------- /aws_gamekit_py/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws_gamekit_py/requirements.txt -------------------------------------------------------------------------------- /aws_gamekit_py/test_gamekit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/aws_gamekit_py/test_gamekit.py -------------------------------------------------------------------------------- /publish/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/publish/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/Android/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Android/__init__.py -------------------------------------------------------------------------------- /scripts/Android/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Android/build.py -------------------------------------------------------------------------------- /scripts/Android/refresh_unity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Android/refresh_unity.py -------------------------------------------------------------------------------- /scripts/Android/refresh_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Android/refresh_unreal.py -------------------------------------------------------------------------------- /scripts/Android/regenerate_android_projects.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Android/regenerate_android_projects.bat -------------------------------------------------------------------------------- /scripts/Android/sample-android-user-config.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Android/sample-android-user-config.jam -------------------------------------------------------------------------------- /scripts/IOS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/IOS/__init__.py -------------------------------------------------------------------------------- /scripts/IOS/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/IOS/build.py -------------------------------------------------------------------------------- /scripts/IOS/refresh_unity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/IOS/refresh_unity.py -------------------------------------------------------------------------------- /scripts/IOS/refresh_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/IOS/refresh_unreal.py -------------------------------------------------------------------------------- /scripts/IOS/regenerate_projects_ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/IOS/regenerate_projects_ios.sh -------------------------------------------------------------------------------- /scripts/Mac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Mac/__init__.py -------------------------------------------------------------------------------- /scripts/Mac/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Mac/build.py -------------------------------------------------------------------------------- /scripts/Mac/load_path_everything.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Mac/load_path_everything.py -------------------------------------------------------------------------------- /scripts/Mac/refresh_unity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Mac/refresh_unity.py -------------------------------------------------------------------------------- /scripts/Mac/refresh_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Mac/refresh_unreal.py -------------------------------------------------------------------------------- /scripts/Win64/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Win64/__init__.py -------------------------------------------------------------------------------- /scripts/Win64/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Win64/build.py -------------------------------------------------------------------------------- /scripts/Win64/refresh_unity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Win64/refresh_unity.py -------------------------------------------------------------------------------- /scripts/Win64/refresh_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Win64/refresh_unreal.py -------------------------------------------------------------------------------- /scripts/Win64/regenerate_projects.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/Win64/regenerate_projects.bat -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/aws_gamekit_cpp_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/aws_gamekit_cpp_build.py -------------------------------------------------------------------------------- /scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/common.py -------------------------------------------------------------------------------- /scripts/refresh_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/scripts/refresh_plugin.py -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/achievements/gamekit_achievements_exports_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/achievements/gamekit_achievements_exports_tests.cpp -------------------------------------------------------------------------------- /tests/achievements/gamekit_achievements_exports_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/achievements/gamekit_achievements_exports_tests.h -------------------------------------------------------------------------------- /tests/achievements/gamekit_admin_achievements_exports_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/achievements/gamekit_admin_achievements_exports_tests.cpp -------------------------------------------------------------------------------- /tests/achievements/gamekit_admin_achievements_exports_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/achievements/gamekit_admin_achievements_exports_tests.h -------------------------------------------------------------------------------- /tests/authentication/gamekit_authentication_exports_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/authentication/gamekit_authentication_exports_tests.cpp -------------------------------------------------------------------------------- /tests/authentication/gamekit_authentication_exports_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/authentication/gamekit_authentication_exports_tests.h -------------------------------------------------------------------------------- /tests/authentication/gamekit_session_manager_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/authentication/gamekit_session_manager_tests.cpp -------------------------------------------------------------------------------- /tests/authentication/gamekit_session_manager_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/authentication/gamekit_session_manager_tests.h -------------------------------------------------------------------------------- /tests/core/aws_region_mappings_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/aws_region_mappings_test.cpp -------------------------------------------------------------------------------- /tests/core/aws_region_mappings_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/aws_region_mappings_test.h -------------------------------------------------------------------------------- /tests/core/count_ticker_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/count_ticker_tests.cpp -------------------------------------------------------------------------------- /tests/core/count_ticker_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/count_ticker_tests.h -------------------------------------------------------------------------------- /tests/core/custom_test_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/custom_test_flags.cpp -------------------------------------------------------------------------------- /tests/core/custom_test_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/custom_test_flags.h -------------------------------------------------------------------------------- /tests/core/deployment_orchestrator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/deployment_orchestrator_tests.cpp -------------------------------------------------------------------------------- /tests/core/deployment_orchestrator_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/deployment_orchestrator_tests.h -------------------------------------------------------------------------------- /tests/core/dispatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/dispatchers.h -------------------------------------------------------------------------------- /tests/core/feature_resources_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/feature_resources_test.cpp -------------------------------------------------------------------------------- /tests/core/feature_resources_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/feature_resources_test.h -------------------------------------------------------------------------------- /tests/core/gamekit_account_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_account_test.cpp -------------------------------------------------------------------------------- /tests/core/gamekit_account_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_account_test.h -------------------------------------------------------------------------------- /tests/core/gamekit_core_exports_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_core_exports_tests.cpp -------------------------------------------------------------------------------- /tests/core/gamekit_core_exports_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_core_exports_tests.h -------------------------------------------------------------------------------- /tests/core/gamekit_core_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_core_tests.cpp -------------------------------------------------------------------------------- /tests/core/gamekit_settings_exports_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_settings_exports_tests.cpp -------------------------------------------------------------------------------- /tests/core/gamekit_settings_exports_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_settings_exports_tests.h -------------------------------------------------------------------------------- /tests/core/gamekit_settings_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_settings_test.cpp -------------------------------------------------------------------------------- /tests/core/gamekit_settings_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/gamekit_settings_test.h -------------------------------------------------------------------------------- /tests/core/mocks/fake_http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/fake_http_client.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_apigateway_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_apigateway_client.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_cloudformation_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_cloudformation_client.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_cognito_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_cognito_client.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_feature_resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_feature_resources.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_gamekit_account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_gamekit_account.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_s3_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_s3_client.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_secretsmanager_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_secretsmanager_client.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_ssm_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_ssm_client.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_sts_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_sts_client.h -------------------------------------------------------------------------------- /tests/core/mocks/mock_time_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/mocks/mock_time_provider.h -------------------------------------------------------------------------------- /tests/core/request_serialization_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/request_serialization_test.cpp -------------------------------------------------------------------------------- /tests/core/request_serialization_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/request_serialization_test.h -------------------------------------------------------------------------------- /tests/core/simple_integration_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/simple_integration_test.cpp -------------------------------------------------------------------------------- /tests/core/simple_integration_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/simple_integration_test.h -------------------------------------------------------------------------------- /tests/core/sts_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/sts_tests.cpp -------------------------------------------------------------------------------- /tests/core/sts_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/sts_tests.h -------------------------------------------------------------------------------- /tests/core/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_common.h -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/alternativeInstance/testgame/dev/awsGameKitClientConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/alternativeInstance/testgame/dev/awsGameKitClientConfig.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/cloudformation/achievements/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/cloudformation/achievements/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/cloudformation/achievements/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/cloudformation/achievements/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/cloudformation/gamesaving/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/cloudformation/gamesaving/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/cloudformation/gamesaving/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/cloudformation/gamesaving/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/cloudformation/identity/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/cloudformation/identity/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/cloudformation/identity/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/cloudformation/identity/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/cloudformation/main/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/cloudformation/main/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/cloudformation/main/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/cloudformation/main/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/configOutputs/identity/clientConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/configOutputs/identity/clientConfig.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/achievements/getall/another.py: -------------------------------------------------------------------------------- 1 | def test(): 2 | pass 3 | 4 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/achievements/getall/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/achievements/getall/testdir/testdir.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/achievements/geticons/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/achievements/unlock/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/gamesaving/delete/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/gamesaving/getall/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/gamesaving/save/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/functions/identity/getuser/index.py: -------------------------------------------------------------------------------- 1 | def test(): 2 | pass 3 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/base/misc/awsGameKitAwsRegionMappings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/base/misc/awsGameKitAwsRegionMappings.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/cloudformation/identity/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/cloudformation/identity/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/cloudformation/identity/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/cloudformation/identity/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/awsGameKitClientConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/awsGameKitClientConfig.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/achievements/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/achievements/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/achievements/dashboard.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/achievements/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/achievements/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/gamesaving/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/gamesaving/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/gamesaving/dashboard.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/gamesaving/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/gamesaving/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/identity/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/identity/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/identity/dashboard.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/identity/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/identity/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/main/cloudFormation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/main/cloudFormation.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/main/dashboard.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/main/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/sampleplugin/instance/testgame/dev/cloudformation/main/parameters.yml -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/achievements/getall/another.py: -------------------------------------------------------------------------------- 1 | def test(): 2 | pass 3 | 4 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/achievements/getall/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/achievements/getall/testdir/testdir.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/achievements/geticons/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/achievements/unlock/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/gamesaving/delete/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/gamesaving/getall/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/gamesaving/save/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/dev/functions/identity/getuser/index.py: -------------------------------------------------------------------------------- 1 | def test(): 2 | pass 3 | -------------------------------------------------------------------------------- /tests/core/test_data/sampleplugin/instance/testgame/functions/identity/getuser/index.py: -------------------------------------------------------------------------------- 1 | def test(): 2 | pass 3 | -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/credentialsTests/test_credentials: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/fileUtilTests/HashDirTest/TestReadEmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/fileUtilTests/HashDirTest/TestReadFile.txt: -------------------------------------------------------------------------------- 1 | TEST File -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/fileUtilTests/HashDirTest/TestReadNonAsciiCharacters.txt: -------------------------------------------------------------------------------- 1 | 🙂测试 -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/fileUtilTests/TestReadEmptyFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/fileUtilTests/TestReadFile.txt: -------------------------------------------------------------------------------- 1 | T 2 | E 3 | S 4 | T 5 | File 6 | -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/fileUtilTests/TestReadNonAsciiCharacters.txt: -------------------------------------------------------------------------------- 1 | 🙂测试 -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/fileUtilTests/TestWriteExistingFile.txt: -------------------------------------------------------------------------------- 1 | T 2 | E 3 | S 4 | T 5 | WriteExistingFile 6 | -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/gameSavingTests/ExpectedSavedSlotInformation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/testFiles/gameSavingTests/ExpectedSavedSlotInformation.json -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/gameSavingTests/ExpectedSavedSlotInformationLocalOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/testFiles/gameSavingTests/ExpectedSavedSlotInformationLocalOnly.json -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/gameSavingTests/InvalidSavedSlotInformation.json: -------------------------------------------------------------------------------- 1 | { 2 | "comment": "this JSON is missing all of the required keys!" 3 | } -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/gameSavingTests/NullSavedSlotInformation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/testFiles/gameSavingTests/NullSavedSlotInformation.json -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/gameSavingTests/TestSave.dat: -------------------------------------------------------------------------------- 1 | Test save data -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/gameSavingTests/TestSaveEmpty.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/gameSavingTests/testSlot.txt: -------------------------------------------------------------------------------- 1 | ABCDEFGH -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/regionMappingsTests/misc/awsGameKitAwsRegionMappings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/testFiles/regionMappingsTests/misc/awsGameKitAwsRegionMappings.yml -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/zipperTests/testFiles/intoZip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/testFiles/zipperTests/testFiles/intoZip.txt -------------------------------------------------------------------------------- /tests/core/test_data/testFiles/zipperTests/testFiles/intoZip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_data/testFiles/zipperTests/testFiles/intoZip2.txt -------------------------------------------------------------------------------- /tests/core/test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_log.h -------------------------------------------------------------------------------- /tests/core/test_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_stack.cpp -------------------------------------------------------------------------------- /tests/core/test_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/test_stack.h -------------------------------------------------------------------------------- /tests/core/testable_deployment_orchestrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/testable_deployment_orchestrator.h -------------------------------------------------------------------------------- /tests/core/ticker_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/ticker_tests.cpp -------------------------------------------------------------------------------- /tests/core/ticker_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/ticker_tests.h -------------------------------------------------------------------------------- /tests/core/timestamp_ticker_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/timestamp_ticker_tests.cpp -------------------------------------------------------------------------------- /tests/core/timestamp_ticker_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/core/timestamp_ticker_tests.h -------------------------------------------------------------------------------- /tests/encoding_utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/encoding_utils_tests.cpp -------------------------------------------------------------------------------- /tests/encoding_utils_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/encoding_utils_tests.h -------------------------------------------------------------------------------- /tests/file_utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/file_utils_tests.cpp -------------------------------------------------------------------------------- /tests/file_utils_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/file_utils_tests.h -------------------------------------------------------------------------------- /tests/game-saving/gamekit_game_saving_exports_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/game-saving/gamekit_game_saving_exports_tests.cpp -------------------------------------------------------------------------------- /tests/game-saving/gamekit_game_saving_exports_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/game-saving/gamekit_game_saving_exports_tests.h -------------------------------------------------------------------------------- /tests/identity/credentials_utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/identity/credentials_utils_tests.cpp -------------------------------------------------------------------------------- /tests/identity/credentials_utils_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/identity/credentials_utils_tests.h -------------------------------------------------------------------------------- /tests/identity/gamekit_identity_exports_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/identity/gamekit_identity_exports_tests.cpp -------------------------------------------------------------------------------- /tests/identity/gamekit_identity_exports_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/identity/gamekit_identity_exports_tests.h -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/user-gameplay-data/user_gameplay_data_client_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/user-gameplay-data/user_gameplay_data_client_tests.cpp -------------------------------------------------------------------------------- /tests/user-gameplay-data/user_gameplay_data_client_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/user-gameplay-data/user_gameplay_data_client_tests.h -------------------------------------------------------------------------------- /tests/user-gameplay-data/user_gameplay_data_models_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/user-gameplay-data/user_gameplay_data_models_tests.cpp -------------------------------------------------------------------------------- /tests/user-gameplay-data/user_gameplay_data_models_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/user-gameplay-data/user_gameplay_data_models_tests.h -------------------------------------------------------------------------------- /tests/user-gameplay-data/user_gameplay_exports_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/user-gameplay-data/user_gameplay_exports_tests.cpp -------------------------------------------------------------------------------- /tests/user-gameplay-data/user_gameplay_exports_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/user-gameplay-data/user_gameplay_exports_tests.h -------------------------------------------------------------------------------- /tests/validation_utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/validation_utils_tests.cpp -------------------------------------------------------------------------------- /tests/validation_utils_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/validation_utils_tests.h -------------------------------------------------------------------------------- /tests/zipper_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/zipper_tests.cpp -------------------------------------------------------------------------------- /tests/zipper_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-gamekit/HEAD/tests/zipper_tests.h --------------------------------------------------------------------------------