Remove the package update table in favor of an activatable query that sweeps through all actors in the Scene to update their overlays
Activate said query when the SCC status of an object changes
TEDS:
Fix a crash with activatable queries where you could have duplicates in the pending activatable queries, but unregistering a query only removed one instance
PrimitiveComponent:
Add functionality to persist OverlayColor in UPrimitiveComponent using the ComponentInstanceDataCache
#rb brooke.hubert
[CL 36828353 by aditya ravichandran in 5.5 branch]
Original CL Desc
-----------------------------------------------------------------
[Backout] - CL36477705
[FYI] brooke.hubert
Original CL Desc
-----------------------------------------------------------------
[TEDS] Deprecate accessor functions for TEDS features inside the TypedElementRegistry class
#jira UE-224434
#rb logan.buchy, ronald.koppers
[CL 36749089 by brooke hubert in 5.5 branch]
[FYI] brooke.hubert
Original CL Desc
-----------------------------------------------------------------
[TEDS] Deprecate accessor functions for TEDS features inside the TypedElementRegistry class
#jira UE-224434
#rb logan.buchy, ronald.koppers
[CL 36747703 by bob tellez in 5.5 branch]
#rb juan.legaz
#jira UE-224100
- Calls to FPerforceSourceControlProvider::GetStatus on the GameThread will end up using the persistent connection to determine the current workspace root. Before this change the persistent connection was not getting updated when the user changed the workspace via the UX, so we'd return the root of the original workspace when the editor started up, if one had been set.
- Added a call to reset the persistent connection when the FConnect command is run, we can then let the persistent connection be recreated when it is next requested.
- Changed FPerforceSourceControlProvider::PersistentConnection from a raw pointer to TUniquePtr to make management of it a bit easier.
[CL 36258840 by paul chipchase in 5.5 branch]
[FYI] paul.chipchase
Original CL Desc
-----------------------------------------------------------------
Perforce will now return the correct workspace root after a user has changed the workspace via the UX.
#rb juan.legaz
#jira UE-224100
- Calls to FPerforceSourceControlProvider::GetStatus on the GameThread will end up using the persistent connection to determine the current workspace root. Before this change the persistent connection was not getting updated when the user changed the workspace via the UX, so we'd return the root of the original workspace when the editor started up, if one had been set.
- Added a call to reset the persistent connection when the FConnect command is run, we can then let the persistent connection be recreated when it is next requested.
- Changed FPerforceSourceControlProvider::PersistentConnection from a raw pointer to TUniquePtr to make management of it a bit easier.
[CL 36230464 by paul chipchase in 5.5 branch]
#rb juan.legaz
#jira UE-224100
- Calls to FPerforceSourceControlProvider::GetStatus on the GameThread will end up using the persistent connection to determine the current workspace root. Before this change the persistent connection was not getting updated when the user changed the workspace via the UX, so we'd return the root of the original workspace when the editor started up, if one had been set.
- Added a call to reset the persistent connection when the FConnect command is run, we can then let the persistent connection be recreated when it is next requested.
- Changed FPerforceSourceControlProvider::PersistentConnection from a raw pointer to TUniquePtr to make management of it a bit easier.
[CL 36228097 by paul chipchase in 5.5 branch]
#rb juan.legaz, wouter.burgers
#jira UE-223965
### Problem
- Previously when storing the workspace root we assumed it would be a directory path and so normalized it to make sure that there was no trailing slash so that our file path parsing code in ::ParseOpenedResults would be consistent. Note that this was changed back in CL 23945151, before that the root could have a trailing slash or not which could cause issues.
- This assumption didn't work if the user decided to use a volume root (i.e D:\) as the workspace root, as in our path utilities normalizing code assumes that volume roots should end with a trailing slash. This in turn would result in local file paths being generated by ::ParseOpenedResults that contained duplicate slashes in the path.
- It is also worth noting that other source control implementations were specifically adding trailing slashes to their equivalents of the workspace root, so forcing perforce roots to not have the trailing slash was inconsistent with other implementations too.
### Solution
- We now enforce that the workspace root ends with a trailing slash unless the workspace root is null, and parse the results accordingly.
- We also removed duplicate slashes from the client root as perforce seems to technically support that even if p4v has issues with workspaces set up like this. At the very least this will move any issues from that to be pure perforce issues and not in our own parsing code.
[CL 36220660 by paul chipchase in 5.5 branch]
Also cleaning up some of the nested namespaces per last CR, and some CoreMinimal.h includes switched to ICWYU
#rnx
#jira UE-221957
#rb ronald.koppers
[CL 35790037 by brooke hubert in ue5-main branch]
Stacks queries into subqueries that only fire when necessary, drastically reduces time spent per frame. (~40ms on huge levels down to ~2us)
#rb brooke.hubert, logan.buchy, ronald.koppers
[CL 35157261 by zach rammell in ue5-main branch]
This ensures that we use the changelist type from the server which was being dropped
#rb alan.kwan, paul.chipchase
#rnx
[CL 34089332 by juan legaz in ue5-main branch]
Refactored the TSharedFromThis code to enforce a compile error when trying to create a TSharedPtr with multiple TSharedFromThis bases.
Fixed fallout.
#rb devin.doucette
[CL 33610597 by steve robb in ue5-main branch]
* Fix mixed file/folder selection to properly resolve all items in selection
* Fix revert writable to use filtered file list instead of full file list.
* Expose the number of paths required to trigger user dialog about large operations so it can be customized per operation
#tests Tested copy remote paths action with files, folders and a mix, including local only files
[REVIEW] [at]aditya.ravichandran [at]Julien.StJean [at]lauren.barnes
#rb brooke.hubert, wouter.burgers
[CL 33533507 by christian savoie in ue5-main branch]
#rb Juan.Legaz
#jira UE-212182
#rnx
- We default to the old behavior, so that the default way of creating a source control provider (no FSourceControlInitSettings) will read all of the commandline parameters available and the newer way (creating a provider with a FSourceControlInitSettings) will ignore the commandline.
[CL 33001499 by paul chipchase in ue5-main branch]