2016-12-08 08:52:44 -05:00
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
2014-03-14 14:13:41 -04:00
Copying //UE4/Dev-Build to //UE4/Dev-Main (Source: //UE4/Dev-Build @ 3209340)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3209340 on 2016/11/23 by Ben.Marsh
Convert UE4 codebase to an "include what you use" model - where every header just includes the dependencies it needs, rather than every source file including large monolithic headers like Engine.h and UnrealEd.h.
Measured full rebuild times around 2x faster using XGE on Windows, and improvements of 25% or more for incremental builds and full rebuilds on most other platforms.
* Every header now includes everything it needs to compile.
* There's a CoreMinimal.h header that gets you a set of ubiquitous types from Core (eg. FString, FName, TArray, FVector, etc...). Most headers now include this first.
* There's a CoreTypes.h header that sets up primitive UE4 types and build macros (int32, PLATFORM_WIN64, etc...). All headers in Core include this first, as does CoreMinimal.h.
* Every .cpp file includes its matching .h file first.
* This helps validate that each header is including everything it needs to compile.
* No engine code includes a monolithic header such as Engine.h or UnrealEd.h any more.
* You will get a warning if you try to include one of these from the engine. They still exist for compatibility with game projects and do not produce warnings when included there.
* There have only been minor changes to our internal games down to accommodate these changes. The intent is for this to be as seamless as possible.
* No engine code explicitly includes a precompiled header any more.
* We still use PCHs, but they're force-included on the compiler command line by UnrealBuildTool instead. This lets us tune what they contain without breaking any existing include dependencies.
* PCHs are generated by a tool to get a statistical amount of coverage for the source files using it, and I've seeded the new shared PCHs to contain any header included by > 15% of source files.
Tool used to generate this transform is at Engine\Source\Programs\IncludeTool.
[CL 3209342 by Ben Marsh in Main branch]
2016-11-23 15:48:37 -05:00
# include "FuncTestManager.h"
# include "Misc/CoreMisc.h"
2014-06-25 05:47:19 -04:00
# include "Engine/World.h"
Copying //UE4/Dev-Build to //UE4/Dev-Main (Source: //UE4/Dev-Build @ 3209340)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3209340 on 2016/11/23 by Ben.Marsh
Convert UE4 codebase to an "include what you use" model - where every header just includes the dependencies it needs, rather than every source file including large monolithic headers like Engine.h and UnrealEd.h.
Measured full rebuild times around 2x faster using XGE on Windows, and improvements of 25% or more for incremental builds and full rebuilds on most other platforms.
* Every header now includes everything it needs to compile.
* There's a CoreMinimal.h header that gets you a set of ubiquitous types from Core (eg. FString, FName, TArray, FVector, etc...). Most headers now include this first.
* There's a CoreTypes.h header that sets up primitive UE4 types and build macros (int32, PLATFORM_WIN64, etc...). All headers in Core include this first, as does CoreMinimal.h.
* Every .cpp file includes its matching .h file first.
* This helps validate that each header is including everything it needs to compile.
* No engine code includes a monolithic header such as Engine.h or UnrealEd.h any more.
* You will get a warning if you try to include one of these from the engine. They still exist for compatibility with game projects and do not produce warnings when included there.
* There have only been minor changes to our internal games down to accommodate these changes. The intent is for this to be as seamless as possible.
* No engine code explicitly includes a precompiled header any more.
* We still use PCHs, but they're force-included on the compiler command line by UnrealBuildTool instead. This lets us tune what they contain without breaking any existing include dependencies.
* PCHs are generated by a tool to get a statistical amount of coverage for the source files using it, and I've seeded the new shared PCHs to contain any header included by > 15% of source files.
Tool used to generate this transform is at Engine\Source\Programs\IncludeTool.
[CL 3209342 by Ben Marsh in Main branch]
2016-11-23 15:48:37 -05:00
# include "Engine/Engine.h"
# include "EngineUtils.h"
# include "FunctionalTest.h"
# include "FunctionalTestingManager.h"
# include "FunctionalTestingModule.h"
# include "EngineGlobals.h"
2014-03-14 14:13:41 -04:00
DEFINE_LOG_CATEGORY ( LogFunctionalTest ) ;
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
FFuncTestManager : : FFuncTestManager ( )
{
Copying //UE4/Fortnite-Staging to //UE4/Dev-Main (Source: //Fortnite/Main @ 3284787)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3284469 on 2017/02/02 by Saul.Abreu
Fixed comment on Slate Brush for getting the resource object and what kind of object it may be.
Change 3284410 on 2017/02/02 by Ben.Zeigler
Add FSlateBrush subclass constructors that take resource objects, to create static brushes at startup time that refer to already loaded UTextures
Change 3284381 on 2017/02/02 by Saul.Abreu
#fortnite
Added functionality to common button to actually use the single material brush setting and automatically create and expose access to a material instance dynamic.
Also fixed some potential object lifetime issues in CommonButton.
Change 3282423 on 2017/02/01 by Ben.Zeigler
Fix issue with synchronous load of objects not invalidating cached nulls for asset ptrs. This was always an issue but my recent change to assetptr SynchronousLoad made it manifest more often.
In the future we may want to invalidate cached nulls on object creation to handle cases like save games
Change 3282265 on 2017/02/01 by Ian.Fox
#UE4, #XMPP - Reduce verbosity of strophe receive-stanza log
Change 3282159 on 2017/02/01 by Ben.Zeigler
Fix issue where async loading null string reference would deadlock
Change 3282054 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-28234 Fix sceImeDialogTerm() warning
We were calling sceImeDialogTerm() in cases where the dialog wasn't active. The only state it's legitimate to call sceImeDialogTerm() in is SCE_IME_DIALOG_STATUS_FINISHED.
Change 3282051 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-30021 Respect bVirtualKeyboardSendsTextChanged on PS4
Change 3281799 on 2017/02/01 by Nick.Cooper
#Fortnite - Removed code on PS4 that was adding a EMouseButtons::Left press when the right shoulder button was pressed
#jira FORT-35821
Change 3281771 on 2017/02/01 by Lukasz.Furman
fixed end of path conditions breaking movement when path starts with a navlink and turn back below
#jira FORT-36375
Change 3280579 on 2017/01/31 by Ben.Zeigler
Remove ForEachProperty and switch AssetManager to use TPropertyValueIterator instead. Code review changes to TPropertyValueIterator.
Add InitializeAssetBundlesFromMetadata to AssetManager which parses AssetBundles metadata at load/save time and uses that to assign asset references to specific bundles.
Add RecursivelyExpandBundleData to allow recursively acquiring bundle dependencies.
Add AssetBundles to the PropertyMetadata list. Sorted list and fixed some comment typos.
Change it so the DataAsset factory won't show blueprintable native classes as valid, the editor doesn't like it when you have both blueprinted and non-blueprinted assets of the same base class.
Change AssetPtr.LoadSynchronous to be const and to behave the same as Get(). This was a licensee complaint and the old behavior to null out the reference because of a transient load error can cause data loss.
Change 3280176 on 2017/01/31 by Lukasz.Furman
fixed missing navmesh update on replacing existing floor/roof
#jira FORT-36369
Change 3279761 on 2017/01/31 by Saul.Abreu
#fortnite
Added ability to keep common buttons interactable even when they're selected, so they can still be clicked. Old default behavior is preserved.
Change 3279678 on 2017/01/31 by Saul.Abreu
#fortnite
Moved GetCurrentInputType from UCommonActionWidget to UCommonUIContext for reuse.
Change 3278593 on 2017/01/30 by Ben.Zeigler
Delay initialization of asset registry tag filter list until it is needed, to make sure it catches modules that were loaded after the asset registry module. Fixes issues with tags not inherting to child classes
Change 3278592 on 2017/01/30 by Ben.Zeigler
Add TPropertyValueIterator to replace ForEachProperty. This is a recursive iterator instead of a predicate search, and also allows extracting the property chain, which I need for metadata parsing.
AssetManager has an example of both uses, will delete ForEachProperty tomorrow.
Change 3277859 on 2017/01/30 by Lukasz.Furman
fixed navigation path postprocessing not working with vertical navlinks near start point
required by taker portal up move
#jira FORT-36570
Change 3277580 on 2017/01/30 by Ben.Zeigler
#jira FORT-36662 Return streamable manager to always use hard references, weak references do not work during AddReferencedObjects at all, because of the unreachable flag that is set during GC. This returns the behavior of forcing assets to be "Force Deleted" if they were loaded by asset manager.
Change 3276903 on 2017/01/29 by Bob.Tellez
#BlueprintContext Updated copyright notice for 2017
Change 3276902 on 2017/01/29 by Bob.Tellez
#CommonUI Updated some missed copyright notices for 2017
Change 3276731 on 2017/01/29 by Jeff.Campeau
Forward modified warning messages
Change 3276642 on 2017/01/28 by Jeff.Campeau
Change specific errors from packaging multiple configurations into a single package into warnings.
Change 3276228 on 2017/01/27 by Ben.Zeigler
Fix crash/data loss when a Pin's DefaultObject points to an ObjectRedirector. FixObject will return redirectors so you need to correct for that
Change 3276073 on 2017/01/27 by Ben.Zeigler
Add some utility functions to core asset manager and streamablemanager and fix various editor interactions.
Add startup and cook interaction hooks to AssetManager directly and call them form Engine in addition to the game-specific hooks.
Add concept of BulkScanning to AssetManager, use this when scanning many directories.
Fix issues with string asset references being wrong for blueprint classes, this would be easier if the assetdata pointed to the class and not the possibly-missing blueprint.
Change StreamableManager to keep referenced objects as weak pointers. These pointers are effectively soft in the editor, hard outside of the editor. By storing them as raw pointers it was difficult to guarantee their safety without causing issues with deleting assets.
Change 3276058 on 2017/01/27 by Ben.Zeigler
Add UStruct::ForEachProperty, which recursively iterates properties of a struct and calls a lambda.
Add some new BaseStructure accessors
Change 3275981 on 2017/01/27 by Alex.Thurman
Move Item Management Screen input handling into child activatable panels.
#JIRA FORT-35759
#JIRA FORT-35758
Change 3275626 on 2017/01/27 by John.Pollard
First pass at implementing net relevancy for replays
* All connections are considered when determing if an actor is relevant
* Enable by setting demo.UseNetRelevancy to 1
* Override cull distance with demo.CullDistanceOverride
Change 3275221 on 2017/01/27 by John.Pollard
FORT-36482 - Fix issue with using wrong serializer for re-mapping objects
Change 3274149 on 2017/01/26 by Alex.Thurman
Expose the Common Widget Switcher as part of the common UI plugin library.
#fort
Change 3274103 on 2017/01/26 by Michael.Trepka
Fixed a crash on startup on Mac when using a shader cache populated during cooking and re-enabled cook time cache generation in Fortnite
Change 3273867 on 2017/01/26 by James.Hopkin
Enabled Stomp for PS4
#jira FORT-35517
Change 3273749 on 2017/01/26 by James.Hopkin
Added libwebsocket libraries for PS4
#jira FORT-35517
Change 3273105 on 2017/01/26 by James.Hopkin
Moved libwebsockets.h into platform-specific folders (in preparation for PS4 building against slightly more recent version)
Change 3273020 on 2017/01/26 by Jeff.Campeau
Stage manifest files from loose folder, not binary folder (appdata.bin is no longer created in the binary directory)
Change 3272825 on 2017/01/25 by Saad.Nader
#fort
Added function to set the auto activation on or off on a common widget switcher.
Updated CommonTabListWidget to temporarily turn off activation when setting a linked switcher.
Added some missing delegate cleanup code.
Change 3272598 on 2017/01/25 by Justin.Augspurger
#fortnite
Add activatable panel function that returns if an input handler is set.
Change 3272411 on 2017/01/25 by Michael.Trepka
Increased g.TimeoutForBlockOnRenderFence on Mac to 5 minutes
Change 3271913 on 2017/01/25 by Lukasz.Furman
fixed conditions of movement's destinaiton oveshot check to work with setup in FTest maps
#jira FORT-36375
Change 3271723 on 2017/01/25 by Bob.Tellez
#UE4 Disabled MfMedia on windows.
Change 3271223 on 2017/01/25 by Jeff.Campeau
Allow packaging to fall back to the engine directory for the lastchunk file if it's not present in the staged version.
Change 3271066 on 2017/01/24 by Chris.Gagnon
- Properly clean up the UIManager and Analog Cursor when game/pie exists.
- FortAnalogCursor now sequesters the mouse during InputSuspension.
- Change the callback order for activate and deactivate so the classes can chain activate.
Change 3271064 on 2017/01/24 by Chris.Gagnon
- NavigateToWidget() added to SlateApplication
- SlistView and it's descendants now have the ability to navigate to the widget scrolled into view
Change 3270778 on 2017/01/24 by Michael.Trepka
Fixed and enabled cook time binary shader cache generation for Mac
Change 3270645 on 2017/01/24 by Jeff.Campeau
- New manifest generation (backward compatible)
- True support for multiconfig packages
- Settings all based in target settings in editor
- Localized package resources with support to reduce redundancies
- Resource table generation and manifest generation combined
- Further reduced unneeded deploy copies
#jira FORT-36413
Change 3270191 on 2017/01/24 by Lukasz.Furman
reverted file unrelated to DecoyDistance fix
Change 3270133 on 2017/01/24 by Lukasz.Furman
fixed item scoring in DecoyDistance test
#jira FORT-36034
Change 3269363 on 2017/01/24 by James.Hopkin
#online #stomp Added error logging for loss of heartbeat
#jira FORT-34763
Change 3268921 on 2017/01/23 by Saul.Abreu
#fortnite
Renamed CommonWidgetGroup to emphasize that it is an abstract base class. Added ability to get the selected button out of CommonButtonGroup.
Change 3268913 on 2017/01/23 by Saul.Abreu
#fortnite
Recreated some minor changes to UEnumProperty so that TMap properties don't assert with enums as keys.
Change 3268436 on 2017/01/23 by Michael.Trepka
Added rhi.Metal.AllowRHIThread to allow games to disable RHI thread on Mac to be able to use shader cache, which currently is incompatible with RHI thread. Disabled RHI thread on Mac in Fortnite.
Also, temporarily disabled Metal validation layer in Fortnite until I have more information on the cost of various levels of validation.
Change 3266945 on 2017/01/20 by Bob.Tellez
#UE4 Allowing more configurations to generate debug symbols
Change 3266814 on 2017/01/20 by Bob.Tellez
#UE4 Moved MfMedia video track handling to the render thread, which removes the need for some buffer management in MediaTextureResource.cpp. Also, Mfmedia now emits the PlaybackEndReached event.
#JIRA FORT-31753
Change 3266541 on 2017/01/20 by Lukasz.Furman
moved navigation export of building actor's static mesh into owning actor data instead of using parent chain,
attempt to fix husks passing through walls that lost navigation data at some point during game
#jira FORT-35741
Change 3266269 on 2017/01/20 by Fred.Kimberley
Change async loading of gameplay cues so that the gameplay cue manager maintains ownership of the assets and can control their lifetime.
Change 3266053 on 2017/01/20 by Michael.Trepka
Fixed issues with shader cache not working properly with Mac Metal (but it still requires -norhithread to work at all). Enabled the shader cache by default if RHI thread is disabled.
Change 3265585 on 2017/01/20 by Bart.Hawthorne
Enable Oodle in Fortnite
Change 3264678 on 2017/01/19 by Lukasz.Furman
fixed crash on opening behavior trees with invalid decorator class (empty redirectors)
#ue4
Change 3264473 on 2017/01/19 by Fred.Kimberley
Tell the streamable manager to manage gameplay cue assets that are async loaded.
#jira FORT-35171
Change 3262846 on 2017/01/18 by John.Pollard
FORT-30352 - Fix by lowering network logging verbosity for benign condition
Change 3262535 on 2017/01/18 by Michael.Trepka
Fix for FORT-35776
Make sure to set reasterizer state when rendering with a material in FSlateRHIRenderingPolicy::DrawElements
Change 3262386 on 2017/01/18 by John.Pollard
Deprecate bPendingNetUpdate, NetUpdateTime and LastNetUpdateTime
Change 3262375 on 2017/01/18 by Ian.Fox
#UE4, #XMPP - Handle Message stanza errors
#JIRA OGS-505
Change 3262262 on 2017/01/18 by John.Pollard
Turn on adaptive network updates by default
Change 3262215 on 2017/01/18 by Rob.Cannaday
Fix for returned XMPP messages (to invalid recipient) triggering on message received delegates
Change 3262094 on 2017/01/18 by Jamie.Dale
Cook on the fly builds now resolve string asset references
Change 3262091 on 2017/01/18 by Jamie.Dale
Guarding against potentially invalid call to FString::Mid
Change 3262089 on 2017/01/18 by Jamie.Dale
Fixing RedirectCollector issues with projects outside the UE4 directory
It was storing relative paths, but MakeStandardFilename wouldn't make a relative path for anything outside of the UE4 directory. In addition to this, some code was testing filters using package style paths, so I converted all the code to use package style paths instead.
Change 3261201 on 2017/01/17 by Ben.Zeigler
Perf improvements to PackageName that improve cooked load times by around a second. These string functions get called very often and Split is very slow, especially backwards searching or case insensitive.
Change 3261098 on 2017/01/17 by John.Pollard
Fix for FORT-35711 - Edited buildings do not always replicate correctly
We were removing the actor from the network object list too soon
Change 3260515 on 2017/01/17 by John.Abercrombie
Fix MoveTo task ending with success when it's interrupted
- Default the task to an invalid status rather than assuming we are successful
#jira FORT-35497 - Defender can pick up a weapon from far away as they get knocked DBNO
Change 3260343 on 2017/01/17 by Lukasz.Furman
fixed end of path conditions for crowd simulation when using string pulled path
#jira FORT-35713
Change 3259419 on 2017/01/16 by John.Pollard
Network actor list fixes:
* Don't add add actor to network list if it will just immediately get removed
* Remove destroyed actors from actor list on clients
* Make sure actor Role is set to correct value before adding to network actor list
Change 3259104 on 2017/01/16 by Michael.Trepka
Change the default for rhi.Metal.RuntimeDebugLevel to 2, as 3 is too expensive for Development builds and disable METAL_DEBUG_OPTIONS in Test builds
Change 3259017 on 2017/01/16 by Saad.Nader
#fort
Added a missing remove delegate handler when widget is destructed.
Change 3258901 on 2017/01/16 by Saad.Nader
#fort
Added the ability to remove an input action from the list of actions we are listening for in an activatable panel.
Change 3258844 on 2017/01/16 by Ryan.Rauschkolb
#fortnite
Fixed issue where UUMGSequencePlayer:Tick would broadcast OnAnimationFinished before the final frame of the animation plays
Change 3258734 on 2017/01/16 by Michael.Trepka
Fixed a crash on exit on Mac in FCocoaWindow's windowWillResize:
#jira FORT-35720
Change 3258353 on 2017/01/16 by James.Hopkin
#xmpp Fixed UserJid constructor to be constructed by value - same efficiency, less code and allows any combination of rvalues and lvalues.
Change 3257640 on 2017/01/13 by Saul.Abreu
#fortnite
#jira FORT-35387
Item Quantity List widget, not yet complete.
Minor tweak to widget factory (for pooling) to support player controllers as "outer"s.
In progress refactor of list of resources given for a mulch operation, using the item quantity list widget.
Change 3257310 on 2017/01/13 by Bob.Tellez
#UE4 Default stack size for windows is now configurable. There is a different number for windows editor targets than non-editor targets.
Change 3257094 on 2017/01/13 by John.Pollard
Refactor network actor list management to be more efficient
* Move dormancy list management to FNetworkObjectList
* Optimize actor network dormancy by removing actors from the active list that are dormant on all connections
* Removed NetUpdateTime on actor, and now use the NextUpdateTime on FNetworkObjectInfo (these values are more hot in the cache too)
* We now early out of the consider logic faster when possible
* Remove other misc unused network state/code and general cleanup
Change 3255891 on 2017/01/12 by Chris.Gagnon
Added "Back" action to squads screens and armory landing.
Added activation widget centering for squads screens.
Added a couple Explicit navigations to get a better navigation experience.
Added a bunch of Fkeys to the input binding table.
Added PanelButton Widget.
Change 3254809 on 2017/01/11 by Bob.Tellez
#UE4 Crash fix for shader views that get destroyed but still have pointers to them in the SRV cache.
Change 3254651 on 2017/01/11 by Bob.Tellez
#UE4 Changed MfMedia track sync mode to Unbuffered since buffered causes a crash shortly after playing.
#JIRA FORT-35566
Change 3254307 on 2017/01/11 by Lukasz.Furman
fixed "Ftest start" command interfering with automation passes
#jira FORT-35459
Change 3253625 on 2017/01/11 by Lukasz.Furman
more accurate overshot detection for crowd simulation trying to reach last path corner
#jira FORT-35502
Change 3252864 on 2017/01/10 by Lina.Halper
fix for invalid anim curve issue when duplicating curves.
#jira: FORT-35151
Change 3252427 on 2017/01/10 by Ben.Zeigler
#jira UE-40390 Fix crash saving blueprint with an inherited DataTable/CurveTable reference. Delta serialization meant that the necessary name wasn't in the name table, so adding it manually now.
Copied from CL #3252418
Change 3252344 on 2017/01/10 by Lukasz.Furman
added navmesh tile observation to hotspots
now they will be able to reevaluate unreachable slots if nearby navmesh is updated (active only when more than half melee slots is unreachable)
#jira FORT-35450
Change 3251644 on 2017/01/09 by Saul.Abreu
#fortnite
#jira FORT-35388
Refactored common input so that the actions hold the per-platform key mappings. A config file holds the mapping of individual keys to their per-platform display data (icon-only for now). ALL ENTRIES IN THE INPUT ACTION DATA TABLE ARE NOW MISSING THEIR KEYS. RE-ADD THEM. I did test that it works.
Change 3251118 on 2017/01/09 by David.Hamm
Corrected ability system logging messages that are turning up in bug reports.
Change 3250932 on 2017/01/09 by Bob.Tellez
#UE4 Unshelved from DanielW. Fix for memory usage during map save for large maps
Change 3250093 on 2017/01/06 by Jeff.Campeau
libstrophe UE4 modifications
Change 3249787 on 2017/01/06 by John.Pollard
Add some replay/network stats
Change 3248808 on 2017/01/05 by Chris.Gagnon
Fix for ensuring Main Tabs properly activates it's content.
Includes a pretty hacky delay, will need to deal with that at somepoint.
Change 3248693 on 2017/01/05 by Chris.Gagnon
NavigationEvent now gets populated with the modifier keys so that Shift and Ctrl behaviors of the list work.
Change 3248647 on 2017/01/05 by Saul.Abreu
Fixed shadowed variable warning in Create Event node.
Change 3248358 on 2017/01/05 by Saul.Abreu
Added return type/outputs to the signature displayed in the CreateEvent node. Also added tooltip describing the syntax for display since it's non-standard.
Change 3247937 on 2017/01/05 by Chris.Gagnon
- Refactored the Custom Navigation Event to be a part of the Viewport so that it functions properly with Multi PIE and doesn't interfere with the Editor while PIE is running.
- Added the ability for an FReply to specify an explict navigation attempt directly.
- Added ENavigationGenesis to the navigation system allowing SListView and STileView's bHandleGamepadEvents functionality to be hooked up again.
Change 3247887 on 2017/01/05 by Bob.Tellez
#UE4 UpdateExistingPackagePriorities does not work in EDL. It is now disabled.
#JIRA FORT-35193
Change 3247770 on 2017/01/05 by Fred.Kimberley
Fix an issue where PreAttributeBaseChange was not always being called and sometimes called after the attribute base value had changed.
Change 3247133 on 2017/01/04 by Saul.Abreu
UWidget designer method renaming to avoid extremely likely naming collisions.
Change 3246507 on 2017/01/04 by Chris.Gagnon
Created CommonBorder and UCommonBorderStyle very simple but will allow consistent sharing of styles.
Cleaned up palette category usage and a few misc things.
Updated the UI test material, and created a UI Test BorderStyle to utilize it.
Change 3245517 on 2017/01/03 by Chris.Gagnon
Copying over slate material changes to provide more functionalit.
Added a UITest Material as an example
Change 3245371 on 2017/01/03 by Lukasz.Furman
fixed husks attacking props from far away
#jira FORT-34655
Change 3245363 on 2017/01/03 by Justin.Sargent
Tracked down a CEF viewport scaling issue to some changes made for supporting high DPI. After talking it over with Trepka, we decided to revert the specific change causing the CEF viewport regression. Trepka will be following up with a proper fix.
#jira OPP-6513
Change 3244525 on 2017/01/02 by Chris.Gagnon
Activatable panels now clear out action handlers when the slate widgets are released.
Change 3244517 on 2017/01/02 by Chris.Gagnon
New frontend major refactors.
- New content api for UI States
- New intro / outro functionality for activatable panels
- New CommonWidgetStack widget
- Landing pages
- Navigation suport for SListView, STileView
- Navigation changes
- Lots of New UI layout changes and functionality changes
- More things that I'm forgetting
Change 3242434 on 2016/12/21 by Ben.Zeigler
Improve package saving time by stopping export sorting from recursing into dependencies outside of the package. It has no control over them so it doesn't care about their load order.
Change 3242433 on 2016/12/21 by Ben.Zeigler
Small perf improvement for quad tree, stop it from constantly reallocating memory when removing nodes as they will likely get filled again or the node will get deleted
Change 3242294 on 2016/12/21 by Bob.Tellez
#UE4 Re-applying the fix for rendering editor primitives when r.EarlyZPassOnlyMaterialMasking is enabled
Change 3241034 on 2016/12/20 by John.Abercrombie
Add or UpdateBlueprintSearchMetadata when we don't have a TargetPlatform
- Better fix for issue mentioned in CL 3241023
Change 3241023 on 2016/12/20 by John.Abercrombie
Fixed UBlueprint::PreSave crashing when there is no TargetPlatform (default behavior)
Change 3240988 on 2016/12/20 by Lukasz.Furman
fixed melee defenders not finishing move then their goal is outside tether range
#jira FORT-34673
Change 3240966 on 2016/12/20 by Ben.Zeigler
Disable find in blueprint query when cooking for non editor platforms, saves around 50 seconds off of a Fortnite fast cook.
UBlueprint::PreSave gets called even though they get filtered out of cooked builds, as the filtering is after PreSave.
Change 3240898 on 2016/12/20 by Lukasz.Furman
fixed memory corruption in template A* solver
#fortnite
Change 3239920 on 2016/12/19 by Ben.Zeigler
Fix warning display for string asset references while cooking, now that failed to find errors add to KnownMissing, we need to check KnownMissing before doing the find, and turn off the internal warnings as the redirect collector has more context info
Change 3239819 on 2016/12/19 by Lukasz.Furman
fixed uninitialized debug draw delegate pointers
#ue4
Change 3238789 on 2016/12/16 by Ben.Zeigler
Fix issue where spawned cues triggered from async loads wouldn't have a proper world
Fix issue where bShouldSyncLoad/bShouldAsyncLoad were backwards
Change 3238782 on 2016/12/16 by Ben.Zeigler
#jira FORT-34825 Fix issue where Macro CDOs had corrupted persistent ubergraph frames during blueprint compile on load, by changing it so no CDOs have persistent frames.
This also saves memory as using persistent frames is incorrect for CDOs, things like latent functions do not make sense.
Fix from Dan O'Connor
Change 3238685 on 2016/12/16 by Bob.Tellez
#UE4 Graceful recovery for actors that changed mobility between frames in TextureInstanceManager.
#JIRA FORT-34833
Change 3238671 on 2016/12/16 by Ben.Zeigler
Fix ensure opening widget palette view, it was trying to create asset data for trash classes becuase it was just doing a raw class iterator, which is no longer supported.
Change 3238606 on 2016/12/16 by Rob.Cannaday
Fix crash in FInternetAddrBSD::SetIp when InAddr is an empty string.
#jira FORT-34826
Change 3238594 on 2016/12/16 by Ben.Zeigler
#jira FORT-34704 Fix bNetTemporary actors to be created with reliable packets, to keep sending until their initial send is done.
The code that used to resend incomplete net temporary actors appears to have stopped working sometime during UE4 networking refactors. Remove unused flags related to that code
Change 3238315 on 2016/12/16 by Lukasz.Furman
fixed composite navigation path usage for husks not controlled by crowd simulation
#jira FORT-34509
Change 3238145 on 2016/12/16 by Lukasz.Furman
fixed crash in EQS profiler
#jira FORT-34831
Change 3237479 on 2016/12/15 by Ben.Zeigler
Don't crash if cue manager has no world, not sure how it got into this state
Change 3236992 on 2016/12/15 by Michael.Trepka
Don't fall back to SM4 on Intel GPUs on Mac any more
Change 3236929 on 2016/12/15 by Bob.Tellez
#UE4 Fixed an ensure that was caused by an FResourceSizeEx being initialized with the wrong type
Change 3236867 on 2016/12/15 by Bob.Tellez
#Fortinte Submitted change from Gil to fix EDL crash loading into Outpost on PS4
#JIRA FORT-34794
Change 3236747 on 2016/12/15 by Ben.Zeigler
Fortnite fixes for asset manager/async loading changes
FortItemDefinitions now async load needed assets on demand. Currently this is only loading AttributeTemplate, which may not even be in use
The blueprints needed for weapons are now async loaded when the player puts them on their quickbar, instead of being loaded once and staying in memory forever
FortAssetManager is now being used in parallel to the loading code in FortGlobals, I will remove the FortGlobals code in the next checkin once I know things are working
Change it so the MissionEventNames are loaded asynchronously when clicking the picker, this code was half completed already so I finished it up
Change it so GameplayCueNotifies get async loaded on demand instead of async loaded at startup, this improves startup load times
Change it so the CommonUIModule uses the global assetmanager instead of a passed in StreamableManagerHandler
Item json changed because it got resorted, no actual json changes other than a few cosmetics that were added yesterday
Change it so FortItem implements the mcp item interface directly, instead of FortWorldItem and FortAccountItem implementing it separately
Change 3236746 on 2016/12/15 by Ben.Zeigler
Add ProcessAsyncLoadingUntilComplete which will process async loading until a predicate is true or time runs out
Change streamable manager to return a handle structure, that can be used to block or poll as needed. Active handles will keep objects in memory even after the load finishes
FStreamableManager::SynchronousLoad now does high-priority-async-load-and-wait instead of doing a full async flush/static load object if asynch loading is in progress, this should make stalls much shorter when sync loading a single asset
Deprecate some of the StreamableManager functions now that handles exist. The fact that SynchronousLoad kept an object from ever GCing was not expected behavior by most users
Add Experimental feature AssetManager, which is a global singleton that supports loading assets on demand. It is disabled by default
Add concept of PrimaryAssetID which is a Type:Name pair that globally identifies an asset. This is returned by GetPrimaryAssetId on UObject and is needed for the asset manager to work
Add PrimaryAssetData class, which supports the primary asset and bundle concepts natively
Add concept of an AssetBundleEntry/Data, which is a scoped map from name -> list of assets. If you modify an AssetBundleData it will get baked into the asset registry at runtime
Fix KismetSystemLibrary and GameplayCueManager to use the new streaming functionality
Change 3234031 on 2016/12/13 by Ian.Fox
#UE4, #XMPP - Finish libstrophe MUC (Multi-User Chat) implementation
- Pull history when joining channels
- Handle configuring of XMPP channels we create (and global chat rooms if we managed to create them)
[CL 3291644 by Bob Tellez in Main branch]
2017-02-07 23:55:24 -05:00
bPendingActivation = false ;
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
# if WITH_EDITOR
FWorldDelegates : : GetAssetTags . AddRaw ( this , & FFuncTestManager : : OnGetAssetTagsForWorld ) ;
# endif
}
FFuncTestManager : : ~ FFuncTestManager ( )
{
# if WITH_EDITOR
FWorldDelegates : : GetAssetTags . RemoveAll ( this ) ;
# endif
}
void FFuncTestManager : : OnGetAssetTagsForWorld ( const UWorld * World , TArray < UObject : : FAssetRegistryTag > & OutTags )
{
# if WITH_EDITOR
int32 Tests = 0 ;
FString TestNames ;
for ( TActorIterator < AFunctionalTest > ActorItr ( const_cast < UWorld * > ( World ) ) ; ActorItr ; + + ActorItr )
{
AFunctionalTest * FunctionalTest = * ActorItr ;
// Only include enabled tests in the list of functional tests to run.
if ( FunctionalTest - > IsEnabled ( ) )
{
Tests + + ;
TestNames . Append ( FunctionalTest - > GetActorLabel ( ) + TEXT ( " | " ) + FunctionalTest - > GetName ( ) ) ;
TestNames . Append ( TEXT ( " ; " ) ) ;
}
}
OutTags . Add ( UObject : : FAssetRegistryTag ( " Tests " , FString : : FromInt ( Tests ) , UObject : : FAssetRegistryTag : : TT_Numerical ) ) ;
OutTags . Add ( UObject : : FAssetRegistryTag ( " TestNames " , TestNames , UObject : : FAssetRegistryTag : : TT_Hidden ) ) ;
# endif
}
2014-03-14 14:13:41 -04:00
void FFuncTestManager : : SetScript ( class UFunctionalTestingManager * NewScript )
{
TestScript = NewScript ;
}
2017-06-15 17:45:03 -04:00
UFunctionalTestingManager * FFuncTestManager : : GetCurrentScript ( )
{
return TestScript . Get ( ) ;
}
2014-03-14 14:13:41 -04:00
bool FFuncTestManager : : IsRunning ( ) const
{
return TestScript . IsValid ( ) & & TestScript - > IsRunning ( ) ;
}
2014-12-10 09:17:33 -05:00
bool FFuncTestManager : : IsFinished ( ) const
{
2015-10-06 15:59:09 -04:00
return ( ! TestScript . IsValid ( ) | | TestScript - > IsFinished ( ) ) ;
2014-12-10 09:17:33 -05:00
}
Copying //UE4/Fortnite-Staging to //UE4/Dev-Main (Source: //Fortnite/Main @ 3284787)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3284469 on 2017/02/02 by Saul.Abreu
Fixed comment on Slate Brush for getting the resource object and what kind of object it may be.
Change 3284410 on 2017/02/02 by Ben.Zeigler
Add FSlateBrush subclass constructors that take resource objects, to create static brushes at startup time that refer to already loaded UTextures
Change 3284381 on 2017/02/02 by Saul.Abreu
#fortnite
Added functionality to common button to actually use the single material brush setting and automatically create and expose access to a material instance dynamic.
Also fixed some potential object lifetime issues in CommonButton.
Change 3282423 on 2017/02/01 by Ben.Zeigler
Fix issue with synchronous load of objects not invalidating cached nulls for asset ptrs. This was always an issue but my recent change to assetptr SynchronousLoad made it manifest more often.
In the future we may want to invalidate cached nulls on object creation to handle cases like save games
Change 3282265 on 2017/02/01 by Ian.Fox
#UE4, #XMPP - Reduce verbosity of strophe receive-stanza log
Change 3282159 on 2017/02/01 by Ben.Zeigler
Fix issue where async loading null string reference would deadlock
Change 3282054 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-28234 Fix sceImeDialogTerm() warning
We were calling sceImeDialogTerm() in cases where the dialog wasn't active. The only state it's legitimate to call sceImeDialogTerm() in is SCE_IME_DIALOG_STATUS_FINISHED.
Change 3282051 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-30021 Respect bVirtualKeyboardSendsTextChanged on PS4
Change 3281799 on 2017/02/01 by Nick.Cooper
#Fortnite - Removed code on PS4 that was adding a EMouseButtons::Left press when the right shoulder button was pressed
#jira FORT-35821
Change 3281771 on 2017/02/01 by Lukasz.Furman
fixed end of path conditions breaking movement when path starts with a navlink and turn back below
#jira FORT-36375
Change 3280579 on 2017/01/31 by Ben.Zeigler
Remove ForEachProperty and switch AssetManager to use TPropertyValueIterator instead. Code review changes to TPropertyValueIterator.
Add InitializeAssetBundlesFromMetadata to AssetManager which parses AssetBundles metadata at load/save time and uses that to assign asset references to specific bundles.
Add RecursivelyExpandBundleData to allow recursively acquiring bundle dependencies.
Add AssetBundles to the PropertyMetadata list. Sorted list and fixed some comment typos.
Change it so the DataAsset factory won't show blueprintable native classes as valid, the editor doesn't like it when you have both blueprinted and non-blueprinted assets of the same base class.
Change AssetPtr.LoadSynchronous to be const and to behave the same as Get(). This was a licensee complaint and the old behavior to null out the reference because of a transient load error can cause data loss.
Change 3280176 on 2017/01/31 by Lukasz.Furman
fixed missing navmesh update on replacing existing floor/roof
#jira FORT-36369
Change 3279761 on 2017/01/31 by Saul.Abreu
#fortnite
Added ability to keep common buttons interactable even when they're selected, so they can still be clicked. Old default behavior is preserved.
Change 3279678 on 2017/01/31 by Saul.Abreu
#fortnite
Moved GetCurrentInputType from UCommonActionWidget to UCommonUIContext for reuse.
Change 3278593 on 2017/01/30 by Ben.Zeigler
Delay initialization of asset registry tag filter list until it is needed, to make sure it catches modules that were loaded after the asset registry module. Fixes issues with tags not inherting to child classes
Change 3278592 on 2017/01/30 by Ben.Zeigler
Add TPropertyValueIterator to replace ForEachProperty. This is a recursive iterator instead of a predicate search, and also allows extracting the property chain, which I need for metadata parsing.
AssetManager has an example of both uses, will delete ForEachProperty tomorrow.
Change 3277859 on 2017/01/30 by Lukasz.Furman
fixed navigation path postprocessing not working with vertical navlinks near start point
required by taker portal up move
#jira FORT-36570
Change 3277580 on 2017/01/30 by Ben.Zeigler
#jira FORT-36662 Return streamable manager to always use hard references, weak references do not work during AddReferencedObjects at all, because of the unreachable flag that is set during GC. This returns the behavior of forcing assets to be "Force Deleted" if they were loaded by asset manager.
Change 3276903 on 2017/01/29 by Bob.Tellez
#BlueprintContext Updated copyright notice for 2017
Change 3276902 on 2017/01/29 by Bob.Tellez
#CommonUI Updated some missed copyright notices for 2017
Change 3276731 on 2017/01/29 by Jeff.Campeau
Forward modified warning messages
Change 3276642 on 2017/01/28 by Jeff.Campeau
Change specific errors from packaging multiple configurations into a single package into warnings.
Change 3276228 on 2017/01/27 by Ben.Zeigler
Fix crash/data loss when a Pin's DefaultObject points to an ObjectRedirector. FixObject will return redirectors so you need to correct for that
Change 3276073 on 2017/01/27 by Ben.Zeigler
Add some utility functions to core asset manager and streamablemanager and fix various editor interactions.
Add startup and cook interaction hooks to AssetManager directly and call them form Engine in addition to the game-specific hooks.
Add concept of BulkScanning to AssetManager, use this when scanning many directories.
Fix issues with string asset references being wrong for blueprint classes, this would be easier if the assetdata pointed to the class and not the possibly-missing blueprint.
Change StreamableManager to keep referenced objects as weak pointers. These pointers are effectively soft in the editor, hard outside of the editor. By storing them as raw pointers it was difficult to guarantee their safety without causing issues with deleting assets.
Change 3276058 on 2017/01/27 by Ben.Zeigler
Add UStruct::ForEachProperty, which recursively iterates properties of a struct and calls a lambda.
Add some new BaseStructure accessors
Change 3275981 on 2017/01/27 by Alex.Thurman
Move Item Management Screen input handling into child activatable panels.
#JIRA FORT-35759
#JIRA FORT-35758
Change 3275626 on 2017/01/27 by John.Pollard
First pass at implementing net relevancy for replays
* All connections are considered when determing if an actor is relevant
* Enable by setting demo.UseNetRelevancy to 1
* Override cull distance with demo.CullDistanceOverride
Change 3275221 on 2017/01/27 by John.Pollard
FORT-36482 - Fix issue with using wrong serializer for re-mapping objects
Change 3274149 on 2017/01/26 by Alex.Thurman
Expose the Common Widget Switcher as part of the common UI plugin library.
#fort
Change 3274103 on 2017/01/26 by Michael.Trepka
Fixed a crash on startup on Mac when using a shader cache populated during cooking and re-enabled cook time cache generation in Fortnite
Change 3273867 on 2017/01/26 by James.Hopkin
Enabled Stomp for PS4
#jira FORT-35517
Change 3273749 on 2017/01/26 by James.Hopkin
Added libwebsocket libraries for PS4
#jira FORT-35517
Change 3273105 on 2017/01/26 by James.Hopkin
Moved libwebsockets.h into platform-specific folders (in preparation for PS4 building against slightly more recent version)
Change 3273020 on 2017/01/26 by Jeff.Campeau
Stage manifest files from loose folder, not binary folder (appdata.bin is no longer created in the binary directory)
Change 3272825 on 2017/01/25 by Saad.Nader
#fort
Added function to set the auto activation on or off on a common widget switcher.
Updated CommonTabListWidget to temporarily turn off activation when setting a linked switcher.
Added some missing delegate cleanup code.
Change 3272598 on 2017/01/25 by Justin.Augspurger
#fortnite
Add activatable panel function that returns if an input handler is set.
Change 3272411 on 2017/01/25 by Michael.Trepka
Increased g.TimeoutForBlockOnRenderFence on Mac to 5 minutes
Change 3271913 on 2017/01/25 by Lukasz.Furman
fixed conditions of movement's destinaiton oveshot check to work with setup in FTest maps
#jira FORT-36375
Change 3271723 on 2017/01/25 by Bob.Tellez
#UE4 Disabled MfMedia on windows.
Change 3271223 on 2017/01/25 by Jeff.Campeau
Allow packaging to fall back to the engine directory for the lastchunk file if it's not present in the staged version.
Change 3271066 on 2017/01/24 by Chris.Gagnon
- Properly clean up the UIManager and Analog Cursor when game/pie exists.
- FortAnalogCursor now sequesters the mouse during InputSuspension.
- Change the callback order for activate and deactivate so the classes can chain activate.
Change 3271064 on 2017/01/24 by Chris.Gagnon
- NavigateToWidget() added to SlateApplication
- SlistView and it's descendants now have the ability to navigate to the widget scrolled into view
Change 3270778 on 2017/01/24 by Michael.Trepka
Fixed and enabled cook time binary shader cache generation for Mac
Change 3270645 on 2017/01/24 by Jeff.Campeau
- New manifest generation (backward compatible)
- True support for multiconfig packages
- Settings all based in target settings in editor
- Localized package resources with support to reduce redundancies
- Resource table generation and manifest generation combined
- Further reduced unneeded deploy copies
#jira FORT-36413
Change 3270191 on 2017/01/24 by Lukasz.Furman
reverted file unrelated to DecoyDistance fix
Change 3270133 on 2017/01/24 by Lukasz.Furman
fixed item scoring in DecoyDistance test
#jira FORT-36034
Change 3269363 on 2017/01/24 by James.Hopkin
#online #stomp Added error logging for loss of heartbeat
#jira FORT-34763
Change 3268921 on 2017/01/23 by Saul.Abreu
#fortnite
Renamed CommonWidgetGroup to emphasize that it is an abstract base class. Added ability to get the selected button out of CommonButtonGroup.
Change 3268913 on 2017/01/23 by Saul.Abreu
#fortnite
Recreated some minor changes to UEnumProperty so that TMap properties don't assert with enums as keys.
Change 3268436 on 2017/01/23 by Michael.Trepka
Added rhi.Metal.AllowRHIThread to allow games to disable RHI thread on Mac to be able to use shader cache, which currently is incompatible with RHI thread. Disabled RHI thread on Mac in Fortnite.
Also, temporarily disabled Metal validation layer in Fortnite until I have more information on the cost of various levels of validation.
Change 3266945 on 2017/01/20 by Bob.Tellez
#UE4 Allowing more configurations to generate debug symbols
Change 3266814 on 2017/01/20 by Bob.Tellez
#UE4 Moved MfMedia video track handling to the render thread, which removes the need for some buffer management in MediaTextureResource.cpp. Also, Mfmedia now emits the PlaybackEndReached event.
#JIRA FORT-31753
Change 3266541 on 2017/01/20 by Lukasz.Furman
moved navigation export of building actor's static mesh into owning actor data instead of using parent chain,
attempt to fix husks passing through walls that lost navigation data at some point during game
#jira FORT-35741
Change 3266269 on 2017/01/20 by Fred.Kimberley
Change async loading of gameplay cues so that the gameplay cue manager maintains ownership of the assets and can control their lifetime.
Change 3266053 on 2017/01/20 by Michael.Trepka
Fixed issues with shader cache not working properly with Mac Metal (but it still requires -norhithread to work at all). Enabled the shader cache by default if RHI thread is disabled.
Change 3265585 on 2017/01/20 by Bart.Hawthorne
Enable Oodle in Fortnite
Change 3264678 on 2017/01/19 by Lukasz.Furman
fixed crash on opening behavior trees with invalid decorator class (empty redirectors)
#ue4
Change 3264473 on 2017/01/19 by Fred.Kimberley
Tell the streamable manager to manage gameplay cue assets that are async loaded.
#jira FORT-35171
Change 3262846 on 2017/01/18 by John.Pollard
FORT-30352 - Fix by lowering network logging verbosity for benign condition
Change 3262535 on 2017/01/18 by Michael.Trepka
Fix for FORT-35776
Make sure to set reasterizer state when rendering with a material in FSlateRHIRenderingPolicy::DrawElements
Change 3262386 on 2017/01/18 by John.Pollard
Deprecate bPendingNetUpdate, NetUpdateTime and LastNetUpdateTime
Change 3262375 on 2017/01/18 by Ian.Fox
#UE4, #XMPP - Handle Message stanza errors
#JIRA OGS-505
Change 3262262 on 2017/01/18 by John.Pollard
Turn on adaptive network updates by default
Change 3262215 on 2017/01/18 by Rob.Cannaday
Fix for returned XMPP messages (to invalid recipient) triggering on message received delegates
Change 3262094 on 2017/01/18 by Jamie.Dale
Cook on the fly builds now resolve string asset references
Change 3262091 on 2017/01/18 by Jamie.Dale
Guarding against potentially invalid call to FString::Mid
Change 3262089 on 2017/01/18 by Jamie.Dale
Fixing RedirectCollector issues with projects outside the UE4 directory
It was storing relative paths, but MakeStandardFilename wouldn't make a relative path for anything outside of the UE4 directory. In addition to this, some code was testing filters using package style paths, so I converted all the code to use package style paths instead.
Change 3261201 on 2017/01/17 by Ben.Zeigler
Perf improvements to PackageName that improve cooked load times by around a second. These string functions get called very often and Split is very slow, especially backwards searching or case insensitive.
Change 3261098 on 2017/01/17 by John.Pollard
Fix for FORT-35711 - Edited buildings do not always replicate correctly
We were removing the actor from the network object list too soon
Change 3260515 on 2017/01/17 by John.Abercrombie
Fix MoveTo task ending with success when it's interrupted
- Default the task to an invalid status rather than assuming we are successful
#jira FORT-35497 - Defender can pick up a weapon from far away as they get knocked DBNO
Change 3260343 on 2017/01/17 by Lukasz.Furman
fixed end of path conditions for crowd simulation when using string pulled path
#jira FORT-35713
Change 3259419 on 2017/01/16 by John.Pollard
Network actor list fixes:
* Don't add add actor to network list if it will just immediately get removed
* Remove destroyed actors from actor list on clients
* Make sure actor Role is set to correct value before adding to network actor list
Change 3259104 on 2017/01/16 by Michael.Trepka
Change the default for rhi.Metal.RuntimeDebugLevel to 2, as 3 is too expensive for Development builds and disable METAL_DEBUG_OPTIONS in Test builds
Change 3259017 on 2017/01/16 by Saad.Nader
#fort
Added a missing remove delegate handler when widget is destructed.
Change 3258901 on 2017/01/16 by Saad.Nader
#fort
Added the ability to remove an input action from the list of actions we are listening for in an activatable panel.
Change 3258844 on 2017/01/16 by Ryan.Rauschkolb
#fortnite
Fixed issue where UUMGSequencePlayer:Tick would broadcast OnAnimationFinished before the final frame of the animation plays
Change 3258734 on 2017/01/16 by Michael.Trepka
Fixed a crash on exit on Mac in FCocoaWindow's windowWillResize:
#jira FORT-35720
Change 3258353 on 2017/01/16 by James.Hopkin
#xmpp Fixed UserJid constructor to be constructed by value - same efficiency, less code and allows any combination of rvalues and lvalues.
Change 3257640 on 2017/01/13 by Saul.Abreu
#fortnite
#jira FORT-35387
Item Quantity List widget, not yet complete.
Minor tweak to widget factory (for pooling) to support player controllers as "outer"s.
In progress refactor of list of resources given for a mulch operation, using the item quantity list widget.
Change 3257310 on 2017/01/13 by Bob.Tellez
#UE4 Default stack size for windows is now configurable. There is a different number for windows editor targets than non-editor targets.
Change 3257094 on 2017/01/13 by John.Pollard
Refactor network actor list management to be more efficient
* Move dormancy list management to FNetworkObjectList
* Optimize actor network dormancy by removing actors from the active list that are dormant on all connections
* Removed NetUpdateTime on actor, and now use the NextUpdateTime on FNetworkObjectInfo (these values are more hot in the cache too)
* We now early out of the consider logic faster when possible
* Remove other misc unused network state/code and general cleanup
Change 3255891 on 2017/01/12 by Chris.Gagnon
Added "Back" action to squads screens and armory landing.
Added activation widget centering for squads screens.
Added a couple Explicit navigations to get a better navigation experience.
Added a bunch of Fkeys to the input binding table.
Added PanelButton Widget.
Change 3254809 on 2017/01/11 by Bob.Tellez
#UE4 Crash fix for shader views that get destroyed but still have pointers to them in the SRV cache.
Change 3254651 on 2017/01/11 by Bob.Tellez
#UE4 Changed MfMedia track sync mode to Unbuffered since buffered causes a crash shortly after playing.
#JIRA FORT-35566
Change 3254307 on 2017/01/11 by Lukasz.Furman
fixed "Ftest start" command interfering with automation passes
#jira FORT-35459
Change 3253625 on 2017/01/11 by Lukasz.Furman
more accurate overshot detection for crowd simulation trying to reach last path corner
#jira FORT-35502
Change 3252864 on 2017/01/10 by Lina.Halper
fix for invalid anim curve issue when duplicating curves.
#jira: FORT-35151
Change 3252427 on 2017/01/10 by Ben.Zeigler
#jira UE-40390 Fix crash saving blueprint with an inherited DataTable/CurveTable reference. Delta serialization meant that the necessary name wasn't in the name table, so adding it manually now.
Copied from CL #3252418
Change 3252344 on 2017/01/10 by Lukasz.Furman
added navmesh tile observation to hotspots
now they will be able to reevaluate unreachable slots if nearby navmesh is updated (active only when more than half melee slots is unreachable)
#jira FORT-35450
Change 3251644 on 2017/01/09 by Saul.Abreu
#fortnite
#jira FORT-35388
Refactored common input so that the actions hold the per-platform key mappings. A config file holds the mapping of individual keys to their per-platform display data (icon-only for now). ALL ENTRIES IN THE INPUT ACTION DATA TABLE ARE NOW MISSING THEIR KEYS. RE-ADD THEM. I did test that it works.
Change 3251118 on 2017/01/09 by David.Hamm
Corrected ability system logging messages that are turning up in bug reports.
Change 3250932 on 2017/01/09 by Bob.Tellez
#UE4 Unshelved from DanielW. Fix for memory usage during map save for large maps
Change 3250093 on 2017/01/06 by Jeff.Campeau
libstrophe UE4 modifications
Change 3249787 on 2017/01/06 by John.Pollard
Add some replay/network stats
Change 3248808 on 2017/01/05 by Chris.Gagnon
Fix for ensuring Main Tabs properly activates it's content.
Includes a pretty hacky delay, will need to deal with that at somepoint.
Change 3248693 on 2017/01/05 by Chris.Gagnon
NavigationEvent now gets populated with the modifier keys so that Shift and Ctrl behaviors of the list work.
Change 3248647 on 2017/01/05 by Saul.Abreu
Fixed shadowed variable warning in Create Event node.
Change 3248358 on 2017/01/05 by Saul.Abreu
Added return type/outputs to the signature displayed in the CreateEvent node. Also added tooltip describing the syntax for display since it's non-standard.
Change 3247937 on 2017/01/05 by Chris.Gagnon
- Refactored the Custom Navigation Event to be a part of the Viewport so that it functions properly with Multi PIE and doesn't interfere with the Editor while PIE is running.
- Added the ability for an FReply to specify an explict navigation attempt directly.
- Added ENavigationGenesis to the navigation system allowing SListView and STileView's bHandleGamepadEvents functionality to be hooked up again.
Change 3247887 on 2017/01/05 by Bob.Tellez
#UE4 UpdateExistingPackagePriorities does not work in EDL. It is now disabled.
#JIRA FORT-35193
Change 3247770 on 2017/01/05 by Fred.Kimberley
Fix an issue where PreAttributeBaseChange was not always being called and sometimes called after the attribute base value had changed.
Change 3247133 on 2017/01/04 by Saul.Abreu
UWidget designer method renaming to avoid extremely likely naming collisions.
Change 3246507 on 2017/01/04 by Chris.Gagnon
Created CommonBorder and UCommonBorderStyle very simple but will allow consistent sharing of styles.
Cleaned up palette category usage and a few misc things.
Updated the UI test material, and created a UI Test BorderStyle to utilize it.
Change 3245517 on 2017/01/03 by Chris.Gagnon
Copying over slate material changes to provide more functionalit.
Added a UITest Material as an example
Change 3245371 on 2017/01/03 by Lukasz.Furman
fixed husks attacking props from far away
#jira FORT-34655
Change 3245363 on 2017/01/03 by Justin.Sargent
Tracked down a CEF viewport scaling issue to some changes made for supporting high DPI. After talking it over with Trepka, we decided to revert the specific change causing the CEF viewport regression. Trepka will be following up with a proper fix.
#jira OPP-6513
Change 3244525 on 2017/01/02 by Chris.Gagnon
Activatable panels now clear out action handlers when the slate widgets are released.
Change 3244517 on 2017/01/02 by Chris.Gagnon
New frontend major refactors.
- New content api for UI States
- New intro / outro functionality for activatable panels
- New CommonWidgetStack widget
- Landing pages
- Navigation suport for SListView, STileView
- Navigation changes
- Lots of New UI layout changes and functionality changes
- More things that I'm forgetting
Change 3242434 on 2016/12/21 by Ben.Zeigler
Improve package saving time by stopping export sorting from recursing into dependencies outside of the package. It has no control over them so it doesn't care about their load order.
Change 3242433 on 2016/12/21 by Ben.Zeigler
Small perf improvement for quad tree, stop it from constantly reallocating memory when removing nodes as they will likely get filled again or the node will get deleted
Change 3242294 on 2016/12/21 by Bob.Tellez
#UE4 Re-applying the fix for rendering editor primitives when r.EarlyZPassOnlyMaterialMasking is enabled
Change 3241034 on 2016/12/20 by John.Abercrombie
Add or UpdateBlueprintSearchMetadata when we don't have a TargetPlatform
- Better fix for issue mentioned in CL 3241023
Change 3241023 on 2016/12/20 by John.Abercrombie
Fixed UBlueprint::PreSave crashing when there is no TargetPlatform (default behavior)
Change 3240988 on 2016/12/20 by Lukasz.Furman
fixed melee defenders not finishing move then their goal is outside tether range
#jira FORT-34673
Change 3240966 on 2016/12/20 by Ben.Zeigler
Disable find in blueprint query when cooking for non editor platforms, saves around 50 seconds off of a Fortnite fast cook.
UBlueprint::PreSave gets called even though they get filtered out of cooked builds, as the filtering is after PreSave.
Change 3240898 on 2016/12/20 by Lukasz.Furman
fixed memory corruption in template A* solver
#fortnite
Change 3239920 on 2016/12/19 by Ben.Zeigler
Fix warning display for string asset references while cooking, now that failed to find errors add to KnownMissing, we need to check KnownMissing before doing the find, and turn off the internal warnings as the redirect collector has more context info
Change 3239819 on 2016/12/19 by Lukasz.Furman
fixed uninitialized debug draw delegate pointers
#ue4
Change 3238789 on 2016/12/16 by Ben.Zeigler
Fix issue where spawned cues triggered from async loads wouldn't have a proper world
Fix issue where bShouldSyncLoad/bShouldAsyncLoad were backwards
Change 3238782 on 2016/12/16 by Ben.Zeigler
#jira FORT-34825 Fix issue where Macro CDOs had corrupted persistent ubergraph frames during blueprint compile on load, by changing it so no CDOs have persistent frames.
This also saves memory as using persistent frames is incorrect for CDOs, things like latent functions do not make sense.
Fix from Dan O'Connor
Change 3238685 on 2016/12/16 by Bob.Tellez
#UE4 Graceful recovery for actors that changed mobility between frames in TextureInstanceManager.
#JIRA FORT-34833
Change 3238671 on 2016/12/16 by Ben.Zeigler
Fix ensure opening widget palette view, it was trying to create asset data for trash classes becuase it was just doing a raw class iterator, which is no longer supported.
Change 3238606 on 2016/12/16 by Rob.Cannaday
Fix crash in FInternetAddrBSD::SetIp when InAddr is an empty string.
#jira FORT-34826
Change 3238594 on 2016/12/16 by Ben.Zeigler
#jira FORT-34704 Fix bNetTemporary actors to be created with reliable packets, to keep sending until their initial send is done.
The code that used to resend incomplete net temporary actors appears to have stopped working sometime during UE4 networking refactors. Remove unused flags related to that code
Change 3238315 on 2016/12/16 by Lukasz.Furman
fixed composite navigation path usage for husks not controlled by crowd simulation
#jira FORT-34509
Change 3238145 on 2016/12/16 by Lukasz.Furman
fixed crash in EQS profiler
#jira FORT-34831
Change 3237479 on 2016/12/15 by Ben.Zeigler
Don't crash if cue manager has no world, not sure how it got into this state
Change 3236992 on 2016/12/15 by Michael.Trepka
Don't fall back to SM4 on Intel GPUs on Mac any more
Change 3236929 on 2016/12/15 by Bob.Tellez
#UE4 Fixed an ensure that was caused by an FResourceSizeEx being initialized with the wrong type
Change 3236867 on 2016/12/15 by Bob.Tellez
#Fortinte Submitted change from Gil to fix EDL crash loading into Outpost on PS4
#JIRA FORT-34794
Change 3236747 on 2016/12/15 by Ben.Zeigler
Fortnite fixes for asset manager/async loading changes
FortItemDefinitions now async load needed assets on demand. Currently this is only loading AttributeTemplate, which may not even be in use
The blueprints needed for weapons are now async loaded when the player puts them on their quickbar, instead of being loaded once and staying in memory forever
FortAssetManager is now being used in parallel to the loading code in FortGlobals, I will remove the FortGlobals code in the next checkin once I know things are working
Change it so the MissionEventNames are loaded asynchronously when clicking the picker, this code was half completed already so I finished it up
Change it so GameplayCueNotifies get async loaded on demand instead of async loaded at startup, this improves startup load times
Change it so the CommonUIModule uses the global assetmanager instead of a passed in StreamableManagerHandler
Item json changed because it got resorted, no actual json changes other than a few cosmetics that were added yesterday
Change it so FortItem implements the mcp item interface directly, instead of FortWorldItem and FortAccountItem implementing it separately
Change 3236746 on 2016/12/15 by Ben.Zeigler
Add ProcessAsyncLoadingUntilComplete which will process async loading until a predicate is true or time runs out
Change streamable manager to return a handle structure, that can be used to block or poll as needed. Active handles will keep objects in memory even after the load finishes
FStreamableManager::SynchronousLoad now does high-priority-async-load-and-wait instead of doing a full async flush/static load object if asynch loading is in progress, this should make stalls much shorter when sync loading a single asset
Deprecate some of the StreamableManager functions now that handles exist. The fact that SynchronousLoad kept an object from ever GCing was not expected behavior by most users
Add Experimental feature AssetManager, which is a global singleton that supports loading assets on demand. It is disabled by default
Add concept of PrimaryAssetID which is a Type:Name pair that globally identifies an asset. This is returned by GetPrimaryAssetId on UObject and is needed for the asset manager to work
Add PrimaryAssetData class, which supports the primary asset and bundle concepts natively
Add concept of an AssetBundleEntry/Data, which is a scoped map from name -> list of assets. If you modify an AssetBundleData it will get baked into the asset registry at runtime
Fix KismetSystemLibrary and GameplayCueManager to use the new streaming functionality
Change 3234031 on 2016/12/13 by Ian.Fox
#UE4, #XMPP - Finish libstrophe MUC (Multi-User Chat) implementation
- Pull history when joining channels
- Handle configuring of XMPP channels we create (and global chat rooms if we managed to create them)
[CL 3291644 by Bob Tellez in Main branch]
2017-02-07 23:55:24 -05:00
void FFuncTestManager : : MarkPendingActivation ( )
{
bPendingActivation = true ;
}
bool FFuncTestManager : : IsActivationPending ( ) const
{
return bPendingActivation ;
}
2014-03-14 14:13:41 -04:00
void FFuncTestManager : : SetLooping ( const bool bLoop )
{
if ( TestScript . IsValid ( ) )
{
TestScript - > SetLooped ( bLoop ) ;
}
}
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
UWorld * FFuncTestManager : : GetTestWorld ( )
2014-03-14 14:13:41 -04:00
{
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
UWorld * TestWorld = nullptr ;
2015-10-06 15:59:09 -04:00
# if WITH_EDITOR
const TIndirectArray < FWorldContext > & WorldContexts = GEngine - > GetWorldContexts ( ) ;
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
for ( const FWorldContext & Context : WorldContexts )
2014-03-14 14:13:41 -04:00
{
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
if ( ( Context . WorldType = = EWorldType : : PIE ) & & ( Context . World ( ) ! = nullptr ) )
2015-10-06 15:59:09 -04:00
{
TestWorld = Context . World ( ) ;
}
}
# endif
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
if ( ! TestWorld )
2015-10-06 15:59:09 -04:00
{
TestWorld = GWorld ;
Copying //UE4/Dev-Mobile to //UE4/Dev-Main (Source: //UE4/Dev-Mobile @ 3056055)
#lockdown Nick.Penwarden
#rb None
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3011102 on 2016/06/13 by Steve.Cano
After taking a screenshot using glReadPixels, transfer the data to the target buffer from bottom row up to fix the "upside-down" render that OpenGL does. Confirmed with QA (owen.stupka_volt) that this does not appear to be happening on iOS (non-metal devices, inclusion of iOS in write-up was a mistake), verified on an ipod touch 5. Also confirmed that this does not happen on html5, and that Mobile HDR flag does not make a difference in function.
#jira UE-26421
#ue4
#android
Change 3015801 on 2016/06/16 by Dmitriy.Dyomin
Probbably fix for UE-30878, was not able to repro an actual crash(FFoliageInstanceBaseCache::AddInstanceBaseId). Added even more logging in case fix does not work.
#jira UE-30878
Change 3015903 on 2016/06/16 by Dmitriy.Dyomin
Fixed: Levels window has Refresh/UI issues when World Composition is active
#jira UE-26160
Change 3018352 on 2016/06/17 by Chris.Babcock
Handle Android media prepare failure (URL without internet for example)
#jira UE-32029
#ue4
#android
Change 3026387 on 2016/06/24 by Jack.Porter
Remove FFuncTestManager warning about PIE when running on a standalone game binary
Change 3026398 on 2016/06/24 by Jack.Porter
Prevent FSocketBSD::Recv returning false on SE_EWOULDBLOCK
Change 3027553 on 2016/06/25 by Niklas.Smedberg
OpenGL: Made some block size calculation work for arbitrary block sizes (e.g. not pow-of-two).
Change 3027554 on 2016/06/25 by Niklas.Smedberg
Metal: copyFromTexture now gets block-aligned size parameter (e.g. used for texture streaming)
Change 3028061 on 2016/06/26 by Jack.Porter
Fixed a problem where newly discovered instances were not added to an existing session in the Session Browser.
Fixed a problem where selecting an instance in a session with multiple instances didn't deselect the previously selected instance correctly.
Change 3029220 on 2016/06/27 by Steve.Cano
Change Android Tilt values to use GetRotationMatrix/GetOrientation logic, same as java-side android would use, and adjust slightly to match as closely as possible to iOS values for tilt. There is drift and some differences in the "Y" value but the same sort of inconsistencies are also seen on iOS.
#jira UE-6135
#ue4
#android
Change 3030420 on 2016/06/28 by Jack.Porter
Fix crash with RenderOutputValidation when running with cooked content
Change 3030426 on 2016/06/28 by Jack.Porter
Fix to CL 3026398 - make FSocketBSD(IPv6)::Recv(From) return false when recv returns 0.
A return value of 0 indicates the connection was shutdown in an orderly manner.
Change 3030973 on 2016/06/28 by Steve.Cano
Added a landscape downloader background along with the options to change it from within Android settings
#ue4
#android
#jira UE-32318
Change 3031757 on 2016/06/28 by Chris.Babcock
Remove unused methods from AndroidJNI header
#ue4
#android
Change 3032387 on 2016/06/29 by Allan.Bentham
Rename android es31+aep -> glesdeferred.
Change 3032711 on 2016/06/29 by Allan.Bentham
Rename GLSL_310_ES_EXT shader define:
ES31_AEP_PROFILE -> ESDEFERRED_PROFILE
bumped UE_SHADER_GLSL_310_ES_EXT_VER version number.
Change 3033698 on 2016/06/29 by Jack.Porter
Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile)
Change 3034210 on 2016/06/30 by Steve.Cano
Added a new AndroidRuntimeSettings variable that allows creation of installers for both Windows and Mac/Linux if set to true.
#jira UE-32302
#ue4
#android
Change 3034530 on 2016/06/30 by Chris.Babcock
Rename FManifestReader to FAndroidFileManifestReader in AndroidFile
#jira UE-32679
#ue4
#android
Change 3034612 on 2016/06/30 by Steve.Cano
Change Alpha from being set to a range of 0-255 to being in a range of 0-1 (which is the correct range of values)
#jira UE-25325
#ue4
#android
Change 3034679 on 2016/06/30 by Chris.Babcock
Fix tooltip (.command for mac, not .sh)
#jira UE-32302
#ue4
#android
Change 3038881 on 2016/07/05 by Jack.Porter
Package and launch on multiple Android devices simultaneously using the -Device=xxxxxxx+yyyyyyyy+zzzzzzzz format generated by a Project Launcher profile when you select multiple devices
#jira UEMOB-115
Change 3039240 on 2016/07/06 by Jack.Porter
TcpMessageTransport - connection-based message bus transport.
#jira UEMOB-112
#jira UEMOB-113
Change 3039252 on 2016/07/06 by Jack.Porter
Enable messaging and session services and functional testing on Android when launched with -messaging
Android device detection module support for adding port forwarding and connection announcement for TcpMessageTransport
#jira UEMOB-112
#jira UEMOB-113
Change 3039264 on 2016/07/06 by Jack.Porter
Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile)
Change 3040041 on 2016/07/06 by Chris.Babcock
Pass proper value to script generator functions
#jira UE-32861
#ue4
#android
Change 3040890 on 2016/07/07 by Allan.Bentham
Fix shadow crash
#jira UE-32884
Change 3041458 on 2016/07/07 by Peter.Sauerbrei
fix for IOS launch on failures
Change 3041542 on 2016/07/07 by Peter.Sauerbrei
better fix for the multi-device deployment issue
Change 3041774 on 2016/07/07 by Steve.Cano
Fixing crash that occurs when a games app id for Google Play is set before configuring the apk packaging. Also validating the value that is inserted and using it to override any values that have been hand-inserted into the GooglePlayAppID.xml
#jira UE-16992
#android
#ue4
Change 3042222 on 2016/07/08 by Dmitriy.Dyomin
Mobile packaging scenarious
Added a wizard for creating launcher profiles (Android & IOS) for scenario: Minimal App + Downloadable content
Added Archive step to launcher profiles to be able to store build product into specified directory
Changes to a cooker to be able to pack DLC based with a different flavor to a release App
Changes to DLC packaging to be able to build streaming data without chunking pak files
#jira UEMOB-119
Change 3042244 on 2016/07/08 by Dmitriy.Dyomin
Fixed crash in FTcpMessageTransportConnection::Stop
Change 3042270 on 2016/07/08 by Dmitriy.Dyomin
GitHub #2320 : [ULevelStreamingKismet] Load Level Instance, Enables UE4 Users to create multiple transformed instances of a .umap without having to include in persistent level's list ? Rama
contributed by: EverNewJoy
#jira UE-29867
Change 3042449 on 2016/07/08 by Dmitriy.Dyomin
Fixing Mac Editor build erros from CL# 3042222
Change 3042480 on 2016/07/08 by Allan.Bentham
Add ES3.1 profile & compiler_glsl_es3_1 to shaders.
Change 3042481 on 2016/07/08 by Allan.Bentham
hlslcc - ES3.1 changes.
set ES3.1 version number to 310
Do not use ES2 keywords for ES3.1.
Generate Layout Locations for ES3.1
bump version.
Change 3042483 on 2016/07/08 by Allan.Bentham
Add mobile ES3.1 support.
Recreates EGL and ES3.1 context during PlatformInitOpenGL if ES3.1 is required.
Change 3042485 on 2016/07/08 by Allan.Bentham
Undo android XGE change.
Change 3042506 on 2016/07/08 by Dmitriy.Dyomin
One more compile fix from CL# 3042222
Change 3044173 on 2016/07/10 by Dmitriy.Dyomin
UAT: Added support for building target platforms with multiple cook flavors
ex: -targetplatform=Android -cookflavor=ETC1+ETC2
Change 3044213 on 2016/07/11 by Dmitriy.Dyomin
Fixed: Can't stream in a level whose name is a substring of another streaming level
#jira UE-32999
Change 3044221 on 2016/07/11 by Jack.Porter
Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile)
Change 3044815 on 2016/07/11 by Allan.Bentham
Corrected NAME_GLSL_ES3_1_ANDROID format string.
Change 3046911 on 2016/07/12 by Chris.Babcock
Add handling of OnTextChanged for virtual keyboard input on Android
#jira UE-32348
#ue4
#android
Change 3046958 on 2016/07/12 by Chris.Babcock
Rename some functions with Error in the name to prevent false coloring in the logs
#jira UE-30541
#ue4
#android
Change 3047169 on 2016/07/12 by Chris.Babcock
Return player ID and handle auth token for Google Play Games on Android (contributed by gameDNAstudio)
#jira UE-30610
#pr #2372
#ue4
#android
Change 3047406 on 2016/07/12 by Jack.Porter
Add missing import to GameActivity.java
Change 3047442 on 2016/07/13 by Dmitriy.Dyomin
Added: Mobile custom post-process
Limitations: can fetch only from PostProcessInput0 (SceneColor) other scene textures are not supported. Does not support "Replacing the Tonemapper" blendable location.
#jira UEMOB-147
Change 3047466 on 2016/07/13 by Dmitriy.Dyomin
Disabled engine crash handler on Android, system crash handler works more reliably across different os versions/devices
Change 3047746 on 2016/07/13 by Jack.Porter
Rename FBasePassFowardDynamicPointLightInfo
Change 3047778 on 2016/07/13 by Jack.Porter
Missing file for rename FBasePassFowardDynamicPointLightInfo
Change 3047788 on 2016/07/13 by Allan.Bentham
Fix incorrect TargetPlatformDescriptor string generation.
Change 3047790 on 2016/07/13 by Allan.Bentham
Fixed half3x3 matrix use with ES3.1 glsl
Fixed couple of interpolator precision mismatch.
Fixed ES3.1 support detection issues
Change 3047816 on 2016/07/13 by Allan.Bentham
Remove AndroidGL4 remnants.
Change 3048926 on 2016/07/13 by Chris.Babcock
Added detection of Amazon Fire TV to disable requiring virtual joysticks
#ue4
#android
Change 3049335 on 2016/07/14 by Dmitriy.Dyomin
Fixing UAT crash when packaging project for iOS
Change 3049390 on 2016/07/14 by Jack.Porter
Disabled error for warning 4819 "The file contains a character that cannot be represented in the current code page (xxx). Save the file in Unicode format to prevent data loss"
This is triggered by European characters and copyright symbols in source saved as latin-1 when compiling on non-US windows. Seen often in 3rd party headers, eg nvapi.
#code_review: Ben.Marsh
Change 3049391 on 2016/07/14 by Jack.Porter
Fixed incorrect comment order in CL 3049390
Change 3049545 on 2016/07/14 by Dmitriy.Dyomin
Reworking some code from CL#3047442 to make static analizer happy
Change 3049626 on 2016/07/14 by Allan.Bentham
Automatic CSM shader toggling
#jira UE-27429
Change 3051574 on 2016/07/15 by Jack.Porter
Support for lighting channels on Mobile
- Multiple directional lights are supported in different channels but primitives are only affected by the directional light in the first channel they have set
- CSM shadows from stationary or movable directional lights correctly follow their lighting channels
- No channel limitations for dynamic point lights
Notes:
Removed mobile-specific directional light shadowing fields from View uniform buffer and mobile no longers uses SimpleDirectionalLight.
Separate uniform buffers for mobile directional light are generated for each lighting channel.
CSM culling information is now stored in FViewInfo and not per FVisibleLightViewInfo as the visibility bits are per view.
#code_review Daniel.Wright
#jira UEMOB-110
Change 3051699 on 2016/07/15 by Steve.Cano
Preserve the original, pre-transformed input vertices for Slate shaders, which is required to properly do anti-aliasing (the ViewProjection-transformed values were causing the lines to not be drawn).
#jira UE-20320
#ue4
#android
Change 3051744 on 2016/07/15 by Chris.Babcock
Fix Android Vulkan include path checks (contributed by kodomastro)
#jira UE-33311
#PR #2602
#ue4
#android
Change 3052023 on 2016/07/15 by Chris.Babcock
Fix shadowed variables
Change 3052110 on 2016/07/15 by Chris.Babcock
Compile fixes for light channel support on mobile
- missing template
- accessor function for MobileDirectionalLights from scene
Change 3052242 on 2016/07/15 by Chris.Babcock
Compile fixes for light channel support on mobile
- removed dependency on C++14 feature
Change 3052730 on 2016/07/16 by Dmitriy.Dyomin
Win32 build fix
Change 3053041 on 2016/07/17 by Jack.Porter
Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile)
Change 3053054 on 2016/07/17 by Jack.Porter
Changed use of old function ShouldUseDeferredRenderer() to new GetShadingPath()
Change 3053055 on 2016/07/17 by Jack.Porter
Fixed local variable aliasing in unity build
Change 3053206 on 2016/07/18 by Jack.Porter
Support ExecuteJavascript on iOS and Android
Expose ExecuteJavascript to widget blueprint
Fix ExecuteJavascript unicode string support on desktop platforms
#jira UEMOB-152
Change 3053323 on 2016/07/18 by Dmitriy.Dyomin
Added: Ability to set thread affinity for a device in Device Profiles (ex: +CVars=android.SetThreadAffinity=RT 0x02 GT 0x01)
#jira UEMOB-107
Change 3053723 on 2016/07/18 by Jack.Porter
Fix for UnrealTournamentProto.Automation.cs build errors
Change 3055090 on 2016/07/19 by Dmitriy.Dyomin
Junk OnlineBlueprintSupport module binaries
[CL 3056789 by Jack Porter in Main branch]
2016-07-19 19:13:01 -04:00
if ( GIsEditor )
{
UE_LOG ( LogFunctionalTest , Warning , TEXT ( " Functional Test using GWorld. Not correct for PIE " ) ) ;
}
2015-10-06 15:59:09 -04:00
}
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
return TestWorld ;
}
void FFuncTestManager : : RunAllTestsOnMap ( bool bClearLog , bool bRunLooped )
{
if ( UWorld * TestWorld = GetTestWorld ( ) )
2015-10-06 15:59:09 -04:00
{
Copying //UE4/Fortnite-Staging to //UE4/Dev-Main (Source: //Fortnite/Main @ 3284787)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3284469 on 2017/02/02 by Saul.Abreu
Fixed comment on Slate Brush for getting the resource object and what kind of object it may be.
Change 3284410 on 2017/02/02 by Ben.Zeigler
Add FSlateBrush subclass constructors that take resource objects, to create static brushes at startup time that refer to already loaded UTextures
Change 3284381 on 2017/02/02 by Saul.Abreu
#fortnite
Added functionality to common button to actually use the single material brush setting and automatically create and expose access to a material instance dynamic.
Also fixed some potential object lifetime issues in CommonButton.
Change 3282423 on 2017/02/01 by Ben.Zeigler
Fix issue with synchronous load of objects not invalidating cached nulls for asset ptrs. This was always an issue but my recent change to assetptr SynchronousLoad made it manifest more often.
In the future we may want to invalidate cached nulls on object creation to handle cases like save games
Change 3282265 on 2017/02/01 by Ian.Fox
#UE4, #XMPP - Reduce verbosity of strophe receive-stanza log
Change 3282159 on 2017/02/01 by Ben.Zeigler
Fix issue where async loading null string reference would deadlock
Change 3282054 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-28234 Fix sceImeDialogTerm() warning
We were calling sceImeDialogTerm() in cases where the dialog wasn't active. The only state it's legitimate to call sceImeDialogTerm() in is SCE_IME_DIALOG_STATUS_FINISHED.
Change 3282051 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-30021 Respect bVirtualKeyboardSendsTextChanged on PS4
Change 3281799 on 2017/02/01 by Nick.Cooper
#Fortnite - Removed code on PS4 that was adding a EMouseButtons::Left press when the right shoulder button was pressed
#jira FORT-35821
Change 3281771 on 2017/02/01 by Lukasz.Furman
fixed end of path conditions breaking movement when path starts with a navlink and turn back below
#jira FORT-36375
Change 3280579 on 2017/01/31 by Ben.Zeigler
Remove ForEachProperty and switch AssetManager to use TPropertyValueIterator instead. Code review changes to TPropertyValueIterator.
Add InitializeAssetBundlesFromMetadata to AssetManager which parses AssetBundles metadata at load/save time and uses that to assign asset references to specific bundles.
Add RecursivelyExpandBundleData to allow recursively acquiring bundle dependencies.
Add AssetBundles to the PropertyMetadata list. Sorted list and fixed some comment typos.
Change it so the DataAsset factory won't show blueprintable native classes as valid, the editor doesn't like it when you have both blueprinted and non-blueprinted assets of the same base class.
Change AssetPtr.LoadSynchronous to be const and to behave the same as Get(). This was a licensee complaint and the old behavior to null out the reference because of a transient load error can cause data loss.
Change 3280176 on 2017/01/31 by Lukasz.Furman
fixed missing navmesh update on replacing existing floor/roof
#jira FORT-36369
Change 3279761 on 2017/01/31 by Saul.Abreu
#fortnite
Added ability to keep common buttons interactable even when they're selected, so they can still be clicked. Old default behavior is preserved.
Change 3279678 on 2017/01/31 by Saul.Abreu
#fortnite
Moved GetCurrentInputType from UCommonActionWidget to UCommonUIContext for reuse.
Change 3278593 on 2017/01/30 by Ben.Zeigler
Delay initialization of asset registry tag filter list until it is needed, to make sure it catches modules that were loaded after the asset registry module. Fixes issues with tags not inherting to child classes
Change 3278592 on 2017/01/30 by Ben.Zeigler
Add TPropertyValueIterator to replace ForEachProperty. This is a recursive iterator instead of a predicate search, and also allows extracting the property chain, which I need for metadata parsing.
AssetManager has an example of both uses, will delete ForEachProperty tomorrow.
Change 3277859 on 2017/01/30 by Lukasz.Furman
fixed navigation path postprocessing not working with vertical navlinks near start point
required by taker portal up move
#jira FORT-36570
Change 3277580 on 2017/01/30 by Ben.Zeigler
#jira FORT-36662 Return streamable manager to always use hard references, weak references do not work during AddReferencedObjects at all, because of the unreachable flag that is set during GC. This returns the behavior of forcing assets to be "Force Deleted" if they were loaded by asset manager.
Change 3276903 on 2017/01/29 by Bob.Tellez
#BlueprintContext Updated copyright notice for 2017
Change 3276902 on 2017/01/29 by Bob.Tellez
#CommonUI Updated some missed copyright notices for 2017
Change 3276731 on 2017/01/29 by Jeff.Campeau
Forward modified warning messages
Change 3276642 on 2017/01/28 by Jeff.Campeau
Change specific errors from packaging multiple configurations into a single package into warnings.
Change 3276228 on 2017/01/27 by Ben.Zeigler
Fix crash/data loss when a Pin's DefaultObject points to an ObjectRedirector. FixObject will return redirectors so you need to correct for that
Change 3276073 on 2017/01/27 by Ben.Zeigler
Add some utility functions to core asset manager and streamablemanager and fix various editor interactions.
Add startup and cook interaction hooks to AssetManager directly and call them form Engine in addition to the game-specific hooks.
Add concept of BulkScanning to AssetManager, use this when scanning many directories.
Fix issues with string asset references being wrong for blueprint classes, this would be easier if the assetdata pointed to the class and not the possibly-missing blueprint.
Change StreamableManager to keep referenced objects as weak pointers. These pointers are effectively soft in the editor, hard outside of the editor. By storing them as raw pointers it was difficult to guarantee their safety without causing issues with deleting assets.
Change 3276058 on 2017/01/27 by Ben.Zeigler
Add UStruct::ForEachProperty, which recursively iterates properties of a struct and calls a lambda.
Add some new BaseStructure accessors
Change 3275981 on 2017/01/27 by Alex.Thurman
Move Item Management Screen input handling into child activatable panels.
#JIRA FORT-35759
#JIRA FORT-35758
Change 3275626 on 2017/01/27 by John.Pollard
First pass at implementing net relevancy for replays
* All connections are considered when determing if an actor is relevant
* Enable by setting demo.UseNetRelevancy to 1
* Override cull distance with demo.CullDistanceOverride
Change 3275221 on 2017/01/27 by John.Pollard
FORT-36482 - Fix issue with using wrong serializer for re-mapping objects
Change 3274149 on 2017/01/26 by Alex.Thurman
Expose the Common Widget Switcher as part of the common UI plugin library.
#fort
Change 3274103 on 2017/01/26 by Michael.Trepka
Fixed a crash on startup on Mac when using a shader cache populated during cooking and re-enabled cook time cache generation in Fortnite
Change 3273867 on 2017/01/26 by James.Hopkin
Enabled Stomp for PS4
#jira FORT-35517
Change 3273749 on 2017/01/26 by James.Hopkin
Added libwebsocket libraries for PS4
#jira FORT-35517
Change 3273105 on 2017/01/26 by James.Hopkin
Moved libwebsockets.h into platform-specific folders (in preparation for PS4 building against slightly more recent version)
Change 3273020 on 2017/01/26 by Jeff.Campeau
Stage manifest files from loose folder, not binary folder (appdata.bin is no longer created in the binary directory)
Change 3272825 on 2017/01/25 by Saad.Nader
#fort
Added function to set the auto activation on or off on a common widget switcher.
Updated CommonTabListWidget to temporarily turn off activation when setting a linked switcher.
Added some missing delegate cleanup code.
Change 3272598 on 2017/01/25 by Justin.Augspurger
#fortnite
Add activatable panel function that returns if an input handler is set.
Change 3272411 on 2017/01/25 by Michael.Trepka
Increased g.TimeoutForBlockOnRenderFence on Mac to 5 minutes
Change 3271913 on 2017/01/25 by Lukasz.Furman
fixed conditions of movement's destinaiton oveshot check to work with setup in FTest maps
#jira FORT-36375
Change 3271723 on 2017/01/25 by Bob.Tellez
#UE4 Disabled MfMedia on windows.
Change 3271223 on 2017/01/25 by Jeff.Campeau
Allow packaging to fall back to the engine directory for the lastchunk file if it's not present in the staged version.
Change 3271066 on 2017/01/24 by Chris.Gagnon
- Properly clean up the UIManager and Analog Cursor when game/pie exists.
- FortAnalogCursor now sequesters the mouse during InputSuspension.
- Change the callback order for activate and deactivate so the classes can chain activate.
Change 3271064 on 2017/01/24 by Chris.Gagnon
- NavigateToWidget() added to SlateApplication
- SlistView and it's descendants now have the ability to navigate to the widget scrolled into view
Change 3270778 on 2017/01/24 by Michael.Trepka
Fixed and enabled cook time binary shader cache generation for Mac
Change 3270645 on 2017/01/24 by Jeff.Campeau
- New manifest generation (backward compatible)
- True support for multiconfig packages
- Settings all based in target settings in editor
- Localized package resources with support to reduce redundancies
- Resource table generation and manifest generation combined
- Further reduced unneeded deploy copies
#jira FORT-36413
Change 3270191 on 2017/01/24 by Lukasz.Furman
reverted file unrelated to DecoyDistance fix
Change 3270133 on 2017/01/24 by Lukasz.Furman
fixed item scoring in DecoyDistance test
#jira FORT-36034
Change 3269363 on 2017/01/24 by James.Hopkin
#online #stomp Added error logging for loss of heartbeat
#jira FORT-34763
Change 3268921 on 2017/01/23 by Saul.Abreu
#fortnite
Renamed CommonWidgetGroup to emphasize that it is an abstract base class. Added ability to get the selected button out of CommonButtonGroup.
Change 3268913 on 2017/01/23 by Saul.Abreu
#fortnite
Recreated some minor changes to UEnumProperty so that TMap properties don't assert with enums as keys.
Change 3268436 on 2017/01/23 by Michael.Trepka
Added rhi.Metal.AllowRHIThread to allow games to disable RHI thread on Mac to be able to use shader cache, which currently is incompatible with RHI thread. Disabled RHI thread on Mac in Fortnite.
Also, temporarily disabled Metal validation layer in Fortnite until I have more information on the cost of various levels of validation.
Change 3266945 on 2017/01/20 by Bob.Tellez
#UE4 Allowing more configurations to generate debug symbols
Change 3266814 on 2017/01/20 by Bob.Tellez
#UE4 Moved MfMedia video track handling to the render thread, which removes the need for some buffer management in MediaTextureResource.cpp. Also, Mfmedia now emits the PlaybackEndReached event.
#JIRA FORT-31753
Change 3266541 on 2017/01/20 by Lukasz.Furman
moved navigation export of building actor's static mesh into owning actor data instead of using parent chain,
attempt to fix husks passing through walls that lost navigation data at some point during game
#jira FORT-35741
Change 3266269 on 2017/01/20 by Fred.Kimberley
Change async loading of gameplay cues so that the gameplay cue manager maintains ownership of the assets and can control their lifetime.
Change 3266053 on 2017/01/20 by Michael.Trepka
Fixed issues with shader cache not working properly with Mac Metal (but it still requires -norhithread to work at all). Enabled the shader cache by default if RHI thread is disabled.
Change 3265585 on 2017/01/20 by Bart.Hawthorne
Enable Oodle in Fortnite
Change 3264678 on 2017/01/19 by Lukasz.Furman
fixed crash on opening behavior trees with invalid decorator class (empty redirectors)
#ue4
Change 3264473 on 2017/01/19 by Fred.Kimberley
Tell the streamable manager to manage gameplay cue assets that are async loaded.
#jira FORT-35171
Change 3262846 on 2017/01/18 by John.Pollard
FORT-30352 - Fix by lowering network logging verbosity for benign condition
Change 3262535 on 2017/01/18 by Michael.Trepka
Fix for FORT-35776
Make sure to set reasterizer state when rendering with a material in FSlateRHIRenderingPolicy::DrawElements
Change 3262386 on 2017/01/18 by John.Pollard
Deprecate bPendingNetUpdate, NetUpdateTime and LastNetUpdateTime
Change 3262375 on 2017/01/18 by Ian.Fox
#UE4, #XMPP - Handle Message stanza errors
#JIRA OGS-505
Change 3262262 on 2017/01/18 by John.Pollard
Turn on adaptive network updates by default
Change 3262215 on 2017/01/18 by Rob.Cannaday
Fix for returned XMPP messages (to invalid recipient) triggering on message received delegates
Change 3262094 on 2017/01/18 by Jamie.Dale
Cook on the fly builds now resolve string asset references
Change 3262091 on 2017/01/18 by Jamie.Dale
Guarding against potentially invalid call to FString::Mid
Change 3262089 on 2017/01/18 by Jamie.Dale
Fixing RedirectCollector issues with projects outside the UE4 directory
It was storing relative paths, but MakeStandardFilename wouldn't make a relative path for anything outside of the UE4 directory. In addition to this, some code was testing filters using package style paths, so I converted all the code to use package style paths instead.
Change 3261201 on 2017/01/17 by Ben.Zeigler
Perf improvements to PackageName that improve cooked load times by around a second. These string functions get called very often and Split is very slow, especially backwards searching or case insensitive.
Change 3261098 on 2017/01/17 by John.Pollard
Fix for FORT-35711 - Edited buildings do not always replicate correctly
We were removing the actor from the network object list too soon
Change 3260515 on 2017/01/17 by John.Abercrombie
Fix MoveTo task ending with success when it's interrupted
- Default the task to an invalid status rather than assuming we are successful
#jira FORT-35497 - Defender can pick up a weapon from far away as they get knocked DBNO
Change 3260343 on 2017/01/17 by Lukasz.Furman
fixed end of path conditions for crowd simulation when using string pulled path
#jira FORT-35713
Change 3259419 on 2017/01/16 by John.Pollard
Network actor list fixes:
* Don't add add actor to network list if it will just immediately get removed
* Remove destroyed actors from actor list on clients
* Make sure actor Role is set to correct value before adding to network actor list
Change 3259104 on 2017/01/16 by Michael.Trepka
Change the default for rhi.Metal.RuntimeDebugLevel to 2, as 3 is too expensive for Development builds and disable METAL_DEBUG_OPTIONS in Test builds
Change 3259017 on 2017/01/16 by Saad.Nader
#fort
Added a missing remove delegate handler when widget is destructed.
Change 3258901 on 2017/01/16 by Saad.Nader
#fort
Added the ability to remove an input action from the list of actions we are listening for in an activatable panel.
Change 3258844 on 2017/01/16 by Ryan.Rauschkolb
#fortnite
Fixed issue where UUMGSequencePlayer:Tick would broadcast OnAnimationFinished before the final frame of the animation plays
Change 3258734 on 2017/01/16 by Michael.Trepka
Fixed a crash on exit on Mac in FCocoaWindow's windowWillResize:
#jira FORT-35720
Change 3258353 on 2017/01/16 by James.Hopkin
#xmpp Fixed UserJid constructor to be constructed by value - same efficiency, less code and allows any combination of rvalues and lvalues.
Change 3257640 on 2017/01/13 by Saul.Abreu
#fortnite
#jira FORT-35387
Item Quantity List widget, not yet complete.
Minor tweak to widget factory (for pooling) to support player controllers as "outer"s.
In progress refactor of list of resources given for a mulch operation, using the item quantity list widget.
Change 3257310 on 2017/01/13 by Bob.Tellez
#UE4 Default stack size for windows is now configurable. There is a different number for windows editor targets than non-editor targets.
Change 3257094 on 2017/01/13 by John.Pollard
Refactor network actor list management to be more efficient
* Move dormancy list management to FNetworkObjectList
* Optimize actor network dormancy by removing actors from the active list that are dormant on all connections
* Removed NetUpdateTime on actor, and now use the NextUpdateTime on FNetworkObjectInfo (these values are more hot in the cache too)
* We now early out of the consider logic faster when possible
* Remove other misc unused network state/code and general cleanup
Change 3255891 on 2017/01/12 by Chris.Gagnon
Added "Back" action to squads screens and armory landing.
Added activation widget centering for squads screens.
Added a couple Explicit navigations to get a better navigation experience.
Added a bunch of Fkeys to the input binding table.
Added PanelButton Widget.
Change 3254809 on 2017/01/11 by Bob.Tellez
#UE4 Crash fix for shader views that get destroyed but still have pointers to them in the SRV cache.
Change 3254651 on 2017/01/11 by Bob.Tellez
#UE4 Changed MfMedia track sync mode to Unbuffered since buffered causes a crash shortly after playing.
#JIRA FORT-35566
Change 3254307 on 2017/01/11 by Lukasz.Furman
fixed "Ftest start" command interfering with automation passes
#jira FORT-35459
Change 3253625 on 2017/01/11 by Lukasz.Furman
more accurate overshot detection for crowd simulation trying to reach last path corner
#jira FORT-35502
Change 3252864 on 2017/01/10 by Lina.Halper
fix for invalid anim curve issue when duplicating curves.
#jira: FORT-35151
Change 3252427 on 2017/01/10 by Ben.Zeigler
#jira UE-40390 Fix crash saving blueprint with an inherited DataTable/CurveTable reference. Delta serialization meant that the necessary name wasn't in the name table, so adding it manually now.
Copied from CL #3252418
Change 3252344 on 2017/01/10 by Lukasz.Furman
added navmesh tile observation to hotspots
now they will be able to reevaluate unreachable slots if nearby navmesh is updated (active only when more than half melee slots is unreachable)
#jira FORT-35450
Change 3251644 on 2017/01/09 by Saul.Abreu
#fortnite
#jira FORT-35388
Refactored common input so that the actions hold the per-platform key mappings. A config file holds the mapping of individual keys to their per-platform display data (icon-only for now). ALL ENTRIES IN THE INPUT ACTION DATA TABLE ARE NOW MISSING THEIR KEYS. RE-ADD THEM. I did test that it works.
Change 3251118 on 2017/01/09 by David.Hamm
Corrected ability system logging messages that are turning up in bug reports.
Change 3250932 on 2017/01/09 by Bob.Tellez
#UE4 Unshelved from DanielW. Fix for memory usage during map save for large maps
Change 3250093 on 2017/01/06 by Jeff.Campeau
libstrophe UE4 modifications
Change 3249787 on 2017/01/06 by John.Pollard
Add some replay/network stats
Change 3248808 on 2017/01/05 by Chris.Gagnon
Fix for ensuring Main Tabs properly activates it's content.
Includes a pretty hacky delay, will need to deal with that at somepoint.
Change 3248693 on 2017/01/05 by Chris.Gagnon
NavigationEvent now gets populated with the modifier keys so that Shift and Ctrl behaviors of the list work.
Change 3248647 on 2017/01/05 by Saul.Abreu
Fixed shadowed variable warning in Create Event node.
Change 3248358 on 2017/01/05 by Saul.Abreu
Added return type/outputs to the signature displayed in the CreateEvent node. Also added tooltip describing the syntax for display since it's non-standard.
Change 3247937 on 2017/01/05 by Chris.Gagnon
- Refactored the Custom Navigation Event to be a part of the Viewport so that it functions properly with Multi PIE and doesn't interfere with the Editor while PIE is running.
- Added the ability for an FReply to specify an explict navigation attempt directly.
- Added ENavigationGenesis to the navigation system allowing SListView and STileView's bHandleGamepadEvents functionality to be hooked up again.
Change 3247887 on 2017/01/05 by Bob.Tellez
#UE4 UpdateExistingPackagePriorities does not work in EDL. It is now disabled.
#JIRA FORT-35193
Change 3247770 on 2017/01/05 by Fred.Kimberley
Fix an issue where PreAttributeBaseChange was not always being called and sometimes called after the attribute base value had changed.
Change 3247133 on 2017/01/04 by Saul.Abreu
UWidget designer method renaming to avoid extremely likely naming collisions.
Change 3246507 on 2017/01/04 by Chris.Gagnon
Created CommonBorder and UCommonBorderStyle very simple but will allow consistent sharing of styles.
Cleaned up palette category usage and a few misc things.
Updated the UI test material, and created a UI Test BorderStyle to utilize it.
Change 3245517 on 2017/01/03 by Chris.Gagnon
Copying over slate material changes to provide more functionalit.
Added a UITest Material as an example
Change 3245371 on 2017/01/03 by Lukasz.Furman
fixed husks attacking props from far away
#jira FORT-34655
Change 3245363 on 2017/01/03 by Justin.Sargent
Tracked down a CEF viewport scaling issue to some changes made for supporting high DPI. After talking it over with Trepka, we decided to revert the specific change causing the CEF viewport regression. Trepka will be following up with a proper fix.
#jira OPP-6513
Change 3244525 on 2017/01/02 by Chris.Gagnon
Activatable panels now clear out action handlers when the slate widgets are released.
Change 3244517 on 2017/01/02 by Chris.Gagnon
New frontend major refactors.
- New content api for UI States
- New intro / outro functionality for activatable panels
- New CommonWidgetStack widget
- Landing pages
- Navigation suport for SListView, STileView
- Navigation changes
- Lots of New UI layout changes and functionality changes
- More things that I'm forgetting
Change 3242434 on 2016/12/21 by Ben.Zeigler
Improve package saving time by stopping export sorting from recursing into dependencies outside of the package. It has no control over them so it doesn't care about their load order.
Change 3242433 on 2016/12/21 by Ben.Zeigler
Small perf improvement for quad tree, stop it from constantly reallocating memory when removing nodes as they will likely get filled again or the node will get deleted
Change 3242294 on 2016/12/21 by Bob.Tellez
#UE4 Re-applying the fix for rendering editor primitives when r.EarlyZPassOnlyMaterialMasking is enabled
Change 3241034 on 2016/12/20 by John.Abercrombie
Add or UpdateBlueprintSearchMetadata when we don't have a TargetPlatform
- Better fix for issue mentioned in CL 3241023
Change 3241023 on 2016/12/20 by John.Abercrombie
Fixed UBlueprint::PreSave crashing when there is no TargetPlatform (default behavior)
Change 3240988 on 2016/12/20 by Lukasz.Furman
fixed melee defenders not finishing move then their goal is outside tether range
#jira FORT-34673
Change 3240966 on 2016/12/20 by Ben.Zeigler
Disable find in blueprint query when cooking for non editor platforms, saves around 50 seconds off of a Fortnite fast cook.
UBlueprint::PreSave gets called even though they get filtered out of cooked builds, as the filtering is after PreSave.
Change 3240898 on 2016/12/20 by Lukasz.Furman
fixed memory corruption in template A* solver
#fortnite
Change 3239920 on 2016/12/19 by Ben.Zeigler
Fix warning display for string asset references while cooking, now that failed to find errors add to KnownMissing, we need to check KnownMissing before doing the find, and turn off the internal warnings as the redirect collector has more context info
Change 3239819 on 2016/12/19 by Lukasz.Furman
fixed uninitialized debug draw delegate pointers
#ue4
Change 3238789 on 2016/12/16 by Ben.Zeigler
Fix issue where spawned cues triggered from async loads wouldn't have a proper world
Fix issue where bShouldSyncLoad/bShouldAsyncLoad were backwards
Change 3238782 on 2016/12/16 by Ben.Zeigler
#jira FORT-34825 Fix issue where Macro CDOs had corrupted persistent ubergraph frames during blueprint compile on load, by changing it so no CDOs have persistent frames.
This also saves memory as using persistent frames is incorrect for CDOs, things like latent functions do not make sense.
Fix from Dan O'Connor
Change 3238685 on 2016/12/16 by Bob.Tellez
#UE4 Graceful recovery for actors that changed mobility between frames in TextureInstanceManager.
#JIRA FORT-34833
Change 3238671 on 2016/12/16 by Ben.Zeigler
Fix ensure opening widget palette view, it was trying to create asset data for trash classes becuase it was just doing a raw class iterator, which is no longer supported.
Change 3238606 on 2016/12/16 by Rob.Cannaday
Fix crash in FInternetAddrBSD::SetIp when InAddr is an empty string.
#jira FORT-34826
Change 3238594 on 2016/12/16 by Ben.Zeigler
#jira FORT-34704 Fix bNetTemporary actors to be created with reliable packets, to keep sending until their initial send is done.
The code that used to resend incomplete net temporary actors appears to have stopped working sometime during UE4 networking refactors. Remove unused flags related to that code
Change 3238315 on 2016/12/16 by Lukasz.Furman
fixed composite navigation path usage for husks not controlled by crowd simulation
#jira FORT-34509
Change 3238145 on 2016/12/16 by Lukasz.Furman
fixed crash in EQS profiler
#jira FORT-34831
Change 3237479 on 2016/12/15 by Ben.Zeigler
Don't crash if cue manager has no world, not sure how it got into this state
Change 3236992 on 2016/12/15 by Michael.Trepka
Don't fall back to SM4 on Intel GPUs on Mac any more
Change 3236929 on 2016/12/15 by Bob.Tellez
#UE4 Fixed an ensure that was caused by an FResourceSizeEx being initialized with the wrong type
Change 3236867 on 2016/12/15 by Bob.Tellez
#Fortinte Submitted change from Gil to fix EDL crash loading into Outpost on PS4
#JIRA FORT-34794
Change 3236747 on 2016/12/15 by Ben.Zeigler
Fortnite fixes for asset manager/async loading changes
FortItemDefinitions now async load needed assets on demand. Currently this is only loading AttributeTemplate, which may not even be in use
The blueprints needed for weapons are now async loaded when the player puts them on their quickbar, instead of being loaded once and staying in memory forever
FortAssetManager is now being used in parallel to the loading code in FortGlobals, I will remove the FortGlobals code in the next checkin once I know things are working
Change it so the MissionEventNames are loaded asynchronously when clicking the picker, this code was half completed already so I finished it up
Change it so GameplayCueNotifies get async loaded on demand instead of async loaded at startup, this improves startup load times
Change it so the CommonUIModule uses the global assetmanager instead of a passed in StreamableManagerHandler
Item json changed because it got resorted, no actual json changes other than a few cosmetics that were added yesterday
Change it so FortItem implements the mcp item interface directly, instead of FortWorldItem and FortAccountItem implementing it separately
Change 3236746 on 2016/12/15 by Ben.Zeigler
Add ProcessAsyncLoadingUntilComplete which will process async loading until a predicate is true or time runs out
Change streamable manager to return a handle structure, that can be used to block or poll as needed. Active handles will keep objects in memory even after the load finishes
FStreamableManager::SynchronousLoad now does high-priority-async-load-and-wait instead of doing a full async flush/static load object if asynch loading is in progress, this should make stalls much shorter when sync loading a single asset
Deprecate some of the StreamableManager functions now that handles exist. The fact that SynchronousLoad kept an object from ever GCing was not expected behavior by most users
Add Experimental feature AssetManager, which is a global singleton that supports loading assets on demand. It is disabled by default
Add concept of PrimaryAssetID which is a Type:Name pair that globally identifies an asset. This is returned by GetPrimaryAssetId on UObject and is needed for the asset manager to work
Add PrimaryAssetData class, which supports the primary asset and bundle concepts natively
Add concept of an AssetBundleEntry/Data, which is a scoped map from name -> list of assets. If you modify an AssetBundleData it will get baked into the asset registry at runtime
Fix KismetSystemLibrary and GameplayCueManager to use the new streaming functionality
Change 3234031 on 2016/12/13 by Ian.Fox
#UE4, #XMPP - Finish libstrophe MUC (Multi-User Chat) implementation
- Pull history when joining channels
- Handle configuring of XMPP channels we create (and global chat rooms if we managed to create them)
[CL 3291644 by Bob Tellez in Main branch]
2017-02-07 23:55:24 -05:00
bPendingActivation = false ;
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
if ( UFunctionalTestingManager : : RunAllFunctionalTests ( TestWorld , bClearLog , bRunLooped ) = = false )
{
UE_LOG ( LogFunctionalTest , Error , TEXT ( " No functional testing script on map. " ) ) ;
}
}
}
void FFuncTestManager : : RunTestOnMap ( const FString & TestName , bool bClearLog , bool bRunLooped )
{
if ( UWorld * TestWorld = GetTestWorld ( ) )
{
Copying //UE4/Fortnite-Staging to //UE4/Dev-Main (Source: //Fortnite/Main @ 3284787)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3284469 on 2017/02/02 by Saul.Abreu
Fixed comment on Slate Brush for getting the resource object and what kind of object it may be.
Change 3284410 on 2017/02/02 by Ben.Zeigler
Add FSlateBrush subclass constructors that take resource objects, to create static brushes at startup time that refer to already loaded UTextures
Change 3284381 on 2017/02/02 by Saul.Abreu
#fortnite
Added functionality to common button to actually use the single material brush setting and automatically create and expose access to a material instance dynamic.
Also fixed some potential object lifetime issues in CommonButton.
Change 3282423 on 2017/02/01 by Ben.Zeigler
Fix issue with synchronous load of objects not invalidating cached nulls for asset ptrs. This was always an issue but my recent change to assetptr SynchronousLoad made it manifest more often.
In the future we may want to invalidate cached nulls on object creation to handle cases like save games
Change 3282265 on 2017/02/01 by Ian.Fox
#UE4, #XMPP - Reduce verbosity of strophe receive-stanza log
Change 3282159 on 2017/02/01 by Ben.Zeigler
Fix issue where async loading null string reference would deadlock
Change 3282054 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-28234 Fix sceImeDialogTerm() warning
We were calling sceImeDialogTerm() in cases where the dialog wasn't active. The only state it's legitimate to call sceImeDialogTerm() in is SCE_IME_DIALOG_STATUS_FINISHED.
Change 3282051 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-30021 Respect bVirtualKeyboardSendsTextChanged on PS4
Change 3281799 on 2017/02/01 by Nick.Cooper
#Fortnite - Removed code on PS4 that was adding a EMouseButtons::Left press when the right shoulder button was pressed
#jira FORT-35821
Change 3281771 on 2017/02/01 by Lukasz.Furman
fixed end of path conditions breaking movement when path starts with a navlink and turn back below
#jira FORT-36375
Change 3280579 on 2017/01/31 by Ben.Zeigler
Remove ForEachProperty and switch AssetManager to use TPropertyValueIterator instead. Code review changes to TPropertyValueIterator.
Add InitializeAssetBundlesFromMetadata to AssetManager which parses AssetBundles metadata at load/save time and uses that to assign asset references to specific bundles.
Add RecursivelyExpandBundleData to allow recursively acquiring bundle dependencies.
Add AssetBundles to the PropertyMetadata list. Sorted list and fixed some comment typos.
Change it so the DataAsset factory won't show blueprintable native classes as valid, the editor doesn't like it when you have both blueprinted and non-blueprinted assets of the same base class.
Change AssetPtr.LoadSynchronous to be const and to behave the same as Get(). This was a licensee complaint and the old behavior to null out the reference because of a transient load error can cause data loss.
Change 3280176 on 2017/01/31 by Lukasz.Furman
fixed missing navmesh update on replacing existing floor/roof
#jira FORT-36369
Change 3279761 on 2017/01/31 by Saul.Abreu
#fortnite
Added ability to keep common buttons interactable even when they're selected, so they can still be clicked. Old default behavior is preserved.
Change 3279678 on 2017/01/31 by Saul.Abreu
#fortnite
Moved GetCurrentInputType from UCommonActionWidget to UCommonUIContext for reuse.
Change 3278593 on 2017/01/30 by Ben.Zeigler
Delay initialization of asset registry tag filter list until it is needed, to make sure it catches modules that were loaded after the asset registry module. Fixes issues with tags not inherting to child classes
Change 3278592 on 2017/01/30 by Ben.Zeigler
Add TPropertyValueIterator to replace ForEachProperty. This is a recursive iterator instead of a predicate search, and also allows extracting the property chain, which I need for metadata parsing.
AssetManager has an example of both uses, will delete ForEachProperty tomorrow.
Change 3277859 on 2017/01/30 by Lukasz.Furman
fixed navigation path postprocessing not working with vertical navlinks near start point
required by taker portal up move
#jira FORT-36570
Change 3277580 on 2017/01/30 by Ben.Zeigler
#jira FORT-36662 Return streamable manager to always use hard references, weak references do not work during AddReferencedObjects at all, because of the unreachable flag that is set during GC. This returns the behavior of forcing assets to be "Force Deleted" if they were loaded by asset manager.
Change 3276903 on 2017/01/29 by Bob.Tellez
#BlueprintContext Updated copyright notice for 2017
Change 3276902 on 2017/01/29 by Bob.Tellez
#CommonUI Updated some missed copyright notices for 2017
Change 3276731 on 2017/01/29 by Jeff.Campeau
Forward modified warning messages
Change 3276642 on 2017/01/28 by Jeff.Campeau
Change specific errors from packaging multiple configurations into a single package into warnings.
Change 3276228 on 2017/01/27 by Ben.Zeigler
Fix crash/data loss when a Pin's DefaultObject points to an ObjectRedirector. FixObject will return redirectors so you need to correct for that
Change 3276073 on 2017/01/27 by Ben.Zeigler
Add some utility functions to core asset manager and streamablemanager and fix various editor interactions.
Add startup and cook interaction hooks to AssetManager directly and call them form Engine in addition to the game-specific hooks.
Add concept of BulkScanning to AssetManager, use this when scanning many directories.
Fix issues with string asset references being wrong for blueprint classes, this would be easier if the assetdata pointed to the class and not the possibly-missing blueprint.
Change StreamableManager to keep referenced objects as weak pointers. These pointers are effectively soft in the editor, hard outside of the editor. By storing them as raw pointers it was difficult to guarantee their safety without causing issues with deleting assets.
Change 3276058 on 2017/01/27 by Ben.Zeigler
Add UStruct::ForEachProperty, which recursively iterates properties of a struct and calls a lambda.
Add some new BaseStructure accessors
Change 3275981 on 2017/01/27 by Alex.Thurman
Move Item Management Screen input handling into child activatable panels.
#JIRA FORT-35759
#JIRA FORT-35758
Change 3275626 on 2017/01/27 by John.Pollard
First pass at implementing net relevancy for replays
* All connections are considered when determing if an actor is relevant
* Enable by setting demo.UseNetRelevancy to 1
* Override cull distance with demo.CullDistanceOverride
Change 3275221 on 2017/01/27 by John.Pollard
FORT-36482 - Fix issue with using wrong serializer for re-mapping objects
Change 3274149 on 2017/01/26 by Alex.Thurman
Expose the Common Widget Switcher as part of the common UI plugin library.
#fort
Change 3274103 on 2017/01/26 by Michael.Trepka
Fixed a crash on startup on Mac when using a shader cache populated during cooking and re-enabled cook time cache generation in Fortnite
Change 3273867 on 2017/01/26 by James.Hopkin
Enabled Stomp for PS4
#jira FORT-35517
Change 3273749 on 2017/01/26 by James.Hopkin
Added libwebsocket libraries for PS4
#jira FORT-35517
Change 3273105 on 2017/01/26 by James.Hopkin
Moved libwebsockets.h into platform-specific folders (in preparation for PS4 building against slightly more recent version)
Change 3273020 on 2017/01/26 by Jeff.Campeau
Stage manifest files from loose folder, not binary folder (appdata.bin is no longer created in the binary directory)
Change 3272825 on 2017/01/25 by Saad.Nader
#fort
Added function to set the auto activation on or off on a common widget switcher.
Updated CommonTabListWidget to temporarily turn off activation when setting a linked switcher.
Added some missing delegate cleanup code.
Change 3272598 on 2017/01/25 by Justin.Augspurger
#fortnite
Add activatable panel function that returns if an input handler is set.
Change 3272411 on 2017/01/25 by Michael.Trepka
Increased g.TimeoutForBlockOnRenderFence on Mac to 5 minutes
Change 3271913 on 2017/01/25 by Lukasz.Furman
fixed conditions of movement's destinaiton oveshot check to work with setup in FTest maps
#jira FORT-36375
Change 3271723 on 2017/01/25 by Bob.Tellez
#UE4 Disabled MfMedia on windows.
Change 3271223 on 2017/01/25 by Jeff.Campeau
Allow packaging to fall back to the engine directory for the lastchunk file if it's not present in the staged version.
Change 3271066 on 2017/01/24 by Chris.Gagnon
- Properly clean up the UIManager and Analog Cursor when game/pie exists.
- FortAnalogCursor now sequesters the mouse during InputSuspension.
- Change the callback order for activate and deactivate so the classes can chain activate.
Change 3271064 on 2017/01/24 by Chris.Gagnon
- NavigateToWidget() added to SlateApplication
- SlistView and it's descendants now have the ability to navigate to the widget scrolled into view
Change 3270778 on 2017/01/24 by Michael.Trepka
Fixed and enabled cook time binary shader cache generation for Mac
Change 3270645 on 2017/01/24 by Jeff.Campeau
- New manifest generation (backward compatible)
- True support for multiconfig packages
- Settings all based in target settings in editor
- Localized package resources with support to reduce redundancies
- Resource table generation and manifest generation combined
- Further reduced unneeded deploy copies
#jira FORT-36413
Change 3270191 on 2017/01/24 by Lukasz.Furman
reverted file unrelated to DecoyDistance fix
Change 3270133 on 2017/01/24 by Lukasz.Furman
fixed item scoring in DecoyDistance test
#jira FORT-36034
Change 3269363 on 2017/01/24 by James.Hopkin
#online #stomp Added error logging for loss of heartbeat
#jira FORT-34763
Change 3268921 on 2017/01/23 by Saul.Abreu
#fortnite
Renamed CommonWidgetGroup to emphasize that it is an abstract base class. Added ability to get the selected button out of CommonButtonGroup.
Change 3268913 on 2017/01/23 by Saul.Abreu
#fortnite
Recreated some minor changes to UEnumProperty so that TMap properties don't assert with enums as keys.
Change 3268436 on 2017/01/23 by Michael.Trepka
Added rhi.Metal.AllowRHIThread to allow games to disable RHI thread on Mac to be able to use shader cache, which currently is incompatible with RHI thread. Disabled RHI thread on Mac in Fortnite.
Also, temporarily disabled Metal validation layer in Fortnite until I have more information on the cost of various levels of validation.
Change 3266945 on 2017/01/20 by Bob.Tellez
#UE4 Allowing more configurations to generate debug symbols
Change 3266814 on 2017/01/20 by Bob.Tellez
#UE4 Moved MfMedia video track handling to the render thread, which removes the need for some buffer management in MediaTextureResource.cpp. Also, Mfmedia now emits the PlaybackEndReached event.
#JIRA FORT-31753
Change 3266541 on 2017/01/20 by Lukasz.Furman
moved navigation export of building actor's static mesh into owning actor data instead of using parent chain,
attempt to fix husks passing through walls that lost navigation data at some point during game
#jira FORT-35741
Change 3266269 on 2017/01/20 by Fred.Kimberley
Change async loading of gameplay cues so that the gameplay cue manager maintains ownership of the assets and can control their lifetime.
Change 3266053 on 2017/01/20 by Michael.Trepka
Fixed issues with shader cache not working properly with Mac Metal (but it still requires -norhithread to work at all). Enabled the shader cache by default if RHI thread is disabled.
Change 3265585 on 2017/01/20 by Bart.Hawthorne
Enable Oodle in Fortnite
Change 3264678 on 2017/01/19 by Lukasz.Furman
fixed crash on opening behavior trees with invalid decorator class (empty redirectors)
#ue4
Change 3264473 on 2017/01/19 by Fred.Kimberley
Tell the streamable manager to manage gameplay cue assets that are async loaded.
#jira FORT-35171
Change 3262846 on 2017/01/18 by John.Pollard
FORT-30352 - Fix by lowering network logging verbosity for benign condition
Change 3262535 on 2017/01/18 by Michael.Trepka
Fix for FORT-35776
Make sure to set reasterizer state when rendering with a material in FSlateRHIRenderingPolicy::DrawElements
Change 3262386 on 2017/01/18 by John.Pollard
Deprecate bPendingNetUpdate, NetUpdateTime and LastNetUpdateTime
Change 3262375 on 2017/01/18 by Ian.Fox
#UE4, #XMPP - Handle Message stanza errors
#JIRA OGS-505
Change 3262262 on 2017/01/18 by John.Pollard
Turn on adaptive network updates by default
Change 3262215 on 2017/01/18 by Rob.Cannaday
Fix for returned XMPP messages (to invalid recipient) triggering on message received delegates
Change 3262094 on 2017/01/18 by Jamie.Dale
Cook on the fly builds now resolve string asset references
Change 3262091 on 2017/01/18 by Jamie.Dale
Guarding against potentially invalid call to FString::Mid
Change 3262089 on 2017/01/18 by Jamie.Dale
Fixing RedirectCollector issues with projects outside the UE4 directory
It was storing relative paths, but MakeStandardFilename wouldn't make a relative path for anything outside of the UE4 directory. In addition to this, some code was testing filters using package style paths, so I converted all the code to use package style paths instead.
Change 3261201 on 2017/01/17 by Ben.Zeigler
Perf improvements to PackageName that improve cooked load times by around a second. These string functions get called very often and Split is very slow, especially backwards searching or case insensitive.
Change 3261098 on 2017/01/17 by John.Pollard
Fix for FORT-35711 - Edited buildings do not always replicate correctly
We were removing the actor from the network object list too soon
Change 3260515 on 2017/01/17 by John.Abercrombie
Fix MoveTo task ending with success when it's interrupted
- Default the task to an invalid status rather than assuming we are successful
#jira FORT-35497 - Defender can pick up a weapon from far away as they get knocked DBNO
Change 3260343 on 2017/01/17 by Lukasz.Furman
fixed end of path conditions for crowd simulation when using string pulled path
#jira FORT-35713
Change 3259419 on 2017/01/16 by John.Pollard
Network actor list fixes:
* Don't add add actor to network list if it will just immediately get removed
* Remove destroyed actors from actor list on clients
* Make sure actor Role is set to correct value before adding to network actor list
Change 3259104 on 2017/01/16 by Michael.Trepka
Change the default for rhi.Metal.RuntimeDebugLevel to 2, as 3 is too expensive for Development builds and disable METAL_DEBUG_OPTIONS in Test builds
Change 3259017 on 2017/01/16 by Saad.Nader
#fort
Added a missing remove delegate handler when widget is destructed.
Change 3258901 on 2017/01/16 by Saad.Nader
#fort
Added the ability to remove an input action from the list of actions we are listening for in an activatable panel.
Change 3258844 on 2017/01/16 by Ryan.Rauschkolb
#fortnite
Fixed issue where UUMGSequencePlayer:Tick would broadcast OnAnimationFinished before the final frame of the animation plays
Change 3258734 on 2017/01/16 by Michael.Trepka
Fixed a crash on exit on Mac in FCocoaWindow's windowWillResize:
#jira FORT-35720
Change 3258353 on 2017/01/16 by James.Hopkin
#xmpp Fixed UserJid constructor to be constructed by value - same efficiency, less code and allows any combination of rvalues and lvalues.
Change 3257640 on 2017/01/13 by Saul.Abreu
#fortnite
#jira FORT-35387
Item Quantity List widget, not yet complete.
Minor tweak to widget factory (for pooling) to support player controllers as "outer"s.
In progress refactor of list of resources given for a mulch operation, using the item quantity list widget.
Change 3257310 on 2017/01/13 by Bob.Tellez
#UE4 Default stack size for windows is now configurable. There is a different number for windows editor targets than non-editor targets.
Change 3257094 on 2017/01/13 by John.Pollard
Refactor network actor list management to be more efficient
* Move dormancy list management to FNetworkObjectList
* Optimize actor network dormancy by removing actors from the active list that are dormant on all connections
* Removed NetUpdateTime on actor, and now use the NextUpdateTime on FNetworkObjectInfo (these values are more hot in the cache too)
* We now early out of the consider logic faster when possible
* Remove other misc unused network state/code and general cleanup
Change 3255891 on 2017/01/12 by Chris.Gagnon
Added "Back" action to squads screens and armory landing.
Added activation widget centering for squads screens.
Added a couple Explicit navigations to get a better navigation experience.
Added a bunch of Fkeys to the input binding table.
Added PanelButton Widget.
Change 3254809 on 2017/01/11 by Bob.Tellez
#UE4 Crash fix for shader views that get destroyed but still have pointers to them in the SRV cache.
Change 3254651 on 2017/01/11 by Bob.Tellez
#UE4 Changed MfMedia track sync mode to Unbuffered since buffered causes a crash shortly after playing.
#JIRA FORT-35566
Change 3254307 on 2017/01/11 by Lukasz.Furman
fixed "Ftest start" command interfering with automation passes
#jira FORT-35459
Change 3253625 on 2017/01/11 by Lukasz.Furman
more accurate overshot detection for crowd simulation trying to reach last path corner
#jira FORT-35502
Change 3252864 on 2017/01/10 by Lina.Halper
fix for invalid anim curve issue when duplicating curves.
#jira: FORT-35151
Change 3252427 on 2017/01/10 by Ben.Zeigler
#jira UE-40390 Fix crash saving blueprint with an inherited DataTable/CurveTable reference. Delta serialization meant that the necessary name wasn't in the name table, so adding it manually now.
Copied from CL #3252418
Change 3252344 on 2017/01/10 by Lukasz.Furman
added navmesh tile observation to hotspots
now they will be able to reevaluate unreachable slots if nearby navmesh is updated (active only when more than half melee slots is unreachable)
#jira FORT-35450
Change 3251644 on 2017/01/09 by Saul.Abreu
#fortnite
#jira FORT-35388
Refactored common input so that the actions hold the per-platform key mappings. A config file holds the mapping of individual keys to their per-platform display data (icon-only for now). ALL ENTRIES IN THE INPUT ACTION DATA TABLE ARE NOW MISSING THEIR KEYS. RE-ADD THEM. I did test that it works.
Change 3251118 on 2017/01/09 by David.Hamm
Corrected ability system logging messages that are turning up in bug reports.
Change 3250932 on 2017/01/09 by Bob.Tellez
#UE4 Unshelved from DanielW. Fix for memory usage during map save for large maps
Change 3250093 on 2017/01/06 by Jeff.Campeau
libstrophe UE4 modifications
Change 3249787 on 2017/01/06 by John.Pollard
Add some replay/network stats
Change 3248808 on 2017/01/05 by Chris.Gagnon
Fix for ensuring Main Tabs properly activates it's content.
Includes a pretty hacky delay, will need to deal with that at somepoint.
Change 3248693 on 2017/01/05 by Chris.Gagnon
NavigationEvent now gets populated with the modifier keys so that Shift and Ctrl behaviors of the list work.
Change 3248647 on 2017/01/05 by Saul.Abreu
Fixed shadowed variable warning in Create Event node.
Change 3248358 on 2017/01/05 by Saul.Abreu
Added return type/outputs to the signature displayed in the CreateEvent node. Also added tooltip describing the syntax for display since it's non-standard.
Change 3247937 on 2017/01/05 by Chris.Gagnon
- Refactored the Custom Navigation Event to be a part of the Viewport so that it functions properly with Multi PIE and doesn't interfere with the Editor while PIE is running.
- Added the ability for an FReply to specify an explict navigation attempt directly.
- Added ENavigationGenesis to the navigation system allowing SListView and STileView's bHandleGamepadEvents functionality to be hooked up again.
Change 3247887 on 2017/01/05 by Bob.Tellez
#UE4 UpdateExistingPackagePriorities does not work in EDL. It is now disabled.
#JIRA FORT-35193
Change 3247770 on 2017/01/05 by Fred.Kimberley
Fix an issue where PreAttributeBaseChange was not always being called and sometimes called after the attribute base value had changed.
Change 3247133 on 2017/01/04 by Saul.Abreu
UWidget designer method renaming to avoid extremely likely naming collisions.
Change 3246507 on 2017/01/04 by Chris.Gagnon
Created CommonBorder and UCommonBorderStyle very simple but will allow consistent sharing of styles.
Cleaned up palette category usage and a few misc things.
Updated the UI test material, and created a UI Test BorderStyle to utilize it.
Change 3245517 on 2017/01/03 by Chris.Gagnon
Copying over slate material changes to provide more functionalit.
Added a UITest Material as an example
Change 3245371 on 2017/01/03 by Lukasz.Furman
fixed husks attacking props from far away
#jira FORT-34655
Change 3245363 on 2017/01/03 by Justin.Sargent
Tracked down a CEF viewport scaling issue to some changes made for supporting high DPI. After talking it over with Trepka, we decided to revert the specific change causing the CEF viewport regression. Trepka will be following up with a proper fix.
#jira OPP-6513
Change 3244525 on 2017/01/02 by Chris.Gagnon
Activatable panels now clear out action handlers when the slate widgets are released.
Change 3244517 on 2017/01/02 by Chris.Gagnon
New frontend major refactors.
- New content api for UI States
- New intro / outro functionality for activatable panels
- New CommonWidgetStack widget
- Landing pages
- Navigation suport for SListView, STileView
- Navigation changes
- Lots of New UI layout changes and functionality changes
- More things that I'm forgetting
Change 3242434 on 2016/12/21 by Ben.Zeigler
Improve package saving time by stopping export sorting from recursing into dependencies outside of the package. It has no control over them so it doesn't care about their load order.
Change 3242433 on 2016/12/21 by Ben.Zeigler
Small perf improvement for quad tree, stop it from constantly reallocating memory when removing nodes as they will likely get filled again or the node will get deleted
Change 3242294 on 2016/12/21 by Bob.Tellez
#UE4 Re-applying the fix for rendering editor primitives when r.EarlyZPassOnlyMaterialMasking is enabled
Change 3241034 on 2016/12/20 by John.Abercrombie
Add or UpdateBlueprintSearchMetadata when we don't have a TargetPlatform
- Better fix for issue mentioned in CL 3241023
Change 3241023 on 2016/12/20 by John.Abercrombie
Fixed UBlueprint::PreSave crashing when there is no TargetPlatform (default behavior)
Change 3240988 on 2016/12/20 by Lukasz.Furman
fixed melee defenders not finishing move then their goal is outside tether range
#jira FORT-34673
Change 3240966 on 2016/12/20 by Ben.Zeigler
Disable find in blueprint query when cooking for non editor platforms, saves around 50 seconds off of a Fortnite fast cook.
UBlueprint::PreSave gets called even though they get filtered out of cooked builds, as the filtering is after PreSave.
Change 3240898 on 2016/12/20 by Lukasz.Furman
fixed memory corruption in template A* solver
#fortnite
Change 3239920 on 2016/12/19 by Ben.Zeigler
Fix warning display for string asset references while cooking, now that failed to find errors add to KnownMissing, we need to check KnownMissing before doing the find, and turn off the internal warnings as the redirect collector has more context info
Change 3239819 on 2016/12/19 by Lukasz.Furman
fixed uninitialized debug draw delegate pointers
#ue4
Change 3238789 on 2016/12/16 by Ben.Zeigler
Fix issue where spawned cues triggered from async loads wouldn't have a proper world
Fix issue where bShouldSyncLoad/bShouldAsyncLoad were backwards
Change 3238782 on 2016/12/16 by Ben.Zeigler
#jira FORT-34825 Fix issue where Macro CDOs had corrupted persistent ubergraph frames during blueprint compile on load, by changing it so no CDOs have persistent frames.
This also saves memory as using persistent frames is incorrect for CDOs, things like latent functions do not make sense.
Fix from Dan O'Connor
Change 3238685 on 2016/12/16 by Bob.Tellez
#UE4 Graceful recovery for actors that changed mobility between frames in TextureInstanceManager.
#JIRA FORT-34833
Change 3238671 on 2016/12/16 by Ben.Zeigler
Fix ensure opening widget palette view, it was trying to create asset data for trash classes becuase it was just doing a raw class iterator, which is no longer supported.
Change 3238606 on 2016/12/16 by Rob.Cannaday
Fix crash in FInternetAddrBSD::SetIp when InAddr is an empty string.
#jira FORT-34826
Change 3238594 on 2016/12/16 by Ben.Zeigler
#jira FORT-34704 Fix bNetTemporary actors to be created with reliable packets, to keep sending until their initial send is done.
The code that used to resend incomplete net temporary actors appears to have stopped working sometime during UE4 networking refactors. Remove unused flags related to that code
Change 3238315 on 2016/12/16 by Lukasz.Furman
fixed composite navigation path usage for husks not controlled by crowd simulation
#jira FORT-34509
Change 3238145 on 2016/12/16 by Lukasz.Furman
fixed crash in EQS profiler
#jira FORT-34831
Change 3237479 on 2016/12/15 by Ben.Zeigler
Don't crash if cue manager has no world, not sure how it got into this state
Change 3236992 on 2016/12/15 by Michael.Trepka
Don't fall back to SM4 on Intel GPUs on Mac any more
Change 3236929 on 2016/12/15 by Bob.Tellez
#UE4 Fixed an ensure that was caused by an FResourceSizeEx being initialized with the wrong type
Change 3236867 on 2016/12/15 by Bob.Tellez
#Fortinte Submitted change from Gil to fix EDL crash loading into Outpost on PS4
#JIRA FORT-34794
Change 3236747 on 2016/12/15 by Ben.Zeigler
Fortnite fixes for asset manager/async loading changes
FortItemDefinitions now async load needed assets on demand. Currently this is only loading AttributeTemplate, which may not even be in use
The blueprints needed for weapons are now async loaded when the player puts them on their quickbar, instead of being loaded once and staying in memory forever
FortAssetManager is now being used in parallel to the loading code in FortGlobals, I will remove the FortGlobals code in the next checkin once I know things are working
Change it so the MissionEventNames are loaded asynchronously when clicking the picker, this code was half completed already so I finished it up
Change it so GameplayCueNotifies get async loaded on demand instead of async loaded at startup, this improves startup load times
Change it so the CommonUIModule uses the global assetmanager instead of a passed in StreamableManagerHandler
Item json changed because it got resorted, no actual json changes other than a few cosmetics that were added yesterday
Change it so FortItem implements the mcp item interface directly, instead of FortWorldItem and FortAccountItem implementing it separately
Change 3236746 on 2016/12/15 by Ben.Zeigler
Add ProcessAsyncLoadingUntilComplete which will process async loading until a predicate is true or time runs out
Change streamable manager to return a handle structure, that can be used to block or poll as needed. Active handles will keep objects in memory even after the load finishes
FStreamableManager::SynchronousLoad now does high-priority-async-load-and-wait instead of doing a full async flush/static load object if asynch loading is in progress, this should make stalls much shorter when sync loading a single asset
Deprecate some of the StreamableManager functions now that handles exist. The fact that SynchronousLoad kept an object from ever GCing was not expected behavior by most users
Add Experimental feature AssetManager, which is a global singleton that supports loading assets on demand. It is disabled by default
Add concept of PrimaryAssetID which is a Type:Name pair that globally identifies an asset. This is returned by GetPrimaryAssetId on UObject and is needed for the asset manager to work
Add PrimaryAssetData class, which supports the primary asset and bundle concepts natively
Add concept of an AssetBundleEntry/Data, which is a scoped map from name -> list of assets. If you modify an AssetBundleData it will get baked into the asset registry at runtime
Fix KismetSystemLibrary and GameplayCueManager to use the new streaming functionality
Change 3234031 on 2016/12/13 by Ian.Fox
#UE4, #XMPP - Finish libstrophe MUC (Multi-User Chat) implementation
- Pull history when joining channels
- Handle configuring of XMPP channels we create (and global chat rooms if we managed to create them)
[CL 3291644 by Bob Tellez in Main branch]
2017-02-07 23:55:24 -05:00
bPendingActivation = false ;
Copying //UE4/Dev-Editor to //UE4/Dev-Main (Source: //UE4/Dev-Editor @ 3082391)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3051464 on 2016/07/15 by Nick.Darnell
Regression Testing - Several upgrades to the functional testing system, better tracking of failure cases, some source line failure detection, trying to make it easier to run a specific test on a map. Some UI improvements, easier access to the automation system. Lots more refactoring to come, lots of improvements are still needed in transmitting screenshots and just generally building a automation report we could dump from the build machines.
Change 3051465 on 2016/07/15 by Nick.Darnell
Adding the "Engine Test" project our one stop shope for running automation tests in the engine to try and reduce regressions.
Change 3051847 on 2016/07/15 by Matt.Kuhlenschmidt
Fixed material editor viewport messages being blocked by viewport toolbar
Change 3052025 on 2016/07/15 by Nick.Darnell
Moving the placement mode hooks out of functional testing module, moving them into the editor automation module.
Change 3053508 on 2016/07/18 by Stephan.Jiang
Copy,Cut,Paste tracks, not for mastertracks yet.
#UE-31808
Change 3054723 on 2016/07/18 by Stephan.Jiang
Small fixes for typo & comments
Change 3055996 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
Change 3056106 on 2016/07/19 by Trung.Le
Back out changelist 3055996. Build break.
Change 3056108 on 2016/07/19 by Stephan.Jiang
Updating "SoundConcurrency" asseticon
Change 3056389 on 2016/07/19 by Trung.Le
PIE: No longer auto resume game in PIE on focus received
#jira UE-33339
Change 3056396 on 2016/07/19 by Matt.Kuhlenschmidt
More perf selection improvements:
- Static meshes now go through the static draw path when rendered for selection outline instead of just rendering using the dynamic path
Change 3056758 on 2016/07/19 by Stephan.Jiang
Update SelectedWidgets in WidgetblueprintEditor to match the selected tracks in sequencer.
Change 3057519 on 2016/07/20 by Matt.Kuhlenschmidt
Another fix for selecting lots of objects taking forever. This one is due to repeated Modify calls if there are groups in the selection. Each group actor selected iterates through each object selected during USelection::Modify!
Change 3057635 on 2016/07/20 by Stephan.Jiang
Updating visual logger icon UI
Change 3057645 on 2016/07/20 by Richard.TalbotWatkin
Fixed single player PIE so the window position is correctly fetched and saved, even when running a dedicated server. This does not interfere with stored positions for multiple PIE, which uses ULevelEditorPlaySettings::MultipleInstancePositions.
#jira UE-33416 - New Editor PIE window does not center to screen when running with a dedicated server
Change 3057868 on 2016/07/20 by Richard.TalbotWatkin
Spline component improvements, both tools and runtime:
- SplineComponentVisualizer now works within the Blueprint editor. This works via a generic extension added to the base ComponentVisualizer class which correctly propagates modified properties from the preview actor to the archetype, and then on to any instances whose properties are at the default value.
- The above feature required a breaking change to USplineComponent - namely, the three FInterpCurve properties have been collected together into a struct and added as a single property. This is so that changes to the length of one of the FInterpCurves marks all three as dirty and needing rebuilding.
- Added a custom version for SplineComponent and provded serialization fixes.
- Added a details customization to SplineComponent to hide the raw FInterpCurve properties.
- Added a custom detail builder category which polls the SplineComponentVisualizer each tick and provides numerical editing for spline points which are selected in the visualizer.
- Relaxed the limitation that SplineComponent keys need to have an increment of 1.0. Now any SplineComponent key can be set. The details customization enforces that the sequence remains strictly ascending.
- Allowed an explicit loop point to be specified for closed splines.
- Allowed discontinuous splines by no longer forcing the ArriveTangent and LeaveTangent to be equal.
- Added some new Blueprintable methods for building splines with an FSplinePoint struct, which allows all of a spline point's properties to be specified, and added to the FInterpCurves sorted by the input key.
- Fixed the logic which determines whether the UCS has modified the spline curves.
- Added UActorComponent::RemoveUCSModifiedProperties, which allows a component to remove any properties from the cached list which it doesn't want to be considered as 'modified'. This is used to distinguish the case of properties preserved by the SplineInstanceDataCache from those genuinely modified by the UCS.
- Fixed "Apply Instance Changes to Blueprint" so that edited spline data can be applied to the archetype.
- Fixed some issues with the spline component visualizer to make it generate appropriate up vectors if scale and rotation are enabled.
#jira UETOOL-766 - Spline tool improvements
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
#jira UE-9062 - Spline editing: It would be nice to be able to type in a specific value for a point
#jira UE-7476 - Add ability to edit SplineComponent in BP editor (not just instance in level)
#jira UE-13082 - Users would like a snapping feature for splines
#jira UE-13568 - Additional Spline Component Functionality
#jira UE-17822 - It would be useful to be able to update a bp spline layout from the editor viewport.
Change 3057895 on 2016/07/20 by Richard.TalbotWatkin
Mesh paint bugfixes and improvements.
Changes to RerunConstructionScript so that OnObjectsReplaced is called correctly on all components, whether they have been created by the SCS or the UCS. Previously, components created by the UCS were not being handled, and components created by the SCS were not always being matched. Now a serialized index is maintained for UCS-created objects, which is matched after the construction scripts have been executed.
This will fix issues with the mesh paint tool, and any other editor tool which hooks into the OnObjectsReplaced callback in order to update its internal cache of component pointers, for example, the component visualizer render list.
#jira UE-33010 - Crash changing mesh paint material in blueprint, then changing to a different mode tab
#jira UE-32279 - Editor crashes when reselecting a mesh in paint mode
#jira UE-31763 - [CrashReport] UE4Editor_MeshPaint!FMulticastDelegateBase<FWeakObjectPtr>::RemoveAll() [multicastdelegatebase.h:75]
#jira UE-30661 - Vertex Painting changes collision complexity if the asset is saved while vertex painting
Change 3057966 on 2016/07/20 by Richard.TalbotWatkin
Renamed IsEditingArchetype to IsVisualizingArchetype in the ComponentVisualizer API.
#jira UE-33049 - Transform widget visible in blueprint viewport when editing spline points in editor viewport
Change 3058009 on 2016/07/20 by Richard.TalbotWatkin
Fixed build failure due to changes to FComponentVisualizer API, as of CL 3057868.
Change 3058047 on 2016/07/20 by Stephan.Jiang
Fixing error on previous CL: 3056758
(extra qualification)
Change 3058266 on 2016/07/20 by Nick.Darnell
Automation - Work continues on automation integrating some ideas form a licensee. Continuing to work on the usability aspects, I've made it possible for tests to provide custom open commands, as well as have complex subclasses that do different things. The functional tests now have a custom open command they emit that makes it so clicking on a test opens not the C++ location where the functional test macro lives, but instead the map, AND focuses the functional test actor.
Change 3058282 on 2016/07/20 by Matt.Kuhlenschmidt
PR #2611: Fix spurious component diff when properties are in subcategories (Contributed by CA-ADuran)
Change 3059214 on 2016/07/21 by Richard.TalbotWatkin
Further fixes to visualizers following Component Visualizer API change.
Change 3059260 on 2016/07/21 by Richard.TalbotWatkin
Template specialization not allowed in class scope, but Visual Studio allows it anyway. Fixed for clang.
Change 3059543 on 2016/07/21 by Stephan.Jiang
Changeing level details icon
Change 3059732 on 2016/07/21 by Stephan.Jiang
Directional Light icon update
Change 3060095 on 2016/07/21 by Stephan.Jiang
Directional Light editor icon asset changed
Change 3060129 on 2016/07/21 by Nick.Darnell
Automation - The session browser now attempts to select the app instance if no other thing is selected when it refreshes. This is to try and make it easier to use when you first bring it up and nothing is selected when most of the time you're going to use it on your own instance.
Change 3061735 on 2016/07/22 by Stephan.Jiang
Improve UMG replace with in HierarchyView function
#UE-33582
Change 3062059 on 2016/07/22 by Stephan.Jiang
Strip off "b" in propertyname in replace with function for tracks.
Change 3062146 on 2016/07/22 by Stephan.Jiang
checkin with CL: 3061735
Change 3062182 on 2016/07/22 by Stephan.Jiang
Change both animation bindings' widget name when renameing the widget so the slot content is still valid
Change 3062257 on 2016/07/22 by Stephan.Jiang
comments
Change 3062381 on 2016/07/22 by Nick.Darnell
Build - Adding #undef LOCTEXT_NAMESPACE to try and fix the build.
Change 3062924 on 2016/07/25 by Chris.Wood
Fix a crash in CrashReportClient that happens when the CrashReportReceiver is not responding to pings and there are no PendingReportDirectories.
This is a change in the UE4 stream depot based on a fix in the Fortnite stream depot -> JIRA FORT-27570
Change 3063017 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2618: DebuggerCommand not recording PlayLocationString (Contributed by ungalyant)
Change 3063021 on 2016/07/25 by Matt.Kuhlenschmidt
PR #2619: added a search box to ModuleUI (Contributed by straymist)
Change 3063084 on 2016/07/25 by Matt.Kuhlenschmidt
Fix "YesToAll" when deleting referenced actors overriding the "YesToAll" state for other referenced messages.
https://jira.ol.epicgames.net/browse/UE-33651
#jira UE-33651
Change 3063091 on 2016/07/25 by Alex.Delesky
#jira UE-32949 - Truncating the hue inside the theme color block tooltip to only display whole numbers, to match how the color picker displays the hue value inside the hue scrubber.
Change 3063388 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Fix large FName creation time when selecting thousands of objects
Change 3063568 on 2016/07/25 by Matt.Kuhlenschmidt
Selection Perf:
- Modified how USelection stores classes. Classes are now in a TSet and can be accessed efficiently using IsClassSelected. The old unused way of checking if a selection has a class by iterating through them is deprecated
- USelection no longer directly checks if an item is already selected with a costly n^2 search. The check is done by using the already existing UObject selected annotation
- Object property nodes no longer perform an n^2 check for object uniqueness when objects are added to details panels. This is now left up to the caller to avoid
- Eliminated useless work on FObjectPropertyNode::GetReadAddressUncached. If a read address list is not passed in we'll not attempt to the work to populate it
- Removed expensive checking for brush actors when any actor is selected
Change 3063749 on 2016/07/25 by Stephan.Jiang
Disallow naming the widgetanimation to the same name with a override function in uuserwidget, because it will trigger a breakpoint in Rename()
#jira UE-33711
Change 3064585 on 2016/07/26 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3064612 on 2016/07/26 by Alex.Delesky
#jira UE-33712 - Deleting many assets at once will now batch SourceControl commands rather than executing one for each asset.
Change 3064647 on 2016/07/26 by Alexis.Matte
#jira UE-33274 dont hash the same file over and over when importing multiple asset from one fbx file.
Change 3064739 on 2016/07/26 by Matt.Kuhlenschmidt
Fixed typo
Change 3064795 on 2016/07/26 by Jamie.Dale
Fixed typo in FLocalizationModule::GetLocalizationTargetByName
#jira UE-32961
Change 3066461 on 2016/07/27 by Jamie.Dale
Enabled stable localization keys
Change 3066463 on 2016/07/27 by Jamie.Dale
Set "Build Engine Localization" to upload all cultures to ensure we don't lose translation due to the archive keying changes
Change 3066467 on 2016/07/27 by Jamie.Dale
Updated internationalization archives to store translations per-identity
This allows translators to translate each instance of a piece of text based upon their context, rather than requiring a content producer to go back and give the entry a unique namespace. It also allows us to optionally compile out-of-date translations, as they are now mapped to their source identity (namespace + key) rather than their source text.
Major changes:
- Added FLocTextHelper. This acts as a high-level API for uncompiled localized text, and replaces all the old ad-hoc loading/saving of manifests and archives, ensuring that everything is consistently using source control, and that older archives can be upgraded correctly to the new format. It also takes care of some of the quirks of our archives, such as native translations. All major localization commandlets have been updated to use FLocTextHelper.
- Moved FTextLocalizationResourceGenerator from Core to Internationalization. This also allows IJsonInternationalizationManifestSerializer and IJsonInternationalizationArchiveSerializer to be removed, and for FJsonInternationalizationManifestSerializer and FJsonInternationalizationArchiveSerializer to have all their functions become static.
- FTextLocalizationResourceGenerator being moved from Core meant that FTextLocalizationManager::LoadFromManifestAndArchives was also removed. This functionality is now handled by FTextLocalizationResourceGenerator::GenerateAndUpdateLiveEntriesFromConfig.
- The RepairLocalizationData commandlet has been removed. This existed to fix a change that pre-dated 4.0 so no such data should exist in the wild, and the commandlet couldn't be updated to work with the new API (we handle format upgrades in-place now).
- Removed FInternationalizationArchive::FindEntryBySource as it is no-longer safe to use. All existing code has been updated to use FInternationalizationArchive::FindEntryByKey instead.
Workflow changes:
- Archive conditioning now only adds new entries if they don't exist in the archive. This allows us to persist any existing translations, even if they're for old source text (caveat: native archives still update existing entries if the source is changed).
- PO export now sets the msgctx for each entry to be "namespace,key", rather than only doing it when the entry had key meta-data.
- PO import will now update both the source and translation stored in the archive to match the current PO data. This is the primary method by which stale source->translation pairs are updated.
- LocRes compilation may now optionally compile stale translations. There's an option controlling this (defaulted to off) that can be changed via the Localization Dashboard (or added to an existing config file).
Format changes:
- The archive version was bumped to 2.
- Archive entries now use the "Key" entry to store the key from the source text. Previously this "Key" entry was used to store the key meta-data, but that now exists within a "MetaData" sub-object. Loading handles this correctly based upon the archive version.
#jira UETOOL-897
#jira UETOOL-898
#jira UE-29481
Change 3066487 on 2016/07/27 by Matt.Kuhlenschmidt
Attempt to fix linux compilation
Change 3066504 on 2016/07/27 by Matt.Kuhlenschmidt
Fixed data tables with structs crashing due to recent editor selection optimizations
Change 3066886 on 2016/07/27 by Jamie.Dale
Added required data to accurately detect TZ (needed for DST)
#jira UE-28511
Change 3067122 on 2016/07/27 by Jamie.Dale
Added AsTime, AsDateTime, and AsDate overrides to BP to let you format a UTC time in a given timezone (default is the local timezone).
Previously you could only format times using the "invariant" timezone, which assumed that the time was already specified in the correct timezone for display.
Change 3067227 on 2016/07/27 by Jamie.Dale
Added a test to verify that the ICU timezone is set correctly to produce local time (including DST)
Change 3067313 on 2016/07/27 by Richard.TalbotWatkin
Fixed SplineComponent constructor so that old assets (prior to the property changes) load correctly if they had properties at default values.
#jira UE-33669 - Crash in Dev-Editor
Change 3067736 on 2016/07/27 by Stephan.Jiang
Border changes for experimental classes warning
Change 3067769 on 2016/07/27 by Stephan.Jiang
HERE BE DRAGONS
for experimental class warning
#UE-33780
Change 3068192 on 2016/07/28 by Alexis.Matte
#jira UE-33586 make sure we remove any false warning when running fbx automation test.
Change 3068264 on 2016/07/28 by Jamie.Dale
Removed some code that was no longer needed and could cause a crash
#jira UE-33342
Change 3068293 on 2016/07/28 by Alex.Delesky
#jira UE-33620 - Comments on constant and parameter nodes in the Material Editor will now persist when converting them.
Change 3068481 on 2016/07/28 by Stephan.Jiang
Adding Options to show/hide soft & hard references & dependencies in References Viewer
#jira UE-33746
Change 3068585 on 2016/07/28 by Richard.TalbotWatkin
Fix to Spline Mesh collision building so that geometry does not default to being auto-inflated in PhysX.
Change 3068701 on 2016/07/28 by Matt.Kuhlenschmidt
Fixed some issues with the selected classes not updating when objects are deselected
Change 3069335 on 2016/07/28 by Jamie.Dale
Fixed unintended error when trying to load a manifest/archive that didn't exist
Fixed a warning when trying to load a PO file that didn't exist
Change 3069408 on 2016/07/28 by Alex.Delesky
#jira UE-33429 - The editor should no longer hit an ensure if the user attempts to drop a tab into a tab well before the tab well has a chance to acknowledge its been dragged into a tab well.
Change 3069878 on 2016/07/29 by Jamie.Dale
Fixed include casing
#jira UE-33910
Change 3071807 on 2016/08/01 by Matt.Kuhlenschmidt
PR #2654: Fix the spell'ing of "diff'ing" and "diff'd". (Contributed by geary)
Change 3071813 on 2016/08/01 by Jamie.Dale
Fixed include casing
#jira UE-33936
Change 3072043 on 2016/08/01 by Jamie.Dale
Fixed FText formatting of pre-Gregorian dates
We now convert to an ICU UDate via an ICU GregorianCalendar, as UE4 and ICU have a different time scale for pre-Gregorian dates.
#jira UE-14504
Change 3072066 on 2016/08/01 by Jamie.Dale
PR #2590: FEATURE: Collapse/expand folders in the outliner (Contributed by projectgheist)
Change 3072149 on 2016/08/01 by Jamie.Dale
We no longer use the editor culture when running with -game
Change 3072169 on 2016/08/01 by Richard.TalbotWatkin
A couple of changes to the BSP code:
* Fixed longstanding issue where sometimes BSP geometry is not rebuilt correctly after editing it. This was due to poly normals not being recalculated after translating vertices in Geometry Mode.
* Fixed corruption to FPoly::iLink as it is overloaded to have two meanings: when building BSP, it represents the surface index of the next coplanar surface (and adding a new BSP node uses this to determine whether a new surface needs to be added or not). In other operations it represents an FPoly index, in general this is used more in editor geometry operations. This fixes various crashes which arose from rebuilding BSP resulting in invalid FPoly indices.
#jira UE-12157 - BSP brushes break when non-standard subtractive bsp brushes are used
#jira UE-32087 - Crash occurs when creating Static Mesh from Trigger Volume
Change 3072221 on 2016/08/01 by Jamie.Dale
Fixed "Launch On" not providing the correct cultures to StartCookByTheBookInEditor
#jira UE-33001
Change 3073389 on 2016/08/02 by Matt.Kuhlenschmidt
Added ability to vsync the editor. Disabled by default. Set r.VSyncEditor to 1 to enable it.
Reimplemented this change from the siggraph demo stream
Change 3073396 on 2016/08/02 by Matt.Kuhlenschmidt
Removed unused code as suggested by a pull request
Change 3073750 on 2016/08/02 by Richard.TalbotWatkin
Fixed formatting (broken in CL 3057895) in anticipation of merge from Main.
Change 3073789 on 2016/08/02 by Jamie.Dale
Added a way to mark text in text properties as culture invariant
This allows you to flag properties containing text that doesn't need to be gathered.
#jira UE-33713
Change 3073825 on 2016/08/02 by Stephan.Jiang
Material Editor: Highligh all Nodes connect to an input.
#jira UE-32502
Change 3073947 on 2016/08/02 by Stephan.Jiang
UMG Project settings to show/hide different classes and categories in Palette view.
--under Project Settings ->Editor->UMG Editor
Change 3074012 on 2016/08/02 by Stephan.Jiang
Minor changes and comments for CL: 3073947
Change 3074029 on 2016/08/02 by Jamie.Dale
Deleting folders in the Content Browser now removes the folder from disk
#jira UE-24303
Change 3074054 on 2016/08/02 by Matt.Kuhlenschmidt
Added missing stats to track pooled vertex and index buffer cpu memory
A new slate allocator was added to track memory usage for this case.
Change 3074056 on 2016/08/02 by Matt.Kuhlenschmidt
Renamed a few slate stats for consistency
Change 3074810 on 2016/08/02 by Matt.Kuhlenschmidt
Moved geometry cache asset type to the animation category. It is not a basic asset type
Change 3074826 on 2016/08/02 by Matt.Kuhlenschmidt
Fix a few padding and sizing issues
Change 3075322 on 2016/08/03 by Matt.Kuhlenschmidt
Settings UI improvements
* Added the ability to search through all settings at once
* Settings files which are not checked out are no longer grayed out. The editor now attempts to check out the file automatically if connected to source control and if that fails it marks the settings file writiable so it can save the setting properly
-------
* This change adds a refactor to the details panel to support multiple top level objects existing in the details panel at once instead of combining all passed in objects to a single common base class. This is disabled by default but can be turned on setting bAllowMultipleTopLevelObjects to true in FDetailsViewArgs when creating a details panel.
* Each top level object in a details panel will get their own customization instance. This made it necessary to deprecate a IDetailsView::GetBaseClass since there is no longer guaranteed to be one base class.
*Details panels can have their own customization for each "root object header" in order to customize the look of having multiple top level objects in the details panel.
Change 3075369 on 2016/08/03 by Matt.Kuhlenschmidt
Removed FBX scene as a top level option in asset filter menu in the content browser.
Change 3075556 on 2016/08/03 by Matt.Kuhlenschmidt
Mac warning fix
Change 3075603 on 2016/08/03 by Nick.Darnell
Adding two new plugins to engine, one for editor and one for runtime based testing. Currently the only consumer of these plugins is going to be the EngineTest project.
Change 3075605 on 2016/08/03 by Nick.Darnell
Functional Testing - Continued work on cleanup, reorganization, trying to improve the workflow for using the session browser.
Change 3076084 on 2016/08/03 by Jamie.Dale
Added basic support for localizing plugins
You can now localize plugins! There's no localization dashboard integration for this so it has to be done manually.
You need to define the localization targets your plugin uses in its .uplugin file, eg)
"LocalizationTargets": [
{
"Name": "Paper2D",
"LoadingPolicy": "Always"
}
]
"Name" should match a localization config under the Config/Localization folder for your plugin. These configs are set-up the same as any other localization config.
"LoadingPolicy" may be one of Never, Always, Editor, Game, PropertyNames, or ToolTips. This allows you to control under what conditions your localizations should be loaded (eg, if your plugin has both game and editor data, you can separate the editor data off into its own localization target that's only loaded by the editor).
UAT has been updated to support gathering from plugins. You can use the "IncludePlugins" flag to have it gather all plugins, or you can specify a whitelist of plugins to gather as an argument to "IncludePlugins", or alternatively, may blacklist certain plugins via "ExcludePlugins". It can now also support out-of-source gathering via the "UEProjectRoot" argument (previously it assumed that everything would be under the UE4 install/checkout directory).
UAT has been updated to support staging plugin LocRes files. It will stage any plugin targets that are enabled for a game/client build, and are also from a plugin that's enabled for your project.
#jira UE-4217
Change 3076123 on 2016/08/03 by Stephan.Jiang
Extend "Select all input nodes" function to general blueprint editor
Change 3077103 on 2016/08/04 by Jamie.Dale
Added support for underlined text rendering (including with drop-shadows)
FTextBlockStyle can now specify a brush to use to draw an underline for text (a suitable default would be "DefaultTextUnderline" from FCoreStyle). When a brush is specified here, we inject FSlateTextUnderlineLineHighlighter highlights into the text layout to draw the underline under the relevant pieces of text, using the correct color, position, and thickness.
FSlateFontCache::GetUnderlineMetrics and FSlateFontRenderer::GetUnderlineMetrics have been added to handle getting the underline metrics (which are slightly different to the baseline).
This change also adds FTextLayout::RemoveRunRenderer and FTextLayout::RemoveLineHighlight to fix some bad assumptions that FSlateEditableTextLayout and FTextBlockLayout were making about ownership of run renderers and line highlighters that could cause them to remove instances they didn't own (such as the new underline highlighter) when updating things like the cursor position or highlight.
Change 3077842 on 2016/08/04 by Jamie.Dale
Fixed fallout from API changes
Change 3077999 on 2016/08/04 by Jamie.Dale
Ensured that BULKDATA_SingleUse is only set by UFontBulkData::Serialize when loading
This prevents it being incorrectly set by other operations, such as counting memory used by font data.
#jira UE-34252
Change 3078000 on 2016/08/04 by Trung.Le
Categories VREditor-specific UMG widget assets as "VR Editor"
#jira UE-34134
Change 3078056 on 2016/08/04 by Nick.Darnell
Build - Fixing a mac compiler warning, reodering constructor initializers.
Change 3078813 on 2016/08/05 by Nick.Darnell
Reorganizing editor tests, establishing plugins in the EditorTest project that will house the tests.
Change 3078818 on 2016/08/05 by Nick.Darnell
Additional rename and cleanup associated with test moving.
Change 3078819 on 2016/08/05 by Nick.Darnell
Removing the Oculus performance automation test, not running, and was unclaimed.
Change 3078842 on 2016/08/05 by Nick.Darnell
Continued reorganizing tests.
Change 3078897 on 2016/08/05 by Nick.Darnell
Additional changes to get some moved tests compiling
Change 3079157 on 2016/08/05 by Nick.Darnell
Making it possible to browse provider names thorugh the source control module interface.
Change 3079176 on 2016/08/05 by Stephan.Jiang
Add shortcut Ctrl+Shift+Space to rotate through different viewport options
#jira UE-34140
Change 3079208 on 2016/08/05 by Stephan.Jiang
Fix new animation name check in UMG
Change 3079278 on 2016/08/05 by Nick.Darnell
Fixing the build
Change 3080555 on 2016/08/08 by Matt.Kuhlenschmidt
Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
Change 3081155 on 2016/08/08 by Nick.Darnell
Fixing some issues with the editor tests / runtime tests under certain build configs.
Change 3081243 on 2016/08/08 by Stephan.Jiang
Add gesture in LevelViewport to switch between Top/Bottom...etc.
Change 3082226 on 2016/08/09 by Matt.Kuhlenschmidt
Work around animations not playing in paragon due to bsp rebuilds (UE-34391)
Change 3082254 on 2016/08/09 by Stephan.Jiang
DragTool_ViewportChange init changes
[CL 3082411 by Matt Kuhlenschmidt in Main branch]
2016-08-09 11:28:56 -04:00
if ( UFunctionalTestingManager : : RunAllFunctionalTests ( TestWorld , bClearLog , bRunLooped , true , TestName ) = = false )
2015-10-06 15:59:09 -04:00
{
UE_LOG ( LogFunctionalTest , Error , TEXT ( " No functional testing script on map. " ) ) ;
}
2014-03-14 14:13:41 -04:00
}
}
//////////////////////////////////////////////////////////////////////////
// Exec
//////////////////////////////////////////////////////////////////////////
static bool FuncTestExec ( UWorld * InWorld , const TCHAR * Command , FOutputDevice & Ar )
{
if ( FParse : : Command ( & Command , TEXT ( " ftest " ) ) )
{
if ( FParse : : Command ( & Command , TEXT ( " start " ) ) )
{
const bool bLooped = FParse : : Command ( & Command , TEXT ( " loop " ) ) ;
2015-10-06 15:59:09 -04:00
//instead of allowing straight use of the functional test framework, this should go through the automation framework and kick off one of the Editor/Client functional tests
Copying //UE4/Fortnite-Staging to //UE4/Dev-Main (Source: //Fortnite/Main @ 3284787)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3284469 on 2017/02/02 by Saul.Abreu
Fixed comment on Slate Brush for getting the resource object and what kind of object it may be.
Change 3284410 on 2017/02/02 by Ben.Zeigler
Add FSlateBrush subclass constructors that take resource objects, to create static brushes at startup time that refer to already loaded UTextures
Change 3284381 on 2017/02/02 by Saul.Abreu
#fortnite
Added functionality to common button to actually use the single material brush setting and automatically create and expose access to a material instance dynamic.
Also fixed some potential object lifetime issues in CommonButton.
Change 3282423 on 2017/02/01 by Ben.Zeigler
Fix issue with synchronous load of objects not invalidating cached nulls for asset ptrs. This was always an issue but my recent change to assetptr SynchronousLoad made it manifest more often.
In the future we may want to invalidate cached nulls on object creation to handle cases like save games
Change 3282265 on 2017/02/01 by Ian.Fox
#UE4, #XMPP - Reduce verbosity of strophe receive-stanza log
Change 3282159 on 2017/02/01 by Ben.Zeigler
Fix issue where async loading null string reference would deadlock
Change 3282054 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-28234 Fix sceImeDialogTerm() warning
We were calling sceImeDialogTerm() in cases where the dialog wasn't active. The only state it's legitimate to call sceImeDialogTerm() in is SCE_IME_DIALOG_STATUS_FINISHED.
Change 3282051 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-30021 Respect bVirtualKeyboardSendsTextChanged on PS4
Change 3281799 on 2017/02/01 by Nick.Cooper
#Fortnite - Removed code on PS4 that was adding a EMouseButtons::Left press when the right shoulder button was pressed
#jira FORT-35821
Change 3281771 on 2017/02/01 by Lukasz.Furman
fixed end of path conditions breaking movement when path starts with a navlink and turn back below
#jira FORT-36375
Change 3280579 on 2017/01/31 by Ben.Zeigler
Remove ForEachProperty and switch AssetManager to use TPropertyValueIterator instead. Code review changes to TPropertyValueIterator.
Add InitializeAssetBundlesFromMetadata to AssetManager which parses AssetBundles metadata at load/save time and uses that to assign asset references to specific bundles.
Add RecursivelyExpandBundleData to allow recursively acquiring bundle dependencies.
Add AssetBundles to the PropertyMetadata list. Sorted list and fixed some comment typos.
Change it so the DataAsset factory won't show blueprintable native classes as valid, the editor doesn't like it when you have both blueprinted and non-blueprinted assets of the same base class.
Change AssetPtr.LoadSynchronous to be const and to behave the same as Get(). This was a licensee complaint and the old behavior to null out the reference because of a transient load error can cause data loss.
Change 3280176 on 2017/01/31 by Lukasz.Furman
fixed missing navmesh update on replacing existing floor/roof
#jira FORT-36369
Change 3279761 on 2017/01/31 by Saul.Abreu
#fortnite
Added ability to keep common buttons interactable even when they're selected, so they can still be clicked. Old default behavior is preserved.
Change 3279678 on 2017/01/31 by Saul.Abreu
#fortnite
Moved GetCurrentInputType from UCommonActionWidget to UCommonUIContext for reuse.
Change 3278593 on 2017/01/30 by Ben.Zeigler
Delay initialization of asset registry tag filter list until it is needed, to make sure it catches modules that were loaded after the asset registry module. Fixes issues with tags not inherting to child classes
Change 3278592 on 2017/01/30 by Ben.Zeigler
Add TPropertyValueIterator to replace ForEachProperty. This is a recursive iterator instead of a predicate search, and also allows extracting the property chain, which I need for metadata parsing.
AssetManager has an example of both uses, will delete ForEachProperty tomorrow.
Change 3277859 on 2017/01/30 by Lukasz.Furman
fixed navigation path postprocessing not working with vertical navlinks near start point
required by taker portal up move
#jira FORT-36570
Change 3277580 on 2017/01/30 by Ben.Zeigler
#jira FORT-36662 Return streamable manager to always use hard references, weak references do not work during AddReferencedObjects at all, because of the unreachable flag that is set during GC. This returns the behavior of forcing assets to be "Force Deleted" if they were loaded by asset manager.
Change 3276903 on 2017/01/29 by Bob.Tellez
#BlueprintContext Updated copyright notice for 2017
Change 3276902 on 2017/01/29 by Bob.Tellez
#CommonUI Updated some missed copyright notices for 2017
Change 3276731 on 2017/01/29 by Jeff.Campeau
Forward modified warning messages
Change 3276642 on 2017/01/28 by Jeff.Campeau
Change specific errors from packaging multiple configurations into a single package into warnings.
Change 3276228 on 2017/01/27 by Ben.Zeigler
Fix crash/data loss when a Pin's DefaultObject points to an ObjectRedirector. FixObject will return redirectors so you need to correct for that
Change 3276073 on 2017/01/27 by Ben.Zeigler
Add some utility functions to core asset manager and streamablemanager and fix various editor interactions.
Add startup and cook interaction hooks to AssetManager directly and call them form Engine in addition to the game-specific hooks.
Add concept of BulkScanning to AssetManager, use this when scanning many directories.
Fix issues with string asset references being wrong for blueprint classes, this would be easier if the assetdata pointed to the class and not the possibly-missing blueprint.
Change StreamableManager to keep referenced objects as weak pointers. These pointers are effectively soft in the editor, hard outside of the editor. By storing them as raw pointers it was difficult to guarantee their safety without causing issues with deleting assets.
Change 3276058 on 2017/01/27 by Ben.Zeigler
Add UStruct::ForEachProperty, which recursively iterates properties of a struct and calls a lambda.
Add some new BaseStructure accessors
Change 3275981 on 2017/01/27 by Alex.Thurman
Move Item Management Screen input handling into child activatable panels.
#JIRA FORT-35759
#JIRA FORT-35758
Change 3275626 on 2017/01/27 by John.Pollard
First pass at implementing net relevancy for replays
* All connections are considered when determing if an actor is relevant
* Enable by setting demo.UseNetRelevancy to 1
* Override cull distance with demo.CullDistanceOverride
Change 3275221 on 2017/01/27 by John.Pollard
FORT-36482 - Fix issue with using wrong serializer for re-mapping objects
Change 3274149 on 2017/01/26 by Alex.Thurman
Expose the Common Widget Switcher as part of the common UI plugin library.
#fort
Change 3274103 on 2017/01/26 by Michael.Trepka
Fixed a crash on startup on Mac when using a shader cache populated during cooking and re-enabled cook time cache generation in Fortnite
Change 3273867 on 2017/01/26 by James.Hopkin
Enabled Stomp for PS4
#jira FORT-35517
Change 3273749 on 2017/01/26 by James.Hopkin
Added libwebsocket libraries for PS4
#jira FORT-35517
Change 3273105 on 2017/01/26 by James.Hopkin
Moved libwebsockets.h into platform-specific folders (in preparation for PS4 building against slightly more recent version)
Change 3273020 on 2017/01/26 by Jeff.Campeau
Stage manifest files from loose folder, not binary folder (appdata.bin is no longer created in the binary directory)
Change 3272825 on 2017/01/25 by Saad.Nader
#fort
Added function to set the auto activation on or off on a common widget switcher.
Updated CommonTabListWidget to temporarily turn off activation when setting a linked switcher.
Added some missing delegate cleanup code.
Change 3272598 on 2017/01/25 by Justin.Augspurger
#fortnite
Add activatable panel function that returns if an input handler is set.
Change 3272411 on 2017/01/25 by Michael.Trepka
Increased g.TimeoutForBlockOnRenderFence on Mac to 5 minutes
Change 3271913 on 2017/01/25 by Lukasz.Furman
fixed conditions of movement's destinaiton oveshot check to work with setup in FTest maps
#jira FORT-36375
Change 3271723 on 2017/01/25 by Bob.Tellez
#UE4 Disabled MfMedia on windows.
Change 3271223 on 2017/01/25 by Jeff.Campeau
Allow packaging to fall back to the engine directory for the lastchunk file if it's not present in the staged version.
Change 3271066 on 2017/01/24 by Chris.Gagnon
- Properly clean up the UIManager and Analog Cursor when game/pie exists.
- FortAnalogCursor now sequesters the mouse during InputSuspension.
- Change the callback order for activate and deactivate so the classes can chain activate.
Change 3271064 on 2017/01/24 by Chris.Gagnon
- NavigateToWidget() added to SlateApplication
- SlistView and it's descendants now have the ability to navigate to the widget scrolled into view
Change 3270778 on 2017/01/24 by Michael.Trepka
Fixed and enabled cook time binary shader cache generation for Mac
Change 3270645 on 2017/01/24 by Jeff.Campeau
- New manifest generation (backward compatible)
- True support for multiconfig packages
- Settings all based in target settings in editor
- Localized package resources with support to reduce redundancies
- Resource table generation and manifest generation combined
- Further reduced unneeded deploy copies
#jira FORT-36413
Change 3270191 on 2017/01/24 by Lukasz.Furman
reverted file unrelated to DecoyDistance fix
Change 3270133 on 2017/01/24 by Lukasz.Furman
fixed item scoring in DecoyDistance test
#jira FORT-36034
Change 3269363 on 2017/01/24 by James.Hopkin
#online #stomp Added error logging for loss of heartbeat
#jira FORT-34763
Change 3268921 on 2017/01/23 by Saul.Abreu
#fortnite
Renamed CommonWidgetGroup to emphasize that it is an abstract base class. Added ability to get the selected button out of CommonButtonGroup.
Change 3268913 on 2017/01/23 by Saul.Abreu
#fortnite
Recreated some minor changes to UEnumProperty so that TMap properties don't assert with enums as keys.
Change 3268436 on 2017/01/23 by Michael.Trepka
Added rhi.Metal.AllowRHIThread to allow games to disable RHI thread on Mac to be able to use shader cache, which currently is incompatible with RHI thread. Disabled RHI thread on Mac in Fortnite.
Also, temporarily disabled Metal validation layer in Fortnite until I have more information on the cost of various levels of validation.
Change 3266945 on 2017/01/20 by Bob.Tellez
#UE4 Allowing more configurations to generate debug symbols
Change 3266814 on 2017/01/20 by Bob.Tellez
#UE4 Moved MfMedia video track handling to the render thread, which removes the need for some buffer management in MediaTextureResource.cpp. Also, Mfmedia now emits the PlaybackEndReached event.
#JIRA FORT-31753
Change 3266541 on 2017/01/20 by Lukasz.Furman
moved navigation export of building actor's static mesh into owning actor data instead of using parent chain,
attempt to fix husks passing through walls that lost navigation data at some point during game
#jira FORT-35741
Change 3266269 on 2017/01/20 by Fred.Kimberley
Change async loading of gameplay cues so that the gameplay cue manager maintains ownership of the assets and can control their lifetime.
Change 3266053 on 2017/01/20 by Michael.Trepka
Fixed issues with shader cache not working properly with Mac Metal (but it still requires -norhithread to work at all). Enabled the shader cache by default if RHI thread is disabled.
Change 3265585 on 2017/01/20 by Bart.Hawthorne
Enable Oodle in Fortnite
Change 3264678 on 2017/01/19 by Lukasz.Furman
fixed crash on opening behavior trees with invalid decorator class (empty redirectors)
#ue4
Change 3264473 on 2017/01/19 by Fred.Kimberley
Tell the streamable manager to manage gameplay cue assets that are async loaded.
#jira FORT-35171
Change 3262846 on 2017/01/18 by John.Pollard
FORT-30352 - Fix by lowering network logging verbosity for benign condition
Change 3262535 on 2017/01/18 by Michael.Trepka
Fix for FORT-35776
Make sure to set reasterizer state when rendering with a material in FSlateRHIRenderingPolicy::DrawElements
Change 3262386 on 2017/01/18 by John.Pollard
Deprecate bPendingNetUpdate, NetUpdateTime and LastNetUpdateTime
Change 3262375 on 2017/01/18 by Ian.Fox
#UE4, #XMPP - Handle Message stanza errors
#JIRA OGS-505
Change 3262262 on 2017/01/18 by John.Pollard
Turn on adaptive network updates by default
Change 3262215 on 2017/01/18 by Rob.Cannaday
Fix for returned XMPP messages (to invalid recipient) triggering on message received delegates
Change 3262094 on 2017/01/18 by Jamie.Dale
Cook on the fly builds now resolve string asset references
Change 3262091 on 2017/01/18 by Jamie.Dale
Guarding against potentially invalid call to FString::Mid
Change 3262089 on 2017/01/18 by Jamie.Dale
Fixing RedirectCollector issues with projects outside the UE4 directory
It was storing relative paths, but MakeStandardFilename wouldn't make a relative path for anything outside of the UE4 directory. In addition to this, some code was testing filters using package style paths, so I converted all the code to use package style paths instead.
Change 3261201 on 2017/01/17 by Ben.Zeigler
Perf improvements to PackageName that improve cooked load times by around a second. These string functions get called very often and Split is very slow, especially backwards searching or case insensitive.
Change 3261098 on 2017/01/17 by John.Pollard
Fix for FORT-35711 - Edited buildings do not always replicate correctly
We were removing the actor from the network object list too soon
Change 3260515 on 2017/01/17 by John.Abercrombie
Fix MoveTo task ending with success when it's interrupted
- Default the task to an invalid status rather than assuming we are successful
#jira FORT-35497 - Defender can pick up a weapon from far away as they get knocked DBNO
Change 3260343 on 2017/01/17 by Lukasz.Furman
fixed end of path conditions for crowd simulation when using string pulled path
#jira FORT-35713
Change 3259419 on 2017/01/16 by John.Pollard
Network actor list fixes:
* Don't add add actor to network list if it will just immediately get removed
* Remove destroyed actors from actor list on clients
* Make sure actor Role is set to correct value before adding to network actor list
Change 3259104 on 2017/01/16 by Michael.Trepka
Change the default for rhi.Metal.RuntimeDebugLevel to 2, as 3 is too expensive for Development builds and disable METAL_DEBUG_OPTIONS in Test builds
Change 3259017 on 2017/01/16 by Saad.Nader
#fort
Added a missing remove delegate handler when widget is destructed.
Change 3258901 on 2017/01/16 by Saad.Nader
#fort
Added the ability to remove an input action from the list of actions we are listening for in an activatable panel.
Change 3258844 on 2017/01/16 by Ryan.Rauschkolb
#fortnite
Fixed issue where UUMGSequencePlayer:Tick would broadcast OnAnimationFinished before the final frame of the animation plays
Change 3258734 on 2017/01/16 by Michael.Trepka
Fixed a crash on exit on Mac in FCocoaWindow's windowWillResize:
#jira FORT-35720
Change 3258353 on 2017/01/16 by James.Hopkin
#xmpp Fixed UserJid constructor to be constructed by value - same efficiency, less code and allows any combination of rvalues and lvalues.
Change 3257640 on 2017/01/13 by Saul.Abreu
#fortnite
#jira FORT-35387
Item Quantity List widget, not yet complete.
Minor tweak to widget factory (for pooling) to support player controllers as "outer"s.
In progress refactor of list of resources given for a mulch operation, using the item quantity list widget.
Change 3257310 on 2017/01/13 by Bob.Tellez
#UE4 Default stack size for windows is now configurable. There is a different number for windows editor targets than non-editor targets.
Change 3257094 on 2017/01/13 by John.Pollard
Refactor network actor list management to be more efficient
* Move dormancy list management to FNetworkObjectList
* Optimize actor network dormancy by removing actors from the active list that are dormant on all connections
* Removed NetUpdateTime on actor, and now use the NextUpdateTime on FNetworkObjectInfo (these values are more hot in the cache too)
* We now early out of the consider logic faster when possible
* Remove other misc unused network state/code and general cleanup
Change 3255891 on 2017/01/12 by Chris.Gagnon
Added "Back" action to squads screens and armory landing.
Added activation widget centering for squads screens.
Added a couple Explicit navigations to get a better navigation experience.
Added a bunch of Fkeys to the input binding table.
Added PanelButton Widget.
Change 3254809 on 2017/01/11 by Bob.Tellez
#UE4 Crash fix for shader views that get destroyed but still have pointers to them in the SRV cache.
Change 3254651 on 2017/01/11 by Bob.Tellez
#UE4 Changed MfMedia track sync mode to Unbuffered since buffered causes a crash shortly after playing.
#JIRA FORT-35566
Change 3254307 on 2017/01/11 by Lukasz.Furman
fixed "Ftest start" command interfering with automation passes
#jira FORT-35459
Change 3253625 on 2017/01/11 by Lukasz.Furman
more accurate overshot detection for crowd simulation trying to reach last path corner
#jira FORT-35502
Change 3252864 on 2017/01/10 by Lina.Halper
fix for invalid anim curve issue when duplicating curves.
#jira: FORT-35151
Change 3252427 on 2017/01/10 by Ben.Zeigler
#jira UE-40390 Fix crash saving blueprint with an inherited DataTable/CurveTable reference. Delta serialization meant that the necessary name wasn't in the name table, so adding it manually now.
Copied from CL #3252418
Change 3252344 on 2017/01/10 by Lukasz.Furman
added navmesh tile observation to hotspots
now they will be able to reevaluate unreachable slots if nearby navmesh is updated (active only when more than half melee slots is unreachable)
#jira FORT-35450
Change 3251644 on 2017/01/09 by Saul.Abreu
#fortnite
#jira FORT-35388
Refactored common input so that the actions hold the per-platform key mappings. A config file holds the mapping of individual keys to their per-platform display data (icon-only for now). ALL ENTRIES IN THE INPUT ACTION DATA TABLE ARE NOW MISSING THEIR KEYS. RE-ADD THEM. I did test that it works.
Change 3251118 on 2017/01/09 by David.Hamm
Corrected ability system logging messages that are turning up in bug reports.
Change 3250932 on 2017/01/09 by Bob.Tellez
#UE4 Unshelved from DanielW. Fix for memory usage during map save for large maps
Change 3250093 on 2017/01/06 by Jeff.Campeau
libstrophe UE4 modifications
Change 3249787 on 2017/01/06 by John.Pollard
Add some replay/network stats
Change 3248808 on 2017/01/05 by Chris.Gagnon
Fix for ensuring Main Tabs properly activates it's content.
Includes a pretty hacky delay, will need to deal with that at somepoint.
Change 3248693 on 2017/01/05 by Chris.Gagnon
NavigationEvent now gets populated with the modifier keys so that Shift and Ctrl behaviors of the list work.
Change 3248647 on 2017/01/05 by Saul.Abreu
Fixed shadowed variable warning in Create Event node.
Change 3248358 on 2017/01/05 by Saul.Abreu
Added return type/outputs to the signature displayed in the CreateEvent node. Also added tooltip describing the syntax for display since it's non-standard.
Change 3247937 on 2017/01/05 by Chris.Gagnon
- Refactored the Custom Navigation Event to be a part of the Viewport so that it functions properly with Multi PIE and doesn't interfere with the Editor while PIE is running.
- Added the ability for an FReply to specify an explict navigation attempt directly.
- Added ENavigationGenesis to the navigation system allowing SListView and STileView's bHandleGamepadEvents functionality to be hooked up again.
Change 3247887 on 2017/01/05 by Bob.Tellez
#UE4 UpdateExistingPackagePriorities does not work in EDL. It is now disabled.
#JIRA FORT-35193
Change 3247770 on 2017/01/05 by Fred.Kimberley
Fix an issue where PreAttributeBaseChange was not always being called and sometimes called after the attribute base value had changed.
Change 3247133 on 2017/01/04 by Saul.Abreu
UWidget designer method renaming to avoid extremely likely naming collisions.
Change 3246507 on 2017/01/04 by Chris.Gagnon
Created CommonBorder and UCommonBorderStyle very simple but will allow consistent sharing of styles.
Cleaned up palette category usage and a few misc things.
Updated the UI test material, and created a UI Test BorderStyle to utilize it.
Change 3245517 on 2017/01/03 by Chris.Gagnon
Copying over slate material changes to provide more functionalit.
Added a UITest Material as an example
Change 3245371 on 2017/01/03 by Lukasz.Furman
fixed husks attacking props from far away
#jira FORT-34655
Change 3245363 on 2017/01/03 by Justin.Sargent
Tracked down a CEF viewport scaling issue to some changes made for supporting high DPI. After talking it over with Trepka, we decided to revert the specific change causing the CEF viewport regression. Trepka will be following up with a proper fix.
#jira OPP-6513
Change 3244525 on 2017/01/02 by Chris.Gagnon
Activatable panels now clear out action handlers when the slate widgets are released.
Change 3244517 on 2017/01/02 by Chris.Gagnon
New frontend major refactors.
- New content api for UI States
- New intro / outro functionality for activatable panels
- New CommonWidgetStack widget
- Landing pages
- Navigation suport for SListView, STileView
- Navigation changes
- Lots of New UI layout changes and functionality changes
- More things that I'm forgetting
Change 3242434 on 2016/12/21 by Ben.Zeigler
Improve package saving time by stopping export sorting from recursing into dependencies outside of the package. It has no control over them so it doesn't care about their load order.
Change 3242433 on 2016/12/21 by Ben.Zeigler
Small perf improvement for quad tree, stop it from constantly reallocating memory when removing nodes as they will likely get filled again or the node will get deleted
Change 3242294 on 2016/12/21 by Bob.Tellez
#UE4 Re-applying the fix for rendering editor primitives when r.EarlyZPassOnlyMaterialMasking is enabled
Change 3241034 on 2016/12/20 by John.Abercrombie
Add or UpdateBlueprintSearchMetadata when we don't have a TargetPlatform
- Better fix for issue mentioned in CL 3241023
Change 3241023 on 2016/12/20 by John.Abercrombie
Fixed UBlueprint::PreSave crashing when there is no TargetPlatform (default behavior)
Change 3240988 on 2016/12/20 by Lukasz.Furman
fixed melee defenders not finishing move then their goal is outside tether range
#jira FORT-34673
Change 3240966 on 2016/12/20 by Ben.Zeigler
Disable find in blueprint query when cooking for non editor platforms, saves around 50 seconds off of a Fortnite fast cook.
UBlueprint::PreSave gets called even though they get filtered out of cooked builds, as the filtering is after PreSave.
Change 3240898 on 2016/12/20 by Lukasz.Furman
fixed memory corruption in template A* solver
#fortnite
Change 3239920 on 2016/12/19 by Ben.Zeigler
Fix warning display for string asset references while cooking, now that failed to find errors add to KnownMissing, we need to check KnownMissing before doing the find, and turn off the internal warnings as the redirect collector has more context info
Change 3239819 on 2016/12/19 by Lukasz.Furman
fixed uninitialized debug draw delegate pointers
#ue4
Change 3238789 on 2016/12/16 by Ben.Zeigler
Fix issue where spawned cues triggered from async loads wouldn't have a proper world
Fix issue where bShouldSyncLoad/bShouldAsyncLoad were backwards
Change 3238782 on 2016/12/16 by Ben.Zeigler
#jira FORT-34825 Fix issue where Macro CDOs had corrupted persistent ubergraph frames during blueprint compile on load, by changing it so no CDOs have persistent frames.
This also saves memory as using persistent frames is incorrect for CDOs, things like latent functions do not make sense.
Fix from Dan O'Connor
Change 3238685 on 2016/12/16 by Bob.Tellez
#UE4 Graceful recovery for actors that changed mobility between frames in TextureInstanceManager.
#JIRA FORT-34833
Change 3238671 on 2016/12/16 by Ben.Zeigler
Fix ensure opening widget palette view, it was trying to create asset data for trash classes becuase it was just doing a raw class iterator, which is no longer supported.
Change 3238606 on 2016/12/16 by Rob.Cannaday
Fix crash in FInternetAddrBSD::SetIp when InAddr is an empty string.
#jira FORT-34826
Change 3238594 on 2016/12/16 by Ben.Zeigler
#jira FORT-34704 Fix bNetTemporary actors to be created with reliable packets, to keep sending until their initial send is done.
The code that used to resend incomplete net temporary actors appears to have stopped working sometime during UE4 networking refactors. Remove unused flags related to that code
Change 3238315 on 2016/12/16 by Lukasz.Furman
fixed composite navigation path usage for husks not controlled by crowd simulation
#jira FORT-34509
Change 3238145 on 2016/12/16 by Lukasz.Furman
fixed crash in EQS profiler
#jira FORT-34831
Change 3237479 on 2016/12/15 by Ben.Zeigler
Don't crash if cue manager has no world, not sure how it got into this state
Change 3236992 on 2016/12/15 by Michael.Trepka
Don't fall back to SM4 on Intel GPUs on Mac any more
Change 3236929 on 2016/12/15 by Bob.Tellez
#UE4 Fixed an ensure that was caused by an FResourceSizeEx being initialized with the wrong type
Change 3236867 on 2016/12/15 by Bob.Tellez
#Fortinte Submitted change from Gil to fix EDL crash loading into Outpost on PS4
#JIRA FORT-34794
Change 3236747 on 2016/12/15 by Ben.Zeigler
Fortnite fixes for asset manager/async loading changes
FortItemDefinitions now async load needed assets on demand. Currently this is only loading AttributeTemplate, which may not even be in use
The blueprints needed for weapons are now async loaded when the player puts them on their quickbar, instead of being loaded once and staying in memory forever
FortAssetManager is now being used in parallel to the loading code in FortGlobals, I will remove the FortGlobals code in the next checkin once I know things are working
Change it so the MissionEventNames are loaded asynchronously when clicking the picker, this code was half completed already so I finished it up
Change it so GameplayCueNotifies get async loaded on demand instead of async loaded at startup, this improves startup load times
Change it so the CommonUIModule uses the global assetmanager instead of a passed in StreamableManagerHandler
Item json changed because it got resorted, no actual json changes other than a few cosmetics that were added yesterday
Change it so FortItem implements the mcp item interface directly, instead of FortWorldItem and FortAccountItem implementing it separately
Change 3236746 on 2016/12/15 by Ben.Zeigler
Add ProcessAsyncLoadingUntilComplete which will process async loading until a predicate is true or time runs out
Change streamable manager to return a handle structure, that can be used to block or poll as needed. Active handles will keep objects in memory even after the load finishes
FStreamableManager::SynchronousLoad now does high-priority-async-load-and-wait instead of doing a full async flush/static load object if asynch loading is in progress, this should make stalls much shorter when sync loading a single asset
Deprecate some of the StreamableManager functions now that handles exist. The fact that SynchronousLoad kept an object from ever GCing was not expected behavior by most users
Add Experimental feature AssetManager, which is a global singleton that supports loading assets on demand. It is disabled by default
Add concept of PrimaryAssetID which is a Type:Name pair that globally identifies an asset. This is returned by GetPrimaryAssetId on UObject and is needed for the asset manager to work
Add PrimaryAssetData class, which supports the primary asset and bundle concepts natively
Add concept of an AssetBundleEntry/Data, which is a scoped map from name -> list of assets. If you modify an AssetBundleData it will get baked into the asset registry at runtime
Fix KismetSystemLibrary and GameplayCueManager to use the new streaming functionality
Change 3234031 on 2016/12/13 by Ian.Fox
#UE4, #XMPP - Finish libstrophe MUC (Multi-User Chat) implementation
- Pull history when joining channels
- Handle configuring of XMPP channels we create (and global chat rooms if we managed to create them)
[CL 3291644 by Bob Tellez in Main branch]
2017-02-07 23:55:24 -05:00
IFuncTestManager * ManagerPtr = FFunctionalTestingModule : : Get ( ) ;
if ( ! ManagerPtr - > IsRunning ( ) & & ! ManagerPtr - > IsActivationPending ( ) )
Copying //UE4/Orion-Staging to //UE4/Main (Source: //Orion/Dev-General @ 3037465)
#lockdown Nick.Penwarden
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3037044 on 2016/07/04 by Ben.Woodhouse
(Content only change)
Roll back WorldAlignedNormal material function to the previous version (which worked properly). The broken version was actually checked in back in 2014 (//depot/UE4-Fortnite/...@2342687), but it only hit //UE4/main very recently.
#jira OR-24849
#rb me
Change 3036463 on 2016/07/01 by Andrew.Grant
Clarified BP compiler message
#rb na
#tests compiled AnimBP_Grux_Base
Change 3036424 on 2016/07/01 by Andrew.Grant
Integrated fix from //UE4/Main for state not being cleared when rebuidling HMSM.
#rb na
#tests verified warnings gone after resaving Agora_Terrain
Change 3036317 on 2016/07/01 by Ben.Salem
Allow FTests to be run in succession, and allow them to also be run in game instead of just editor.
These are engine changes that have been tested extensively in fortnite, and have gone through a minor test pass here as well.
#rb william.ewen, bob.tellez
#tests Ran through all of Howitzer's new FTests in one run!
Change 3036168 on 2016/07/01 by Frank.Fella
MovieSceneRendering - Fix a crash when deserializing burn in options. Change from Andrew Rodham.
#rb Me for Andrew.
#tests Movie scene renders in a separate process no longer crash when the burn in options are missing.
Change 3035632 on 2016/07/01 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3035536
#RB:none
#Tests:none
#ROBOMERGE-SOURCE: CL 3035630 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3035237 on 2016/07/01 by Dmitry.Rekman
Updated WebRTC libs to avoid SIGPIPE (OR-24857).
- Should also remove debug output.
- These fixes has been previously done for OR-13279 but apparently libs have been recompiled from earlier sources since that.
- Current libs have been compiled by Lee Clark (CL 3034752).
#rb Lee Clark
#codereview Lee.Clark, Andrew.Grant, Sam.Zamani
#tests Run PS4 client, made sure XMPP connection was established and got some traffic.
Change 3035210 on 2016/07/01 by Andrew.Grant
Fix for broken AI / abilities
#rb none
#tests Golden path with gadget, all abilities working, AI are happy and combatitive again
Change 3034936 on 2016/06/30 by Josh.Markiewicz
#UE4 - separated out basic features from update/patch/hotfix manager into generic engine class
- left Orion specific overloads around
#rb none
#tests PS4/PC/Server hotfix and update checks (with and without update required)
#codereview ian.fox, ben.zeigler, bob.tellez
Change 3034935 on 2016/06/30 by Josh.Markiewicz
#UE4 - make sure that mcp client keys, names, and ids can't have extraneous spaces in them from the ini file
#codereview sam.zamani, shon.love, david.nikdel, eric.newman
#tests paragon launch
#rb none
Change 3034933 on 2016/06/30 by Josh.Markiewicz
#UE4 - moved OnlineHotfixManager out of deprecated classes directory
#rb none
#tests compiles
Change 3034524 on 2016/06/30 by Andrew.Grant
Fix for team assignment being broken in blueprints
#rb Dan.OConnor
#tests Golden Path with sparrow, verified arrow AOE color is correct and harvesters deliver XP
Change 3034521 on 2016/06/30 by Andrew.Grant
Setting replay version to 0 for v29
#rb none
#tests none
Change 3034483 on 2016/06/30 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Repair main build integration
#RB:none
#Tests:none
[CodeReviewed]: david.ratti
#ROBOMERGE-SOURCE: CL 3034395 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3034481 on 2016/06/30 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3034181
#RB:none
#Tests:none
#ROBOMERGE-SOURCE: CL 3034319 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3034464 on 2016/06/30 by Martin.Wilson
Fix for trying to load preview mesh for skeleton when the preview meshes skeleton doesn't match
#rb Jurre.DeBaare
#tests Asset loading in the editor
Change 3034194 on 2016/06/30 by Martin.Wilson
Fix for rendering crash
#codereview Rolando.Caloca
#rb Rolando.Caloca
#test editor startup
Change 3034192 on 2016/06/30 by Andrew.Grant
Removing Fortnight madness
#codereview Ben.Marsh
#rb none
#tests compiled
Change 3034106 on 2016/06/30 by Martin.Wilson
Fix retargetting of anim blueprints so that all animations referred to are collected and duplicated, not just direct bp variables
#rb Thomas.Sarkanen
#tests In editor retargeting of various blueprint setups
Change 3034041 on 2016/06/30 by Jason.Bestimt
#ROBOMERGE-AUTHOR: antony.carter
Exposing some of the slate interfaces for upcoming Social Plugin usage
#RB Jamie.Dale
#TESTS NA
#ROBOMERGE-SOURCE: CL 3034040 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3033591 on 2016/06/29 by Andrew.Grant
Merging //UE4/Main @ 3033257 through Orion-Staging
#rb none
#tests engine QA, golden path in PIE and out, BuildCookRun PS4
Change 3033545 on 2016/06/29 by Josh.Markiewicz
#UE4 - fixed shadowed variable
#rb none
#tests compiles
Change 3033462 on 2016/06/29 by Josh.Markiewicz
#UE4 - notify game about net guid mismatch or net checksum failures
#rb john.pollard
#codereview john.pollard, dave.ratti, andrew.grant, matt.oelfke
#tests triggered fake mismatches while networked
Change 3033453 on 2016/06/29 by Josh.Markiewicz
#UE4 - turned off extra logging feature now that the auth expiration issues have been solved
- removes some bad log spam showing up in live (starting when already started, stopped when not started)
#rb none
#tests none
#codereview ben.zeigler, sam.zamani
Change 3033020 on 2016/06/29 by Jason.Bestimt
#ROBOMERGE-AUTHOR: david.nikdel
#OGF
Merging //GamePlugins/Main/PluginTestGame/Plugins/OnlineGameplayFramework/...
to //Orion/Main/OrionGame/Plugins/OnlineGameplayFramework/...
---------
- Support for exclusive profile locking (by dedicated servers)
- PostAdd event for IMcpItemAware
- New McpItemDefinitionBase class
- Support for converting to new colon-based template ids
- Improvements to FJsonObjectWrapper (technically an engine change)
- Ability to specify an explicit fulfillment class to instantiate
- Ability to split catalog localization out from the main data.
- Couple of Orion fix ups for the new code
- Re-exported catalog (loc data now separated out)
---------
#RB: none
#TESTS: login, mcp, etc
[CodeReviewed]: Jason.Bestimt
#ROBOMERGE-SOURCE: CL 3033018 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3032623 on 2016/06/29 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3032459
#RB:none
#Tests:none
#ROBOMERGE-SOURCE: CL 3032516 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3032451 on 2016/06/29 by bruce.nesbit
Added code in AutoPopulateInstanceProperties to populate vector and scalar parameter data.
#rb SimonT
#tests PIE
Change 3031620 on 2016/06/28 by Aaron.McLeran
Implementing CL 3029659 to Dev-General.
Adding new minor feature to add new concurrency mode to allow not stopping old sounds if new sound is not lower priority (or is same priority) than any existing sounds in concurrency group
#rb marc.audy
#TESTS existing concurrency doesn't break. New concurrency rule results in not stopping sounds if new sound is not lower pri than existing sounds
Change 3031616 on 2016/06/28 by Jason.Bestimt
#ROBOMERGE-AUTHOR: bob.ferreira
Fixed an additional cast issue (hopefully the last!) in SetupSkyIrradianceEnvironmentMapConstants where Scene objects were not being cast and/or null checked
#rb Marcus.Wassmer
#tests Compiled and verified clients connected to server
#jira OR-24678
#ROBOMERGE-SOURCE: CL 3031610 in //Orion/Release-28/... via CL 3031611 via CL 3031613 via CL 3031614
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3031607 on 2016/06/28 by Josh.Markiewicz
#UE4 - pass the UniqueNetId along with client beacons so the server can tell who is making requests
#rb sam.zamani
#codereview paul.moore
#tests draft lobby golden path
Change 3031606 on 2016/06/28 by Josh.Markiewicz
#UE4 - added code to stop logging out players from reservation beacon on timeouts if game doesn't request it
#rb sam.zamani
#codereview paul.moore
#tests draft lobby golden path
Change 3031598 on 2016/06/28 by Josh.Markiewicz
#UE4 - FUniqueNetIdRepl is stored on the UNetConnection and passed into engine login functions rather than TSharedPtr<FUniqueNetId>
- wrapped class is safer and simplifies some other code
#rb sam.zamani
#tests draft lobby golden path
#codereview paul.moore
Change 3031523 on 2016/06/28 by Josh.Markiewicz
#UE4 - added ToDebugString to FUniqueNetIdRepl
#rb none
#tests draft lobby golden path
Change 3031366 on 2016/06/28 by Jason.Bestimt
#ROBOMERGE-AUTHOR: bob.ferreira
Adding proper checks for Scene objects if it returns null
#rb Marcus.Wassmer
#tests Compiled and verified clients connected to server
#jira OR-24678
#ROBOMERGE-SOURCE: CL 3031361 in //Orion/Release-28/... via CL 3031362 via CL 3031363 via CL 3031365
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3030919 on 2016/06/28 by Jason.Bestimt
#ROBOMERGE-AUTHOR: bob.ferreira
Fixed issue that was causing client bots to crash when running with -nullrhi. Now use interface provided by the Scene object.
#rb Marcus.Wassmer
#tests Compiled and verified clients connected to server
#jira OR-24678
#ROBOMERGE-SOURCE: CL 3030914 in //Orion/Release-28/... via CL 3030915 via CL 3030916 via CL 3030917
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3030715 on 2016/06/28 by David.Ratti
removing warning. It is valid to use the ability system with actors without an animinstance.
#rb none
#test compile
Change 3030663 on 2016/06/28 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3030407
#RB:none
#Tests:none
#ROBOMERGE-SOURCE: CL 3030660 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3030533 on 2016/06/28 by Marcus.Wassmer
Fix incorrect warning
#rb none
#test none
#codereview Daniel.Lamb
Change 3030526 on 2016/06/28 by bruce.nesbit
Re-added MaxRoughness changes in scalability config and added ECVF_Scalability to the CVar for same
#rb none
#codereview Marcus.Wassmer
#tests PIE
Change 3029022 on 2016/06/27 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3028879
#RB:none
#tests:none
#ROBOMERGE-SOURCE: CL 3029020 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3028712 on 2016/06/27 by David.Ratti
AbilitySystem debug hud
-Made this more accessible from the base engine system. No longer required to forward calls from the owning actor class'es DisplayDebug function
PlayerController::DisplayDebug
-Set DisplayDebugManager's Y pos to the out Y pos, so that subsequent debug huds don't overlap with this one
#rb none
#tests gameplay ability sample project
[CL 3043787 by Andrew Grant in Main branch]
2016-07-08 22:29:24 -04:00
{
Copying //UE4/Fortnite-Staging to //UE4/Dev-Main (Source: //Fortnite/Main @ 3284787)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3284469 on 2017/02/02 by Saul.Abreu
Fixed comment on Slate Brush for getting the resource object and what kind of object it may be.
Change 3284410 on 2017/02/02 by Ben.Zeigler
Add FSlateBrush subclass constructors that take resource objects, to create static brushes at startup time that refer to already loaded UTextures
Change 3284381 on 2017/02/02 by Saul.Abreu
#fortnite
Added functionality to common button to actually use the single material brush setting and automatically create and expose access to a material instance dynamic.
Also fixed some potential object lifetime issues in CommonButton.
Change 3282423 on 2017/02/01 by Ben.Zeigler
Fix issue with synchronous load of objects not invalidating cached nulls for asset ptrs. This was always an issue but my recent change to assetptr SynchronousLoad made it manifest more often.
In the future we may want to invalidate cached nulls on object creation to handle cases like save games
Change 3282265 on 2017/02/01 by Ian.Fox
#UE4, #XMPP - Reduce verbosity of strophe receive-stanza log
Change 3282159 on 2017/02/01 by Ben.Zeigler
Fix issue where async loading null string reference would deadlock
Change 3282054 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-28234 Fix sceImeDialogTerm() warning
We were calling sceImeDialogTerm() in cases where the dialog wasn't active. The only state it's legitimate to call sceImeDialogTerm() in is SCE_IME_DIALOG_STATUS_FINISHED.
Change 3282051 on 2017/02/01 by James.Longstreet
#fortnite #jira FORT-30021 Respect bVirtualKeyboardSendsTextChanged on PS4
Change 3281799 on 2017/02/01 by Nick.Cooper
#Fortnite - Removed code on PS4 that was adding a EMouseButtons::Left press when the right shoulder button was pressed
#jira FORT-35821
Change 3281771 on 2017/02/01 by Lukasz.Furman
fixed end of path conditions breaking movement when path starts with a navlink and turn back below
#jira FORT-36375
Change 3280579 on 2017/01/31 by Ben.Zeigler
Remove ForEachProperty and switch AssetManager to use TPropertyValueIterator instead. Code review changes to TPropertyValueIterator.
Add InitializeAssetBundlesFromMetadata to AssetManager which parses AssetBundles metadata at load/save time and uses that to assign asset references to specific bundles.
Add RecursivelyExpandBundleData to allow recursively acquiring bundle dependencies.
Add AssetBundles to the PropertyMetadata list. Sorted list and fixed some comment typos.
Change it so the DataAsset factory won't show blueprintable native classes as valid, the editor doesn't like it when you have both blueprinted and non-blueprinted assets of the same base class.
Change AssetPtr.LoadSynchronous to be const and to behave the same as Get(). This was a licensee complaint and the old behavior to null out the reference because of a transient load error can cause data loss.
Change 3280176 on 2017/01/31 by Lukasz.Furman
fixed missing navmesh update on replacing existing floor/roof
#jira FORT-36369
Change 3279761 on 2017/01/31 by Saul.Abreu
#fortnite
Added ability to keep common buttons interactable even when they're selected, so they can still be clicked. Old default behavior is preserved.
Change 3279678 on 2017/01/31 by Saul.Abreu
#fortnite
Moved GetCurrentInputType from UCommonActionWidget to UCommonUIContext for reuse.
Change 3278593 on 2017/01/30 by Ben.Zeigler
Delay initialization of asset registry tag filter list until it is needed, to make sure it catches modules that were loaded after the asset registry module. Fixes issues with tags not inherting to child classes
Change 3278592 on 2017/01/30 by Ben.Zeigler
Add TPropertyValueIterator to replace ForEachProperty. This is a recursive iterator instead of a predicate search, and also allows extracting the property chain, which I need for metadata parsing.
AssetManager has an example of both uses, will delete ForEachProperty tomorrow.
Change 3277859 on 2017/01/30 by Lukasz.Furman
fixed navigation path postprocessing not working with vertical navlinks near start point
required by taker portal up move
#jira FORT-36570
Change 3277580 on 2017/01/30 by Ben.Zeigler
#jira FORT-36662 Return streamable manager to always use hard references, weak references do not work during AddReferencedObjects at all, because of the unreachable flag that is set during GC. This returns the behavior of forcing assets to be "Force Deleted" if they were loaded by asset manager.
Change 3276903 on 2017/01/29 by Bob.Tellez
#BlueprintContext Updated copyright notice for 2017
Change 3276902 on 2017/01/29 by Bob.Tellez
#CommonUI Updated some missed copyright notices for 2017
Change 3276731 on 2017/01/29 by Jeff.Campeau
Forward modified warning messages
Change 3276642 on 2017/01/28 by Jeff.Campeau
Change specific errors from packaging multiple configurations into a single package into warnings.
Change 3276228 on 2017/01/27 by Ben.Zeigler
Fix crash/data loss when a Pin's DefaultObject points to an ObjectRedirector. FixObject will return redirectors so you need to correct for that
Change 3276073 on 2017/01/27 by Ben.Zeigler
Add some utility functions to core asset manager and streamablemanager and fix various editor interactions.
Add startup and cook interaction hooks to AssetManager directly and call them form Engine in addition to the game-specific hooks.
Add concept of BulkScanning to AssetManager, use this when scanning many directories.
Fix issues with string asset references being wrong for blueprint classes, this would be easier if the assetdata pointed to the class and not the possibly-missing blueprint.
Change StreamableManager to keep referenced objects as weak pointers. These pointers are effectively soft in the editor, hard outside of the editor. By storing them as raw pointers it was difficult to guarantee their safety without causing issues with deleting assets.
Change 3276058 on 2017/01/27 by Ben.Zeigler
Add UStruct::ForEachProperty, which recursively iterates properties of a struct and calls a lambda.
Add some new BaseStructure accessors
Change 3275981 on 2017/01/27 by Alex.Thurman
Move Item Management Screen input handling into child activatable panels.
#JIRA FORT-35759
#JIRA FORT-35758
Change 3275626 on 2017/01/27 by John.Pollard
First pass at implementing net relevancy for replays
* All connections are considered when determing if an actor is relevant
* Enable by setting demo.UseNetRelevancy to 1
* Override cull distance with demo.CullDistanceOverride
Change 3275221 on 2017/01/27 by John.Pollard
FORT-36482 - Fix issue with using wrong serializer for re-mapping objects
Change 3274149 on 2017/01/26 by Alex.Thurman
Expose the Common Widget Switcher as part of the common UI plugin library.
#fort
Change 3274103 on 2017/01/26 by Michael.Trepka
Fixed a crash on startup on Mac when using a shader cache populated during cooking and re-enabled cook time cache generation in Fortnite
Change 3273867 on 2017/01/26 by James.Hopkin
Enabled Stomp for PS4
#jira FORT-35517
Change 3273749 on 2017/01/26 by James.Hopkin
Added libwebsocket libraries for PS4
#jira FORT-35517
Change 3273105 on 2017/01/26 by James.Hopkin
Moved libwebsockets.h into platform-specific folders (in preparation for PS4 building against slightly more recent version)
Change 3273020 on 2017/01/26 by Jeff.Campeau
Stage manifest files from loose folder, not binary folder (appdata.bin is no longer created in the binary directory)
Change 3272825 on 2017/01/25 by Saad.Nader
#fort
Added function to set the auto activation on or off on a common widget switcher.
Updated CommonTabListWidget to temporarily turn off activation when setting a linked switcher.
Added some missing delegate cleanup code.
Change 3272598 on 2017/01/25 by Justin.Augspurger
#fortnite
Add activatable panel function that returns if an input handler is set.
Change 3272411 on 2017/01/25 by Michael.Trepka
Increased g.TimeoutForBlockOnRenderFence on Mac to 5 minutes
Change 3271913 on 2017/01/25 by Lukasz.Furman
fixed conditions of movement's destinaiton oveshot check to work with setup in FTest maps
#jira FORT-36375
Change 3271723 on 2017/01/25 by Bob.Tellez
#UE4 Disabled MfMedia on windows.
Change 3271223 on 2017/01/25 by Jeff.Campeau
Allow packaging to fall back to the engine directory for the lastchunk file if it's not present in the staged version.
Change 3271066 on 2017/01/24 by Chris.Gagnon
- Properly clean up the UIManager and Analog Cursor when game/pie exists.
- FortAnalogCursor now sequesters the mouse during InputSuspension.
- Change the callback order for activate and deactivate so the classes can chain activate.
Change 3271064 on 2017/01/24 by Chris.Gagnon
- NavigateToWidget() added to SlateApplication
- SlistView and it's descendants now have the ability to navigate to the widget scrolled into view
Change 3270778 on 2017/01/24 by Michael.Trepka
Fixed and enabled cook time binary shader cache generation for Mac
Change 3270645 on 2017/01/24 by Jeff.Campeau
- New manifest generation (backward compatible)
- True support for multiconfig packages
- Settings all based in target settings in editor
- Localized package resources with support to reduce redundancies
- Resource table generation and manifest generation combined
- Further reduced unneeded deploy copies
#jira FORT-36413
Change 3270191 on 2017/01/24 by Lukasz.Furman
reverted file unrelated to DecoyDistance fix
Change 3270133 on 2017/01/24 by Lukasz.Furman
fixed item scoring in DecoyDistance test
#jira FORT-36034
Change 3269363 on 2017/01/24 by James.Hopkin
#online #stomp Added error logging for loss of heartbeat
#jira FORT-34763
Change 3268921 on 2017/01/23 by Saul.Abreu
#fortnite
Renamed CommonWidgetGroup to emphasize that it is an abstract base class. Added ability to get the selected button out of CommonButtonGroup.
Change 3268913 on 2017/01/23 by Saul.Abreu
#fortnite
Recreated some minor changes to UEnumProperty so that TMap properties don't assert with enums as keys.
Change 3268436 on 2017/01/23 by Michael.Trepka
Added rhi.Metal.AllowRHIThread to allow games to disable RHI thread on Mac to be able to use shader cache, which currently is incompatible with RHI thread. Disabled RHI thread on Mac in Fortnite.
Also, temporarily disabled Metal validation layer in Fortnite until I have more information on the cost of various levels of validation.
Change 3266945 on 2017/01/20 by Bob.Tellez
#UE4 Allowing more configurations to generate debug symbols
Change 3266814 on 2017/01/20 by Bob.Tellez
#UE4 Moved MfMedia video track handling to the render thread, which removes the need for some buffer management in MediaTextureResource.cpp. Also, Mfmedia now emits the PlaybackEndReached event.
#JIRA FORT-31753
Change 3266541 on 2017/01/20 by Lukasz.Furman
moved navigation export of building actor's static mesh into owning actor data instead of using parent chain,
attempt to fix husks passing through walls that lost navigation data at some point during game
#jira FORT-35741
Change 3266269 on 2017/01/20 by Fred.Kimberley
Change async loading of gameplay cues so that the gameplay cue manager maintains ownership of the assets and can control their lifetime.
Change 3266053 on 2017/01/20 by Michael.Trepka
Fixed issues with shader cache not working properly with Mac Metal (but it still requires -norhithread to work at all). Enabled the shader cache by default if RHI thread is disabled.
Change 3265585 on 2017/01/20 by Bart.Hawthorne
Enable Oodle in Fortnite
Change 3264678 on 2017/01/19 by Lukasz.Furman
fixed crash on opening behavior trees with invalid decorator class (empty redirectors)
#ue4
Change 3264473 on 2017/01/19 by Fred.Kimberley
Tell the streamable manager to manage gameplay cue assets that are async loaded.
#jira FORT-35171
Change 3262846 on 2017/01/18 by John.Pollard
FORT-30352 - Fix by lowering network logging verbosity for benign condition
Change 3262535 on 2017/01/18 by Michael.Trepka
Fix for FORT-35776
Make sure to set reasterizer state when rendering with a material in FSlateRHIRenderingPolicy::DrawElements
Change 3262386 on 2017/01/18 by John.Pollard
Deprecate bPendingNetUpdate, NetUpdateTime and LastNetUpdateTime
Change 3262375 on 2017/01/18 by Ian.Fox
#UE4, #XMPP - Handle Message stanza errors
#JIRA OGS-505
Change 3262262 on 2017/01/18 by John.Pollard
Turn on adaptive network updates by default
Change 3262215 on 2017/01/18 by Rob.Cannaday
Fix for returned XMPP messages (to invalid recipient) triggering on message received delegates
Change 3262094 on 2017/01/18 by Jamie.Dale
Cook on the fly builds now resolve string asset references
Change 3262091 on 2017/01/18 by Jamie.Dale
Guarding against potentially invalid call to FString::Mid
Change 3262089 on 2017/01/18 by Jamie.Dale
Fixing RedirectCollector issues with projects outside the UE4 directory
It was storing relative paths, but MakeStandardFilename wouldn't make a relative path for anything outside of the UE4 directory. In addition to this, some code was testing filters using package style paths, so I converted all the code to use package style paths instead.
Change 3261201 on 2017/01/17 by Ben.Zeigler
Perf improvements to PackageName that improve cooked load times by around a second. These string functions get called very often and Split is very slow, especially backwards searching or case insensitive.
Change 3261098 on 2017/01/17 by John.Pollard
Fix for FORT-35711 - Edited buildings do not always replicate correctly
We were removing the actor from the network object list too soon
Change 3260515 on 2017/01/17 by John.Abercrombie
Fix MoveTo task ending with success when it's interrupted
- Default the task to an invalid status rather than assuming we are successful
#jira FORT-35497 - Defender can pick up a weapon from far away as they get knocked DBNO
Change 3260343 on 2017/01/17 by Lukasz.Furman
fixed end of path conditions for crowd simulation when using string pulled path
#jira FORT-35713
Change 3259419 on 2017/01/16 by John.Pollard
Network actor list fixes:
* Don't add add actor to network list if it will just immediately get removed
* Remove destroyed actors from actor list on clients
* Make sure actor Role is set to correct value before adding to network actor list
Change 3259104 on 2017/01/16 by Michael.Trepka
Change the default for rhi.Metal.RuntimeDebugLevel to 2, as 3 is too expensive for Development builds and disable METAL_DEBUG_OPTIONS in Test builds
Change 3259017 on 2017/01/16 by Saad.Nader
#fort
Added a missing remove delegate handler when widget is destructed.
Change 3258901 on 2017/01/16 by Saad.Nader
#fort
Added the ability to remove an input action from the list of actions we are listening for in an activatable panel.
Change 3258844 on 2017/01/16 by Ryan.Rauschkolb
#fortnite
Fixed issue where UUMGSequencePlayer:Tick would broadcast OnAnimationFinished before the final frame of the animation plays
Change 3258734 on 2017/01/16 by Michael.Trepka
Fixed a crash on exit on Mac in FCocoaWindow's windowWillResize:
#jira FORT-35720
Change 3258353 on 2017/01/16 by James.Hopkin
#xmpp Fixed UserJid constructor to be constructed by value - same efficiency, less code and allows any combination of rvalues and lvalues.
Change 3257640 on 2017/01/13 by Saul.Abreu
#fortnite
#jira FORT-35387
Item Quantity List widget, not yet complete.
Minor tweak to widget factory (for pooling) to support player controllers as "outer"s.
In progress refactor of list of resources given for a mulch operation, using the item quantity list widget.
Change 3257310 on 2017/01/13 by Bob.Tellez
#UE4 Default stack size for windows is now configurable. There is a different number for windows editor targets than non-editor targets.
Change 3257094 on 2017/01/13 by John.Pollard
Refactor network actor list management to be more efficient
* Move dormancy list management to FNetworkObjectList
* Optimize actor network dormancy by removing actors from the active list that are dormant on all connections
* Removed NetUpdateTime on actor, and now use the NextUpdateTime on FNetworkObjectInfo (these values are more hot in the cache too)
* We now early out of the consider logic faster when possible
* Remove other misc unused network state/code and general cleanup
Change 3255891 on 2017/01/12 by Chris.Gagnon
Added "Back" action to squads screens and armory landing.
Added activation widget centering for squads screens.
Added a couple Explicit navigations to get a better navigation experience.
Added a bunch of Fkeys to the input binding table.
Added PanelButton Widget.
Change 3254809 on 2017/01/11 by Bob.Tellez
#UE4 Crash fix for shader views that get destroyed but still have pointers to them in the SRV cache.
Change 3254651 on 2017/01/11 by Bob.Tellez
#UE4 Changed MfMedia track sync mode to Unbuffered since buffered causes a crash shortly after playing.
#JIRA FORT-35566
Change 3254307 on 2017/01/11 by Lukasz.Furman
fixed "Ftest start" command interfering with automation passes
#jira FORT-35459
Change 3253625 on 2017/01/11 by Lukasz.Furman
more accurate overshot detection for crowd simulation trying to reach last path corner
#jira FORT-35502
Change 3252864 on 2017/01/10 by Lina.Halper
fix for invalid anim curve issue when duplicating curves.
#jira: FORT-35151
Change 3252427 on 2017/01/10 by Ben.Zeigler
#jira UE-40390 Fix crash saving blueprint with an inherited DataTable/CurveTable reference. Delta serialization meant that the necessary name wasn't in the name table, so adding it manually now.
Copied from CL #3252418
Change 3252344 on 2017/01/10 by Lukasz.Furman
added navmesh tile observation to hotspots
now they will be able to reevaluate unreachable slots if nearby navmesh is updated (active only when more than half melee slots is unreachable)
#jira FORT-35450
Change 3251644 on 2017/01/09 by Saul.Abreu
#fortnite
#jira FORT-35388
Refactored common input so that the actions hold the per-platform key mappings. A config file holds the mapping of individual keys to their per-platform display data (icon-only for now). ALL ENTRIES IN THE INPUT ACTION DATA TABLE ARE NOW MISSING THEIR KEYS. RE-ADD THEM. I did test that it works.
Change 3251118 on 2017/01/09 by David.Hamm
Corrected ability system logging messages that are turning up in bug reports.
Change 3250932 on 2017/01/09 by Bob.Tellez
#UE4 Unshelved from DanielW. Fix for memory usage during map save for large maps
Change 3250093 on 2017/01/06 by Jeff.Campeau
libstrophe UE4 modifications
Change 3249787 on 2017/01/06 by John.Pollard
Add some replay/network stats
Change 3248808 on 2017/01/05 by Chris.Gagnon
Fix for ensuring Main Tabs properly activates it's content.
Includes a pretty hacky delay, will need to deal with that at somepoint.
Change 3248693 on 2017/01/05 by Chris.Gagnon
NavigationEvent now gets populated with the modifier keys so that Shift and Ctrl behaviors of the list work.
Change 3248647 on 2017/01/05 by Saul.Abreu
Fixed shadowed variable warning in Create Event node.
Change 3248358 on 2017/01/05 by Saul.Abreu
Added return type/outputs to the signature displayed in the CreateEvent node. Also added tooltip describing the syntax for display since it's non-standard.
Change 3247937 on 2017/01/05 by Chris.Gagnon
- Refactored the Custom Navigation Event to be a part of the Viewport so that it functions properly with Multi PIE and doesn't interfere with the Editor while PIE is running.
- Added the ability for an FReply to specify an explict navigation attempt directly.
- Added ENavigationGenesis to the navigation system allowing SListView and STileView's bHandleGamepadEvents functionality to be hooked up again.
Change 3247887 on 2017/01/05 by Bob.Tellez
#UE4 UpdateExistingPackagePriorities does not work in EDL. It is now disabled.
#JIRA FORT-35193
Change 3247770 on 2017/01/05 by Fred.Kimberley
Fix an issue where PreAttributeBaseChange was not always being called and sometimes called after the attribute base value had changed.
Change 3247133 on 2017/01/04 by Saul.Abreu
UWidget designer method renaming to avoid extremely likely naming collisions.
Change 3246507 on 2017/01/04 by Chris.Gagnon
Created CommonBorder and UCommonBorderStyle very simple but will allow consistent sharing of styles.
Cleaned up palette category usage and a few misc things.
Updated the UI test material, and created a UI Test BorderStyle to utilize it.
Change 3245517 on 2017/01/03 by Chris.Gagnon
Copying over slate material changes to provide more functionalit.
Added a UITest Material as an example
Change 3245371 on 2017/01/03 by Lukasz.Furman
fixed husks attacking props from far away
#jira FORT-34655
Change 3245363 on 2017/01/03 by Justin.Sargent
Tracked down a CEF viewport scaling issue to some changes made for supporting high DPI. After talking it over with Trepka, we decided to revert the specific change causing the CEF viewport regression. Trepka will be following up with a proper fix.
#jira OPP-6513
Change 3244525 on 2017/01/02 by Chris.Gagnon
Activatable panels now clear out action handlers when the slate widgets are released.
Change 3244517 on 2017/01/02 by Chris.Gagnon
New frontend major refactors.
- New content api for UI States
- New intro / outro functionality for activatable panels
- New CommonWidgetStack widget
- Landing pages
- Navigation suport for SListView, STileView
- Navigation changes
- Lots of New UI layout changes and functionality changes
- More things that I'm forgetting
Change 3242434 on 2016/12/21 by Ben.Zeigler
Improve package saving time by stopping export sorting from recursing into dependencies outside of the package. It has no control over them so it doesn't care about their load order.
Change 3242433 on 2016/12/21 by Ben.Zeigler
Small perf improvement for quad tree, stop it from constantly reallocating memory when removing nodes as they will likely get filled again or the node will get deleted
Change 3242294 on 2016/12/21 by Bob.Tellez
#UE4 Re-applying the fix for rendering editor primitives when r.EarlyZPassOnlyMaterialMasking is enabled
Change 3241034 on 2016/12/20 by John.Abercrombie
Add or UpdateBlueprintSearchMetadata when we don't have a TargetPlatform
- Better fix for issue mentioned in CL 3241023
Change 3241023 on 2016/12/20 by John.Abercrombie
Fixed UBlueprint::PreSave crashing when there is no TargetPlatform (default behavior)
Change 3240988 on 2016/12/20 by Lukasz.Furman
fixed melee defenders not finishing move then their goal is outside tether range
#jira FORT-34673
Change 3240966 on 2016/12/20 by Ben.Zeigler
Disable find in blueprint query when cooking for non editor platforms, saves around 50 seconds off of a Fortnite fast cook.
UBlueprint::PreSave gets called even though they get filtered out of cooked builds, as the filtering is after PreSave.
Change 3240898 on 2016/12/20 by Lukasz.Furman
fixed memory corruption in template A* solver
#fortnite
Change 3239920 on 2016/12/19 by Ben.Zeigler
Fix warning display for string asset references while cooking, now that failed to find errors add to KnownMissing, we need to check KnownMissing before doing the find, and turn off the internal warnings as the redirect collector has more context info
Change 3239819 on 2016/12/19 by Lukasz.Furman
fixed uninitialized debug draw delegate pointers
#ue4
Change 3238789 on 2016/12/16 by Ben.Zeigler
Fix issue where spawned cues triggered from async loads wouldn't have a proper world
Fix issue where bShouldSyncLoad/bShouldAsyncLoad were backwards
Change 3238782 on 2016/12/16 by Ben.Zeigler
#jira FORT-34825 Fix issue where Macro CDOs had corrupted persistent ubergraph frames during blueprint compile on load, by changing it so no CDOs have persistent frames.
This also saves memory as using persistent frames is incorrect for CDOs, things like latent functions do not make sense.
Fix from Dan O'Connor
Change 3238685 on 2016/12/16 by Bob.Tellez
#UE4 Graceful recovery for actors that changed mobility between frames in TextureInstanceManager.
#JIRA FORT-34833
Change 3238671 on 2016/12/16 by Ben.Zeigler
Fix ensure opening widget palette view, it was trying to create asset data for trash classes becuase it was just doing a raw class iterator, which is no longer supported.
Change 3238606 on 2016/12/16 by Rob.Cannaday
Fix crash in FInternetAddrBSD::SetIp when InAddr is an empty string.
#jira FORT-34826
Change 3238594 on 2016/12/16 by Ben.Zeigler
#jira FORT-34704 Fix bNetTemporary actors to be created with reliable packets, to keep sending until their initial send is done.
The code that used to resend incomplete net temporary actors appears to have stopped working sometime during UE4 networking refactors. Remove unused flags related to that code
Change 3238315 on 2016/12/16 by Lukasz.Furman
fixed composite navigation path usage for husks not controlled by crowd simulation
#jira FORT-34509
Change 3238145 on 2016/12/16 by Lukasz.Furman
fixed crash in EQS profiler
#jira FORT-34831
Change 3237479 on 2016/12/15 by Ben.Zeigler
Don't crash if cue manager has no world, not sure how it got into this state
Change 3236992 on 2016/12/15 by Michael.Trepka
Don't fall back to SM4 on Intel GPUs on Mac any more
Change 3236929 on 2016/12/15 by Bob.Tellez
#UE4 Fixed an ensure that was caused by an FResourceSizeEx being initialized with the wrong type
Change 3236867 on 2016/12/15 by Bob.Tellez
#Fortinte Submitted change from Gil to fix EDL crash loading into Outpost on PS4
#JIRA FORT-34794
Change 3236747 on 2016/12/15 by Ben.Zeigler
Fortnite fixes for asset manager/async loading changes
FortItemDefinitions now async load needed assets on demand. Currently this is only loading AttributeTemplate, which may not even be in use
The blueprints needed for weapons are now async loaded when the player puts them on their quickbar, instead of being loaded once and staying in memory forever
FortAssetManager is now being used in parallel to the loading code in FortGlobals, I will remove the FortGlobals code in the next checkin once I know things are working
Change it so the MissionEventNames are loaded asynchronously when clicking the picker, this code was half completed already so I finished it up
Change it so GameplayCueNotifies get async loaded on demand instead of async loaded at startup, this improves startup load times
Change it so the CommonUIModule uses the global assetmanager instead of a passed in StreamableManagerHandler
Item json changed because it got resorted, no actual json changes other than a few cosmetics that were added yesterday
Change it so FortItem implements the mcp item interface directly, instead of FortWorldItem and FortAccountItem implementing it separately
Change 3236746 on 2016/12/15 by Ben.Zeigler
Add ProcessAsyncLoadingUntilComplete which will process async loading until a predicate is true or time runs out
Change streamable manager to return a handle structure, that can be used to block or poll as needed. Active handles will keep objects in memory even after the load finishes
FStreamableManager::SynchronousLoad now does high-priority-async-load-and-wait instead of doing a full async flush/static load object if asynch loading is in progress, this should make stalls much shorter when sync loading a single asset
Deprecate some of the StreamableManager functions now that handles exist. The fact that SynchronousLoad kept an object from ever GCing was not expected behavior by most users
Add Experimental feature AssetManager, which is a global singleton that supports loading assets on demand. It is disabled by default
Add concept of PrimaryAssetID which is a Type:Name pair that globally identifies an asset. This is returned by GetPrimaryAssetId on UObject and is needed for the asset manager to work
Add PrimaryAssetData class, which supports the primary asset and bundle concepts natively
Add concept of an AssetBundleEntry/Data, which is a scoped map from name -> list of assets. If you modify an AssetBundleData it will get baked into the asset registry at runtime
Fix KismetSystemLibrary and GameplayCueManager to use the new streaming functionality
Change 3234031 on 2016/12/13 by Ian.Fox
#UE4, #XMPP - Finish libstrophe MUC (Multi-User Chat) implementation
- Pull history when joining channels
- Handle configuring of XMPP channels we create (and global chat rooms if we managed to create them)
[CL 3291644 by Bob Tellez in Main branch]
2017-02-07 23:55:24 -05:00
ManagerPtr - > RunAllTestsOnMap ( /*bClearLog=*/ true , bLooped ) ;
Copying //UE4/Orion-Staging to //UE4/Main (Source: //Orion/Dev-General @ 3037465)
#lockdown Nick.Penwarden
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3037044 on 2016/07/04 by Ben.Woodhouse
(Content only change)
Roll back WorldAlignedNormal material function to the previous version (which worked properly). The broken version was actually checked in back in 2014 (//depot/UE4-Fortnite/...@2342687), but it only hit //UE4/main very recently.
#jira OR-24849
#rb me
Change 3036463 on 2016/07/01 by Andrew.Grant
Clarified BP compiler message
#rb na
#tests compiled AnimBP_Grux_Base
Change 3036424 on 2016/07/01 by Andrew.Grant
Integrated fix from //UE4/Main for state not being cleared when rebuidling HMSM.
#rb na
#tests verified warnings gone after resaving Agora_Terrain
Change 3036317 on 2016/07/01 by Ben.Salem
Allow FTests to be run in succession, and allow them to also be run in game instead of just editor.
These are engine changes that have been tested extensively in fortnite, and have gone through a minor test pass here as well.
#rb william.ewen, bob.tellez
#tests Ran through all of Howitzer's new FTests in one run!
Change 3036168 on 2016/07/01 by Frank.Fella
MovieSceneRendering - Fix a crash when deserializing burn in options. Change from Andrew Rodham.
#rb Me for Andrew.
#tests Movie scene renders in a separate process no longer crash when the burn in options are missing.
Change 3035632 on 2016/07/01 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3035536
#RB:none
#Tests:none
#ROBOMERGE-SOURCE: CL 3035630 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3035237 on 2016/07/01 by Dmitry.Rekman
Updated WebRTC libs to avoid SIGPIPE (OR-24857).
- Should also remove debug output.
- These fixes has been previously done for OR-13279 but apparently libs have been recompiled from earlier sources since that.
- Current libs have been compiled by Lee Clark (CL 3034752).
#rb Lee Clark
#codereview Lee.Clark, Andrew.Grant, Sam.Zamani
#tests Run PS4 client, made sure XMPP connection was established and got some traffic.
Change 3035210 on 2016/07/01 by Andrew.Grant
Fix for broken AI / abilities
#rb none
#tests Golden path with gadget, all abilities working, AI are happy and combatitive again
Change 3034936 on 2016/06/30 by Josh.Markiewicz
#UE4 - separated out basic features from update/patch/hotfix manager into generic engine class
- left Orion specific overloads around
#rb none
#tests PS4/PC/Server hotfix and update checks (with and without update required)
#codereview ian.fox, ben.zeigler, bob.tellez
Change 3034935 on 2016/06/30 by Josh.Markiewicz
#UE4 - make sure that mcp client keys, names, and ids can't have extraneous spaces in them from the ini file
#codereview sam.zamani, shon.love, david.nikdel, eric.newman
#tests paragon launch
#rb none
Change 3034933 on 2016/06/30 by Josh.Markiewicz
#UE4 - moved OnlineHotfixManager out of deprecated classes directory
#rb none
#tests compiles
Change 3034524 on 2016/06/30 by Andrew.Grant
Fix for team assignment being broken in blueprints
#rb Dan.OConnor
#tests Golden Path with sparrow, verified arrow AOE color is correct and harvesters deliver XP
Change 3034521 on 2016/06/30 by Andrew.Grant
Setting replay version to 0 for v29
#rb none
#tests none
Change 3034483 on 2016/06/30 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Repair main build integration
#RB:none
#Tests:none
[CodeReviewed]: david.ratti
#ROBOMERGE-SOURCE: CL 3034395 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3034481 on 2016/06/30 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3034181
#RB:none
#Tests:none
#ROBOMERGE-SOURCE: CL 3034319 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3034464 on 2016/06/30 by Martin.Wilson
Fix for trying to load preview mesh for skeleton when the preview meshes skeleton doesn't match
#rb Jurre.DeBaare
#tests Asset loading in the editor
Change 3034194 on 2016/06/30 by Martin.Wilson
Fix for rendering crash
#codereview Rolando.Caloca
#rb Rolando.Caloca
#test editor startup
Change 3034192 on 2016/06/30 by Andrew.Grant
Removing Fortnight madness
#codereview Ben.Marsh
#rb none
#tests compiled
Change 3034106 on 2016/06/30 by Martin.Wilson
Fix retargetting of anim blueprints so that all animations referred to are collected and duplicated, not just direct bp variables
#rb Thomas.Sarkanen
#tests In editor retargeting of various blueprint setups
Change 3034041 on 2016/06/30 by Jason.Bestimt
#ROBOMERGE-AUTHOR: antony.carter
Exposing some of the slate interfaces for upcoming Social Plugin usage
#RB Jamie.Dale
#TESTS NA
#ROBOMERGE-SOURCE: CL 3034040 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3033591 on 2016/06/29 by Andrew.Grant
Merging //UE4/Main @ 3033257 through Orion-Staging
#rb none
#tests engine QA, golden path in PIE and out, BuildCookRun PS4
Change 3033545 on 2016/06/29 by Josh.Markiewicz
#UE4 - fixed shadowed variable
#rb none
#tests compiles
Change 3033462 on 2016/06/29 by Josh.Markiewicz
#UE4 - notify game about net guid mismatch or net checksum failures
#rb john.pollard
#codereview john.pollard, dave.ratti, andrew.grant, matt.oelfke
#tests triggered fake mismatches while networked
Change 3033453 on 2016/06/29 by Josh.Markiewicz
#UE4 - turned off extra logging feature now that the auth expiration issues have been solved
- removes some bad log spam showing up in live (starting when already started, stopped when not started)
#rb none
#tests none
#codereview ben.zeigler, sam.zamani
Change 3033020 on 2016/06/29 by Jason.Bestimt
#ROBOMERGE-AUTHOR: david.nikdel
#OGF
Merging //GamePlugins/Main/PluginTestGame/Plugins/OnlineGameplayFramework/...
to //Orion/Main/OrionGame/Plugins/OnlineGameplayFramework/...
---------
- Support for exclusive profile locking (by dedicated servers)
- PostAdd event for IMcpItemAware
- New McpItemDefinitionBase class
- Support for converting to new colon-based template ids
- Improvements to FJsonObjectWrapper (technically an engine change)
- Ability to specify an explicit fulfillment class to instantiate
- Ability to split catalog localization out from the main data.
- Couple of Orion fix ups for the new code
- Re-exported catalog (loc data now separated out)
---------
#RB: none
#TESTS: login, mcp, etc
[CodeReviewed]: Jason.Bestimt
#ROBOMERGE-SOURCE: CL 3033018 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3032623 on 2016/06/29 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3032459
#RB:none
#Tests:none
#ROBOMERGE-SOURCE: CL 3032516 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3032451 on 2016/06/29 by bruce.nesbit
Added code in AutoPopulateInstanceProperties to populate vector and scalar parameter data.
#rb SimonT
#tests PIE
Change 3031620 on 2016/06/28 by Aaron.McLeran
Implementing CL 3029659 to Dev-General.
Adding new minor feature to add new concurrency mode to allow not stopping old sounds if new sound is not lower priority (or is same priority) than any existing sounds in concurrency group
#rb marc.audy
#TESTS existing concurrency doesn't break. New concurrency rule results in not stopping sounds if new sound is not lower pri than existing sounds
Change 3031616 on 2016/06/28 by Jason.Bestimt
#ROBOMERGE-AUTHOR: bob.ferreira
Fixed an additional cast issue (hopefully the last!) in SetupSkyIrradianceEnvironmentMapConstants where Scene objects were not being cast and/or null checked
#rb Marcus.Wassmer
#tests Compiled and verified clients connected to server
#jira OR-24678
#ROBOMERGE-SOURCE: CL 3031610 in //Orion/Release-28/... via CL 3031611 via CL 3031613 via CL 3031614
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3031607 on 2016/06/28 by Josh.Markiewicz
#UE4 - pass the UniqueNetId along with client beacons so the server can tell who is making requests
#rb sam.zamani
#codereview paul.moore
#tests draft lobby golden path
Change 3031606 on 2016/06/28 by Josh.Markiewicz
#UE4 - added code to stop logging out players from reservation beacon on timeouts if game doesn't request it
#rb sam.zamani
#codereview paul.moore
#tests draft lobby golden path
Change 3031598 on 2016/06/28 by Josh.Markiewicz
#UE4 - FUniqueNetIdRepl is stored on the UNetConnection and passed into engine login functions rather than TSharedPtr<FUniqueNetId>
- wrapped class is safer and simplifies some other code
#rb sam.zamani
#tests draft lobby golden path
#codereview paul.moore
Change 3031523 on 2016/06/28 by Josh.Markiewicz
#UE4 - added ToDebugString to FUniqueNetIdRepl
#rb none
#tests draft lobby golden path
Change 3031366 on 2016/06/28 by Jason.Bestimt
#ROBOMERGE-AUTHOR: bob.ferreira
Adding proper checks for Scene objects if it returns null
#rb Marcus.Wassmer
#tests Compiled and verified clients connected to server
#jira OR-24678
#ROBOMERGE-SOURCE: CL 3031361 in //Orion/Release-28/... via CL 3031362 via CL 3031363 via CL 3031365
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3030919 on 2016/06/28 by Jason.Bestimt
#ROBOMERGE-AUTHOR: bob.ferreira
Fixed issue that was causing client bots to crash when running with -nullrhi. Now use interface provided by the Scene object.
#rb Marcus.Wassmer
#tests Compiled and verified clients connected to server
#jira OR-24678
#ROBOMERGE-SOURCE: CL 3030914 in //Orion/Release-28/... via CL 3030915 via CL 3030916 via CL 3030917
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3030715 on 2016/06/28 by David.Ratti
removing warning. It is valid to use the ability system with actors without an animinstance.
#rb none
#test compile
Change 3030663 on 2016/06/28 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3030407
#RB:none
#Tests:none
#ROBOMERGE-SOURCE: CL 3030660 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3030533 on 2016/06/28 by Marcus.Wassmer
Fix incorrect warning
#rb none
#test none
#codereview Daniel.Lamb
Change 3030526 on 2016/06/28 by bruce.nesbit
Re-added MaxRoughness changes in scalability config and added ECVF_Scalability to the CVar for same
#rb none
#codereview Marcus.Wassmer
#tests PIE
Change 3029022 on 2016/06/27 by Jason.Bestimt
#ROBOMERGE-AUTHOR: jason.bestimt
#ORION_MAIN - Merge 28.2 @ CL 3028879
#RB:none
#tests:none
#ROBOMERGE-SOURCE: CL 3029020 in //Orion/Main/...
#ROBOMERGE-BOT: ORION (Main -> Dev-General)
Change 3028712 on 2016/06/27 by David.Ratti
AbilitySystem debug hud
-Made this more accessible from the base engine system. No longer required to forward calls from the owning actor class'es DisplayDebug function
PlayerController::DisplayDebug
-Set DisplayDebugManager's Y pos to the out Y pos, so that subsequent debug huds don't overlap with this one
#rb none
#tests gameplay ability sample project
[CL 3043787 by Andrew Grant in Main branch]
2016-07-08 22:29:24 -04:00
}
2014-03-14 14:13:41 -04:00
}
return true ;
}
return false ;
}
Copying //UE4/Dev-Build to //UE4/Dev-Main (Source: //UE4/Dev-Build @ 3209340)
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3209340 on 2016/11/23 by Ben.Marsh
Convert UE4 codebase to an "include what you use" model - where every header just includes the dependencies it needs, rather than every source file including large monolithic headers like Engine.h and UnrealEd.h.
Measured full rebuild times around 2x faster using XGE on Windows, and improvements of 25% or more for incremental builds and full rebuilds on most other platforms.
* Every header now includes everything it needs to compile.
* There's a CoreMinimal.h header that gets you a set of ubiquitous types from Core (eg. FString, FName, TArray, FVector, etc...). Most headers now include this first.
* There's a CoreTypes.h header that sets up primitive UE4 types and build macros (int32, PLATFORM_WIN64, etc...). All headers in Core include this first, as does CoreMinimal.h.
* Every .cpp file includes its matching .h file first.
* This helps validate that each header is including everything it needs to compile.
* No engine code includes a monolithic header such as Engine.h or UnrealEd.h any more.
* You will get a warning if you try to include one of these from the engine. They still exist for compatibility with game projects and do not produce warnings when included there.
* There have only been minor changes to our internal games down to accommodate these changes. The intent is for this to be as seamless as possible.
* No engine code explicitly includes a precompiled header any more.
* We still use PCHs, but they're force-included on the compiler command line by UnrealBuildTool instead. This lets us tune what they contain without breaking any existing include dependencies.
* PCHs are generated by a tool to get a statistical amount of coverage for the source files using it, and I've seeded the new shared PCHs to contain any header included by > 15% of source files.
Tool used to generate this transform is at Engine\Source\Programs\IncludeTool.
[CL 3209342 by Ben Marsh in Main branch]
2016-11-23 15:48:37 -05:00
FStaticSelfRegisteringExec FuncTestExecRegistration ( FuncTestExec ) ;