Commit Graph

4 Commits

Author SHA1 Message Date
Ben Marsh
20bf0eb6a1 Updating copyright notices to 2017 (copying from //Tasks/UE4/Dev-Copyright-2017).
#rb none
#lockdown Nick.Penwarden

[CL 3226823 by Ben Marsh in Main branch]
2016-12-08 08:52:44 -05:00
Ben Marsh
4ba423868f 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
Max Chen
0cd05e1a6b Copying //UE4/Dev-Sequencer to //UE4/Dev-Main (Source: //UE4/Dev-Sequencer @ 3048536)
#lockdown Nick.Penwarden
#rb none

==========================
MAJOR FEATURES + CHANGES
==========================

Change 3004054 on 2016/06/07 by Max.Chen

	Movie Capture: Expose compressed EXR frames to Sequencer Capture UI and command line.

Change 3007048 on 2016/06/09 by Max.Chen

	Sequencer: Allow showing the context menu for more than one selected node. Certain operations (ie. Lock, Active, Label) now operate on all the selected nodes.

	#jira UE-31762

Change 3007795 on 2016/06/09 by Max.Chen

	Sequencer: Select actors for corresponding selected keys or sections.

	#jira UE-30727

Change 3009689 on 2016/06/10 by Max.Chen

	Movie Capture: Add {shot} description to movie capture filename format.

Change 3010180 on 2016/06/11 by Max.Chen

	Sequencer: Add support for copying and converting linear color tracks from matinee.

	#jira UE-31260

Change 3012472 on 2016/06/14 by Max.Chen

	Sequence Recorder: Optimize adding keys to rich curves. Set the times and values at once as an ordered set.

Change 3012473 on 2016/06/14 by Max.Chen

	Sequence Recorder: Find corresponding PIE world actor for Actor to Record. This fixes a bug where if you set the actor before PIE and then record, the recording doesn't work.

Change 3012474 on 2016/06/14 by Max.Chen

	Sequence Recorder: Fix countdown timer so that it draws in Simulate mode as well as Play.

	#jira UE-31630

Change 3014868 on 2016/06/15 by Max.Chen

	Sequencer: For legacy, properties with the CPF_Interp flag can be animated in Matinee. It doesn't require the CPF_Edit flag as well. This makes Sequencer consistent with Matinee.

	#jira UE-32067

Change 3014869 on 2016/06/15 by Max.Chen

	Sequencer: Rename "Expose to Matinee" to "Expose to Cinematics"

	#jira UE-31500

Change 3016137 on 2016/06/16 by Max.Chen

	Sequencer: Added support for the named "PerformanceCapture" event which like Matinee, calls GEngine->PerformanceCapture to output a screenshot when the event fires. Refactor event track/sections so that the player is passed to the trigger events evaluation.

	#jira UE-32093

Change 3018996 on 2016/06/18 by Max.Chen

	Sequencer: Add play/pause/stop events to level sequence player ala matinee actor.

	#jira UETOOL-899

Change 3019763 on 2016/06/20 by Max.Chen

	Sequencer: Fix key editor commit when user tabs away (lose focus). Also, make the key navigation buttons and track color button not focusable.

	Slate: Make editable labels not focusable if they are not editable.

	#jira UE-24566, UE-31913

Change 3019768 on 2016/06/20 by Max.Chen

	Sequencer: Event track no longer fires if the playback status is stopped. This fixes a bug where when playback is stopped and the movie scene sequence is returned to the start of playback, we don't want all the events from the last playback position to the start of playback to fire.

	#jira UE-31494

Change 3020849 on 2016/06/21 by Andrew.Rodham

	Sequencer: Fixed blueprint classes as spawnables not being reinstanced correctly

	  - The RF_ArchetypeObject flag was previously used to denote spawnable object templates, however this caused blueprint reinstancing to skip such objects, which resulted in crashes, or data loss
	  - Added code to rename expired object templates to ensure there is no name collision
	  - Ensured that register functions are only called on actors that are part of a world (when finalizing blueprint reinstancing)

	#jira UE-31637

Change 3021400 on 2016/06/21 by Frank.Fella

	Sequencer - Add support for exporting to fbx.

Change 3022941 on 2016/06/22 by Andrew.Rodham

	Sequencer: Thumbnail improvements

	  - Fixed poor performance when continually zooming (thumbnails were being constantly and immediately rendered in this case)
	  - Added quality setting to thumbnail sections (draft/normal/best)
	  - Improved fade transition to use proper alpha blending
	  - Fixed needlessly recreating the entire world's render state when creating a new editor viewport client. This caused a significant hitch opening sequences in certain large worlds.

	#jira UE-31264

Change 3022944 on 2016/06/22 by Andrew.Rodham

	Sequencer: Fixed jitter when jumping around

	  - bEditorCameraCut was not being reset on the next frame, which prevented temporal effects from running

Change 3024774 on 2016/06/23 by Max.Chen

	Sequencer: Cache show intensity to invalidate the waveform preview when the intensity changes.

	#jira UE-32385

Change 3026170 on 2016/06/24 by Max.Chen

	Sequence Recorder: Change Actor Name to Record to a TLazyObjectPtr<AActor> so that the user can choose the actor directly rather than typing in a name.

Change 3026181 on 2016/06/24 by Max.Chen

	Sequencer: Add visibility options to show/hide/only when selected 3d trajectories per transform section.

	#jira UE-31814

Change 3026489 on 2016/06/24 by Andrew.Rodham

	Sequencer: Fixed some recorded actors not being saved into level sequences correctly
	  - The use of StaticDuplicateObject was causing temporary/transient or otherwise external data to be duplicated into template actors which caused the actor to be culled on package save.
	  - Using NewObject followed by copying the object properties guarantees we don't copy this data.
	  - This is the same method used to spawn the spawnable actor

Change 3026522 on 2016/06/24 by Max.Chen

	Sequence Recorder: Fix bug where sample rate wouldn't get set if the length is set to 0.

	#jira UE32430

Change 3027768 on 2016/06/25 by Max.Chen

	Sequencer: Fix player stopping after 60 seconds. Assign the player to a UPROPERTY so that it's not garbage collected.

	#jira UE-32420

Change 3028318 on 2016/06/27 by Andrew.Rodham

	Editor: Added safety check to prevent stack overflow populating the world outliner

	  - It was possible for the population code to get stuck in an infinite loop if an actor happened to be attached to itself.

	#jira UE-30914

Change 3034262 on 2016/06/30 by Andrew.Rodham

	Sequencer: Fixed invalid properties being recorded when creating spawnable object templates

	 - When creating a spawnable out of an attached actor, the attachment was getting copied into the template. This results in GLEO errors when saving the package.
	 - Suppressed object replacement notifications when calling CopyPropertiesForUnrelatedObjects for spawnables

Change 3035168 on 2016/06/30 by Max.Chen

	UMG: Set anim range to the playback range size. This fixes a bug where animation doesn't play the full length of the playback range if it starts negative.

	#jira UE-32066

Change 3035169 on 2016/06/30 by Max.Chen

	Sequencer: Add ReversePlay() and ChangePlaybackDirection() functions (ala Matinee).

	#jira UE-21259

Change 3035174 on 2016/06/30 by Max.Chen

	Sequencer: Fix evaluation when playback starts or loops around so that last time is enforced to be the lower bound of the playback range. This fixes a bug in the particle track where if there's a particle that triggers at time 0 and a level sequence that starts at time 0, the event will be missed since last time will be 0 but then rounded to a fixed frame with epislon .0001f.

	#jira UE-32606

Change 3035186 on 2016/06/30 by Max.Chen

	Sequencer: Add reset selection range and remove unused delete selection range.

	#jira UE-32666

Change 3035197 on 2016/07/01 by Max.Chen

	Sequencer: Fix so that adding a sub section adds to the clicked on sub track and not just the first.

	#jira UE-32665

Change 3036586 on 2016/07/02 by Max.Chen

	Sequencer: More play controls - shuttle backward, pause, shuttle forward (j, k, l)

	#jira UE-27539, UE-31424

Change 3036941 on 2016/07/04 by Andrew.Rodham

	Sequencer: Record transforms in world space where an actor is attached, and we're not recording its parent

Change 3039290 on 2016/07/06 by Andrew.Rodham

	Sequencer: Various capture fixes
	  - Movie captures no longer crash when no world is loaded (they gracefully close instead)
	    - Currently waiting on change from core to hook up the error code with an actual process termination code
	  - We now force -NoLoadingScreen, -Windowed and -ForceRes since movie captures will not work without these

	#jira UE-32802

Change 3039831 on 2016/07/06 by Frank.Fella

	Sequencer - Notify data changed refactor.
	+ Add a change type to "NotifyMovieSceneDataChanged" so that sequencer knows what parts of the system to refresh.
	+ Remove most calls for UpdateRuntimeInstances and replace them with a call to NotifyMovieSceneDataChanged.
	+ Update UMG so that it copies the animation data to the compiled class whenever it's changed.

	#jira UE-29955

Change 3044087 on 2016/07/10 by Max.Chen

	Sequencer - Prevent crashes when encountering filler shots with no valid sequence.

Change 3044151 on 2016/07/10 by Max.Chen

	Sequencer: Only update selected nodes if they change. This fixes a bug in the curve editor where undo reselects and autoframes.

	#jira UE-29663

Change 3044164 on 2016/07/10 by Max.Chen

	Sequencer: Added ability to immediately record actors directly into sequencer
	  - "Record 'ActorName' In Sequencer" option is now available on the level editor context menu for selected actors when sequencer is open.
	  - This immediately triggers a countdown and records the currently selected actors into a sub sequence in the currently focussed movie scene
	  - Creates a cinematic shot track if you record a camera
	  - Removed the older "queue" and "trigger" methods for now to make it cleaner for the demo.

Change 3044180 on 2016/07/11 by Max.Chen

	Sequencer: Added ability to possess viewports while in PIE
	  - Added a new option to the level sequence editor settings to allow possession of PIE viewports

Change 3044181 on 2016/07/11 by Max.Chen

	Sequencer: Added ability to specify event contexts for FSequencer
	  - This allows us to trigger events from playback within sequencer, according to the sequencer client

Change 3044188 on 2016/07/11 by Max.Chen

	Sequencer: We no longer evaluate camera cut tracks as part of sub tracks, only shot tracks.

Change 3044193 on 2016/07/11 by Max.Chen

	Sequencer: Added cvar LevelSequence.DefaultFixedFrameIntervalPlayback to control this setting for newly created level sequences

Change 3044194 on 2016/07/11 by Max.Chen

	Sequencer: Added an option to rewind the sequence when a recording is started
	Defaults to 'on'

Change 3047334 on 2016/07/12 by Max.Chen

	Sequencer: Add transactions for creating a camera cut track and a folder.

	#jira UE-33130

Change 3047365 on 2016/07/12 by Max.Chen

	Cine Camera: Fix crash in CineCameraComponent when setting focus distance from BP

Change 3047366 on 2016/07/12 by Max.Chen

	Sequence Recorder: Arbitrary property recording

[CL 3048548 by Max Chen in Main branch]
2016-07-13 15:37:34 -04:00
Max Chen
4cde9c20a0 Copying //UE4/Dev-Sequencer to //UE4/Main
==========================
MAJOR FEATURES + CHANGES
==========================

Change 2875025 on 2016/02/20 by Andrew.Rodham

	Sequencer: Cinematic viewport improvements
	  - Added optional letterbox overlay (defaults to 2.35:1)
	  - Added ability to change safe frame colors
	  - Added selected tracks' keys to the transport range
	  - Added buttons for jumping between selected tracks' keyframes on the transport controls
	  - Removed black padding around the viewport where possible
	  - Added ability to specify whether a combo button/menu anchor should close when its parent receives focus
	  - Separated logic of FGroupedKeyArea into FSequencerKeyCollection, so it can be used independently
	  - Added playback range to the viewport frame numbers
	  - All frame numbers are now spin boxes

	#jira UE-26429

Change 2875026 on 2016/02/20 by Thomas.Sarkanen

	Added console commands for recording sequences

	Changed plugin to a developer plugin so we can load it when the editor is in -game mode.
	Added Exec commands.
	Added some more logging to help diagnose problems when using commands.
	Added loading/saving of config for recorder settings (stored in Editor.ini).
	Also disabled controls in recorder window when recording.
	Added auto-saving of assets when in non-editor modes.
	Moved animation settings from UnrealEd to Engine module.

Change 2875036 on 2016/02/20 by Max.Chen

	Sequencer: Call RedrawAllViewports instead of RedrawLevelEditingViewports. In particular, this fixes some update issues when editing values in the key editors.

	#jira UE-26960

Change 2875046 on 2016/02/20 by Max.Preussner

	Sequencer: Fix so that clicking on UMG Animations doesn't dirty the scene.

	#jira UE-26249

Change 2875047 on 2016/02/20 by Max.Chen

	Sequencer: Add option to toggle display of channel colors/lines. View->Channel Colors

Change 2877138 on 2016/02/23 by Max.Chen

	Sequencer: Select corresponding track node when selecting key or section. Removed active/inactive selection since it was only being used in deletion and the rules for deletion are now dependent upon what is selected - delete keys and sections before deleting outliner nodes.

Change 2877143 on 2016/02/23 by Thomas.Sarkanen

	Added new math function: WindRelativeAnglesDegrees

	Given two angles in degrees, 'wind' the angle in Angle1 so that it avoids >180 degree flips.
	Good for winding rotations previously expressed as quaternions into a euler-angle representation.

Change 2877147 on 2016/02/23 by Thomas.Sarkanen

	Added the ability to import sequencer transforms from the root node of an animation sequence

	Intended for use after re-importing animations from DCC tools.
	Available in the right-click menu for transform tracks.
	Also added FindTrackBinding to UMovieScene so track bindings can be recovered from tracks.

Change 2877163 on 2016/02/23 by Max.Chen

	Sequencer: Add option to create keyframe sections as infinite. Sequencer defaults to true, UMG defaults to false.

Change 2877165 on 2016/02/23 by Max.Preussner

	Sequencer: Drawing vertical position lines when dragging keys

Change 2878748 on 2016/02/23 by Max.Chen

	Curve Editor: Switch curve type to user when flatting or straightening tangents.

	#jira UE-27277

Change 2878799 on 2016/02/23 by Frank.Fella

	Sequencer - Add folders support to the outliner.

Change 2880769 on 2016/02/24 by Andrew.Rodham

	Sequencer: Added ability to override runtime spawnable ownership in sequencer
	  - This is exposed as an option on spawnables "Keep Alive Outside Playback Range (In Sequencer)"
	  - Enabling this will stop spawnables from being destroyed when scrubbing outside of the playback range

	#jira UE-27205

Change 2880770 on 2016/02/24 by Thomas.Sarkanen

	Sequencer: Added countdown and recording indicator display when recording

	Also fixed extra popups added post-PIE when animation recordings auto shutdown.

Change 2880782 on 2016/02/24 by Max.Chen

	Sequencer: Snapping now also uses the current time as a possible snap time.

	#jira UE-26306

Change 2880793 on 2016/02/24 by Max.Chen

	Sequencer: Add +Animation to Animation track so that it's consistent with all other tracks that have a + button.

Change 2880812 on 2016/02/24 by Max.Chen

	Sequencer: Fix adjusting the leading edge of a shot section so that it cuts into the shot rather than adjusts the start time.

	#jira UE-26306

Change 2881624 on 2016/02/25 by Andrew.Rodham

	Changing shader version GUID to fix corrupt shaders in ddc

Change 2882408 on 2016/02/25 by Thomas.Sarkanen

	Asset/actors stored in TLazyObjectPtrs can now reference game content from engine

	This is a legitimate use case as lazy object ptrs are designed to reference assets/actors cross-domain.

Change 2882409 on 2016/02/25 by Thomas.Sarkanen

[CL 2899785 by Max Chen in Main branch]
2016-03-08 16:55:04 -05:00