1. 引擎单例派生类可直接调用方法
以下类的派生类中可以通过在方法上标记 UFUNCTION(Exec) 直接调用方法
Pawns, Player Controllers, Player Input, Cheat Managers, Game Modes, Game Instances, overriden Game Engine classes, and Huds should all work by just adding the standard UFUNCTION markup
我只在Game Mode的派生类中实测过,如下
声明控制台可执行标记 UFUNCTION(Exec)
UFUNCTION(Exec)
virtual void solname(FString _str, int32 _num);
void AMyGameMode::solname(FString _str, int32 _num)
{
FString str = FString::Printf(TEXT("--- %s - %d"), *_str, _num);
UE_LOG(LogMyTest, Warning, TEXT("--- %s - %d"), *_str, _num);
}
1
2
3
4
5
6
7
8
按到 ` 键,输入指令 solname asd 123
这里写图片描述
结果
这里写图片描述
2. 自定义类调用方法
自定义类
MyActor.h
#pragma once
#include "MyActor.generated.h"
UCLASS()
class MYTEST_API AMyActor : public AActor
{
GENERATED_BODY()
public:
AMyActor();
virtual ~AMyActor();
void SetInfo(FString name);
UFUNCTION(Exec)
void Say();
private:
FString mName;
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
MyActor.cpp
#include "MyTest.h"
#include "MyActor.h"
AMyActor::AMyActor()
{
}
AMyActor::~AMyActor()
{
}
void AMyActor::SetInfo(FString name)
{
mName = name;
}
void AMyActor::Say()
{
UE_LOG(LogMyTest, Warning, TEXT("name:%s, Say hello"), *mName);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
如果不加点手段,在控制台输入 Say 是不会掉用对应的方法,所以在派生自 UGameInstance (只要是 引擎单例派生类 都可)中扩展类中,重写 ProcessConsoleExec 方法,(下面 生成实例的方法就不贴了)
bool UMyGameInstance::ProcessConsoleExec(const TCHAR* Cmd, FOutputDevice& Ar, UObject* Executor)
{
bool ret = Super::ProcessConsoleExec(Cmd, Ar, Executor);
if (!ret)
{
for (AMyActor* actor : mActorVec)
ret = actor->ProcessConsoleExec(Cmd, Ar, Executor);
}
UE_LOG(LogMyTest, Warning, TEXT("--- Cmd:%s exec:%d"), Cmd, (int32)ret);
return ret;
}
1
2
3
4
5
6
7
8
9
10
11
输入指令结果:
这里写图片描述
3. 关卡蓝图中的 自定义事件
关卡蓝图中新建个自定义事件 MyTestEvent
这里写图片描述
按到 ` 键,输入指令 ce MyTestEvent
这里写图片描述
可以执行的一些命令
断点看下源码就可以找出很多可以控制台执行的命令
LocalPlayer.cpp 中 bool ULocalPlayer::Exec(UWorld* InWorld, const TCHAR* Cmd,FOutputDevice& Ar)
GameViewportClient.cpp 中 bool UGameViewportClient::Exec( UWorld* InWorld, const TCHAR* Cmd,FOutputDevice& Ar)
UnrealEdSrv.cpp 中 bool UUnrealEdEngine::Exec( UWorld* InWorld, const TCHAR* Stream, FOutputDevice& Ar )
EditorServer.cpp 中 bool UEditorEngine::Exec( UWorld* InWorld, const TCHAR* Stream, FOutputDevice& Ar )
UnrealEngine.cpp 中 bool UEngine::Exec( UWorld* InWorld, const TCHAR* Cmd, FOutputDevice& Ar )
Obj.cpp 中 bool StaticExec( UWorld* InWorld, const TCHAR* Cmd, FOutputDevice& Ar )
---------------------
作者:君墨痕
来源:CSDN
原文:https://blog.csdn.net/yangxuan0261/article/details/53969564
版权声明:本文为博主原创文章,转载请附上博文链接!