File size: 5,066 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | // Copyright Epic Games, Inc. All Rights Reserved.
#include "LyraPerfStatWidgetBase.h"
#include "Engine/GameInstance.h"
#include "Performance/LyraPerformanceStatSubsystem.h"
#include "Styling/CoreStyle.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(LyraPerfStatWidgetBase)
void SLyraLatencyGraph::Construct(const FArguments& InArgs)
{
DesiredSize = InArgs._DesiredSize;
MaxYAxisOfGraph = InArgs._MaxLatencyToGraph;
LineColor = InArgs._LineColor;
BackgroundColor = InArgs._BackgroundColor;
}
int32 SLyraLatencyGraph::OnPaint(const FPaintArgs& Args, const FGeometry& AllottedGeometry, const FSlateRect& MyClippingRect,
FSlateWindowElementList& OutDrawElements, int32 LayerId, const FWidgetStyle& InWidgetStyle, bool bParentEnabled) const
{
int32 MaxLayerId = LayerId;
// Draw the background
FSlateDrawElement::MakeRotatedBox(
OutDrawElements,
MaxLayerId,
AllottedGeometry.ToPaintGeometry(),
FCoreStyle::Get().GetBrush("BlackBrush"),
ESlateDrawEffect::NoPixelSnapping,
0,
TOptional<FVector2D>(),
FSlateDrawElement::RelativeToElement,
BackgroundColor);
// We need to actually draw the graph plot on top of the background
// so increment the layer
MaxLayerId++;
// Actually draw the graph plot
DrawTotalLatency(AllottedGeometry, OutDrawElements, MaxLayerId);
MaxLayerId++;
return MaxLayerId;
}
FVector2D SLyraLatencyGraph::ComputeDesiredSize(float LayoutScaleMultiplier) const
{
return DesiredSize;
}
void SLyraLatencyGraph::DrawTotalLatency(const FGeometry& AllottedGeometry, FSlateWindowElementList& OutDrawElements, int32 LayerId) const
{
if (!GraphData)
{
return;
}
static TArray<FVector2D> Points;
Points.Reset(GraphData->GetSampleSize() + 1);
const FVector2D WidgetSize = AllottedGeometry.GetLocalSize();
const float LineThickness = 1.0f;
const double XSlice = WidgetSize.X / static_cast<double>(GraphData->GetSampleSize());
const double Border = 1.0;
int32 i = 0;
GraphData->ForEachCurrentSample([&](const double Stat)
{
double Y = WidgetSize.Y - FMath::Clamp((Stat * ScaleFactor), 0.0, MaxYAxisOfGraph) / MaxYAxisOfGraph * WidgetSize.Y;
Y = FMath::Clamp(Y, Border, WidgetSize.Y - Border);
Points.Emplace(XSlice * double(++i), Y);
});
// Why does this not just draw a straight line??
FSlateDrawElement::MakeLines(
OutDrawElements,
LayerId,
AllottedGeometry.ToPaintGeometry(),
Points,
ESlateDrawEffect::NoPixelSnapping,
LineColor,
false,
LineThickness);
}
//////////////////////////////////////////////////////////////////////
// ULyraPerfStatGraph
ULyraPerfStatGraph::ULyraPerfStatGraph(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
SetClipping(EWidgetClipping::ClipToBounds);
}
TSharedRef<SWidget> ULyraPerfStatGraph::RebuildWidget()
{
return SAssignNew(SlateLatencyGraph, SLyraLatencyGraph);
}
void ULyraPerfStatGraph::ReleaseSlateResources(bool bReleaseChildren)
{
Super::ReleaseSlateResources(bReleaseChildren);
SlateLatencyGraph.Reset();
}
void ULyraPerfStatGraph::SetLineColor(const FColor& InColor)
{
SlateLatencyGraph->SetLineColor(InColor);
}
void ULyraPerfStatGraph::SetMaxYValue(const float InValue)
{
SlateLatencyGraph->SetMaxYValue(InValue);
}
void ULyraPerfStatGraph::SetBackgroundColor(const FColor& InValue)
{
SlateLatencyGraph->SetBackgroundColor(InValue);
}
void ULyraPerfStatGraph::UpdateGraphData(const FSampledStatCache* StatData, const float ScaleFactor)
{
SlateLatencyGraph->UpdateGraphData(StatData, ScaleFactor);
}
//////////////////////////////////////////////////////////////////////
// ULyraPerfStatWidgetBase
double ULyraPerfStatWidgetBase::FetchStatValue()
{
if (ULyraPerformanceStatSubsystem* Subsystem = GetStatSubsystem())
{
return CachedStatSubsystem->GetCachedStat(StatToDisplay);
}
else
{
return 0.0;
}
}
void ULyraPerfStatWidgetBase::UpdateGraphData(const float ScaleFactor)
{
// When we cache the subsystem also update the graph data pointer if we have a graph widget
if (PerfStatGraph)
{
if (const FSampledStatCache* GraphData = CachedStatSubsystem->GetCachedStatData(StatToDisplay))
{
PerfStatGraph->UpdateGraphData(GraphData, ScaleFactor);
}
}
}
void ULyraPerfStatWidgetBase::NativeConstruct()
{
Super::NativeConstruct();
// Cache the subsystem on construct, which will also make sure the graph is up to date
GetStatSubsystem();
if (PerfStatGraph)
{
PerfStatGraph->SetLineColor(GraphLineColor);
PerfStatGraph->SetMaxYValue(GraphMaxYValue);
PerfStatGraph->SetBackgroundColor(GraphBackgroundColor);
}
}
ULyraPerformanceStatSubsystem* ULyraPerfStatWidgetBase::GetStatSubsystem()
{
if (CachedStatSubsystem == nullptr)
{
if (UWorld* World = GetWorld())
{
if (UGameInstance* GameInstance = World->GetGameInstance())
{
CachedStatSubsystem = GameInstance->GetSubsystem<ULyraPerformanceStatSubsystem>();
}
}
}
return CachedStatSubsystem;
}
|