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?

demandé il y a 7 ans322 vues
5 réponses
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

répondu il y a 7 ans
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.

répondu il y a 7 ans
0

Hey @REDACTEDUSER

répondu il y a 7 ans
0

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

répondu il y a 6 ans
0

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

répondu il y a 4 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions