How do you setup GameLift Client for Unreal Engine 4?

0

@REDACTEDUSER

I'm having a hard time trying to setup GameLift Client for UE4. Using the SDK I've got a client plugin for UE4 and it does compile fine. In my ClientGame.Build.cs file I have these:

			PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore",
"ExampleGame", "AwsCore", "GameLift" });

Then in my Game Mode I added these includes:

// GameLift includes
#include "Gamelift/GameLiftClient.h"
#include "Gamelift/model/CreateGameSessionRequest.h"
#include "AwsCore/Public/aws/core/Aws.h"
//

Now when I try to make a create game session function like this:

	void AMainMenuGameModeBase::Internal_CreateGameSession()
{
Aws::GameLift::Model::CreateGameSessionRequest Request;
//const FString MyFleetID = "";
//Request.SetFleetId(TCHAR_TO_ANSI(*MyFleetID));
//Request.SetMaximumPlayerSessionCount(100);
//Aws::GameLift::GameLiftClient Client = Aws::GameLift::GameLiftClient(); }

I get this error:

ClientMainMenuGameMode.cpp.obj : error LNK2001: unresolved external symbol "char const * const Aws::Http::CONTENT_TYPE_HEADER" (?CONTENT_TYPE_HEADER@Http@Aws@@3PEBDEB)
2>E:\Unreal Projects\TestGame\Binaries\Win64\UE4Editor-TestGameClient.dll : fatal error LNK1120: 1 unresolved externals

Unreal Engine version: 4.19

Visual Studio 2017 (15.4)

If possible, would you please be kind enough to provide a Unreal Client Plugin with some documentation and some example code?

已提问 7 年前322 查看次数
5 回答
0

Yeah, same here only problem is I'm running from source. So I don't have a million dollar computer.. And have to keep going through a long process,and theirs no such thing as 4.19. The docs really don't say which engine is supported... It's really a big headache

已回答 7 年前
0

We are using Unreal Github source (promoted branch) and FYI master branch and promoted branch is always a version ahead of launcher version.

I have successfully compiled Unreal Client SDK and Unreal Server SDK and both work fine to an extent. That is, my dedicated server does communicate successfully with GameLift Local and Client can create Game Sessions. Problem is GameLift crashes after calling CreatePlayerSessionAsync from Client.

已回答 7 年前
0

Hey @REDACTEDUSER

已回答 7 年前
0

I haven't tested 4.19 yet. But I had the same issue before. You need to build GameLift Client again from git.

已回答 6 年前
0

Add
#define USE_IMPORT_EXPORT #define USE_WINDOWS_DLL_SEMANTICS above include in aws\core\Core_EXPORTS.h

已回答 4 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则