? 欧美午夜福利啪啪,青春娱乐网欧美精品成,日韩精品无码一区二区三区视频
聯(lián)系我們

給我們留言

聯(lián)系我們

地址:福建省晉江市青陽(yáng)街道洪山路國(guó)際工業(yè)設(shè)計(jì)園納金網(wǎng)

郵箱:info@narkii.com

電話:0595-82682267

(周一到周五, 周六周日休息)

當(dāng)前位置:主頁(yè) > 3D教程 > 圖文教程

UE4 網(wǎng)游中角色Pawn的移動(dòng)位置同步以及RTS多角色同

來源: 52vr | 責(zé)任編輯:傳說的落葉 | 發(fā)布時(shí)間: 2019-06-06 08:23 | 瀏覽量:

[UE4]網(wǎng)游中角色Pawn的移動(dòng)位置同步以及RTS多角色同時(shí)移動(dòng)的解決方案

 

下面方案的思路是:
每個(gè)Actor,為其定義一個(gè)代理(ActorProxy),真實(shí)的Actor放在服務(wù)端,代理ActorProxy放在客戶端,移動(dòng)Actor時(shí),實(shí)際是移動(dòng)服務(wù)端上的Actor,然后對(duì)客戶端ActorProxy的位置進(jìn)行同步。

攝像機(jī)綁定的是ActorProxy,服務(wù)端的真實(shí)Actor不用攝像機(jī);而AIController實(shí)際控制的是服務(wù)端Actor,客戶端其實(shí)沒有AIController。

另外,下面例子的同步機(jī)制使用的UE4自身集成的Replication(也就是常用的UFUNCTION(Server, Reliable, WithValidation)),這個(gè)是非常耗費(fèi)帶寬的,因?yàn)槭嵌〞r(shí)且頻繁的同步數(shù)據(jù)。這個(gè)如果是做局域網(wǎng)服務(wù)端還可以,但是如果是大型高負(fù)載服務(wù)端,建議自己實(shí)現(xiàn)同步機(jī)制。另外,v4.4開始,shipping編譯出來的版本會(huì)自動(dòng)刪掉UE4的server模式。原因肯定是官方也不希望這個(gè)方便測(cè)試的同步機(jī)制被開發(fā)者應(yīng)用到生產(chǎn)環(huán)境中。所以下面例子中,參考下它的思路即可,具體的同步處理的細(xì)節(jié)問題可以忽略。

 

RTS游戲中多角色同時(shí)移動(dòng)的方案:

為在每個(gè)自定義Pawn類定義個(gè)AIController,群體移動(dòng)時(shí),遍歷所有Pawn,依次調(diào)用各自的AIController->MoveToLocation。

 

另外注意點(diǎn):AIController->MoveToLocation無法像UNavigationSystem->SimpleMoveToLocation()那樣可以主動(dòng)繞開障礙物,一般建議在服務(wù)端通過UNavigationSystem獲取移動(dòng)路徑的數(shù)據(jù),然后將這些數(shù)據(jù)與客戶端同步。

可參考:
Creating a Movement Component for an RTS in UE4 
http://www.gamedev.net/page/resources/_/technical/game-programming/creating-a-movement-component-for-an-rts-in-ue4-r4019

 

=============================================================================

=============================================================================

下面文章有點(diǎn)不足的問題是:服務(wù)端是通過AIController->MoveToLocation來尋路的,如果對(duì)于一個(gè)有障礙物的地圖來啊,移動(dòng)的時(shí)候會(huì)出現(xiàn)停滯。另外文章建議說服務(wù)端不要用UNavigationSystem>SimpleMoveToLocation,這個(gè)可能是誤解,服務(wù)端是可以使用的。
 

正文:

[UE4] Getting Multiplayer Player Pawn AI Navigation to work (C++)

http://droneah.com/content/ue4-getting-multiplayer-player-pawn-ai-navigation-work-c

 

Unreal Engine is an awesome piece of technology making it easy to do almost anything you might want.

 

When using the Top Down view however, there is a hurdle to get over when trying to get multiplayer to work. This is a C++ project solution to this problem based on a BluePrints solution.

 

The basic problem stems from the fact that

 

"SimpleMoveToLocation was never intended to be used in a network environment. It's simple after all ;) Currently there's no dedicated engine way of making player pawn follow a path. " (from the same page)

 

To be able to get a working version of SimpleMoveToLocation, we need to do the following:

 

Create a proxy player class (BP_WarriorProxy is BP solution)

Set the proxy class as the default player controller class

Move the camera to the proxy (Since the actual player class is on the server, we can't put a camera on it to display on the client)

The BP solution talks about four classes - our counterparts are as follows:

 

BP_WarriorProxy: ADemoPlayerProxy

BP_WarriorController: ADemoPlayerController (Auto-created when creating a c++ top down project)

BP_Warrior: ADemoCharacter (Auto-created when creating a C++ top down project)

BP_WarriorAI: AAIController - we have no reason to subclass it.

So, from a standard c++ top down project, the only class we need to add is the ADemoPlayerProxy - so go ahead and do that first.

 

The first thing we'll do is rewire the ADemoGameMode class to initialise the proxy class instead of the default MyCharacter Blueprint.

 
  1. ADemoGameMode::ADemoGameMode(const class FPostConstructInitializeProperties& PCIP) : Super(PCIP)   
  2. {   
  3.     // use our custom PlayerController class   
  4.     PlayerControllerClass = ADemoPlayerController::StaticClass();   
  5.    
  6.     // set default pawn class to our Blueprinted character   
  7.     /* static ConstructorHelpers::FClassFinder<apawn> PlayerPawnBPClass(TEXT("/Game/Blueprints/MyCharacter"));  
  8.     if (PlayerPawnBPClass.Class != NULL)  
  9.     {  
  10.         DefaultPawnClass = PlayerPawnBPClass.Class;  
  11.     }*/   
  12.    
  13.     DefaultPawnClass = ADemoPlayerProxy::StaticClass();   
  14. }   

 

Our Player Proxy class declaration

 
  1. /* This class will work as a proxy on the client - tracking the movements of the  
  2.  * real Character on the server side and sending back controls. */   
  3. UCLASS() class Demo_API ADemoPlayerProxy : public APawn   
  4. {   
  5.     GENERATED_UCLASS_BODY()   
  6.     /** Top down camera */   
  7.     UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Camera) TSubobjectPtr<class ucameracomponent> TopDownCameraComponent;   
  8.    
  9.     /** Camera boom positioning the camera above the character */   
  10.     UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Camera) TSubobjectPtr<class uspringarmcomponent> CameraBoom;   
  11.    
  12.     // Needed so we can pick up the class in the constructor and spawn it elsewhere   
  13.     TSubclassOf<aactor> CharacterClass;   
  14.    
  15.     // Pointer to the actual character. We replicate it so we know its location for the camera on the client   
  16.     UPROPERTY(Replicated) ADemoCharacter* Character;   
  17.    
  18.     // The AI Controller we will use to auto-navigate the player   
  19.     AAIController* PlayerAI;   
  20.    
  21.     // We spawn the real player character and other such elements here   
  22.     virtual void BeginPlay() override;   
  23.    
  24.     // Use do keep this actor in sync with the real one   
  25.     void Tick(float DeltaTime);   
  26.    
  27.     // Used by the controller to get moving to work   
  28.     void MoveToLocation(const FVector& vector);   
  29. };   

 

and the definition:

 
  1. #include "Demo.h"  
  2. #include "DemoCharacter.h"  
  3. #include "AIController.h"  
  4. #include "DemoPlayerProxy.h"  
  5. #include "UnrealNetwork.h"  
  6.    
  7.    
  8. ADemoPlayerProxy::ADemoPlayerProxy(const class FPostConstructInitializeProperties& PCIP)  
  9. : Super(PCIP)  
  10. {  
  11.     // Don't rotate character to camera direction  
  12.     bUseControllerRotationPitch = false;  
  13.     bUseControllerRotationYaw = false;  
  14.     bUseControllerRotationRoll = false;  
  15.    
  16.     // It seems that without a RootComponent, we can't place the Actual Character easily  
  17.     TSubobjectPtr<UCapsuleComponent> TouchCapsule = PCIP.CreateDefaultSubobject<ucapsulecomponent>(this, TEXT("dummy"));  
  18.     TouchCapsule->InitCapsuleSize(1.0f, 1.0f);  
  19.     TouchCapsule->SetCollisionEnabled(ECollisionEnabled::NoCollision);  
  20.     TouchCapsule->SetCollisionResponseToAllChannels(ECR_Ignore);  
  21.     RootComponent = TouchCapsule;  
  22.    
  23.     // Create a camera boom...  
  24.     CameraBoom = PCIP.CreateDefaultSubobject<USpringArmComponent>(this, TEXT("CameraBoom"));  
  25.     CameraBoom->AttachTo(RootComponent);  
  26.     CameraBoom->bAbsoluteRotation = true// Don't want arm to rotate when character does  
  27.     CameraBoom->TargetArmLength = 800.f;  
  28.     CameraBoom->RelativeRotation = FRotator(-60.f, 0.f, 0.f);  
  29.     CameraBoom->bDoCollisionTest = false// Don't want to pull camera in when it collides with level  
  30.    
  31.     // Create a camera...  
  32.     TopDownCameraComponent = PCIP.CreateDefaultSubobject<UCameraComponent>(this, TEXT("TopDownCamera"));  
  33.     TopDownCameraComponent->AttachTo(CameraBoom, USpringArmComponent::SocketName);  
  34.     TopDownCameraComponent->bUseControllerViewRotation = false// Camera does not rotate relative to arm  
  35.    
  36.     if (Role == ROLE_Authority)  
  37.     {  
  38.         static ConstructorHelpers::FObjectFinder<UClass> PlayerPawnBPClass(TEXT("/Game/Blueprints/MyCharacter.MyCharacter_C"));  
  39.         CharacterClass = PlayerPawnBPClass.Object;  
  40.     }  
  41.    
  42. }  
  43.    
  44. void ADemoPlayerProxy::BeginPlay()  
  45. {  
  46.     Super::BeginPlay();  
  47.     if (Role == ROLE_Authority)  
  48.     {  
  49.         // Get current location of the Player Proxy  
  50.         FVector Location =  GetActorLocation();  
  51.         FRotator Rotation = GetActorRotation();  
  52.    
  53.         FActorSpawnParameters SpawnParams;  
  54.         SpawnParams.Owner = this;  
  55.         SpawnParams.Instigator = Instigator;  
  56.         SpawnParams.bNoCollisionFail = true;  
  57.    
  58.         // Spawn the actual player character at the same location as the Proxy  
  59.         Character = Cast<ADemoCharacter>(GetWorld()->SpawnActor(CharacterClass, &Location, &Rotation, SpawnParams));  
  60.    
  61.         // We use the PlayerAI to control the Player Character for Navigation  
  62.         PlayerAI = GetWorld()->SpawnActor<AAIController>(GetActorLocation(), GetActorRotation());  
  63.         PlayerAI->Possess(Character);  
  64.     }  
  65.    
  66. }  
  67.    
  68. void ADemoPlayerProxy::Tick(float DeltaTime)  
  69. {  
  70.    
  71.     Super::Tick(DeltaTime);  
  72.     if (Character)  
  73.     {  
  74.         // Keep the Proxy in sync with the real character  
  75.         FTransform CharTransform = Character->GetTransform();  
  76.         FTransform MyTransform = GetTransform();  
  77.    
  78.         FTransform Transform;  
  79.         Transform.LerpTranslationScale3D(CharTransform, MyTransform, ScalarRegister(0.5f));  
  80.    
  81.         SetActorTransform(Transform);  
  82.    
  83. <li micxptag"="" style="overflow-wrap: break-word; margin: 0px 0px 0px 38px; padding: 0px; font-size: 1em;">虛幻4,ue4,虛幻4入門,虛幻4基礎(chǔ),虛幻4高級(jí)


相關(guān)文章
網(wǎng)友評(píng)論

您需要登錄后才可以發(fā)帖 登錄 | 立即注冊(cè)

關(guān)閉

全部評(píng)論:0條

推薦
熱門