FImaginaryFiBData

Unreal Engine C++ API Reference > Editor > Kismet

Inheritance Hierarchy

References

   
Module Kismet
Header /Engine/Source/Editor/Kismet/Public/ImaginaryBlueprintData.h
Include #include "ImaginaryBlueprintData.h"

Syntax

class FImaginaryFiBData :  
    public [ITextFilterExpressionContext](API\Runtime\Core\Misc\ITextFilterExpressionContext),  
    public [TSharedFromThis< FImaginaryFiBData, ESPMode::ThreadSafe >](API\Runtime\Core\Templates\TSharedFromThis)  

Variables

Type Name Description
TAtomic< bool > bHasParsedJsonObject Set after the JSON object has been parsed.
bool bRequiresInterlockedParsing Set if this instance requires interlocked parsing.
TMap< int32, FT... LookupTablePtr Pointer to the lookup table to decompressed the Json strings back into fully formed FTexts
FImaginaryFiBDa... Outer Outer of this object that owns it, used for climbing up the hierarchy.
TArray< FImagin... ParsedChildData All parsed child data for this item.
TMultiMap< Find... ParsedTagsAndValues A mapping of tags to their values and searchability status
TSharedPtr< FJs... UnparsedJsonObject The unparsed Json object representing this item.

Constructors

Type Name Description
  FImaginaryFiBData ( FImaginaryFiBDataWeakPtr InOuter, TSharedPtr< FJsonObject > InUnparse..., TMap< int32, FText >* InLookup... )  

Functions

Type Name Description
void AddKeyValuePair ( FText InKey, FSearchableValueInfo& InValue ) Adds a KeyValue pair to the ParsedTagAndValues map
bool CanCallFilter ( ESearchQueryFilter InSearchQueryFil... ) Checks if the filter can call functions for the passed filter, returns FALSE by default if the filter is not the AllFilter
FText CreateSearchComponentDisplayText ( FText InKey, FText InValue ) Creates a display string for this item in search results
FSearchResul... CreateSearchResult ( FSearchResult InParent ) Requests internal creation of the search result and properly initializes the visual representation of the result
FSearchResul... CreateSearchResult_Internal ( FSearchResult InTemplate ) Protected internal function which builds the search result for this item
FSearchResul... CreateSearchTree ( FSearchResult InParentSearchResult, FImaginaryFiBDataWeakPtr InCurrentP..., TArray< const FImaginaryFiBData..., TMultiMap< const FImaginaryFiBData ... ) Builds a SearchTree ready to be displayed in the Find-in-Blueprints window
void DumpParsedObject ( FArchive& Ar, int32 InTreeLevel ) Dumps the parsed object (including all children) to the given archive
void DumpParsedObject_Internal ( FArchive& Ar ) Internal helper function for dumping parsed object info
void EnableInterlockedParsing () Called to enable interlocked parsing (only allow one thread at a time).
const TArray... GetAllParsedChildData () Accessor for the parsed child data for this item
UBlueprint &... GetBlueprint () This will return and force load the UBlueprint that owns this object data.
UObject *... GetObject ( UBlueprint* InBlueprint ) Returns the UObject represented by this Imaginary data give the UBlueprint owner.
FImaginaryFi... GetOuter () Returns the Outer of this Imaginary data that directly owns it
ESearchableV... GetSearchabilityStatus ( FString InKey ) Returns the searchability status of a passed in Key, all Keys are searchable by default
bool IsCategory () End ITextFilterExpressionContext Interface Returns TRUE if this item is a category type, which helps to organize child data
bool IsCompatibleWithFilter ( ESearchQueryFilter InSearchQueryFil... ) Checks if the filter is compatible with the current object, returns TRUE by default
bool IsTagAndValueCategory () Returns TRUE if this item is considered a Tag and Value category, where it's contents should be considered no different than the parent owner
void ParseAllChildData ( ESearchableValueStatus InSearchabil... ) Parses, in a thread-safe manner, all child data, non-recursively, so children will be left in an unparsed Json state
void ParseAllChildData_Internal ( ESearchableValueStatus InSearchabil... ) Internal version of the ParseAllChildData function, handles the bulk of the work
void ParseJsonValue ( FText InKey, FText InDisplayKey, TSharedPtr< FJsonValue > InJsonValu..., TArray< FSearchableValueInfo >& Ou..., bool bIsInArray, ESearchableValueStatus InSearchabil... ) Helper function for parsing Json values into usable properties
bool TestBasicStringExpression ( const FTextFilterString& InValue, const ETextFilterTextComparisonMode..., TMultiMap< const FImaginaryFiBData ... ) Test the given value against the strings extracted from the current item.
bool TestComplexExpression ( const FName& InKey, const FTextFilterString& InValue, const ETextFilterComparisonOperatio..., const ETextFilterTextComparisonMode..., TMultiMap< const FImaginaryFiBData ... ) Perform a complex expression test for the current item.
bool TrySpecialHandleJsonValue ( FText InKey, TSharedPtr< FJsonValue > InJsonValu... ) Checks if the Key has any special handling to be done, such as making a Pin out of it

Overridden from ITextFilterExpressionContext

Type Name Description
bool TestBasicStringExpression ( const FTextFilterString& InValue, const ETextFilterTextComparisonMode... ) We don't actually use these overrides, see FFiBContextHelper for how we call the alternate functions. These will assert if they are accidentally called.
bool TestComplexExpression ( const FName& InKey, const FTextFilterString& InValue, const ETextFilterComparisonOperatio..., const ETextFilterTextComparisonMode... ) Perform a complex expression test for the current item

Constants

Name Description
ParseChildDataCriticalSection Allows for thread-safe parsing of the imaginary data.

Ask questions and help your peers Developer Forums

Write your own tutorials or read those from others Learning Library