You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Gems/AWSGameLift/Code/AWSGameLiftClient/Source/Activity/AWSGameLiftCreateSessionAct...

91 lines
4.0 KiB
C++

/*
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
* its licensors.
*
* For complete copyright and license terms please see the LICENSE at the root of this
* distribution (the "License"). All use of this software is governed by the License,
* or, if provided, by the license below or the license accompanying this file. Do not
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
*/
#include <Activity/AWSGameLiftCreateSessionActivity.h>
#include <AWSGameLiftSessionConstants.h>
namespace AWSGameLift
{
namespace CreateSessionActivity
{
Aws::GameLift::Model::CreateGameSessionRequest BuildAWSGameLiftCreateGameSessionRequest(
const AWSGameLiftCreateSessionRequest& createSessionRequest)
{
Aws::GameLift::Model::CreateGameSessionRequest request;
// Optional attributes
if (!createSessionRequest.m_creatorId.empty())
{
request.SetCreatorId(createSessionRequest.m_creatorId.c_str());
}
if (!createSessionRequest.m_sessionName.empty())
{
request.SetName(createSessionRequest.m_sessionName.c_str());
}
if (!createSessionRequest.m_idempotencyToken.empty())
{
request.SetIdempotencyToken(createSessionRequest.m_idempotencyToken.c_str());
}
for (auto iter = createSessionRequest.m_sessionProperties.begin();
iter != createSessionRequest.m_sessionProperties.end(); iter++)
{
Aws::GameLift::Model::GameProperty sessionProperty;
sessionProperty.SetKey(iter->first.c_str());
sessionProperty.SetValue(iter->second.c_str());
request.AddGameProperties(sessionProperty);
}
// Required attributes
if (!createSessionRequest.m_aliasId.empty())
{
request.SetAliasId(createSessionRequest.m_aliasId.c_str());
}
if (!createSessionRequest.m_fleetId.empty())
{
request.SetFleetId(createSessionRequest.m_fleetId.c_str());
}
request.SetMaximumPlayerSessionCount(createSessionRequest.m_maxPlayer);
return request;
}
AZStd::string CreateSession(
const Aws::GameLift::GameLiftClient& gameliftClient,
const AWSGameLiftCreateSessionRequest& createSessionRequest)
{
AZ_TracePrintf(AWSGameLiftCreateSessionActivityName, "Requesting CreateGameSession against Amazon GameLift service ...");
AZStd::string result = "";
Aws::GameLift::Model::CreateGameSessionRequest request = BuildAWSGameLiftCreateGameSessionRequest(createSessionRequest);
auto createSessionOutcome = gameliftClient.CreateGameSession(request);
if (createSessionOutcome.IsSuccess())
{
result = AZStd::string(createSessionOutcome.GetResult().GetGameSession().GetGameSessionId().c_str());
}
else
{
AZ_Error(AWSGameLiftCreateSessionActivityName, false, AWSGameLiftErrorMessageTemplate,
createSessionOutcome.GetError().GetExceptionName().c_str(), createSessionOutcome.GetError().GetMessage().c_str());
}
return result;
}
bool ValidateCreateSessionRequest(const AzFramework::CreateSessionRequest& createSessionRequest)
{
auto gameliftCreateSessionRequest = azrtti_cast<const AWSGameLiftCreateSessionRequest*>(&createSessionRequest);
return gameliftCreateSessionRequest && gameliftCreateSessionRequest->m_maxPlayer >= 0 &&
(!gameliftCreateSessionRequest->m_aliasId.empty() || !gameliftCreateSessionRequest->m_fleetId.empty());
}
} // namespace CreateSessionActivity
} // namespace AWSGameLift