File size: 17,503 Bytes
66423d9 | 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | #include "RiderGameControl.hpp"
#include "IRiderLink.hpp"
#include "Model/Library/UE4Library/PlayState.Pregenerated.h"
#include "Model/Library/UE4Library/RequestFailed.Pregenerated.h"
#include "Model/Library/UE4Library/RequestSucceed.Pregenerated.h"
#include "RdEditorModel/RdEditorModel.Pregenerated.h"
#include "Async/Async.h"
#include "Editor/UnrealEdEngine.h"
#include "Framework/Application/SlateApplication.h"
#include "Kismet2/DebuggerCommands.h"
#include "LevelEditor.h"
#include "LevelEditorActions.h"
#include "Misc/FeedbackContext.h"
#include "Modules/ModuleManager.h"
#include "Settings/LevelEditorPlaySettings.h"
#include "Editor.h"
#include "Runtime/Launch/Resources/Version.h"
#if ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION <= 23
#include "ILevelViewport.h"
#include "LevelEditorViewport.h"
#else
#include "IAssetViewport.h"
#include "EditorViewportClient.h"
#endif
#define LOCTEXT_NAMESPACE "RiderGameControl"
DEFINE_LOG_CATEGORY(FLogRiderGameControlModule);
IMPLEMENT_MODULE(FRiderGameControlModule, RiderGameControl);
extern UNREALED_API class UUnrealEdEngine* GUnrealEd;
static int NumberOfPlayers(int Mode) { return (Mode & 3) + 1; }
static bool SpawnAtPlayerStart(int Mode) { return (Mode & 4) != 0; }
static bool DedicatedServer(int Mode) { return (Mode & 8) != 0; }
enum class Compile
{
Yes,
No
};
static Compile CompileBeforeRun(int Mode) { return (Mode & 128) != 0 ? Compile::Yes : Compile::No; }
static EPlayModeType PlayModeFromInt(int ModeNumber)
{
switch (ModeNumber)
{
default: break;
case 1: return PlayMode_InMobilePreview;
case 2: return PlayMode_InEditorFloating;
case 3: return PlayMode_InVR;
case 4: return PlayMode_InNewProcess;
case 5: return PlayMode_Simulate;
case 6: return PlayMode_InVulkanPreview;
}
return PlayMode_InViewPort;
}
static int PlayModeToInt(EPlayModeType modeType)
{
switch (modeType)
{
default: break;
case PlayMode_InTargetedMobilePreview:
case PlayMode_InMobilePreview:
return 1;
case PlayMode_InEditorFloating: return 2;
case PlayMode_InVR: return 3;
case PlayMode_InNewProcess: return 4;
case PlayMode_Simulate: return 5;
case PlayMode_InVulkanPreview: return 6;
}
return 0;
}
FSlateApplication* SlateApplication = nullptr;
struct FPlaySettings
{
EPlayModeType PlayMode;
int32 NumberOfClients;
bool bNetDedicated;
bool bSpawnAtPlayerStart;
static FPlaySettings UnpackFromMode(int32_t mode)
{
FPlaySettings settings = {
PlayModeFromInt((mode & (16 + 32 + 64)) >> 4),
NumberOfPlayers(mode),
DedicatedServer(mode),
SpawnAtPlayerStart(mode),
};
return settings;
}
static int32_t PackToMode(const FPlaySettings& settings)
{
return (settings.NumberOfClients - 1) +
(settings.bSpawnAtPlayerStart ? (1 << 2) : 0) +
(settings.bNetDedicated ? (1 << 3) : 0) +
(PlayModeToInt(settings.PlayMode) << 4);
}
};
static FPlaySettings RetrieveSettings(const ULevelEditorPlaySettings* PlayInSettings)
{
check(PlayInSettings);
FPlaySettings settings;
settings.PlayMode = PlayInSettings->LastExecutedPlayModeType;
PlayInSettings->GetPlayNumberOfClients(settings.NumberOfClients);
#if ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION <= 24
PlayInSettings->GetPlayNetDedicated(settings.bNetDedicated);
#else
settings.bNetDedicated = PlayInSettings->bLaunchSeparateServer;
#endif
settings.bSpawnAtPlayerStart = PlayInSettings->LastExecutedPlayModeLocation == PlayLocation_DefaultPlayerStart;
return settings;
}
static void UpdateSettings(ULevelEditorPlaySettings* PlayInSettings, const FPlaySettings& settings)
{
check(PlayInSettings);
PlayInSettings->SetPlayNumberOfClients(settings.NumberOfClients);
#if ENGINE_MAJOR_VERSION == 4 && ENGINE_MINOR_VERSION <= 24
PlayInSettings->SetPlayNetDedicated(settings.bNetDedicated);
#else
PlayInSettings->bLaunchSeparateServer = settings.bNetDedicated;
#endif
PlayInSettings->LastExecutedPlayModeLocation =
settings.bSpawnAtPlayerStart
? PlayLocation_DefaultPlayerStart
: PlayLocation_CurrentCameraLocation;
PlayInSettings->LastExecutedPlayModeType = settings.PlayMode;
PlayInSettings->PostEditChange();
PlayInSettings->SaveConfig();
}
struct FCachedCommandInfo
{
FName CommandName;
TSharedPtr<FUICommandInfo> Command;
};
class FRiderGameControlActionsCache
{
public:
FRiderGameControlActionsCache();
~FRiderGameControlActionsCache();
private:
void UpdatePlayWorldCommandsCache();
public:
FCachedCommandInfo PlayModeCommands[PlayMode_Count] = {
{TEXT("PlayInViewport")},
{TEXT("PlayInEditorFloating")},
{TEXT("PlayInMobilePreview")},
{FName()},
{TEXT("PlayInVulkanPreview")},
{TEXT("PlayInNewProcess")},
{TEXT("PlayInVR")},
{TEXT("Simulate")},
};
FCachedCommandInfo ResumePlaySession = {TEXT("ResumePlaySession")};
FCachedCommandInfo PausePlaySession = {TEXT("PausePlaySession")};
FCachedCommandInfo StopPlaySession = {TEXT("StopPlaySession")};
FCachedCommandInfo SingleFrameAdvance = {TEXT("SingleFrameAdvance")};
private:
FDelegateHandle CommandsChangedHandle;
};
FRiderGameControlActionsCache::FRiderGameControlActionsCache()
{
const FName PlayWorldContextName = FName("PlayWorld");
TSharedPtr<FBindingContext> PlayWorldContext = FInputBindingManager::Get().GetContextByName(PlayWorldContextName);
if (PlayWorldContext.IsValid())
{
UpdatePlayWorldCommandsCache();
}
CommandsChangedHandle = FBindingContext::CommandsChanged.AddLambda(
[this, PlayWorldContextName](const FBindingContext& Ctx)
{
if (Ctx.GetContextName() == PlayWorldContextName)
{
UpdatePlayWorldCommandsCache();
}
}
);
}
FRiderGameControlActionsCache::~FRiderGameControlActionsCache()
{
FBindingContext::CommandsChanged.Remove(CommandsChangedHandle);
}
void FRiderGameControlActionsCache::UpdatePlayWorldCommandsCache()
{
FInputBindingManager& BindingManager = FInputBindingManager::Get();
auto CacheCommand = [&] (FCachedCommandInfo &Cmd, const FName &ContextName)
{
Cmd.Command = BindingManager.FindCommandInContext(ContextName, Cmd.CommandName);
};
const FName PlayWorldContextName = FName("PlayWorld");
for (FCachedCommandInfo& PlayModeCommand : PlayModeCommands)
{
if (PlayModeCommands->CommandName.IsNone()) continue;
CacheCommand(PlayModeCommand, PlayWorldContextName);
}
CacheCommand(ResumePlaySession, PlayWorldContextName);
CacheCommand(PausePlaySession, PlayWorldContextName);
CacheCommand(StopPlaySession, PlayWorldContextName);
CacheCommand(SingleFrameAdvance, PlayWorldContextName);
}
class FRiderGameControl
{
public:
FRiderGameControl(rd::Lifetime Lifetime, JetBrains::EditorPlugin::RdEditorModel const &Model, FRiderGameControlActionsCache& ActionsCache);
~FRiderGameControl();
private:
void RequestPlayWorldCommand(const FCachedCommandInfo& CommandInfo, int RequestID);
void SendRequestSucceed(int RequestID);
void SendRequestFailed(int RequestID, JetBrains::EditorPlugin::NotificationType Type, const FString& Message);
void ScheduleModelAction(TFunction<void(JetBrains::EditorPlugin::RdEditorModel const&)> Action);
private:
FRiderGameControlActionsCache& Actions;
JetBrains::EditorPlugin::RdEditorModel const &Model;
int32_t playMode;
FDelegateHandle BeginPIEHandle;
FDelegateHandle EndPIEHandle;
FDelegateHandle PausePIEHandle;
FDelegateHandle ResumePIEHandle;
FDelegateHandle SingleStepPIEHandle;
FDelegateHandle OnObjectPropertyChangedHandle;
};
void FRiderGameControl::SendRequestSucceed(int RequestID)
{
using namespace JetBrains::EditorPlugin;
ScheduleModelAction([=](RdEditorModel const& EditorModel)
{
EditorModel.get_notificationReplyFromEditor().fire(RequestSucceed(RequestID));
});
}
void FRiderGameControl::SendRequestFailed(int RequestID, JetBrains::EditorPlugin::NotificationType Type,
const FString& Message)
{
using namespace JetBrains::EditorPlugin;
ScheduleModelAction([=](RdEditorModel const& EditorModel)
{
EditorModel.get_notificationReplyFromEditor().fire(RequestFailed(Type, Message, RequestID));
});
}
void FRiderGameControl::RequestPlayWorldCommand(const FCachedCommandInfo& CommandInfo, int RequestID)
{
using namespace JetBrains::EditorPlugin;
if (!CommandInfo.Command.IsValid())
{
const FString Message = FString::Format(TEXT("Command '{0}' was not executed.\nCommand was not registered in Unreal Engine"),
{CommandInfo.CommandName.ToString()});
SendRequestFailed(RequestID, NotificationType::Error, Message);
return;
}
AsyncTask(ENamedThreads::GameThread, [this, RequestID, CommandInfo]()
{
if (FPlayWorldCommands::GlobalPlayWorldActions->TryExecuteAction(CommandInfo.Command.ToSharedRef()))
{
SendRequestSucceed(RequestID);
}
else
{
const FString Message = FString::Format(TEXT("Command '{0}' was not executed.\nRejected by Unreal Engine"),
{CommandInfo.CommandName.ToString()});
SendRequestFailed(RequestID, NotificationType::Message, Message);
}
});
}
void FRiderGameControl::ScheduleModelAction(TFunction<void(JetBrains::EditorPlugin::RdEditorModel const&)> Action)
{
IRiderLinkModule& RiderLinkModule = IRiderLinkModule::Get();
RiderLinkModule.QueueAction([Action, this]()
{
Action(Model);
});
}
FRiderGameControl::FRiderGameControl(rd::Lifetime Lifetime, JetBrains::EditorPlugin::RdEditorModel const &Model, FRiderGameControlActionsCache& ActionsCache) :
Actions(ActionsCache), Model(Model)
{
using namespace JetBrains::EditorPlugin;
// Subscribe to Editor events
Lifetime->bracket(
[this]()
{
BeginPIEHandle = FEditorDelegates::BeginPIE.AddLambda([this](const bool)
{
ScheduleModelAction([](RdEditorModel const& model)
{
model.get_playStateFromEditor().fire(PlayState::Play);
});
});
EndPIEHandle = FEditorDelegates::EndPIE.AddLambda([this](const bool)
{
ScheduleModelAction([](RdEditorModel const& model)
{
model.get_playStateFromEditor().fire(PlayState::Idle);
});
});
PausePIEHandle = FEditorDelegates::PausePIE.AddLambda([this](const bool)
{
ScheduleModelAction([](RdEditorModel const& model)
{
model.get_playStateFromEditor().fire(PlayState::Pause);
});
});
ResumePIEHandle = FEditorDelegates::ResumePIE.AddLambda([this](const bool)
{
ScheduleModelAction([](RdEditorModel const& model)
{
model.get_playStateFromEditor().fire(PlayState::Play);
});
});
SingleStepPIEHandle = FEditorDelegates::SingleStepPIE.AddLambda([this](const bool)
{
ScheduleModelAction([](RdEditorModel const& model)
{
model.get_playStateFromEditor().fire(PlayState::Play);
model.get_playStateFromEditor().fire(PlayState::Pause);
});
});
OnObjectPropertyChangedHandle = FCoreUObjectDelegates::OnObjectPropertyChanged.AddLambda(
[this](UObject* obj, FPropertyChangedEvent& ev)
{
ULevelEditorPlaySettings* PlayInSettings = GetMutableDefault<ULevelEditorPlaySettings>();
if (!PlayInSettings || obj != PlayInSettings) return;
const FPlaySettings Settings = RetrieveSettings(PlayInSettings);
int PlayModeNew = FPlaySettings::PackToMode(Settings);
if (PlayModeNew == playMode) return;
playMode = PlayModeNew;
ScheduleModelAction([PlayModeNew](RdEditorModel const& Model)
{
Model.get_playModeFromEditor().fire(PlayModeNew);
});
}
);
},
[this]()
{
FCoreUObjectDelegates::OnObjectPropertyChanged.Remove(OnObjectPropertyChangedHandle);
FEditorDelegates::SingleStepPIE.Remove(SingleStepPIEHandle);
FEditorDelegates::ResumePIE.Remove(ResumePIEHandle);
FEditorDelegates::PausePIE.Remove(PausePIEHandle);
FEditorDelegates::EndPIE.Remove(EndPIEHandle);
FEditorDelegates::BeginPIE.Remove(BeginPIEHandle);
}
);
// Subscribe to model
ScheduleModelAction([Lifetime, this](RdEditorModel const& Model)
{
Model.get_requestPlayFromRider()
.advise(Lifetime, [this](int requestID)
{
const ULevelEditorPlaySettings* PlayInSettings
= GetDefault<ULevelEditorPlaySettings>();
check(PlayInSettings);
const EPlayModeType PlayMode = PlayInSettings->LastExecutedPlayModeType;
RequestPlayWorldCommand(Actions.PlayModeCommands[PlayMode], requestID);
}
);
Model.get_requestPauseFromRider()
.advise(Lifetime, [this](int requestID)
{
RequestPlayWorldCommand(Actions.PausePlaySession, requestID);
}
);
Model.get_requestResumeFromRider()
.advise(Lifetime, [this](int requestID)
{
RequestPlayWorldCommand(Actions.ResumePlaySession, requestID);
}
);
Model.get_requestStopFromRider()
.advise(Lifetime, [this](int requestID)
{
RequestPlayWorldCommand(Actions.StopPlaySession, requestID);
}
);
Model.get_requestFrameSkipFromRider()
.advise(Lifetime, [this](int requestID)
{
RequestPlayWorldCommand(Actions.SingleFrameAdvance, requestID);
}
);
Model.get_playModeFromRider()
.advise(Lifetime, [this](int32_t mode)
{
ULevelEditorPlaySettings* PlayInSettings
= GetMutableDefault<ULevelEditorPlaySettings>();
check(PlayInSettings);
const FPlaySettings NewSettings = FPlaySettings::UnpackFromMode(mode);
UpdateSettings(PlayInSettings, NewSettings);
}
);
});
// Initial sync.
const ULevelEditorPlaySettings* PlayInSettings = GetDefault<ULevelEditorPlaySettings>();
check(PlayInSettings);
const FPlaySettings Settings = RetrieveSettings(PlayInSettings);
playMode = FPlaySettings::PackToMode(Settings);
ScheduleModelAction([lambdaPlayMode=playMode](RdEditorModel const &Model)
{
Model.get_playModeFromEditor().fire(lambdaPlayMode);
});
// After all initialization finished/scheduled - mark that module was initialized
Lifetime->bracket(
[this]()
{
ScheduleModelAction([](RdEditorModel const& Model)
{
Model.get_isGameControlModuleInitialized().set(true);
});
},
[this]()
{
ScheduleModelAction([](RdEditorModel const& Model)
{
Model.get_isGameControlModuleInitialized().set(false);
});
}
);
}
FRiderGameControl::~FRiderGameControl()
{
}
void FRiderGameControlModule::StartupModule()
{
using namespace JetBrains::EditorPlugin;
UE_LOG(FLogRiderGameControlModule, Verbose, TEXT("STARTUP START"));
// Actions cache is not related to connection and its lifetimes
ActionsCache = MakeUnique<FRiderGameControlActionsCache>();
IRiderLinkModule& RiderLinkModule = IRiderLinkModule::Get();
ModuleLifetimeDefinition = RiderLinkModule.CreateNestedLifetimeDefinition();
rd::Lifetime ModuleLifetime = ModuleLifetimeDefinition.lifetime;
RiderLinkModule.ViewModel(
ModuleLifetime,
[&](rd::Lifetime ModelLifetime, RdEditorModel const& Model)
{
ModelLifetime->add_action([&]() { GameControl.Reset(); });
GameControl = MakeUnique<FRiderGameControl>(ModelLifetime, Model, *ActionsCache);
}
);
UE_LOG(FLogRiderGameControlModule, Verbose, TEXT("STARTUP FINISH"));
}
void FRiderGameControlModule::ShutdownModule()
{
UE_LOG(FLogRiderGameControlModule, Verbose, TEXT("SHUTDOWN START"));
ModuleLifetimeDefinition.terminate();
ActionsCache.Reset();
UE_LOG(FLogRiderGameControlModule, Verbose, TEXT("SHUTDOWN FINISH"));
}
#undef LOCTEXT_NAMESPACE |