VRCharacterBase.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2. #include "VRCharacterBase.h"
  3. #include "Kismet/GameplayStatics.h"
  4. #include "Kismet/KismetSystemLibrary.h"
  5. #include "Components/CapsuleComponent.h"
  6. #include "VRHUDBase.h"
  7. #include "VRGroupBase.h"
  8. static FName FirstPersonCameraName(TEXT("FirstPersonCamera"));
  9. // Sets default values
  10. AVRCharacterBase::AVRCharacterBase(const FObjectInitializer& ObjectInitializer): Super(ObjectInitializer)
  11. {
  12. // Set this character to call Tick() every frame. You can turn this off to improve performance if you don't need it.
  13. PrimaryActorTick.bCanEverTick = true;
  14. GetCapsuleComponent()->InitCapsuleSize(50, 50);
  15. GetCapsuleComponent()->SetRelativeLocation(FVector(-240, 60, 190));
  16. GetMesh()->SetRelativeLocation(FVector(0, 0, -100));
  17. GetMesh()->SetRelativeRotation(FRotator(0, -90, 0));
  18. FirstPersonCamera = CreateDefaultSubobject<UCameraComponent>(FirstPersonCameraName);
  19. if (FirstPersonCamera) {
  20. FirstPersonCamera->SetRelativeLocation(FVector(60, 0, 15));
  21. FirstPersonCamera->SetupAttachment(GetCapsuleComponent());
  22. }
  23. BeginWaitConnected_Timeline.SetTimelineLength(2);
  24. CurveFloat = CreateDefaultSubobject<UCurveFloat>(FName("CurveFloat"));
  25. if (CurveFloat) {
  26. CurveFloat->FloatCurve.AddKey(0, 0);
  27. CurveFloat->FloatCurve.AddKey(2, 100);
  28. }
  29. FOnTimelineFloatStatic onTimelineUpdate;
  30. onTimelineUpdate.BindUFunction(this, FName("OnBeginWaitConnected_TimelineUpdate"));
  31. BeginWaitConnected_Timeline.AddInterpFloat(CurveFloat, onTimelineUpdate);
  32. FOnTimelineEventStatic onTimelineFinished;
  33. onTimelineFinished.BindUFunction(this, FName("OnBeginWaitConnected_TimelineFinished"));
  34. BeginWaitConnected_Timeline.SetTimelineFinishedFunc(onTimelineFinished);
  35. }
  36. // Called when the game starts or when spawned
  37. void AVRCharacterBase::BeginPlay()
  38. {
  39. Super::BeginPlay();
  40. }
  41. // Called every frame
  42. void AVRCharacterBase::Tick(float DeltaTime)
  43. {
  44. Super::Tick(DeltaTime);
  45. BeginWaitConnected_Timeline.TickTimeline(DeltaTime);
  46. }
  47. // Called to bind functionality to input
  48. void AVRCharacterBase::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
  49. {
  50. Super::SetupPlayerInputComponent(PlayerInputComponent);
  51. PlayerInputComponent->BindAxis("MoveForward", this, &AVRCharacterBase::MoveForward);
  52. PlayerInputComponent->BindAxis("MoveRight", this, &AVRCharacterBase::MoveRight);
  53. PlayerInputComponent->BindAxis("Turn", this, &AVRCharacterBase::Turn);
  54. PlayerInputComponent->BindAxis("LookUp", this, &AVRCharacterBase::LookUp);
  55. PlayerInputComponent->BindAction("BeginWaitConnected", EInputEvent::IE_Pressed, this, &AVRCharacterBase::BeginWaitConnected);
  56. PlayerInputComponent->BindAction("TestButton", EInputEvent::IE_Pressed, this, &AVRCharacterBase::Test);
  57. }
  58. void AVRCharacterBase::MoveForward(float value) {
  59. FVector direction = GetActorForwardVector();
  60. AddMovementInput(direction * value);
  61. }
  62. void AVRCharacterBase::MoveRight(float value) {
  63. FVector direction = GetActorRightVector();
  64. AddMovementInput(direction * value);
  65. }
  66. void AVRCharacterBase::Turn(float value) {
  67. AddControllerYawInput(value);
  68. }
  69. void AVRCharacterBase::LookUp(float value) {
  70. FirstPersonCamera->AddRelativeRotation(FRotator(-value, 0, 0));
  71. }
  72. void AVRCharacterBase::BeginWaitConnected() {
  73. UE_LOG(LogTemp, Warning, TEXT("AVRCharacterBase::BeginWaitConnected"));
  74. BeginWaitConnected_Timeline.PlayFromStart();
  75. }
  76. void AVRCharacterBase::CreateGroup() {
  77. if (IsInGroup()) {
  78. UE_LOG(LogTemp, Warning, TEXT("已在阵列中"));
  79. return;
  80. }
  81. GetCapsuleComponent()->SetCollisionResponseToChannel(ECollisionChannel::ECC_Pawn, ECollisionResponse::ECR_Overlap);
  82. AVRGroupBase* group = GetWorld()->SpawnActor<AVRGroupBase>();
  83. group->SetActorTransform(GetActorTransform());
  84. AttachToActor(group, FAttachmentTransformRules(EAttachmentRule::SnapToTarget, EAttachmentRule::SnapToTarget, EAttachmentRule::SnapToTarget, true), NAME_None);
  85. AddActorLocalOffset(FVector(0, 0, 0));
  86. SetActorRotation(FRotator(0, 0, 0));
  87. }
  88. bool AVRCharacterBase::IsInGroup() {
  89. AActor* parent = GetAttachParentActor();
  90. return parent != nullptr;
  91. }
  92. void AVRCharacterBase::OnBeginWaitConnected_TimelineUpdate(float value) {
  93. UE_LOG(LogTemp, Warning, TEXT("AVRCharacterBase::OnTimelineUpdate: %f"), value);
  94. AVRHUDBase* hud = Cast<AVRHUDBase>(UGameplayStatics::GetPlayerController(GetWorld(), 0)->GetHUD());
  95. hud->UpdateProgress((int)value);
  96. }
  97. void AVRCharacterBase::OnBeginWaitConnected_TimelineFinished() {
  98. UE_LOG(LogTemp, Warning, TEXT("AVRCharacterBase::OnTimelineFinished"));
  99. AVRHUDBase* hud = Cast<AVRHUDBase>(UGameplayStatics::GetPlayerController(GetWorld(), 0)->GetHUD());
  100. hud->UpdateProgress(100);
  101. CreateGroup();
  102. }
  103. void AVRCharacterBase::Test() {
  104. UGameInstance *gameInstance = GetGameInstance();
  105. }