soft-ue-cli 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- soft_ue_cli/__init__.py +3 -0
- soft_ue_cli/__main__.py +1810 -0
- soft_ue_cli/client.py +93 -0
- soft_ue_cli/discovery.py +52 -0
- soft_ue_cli/plugin_data/SoftUEBridge/SoftUEBridge.uplugin +44 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Protocol/BridgeTypes.cpp +171 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Server/BridgeServer.cpp +274 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/SoftUEBridgeModule.cpp +36 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Subsystem/SoftUEBridgeSubsystem.cpp +151 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/BridgeToolBase.cpp +131 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/BridgeToolRegistry.cpp +113 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/BridgeToolResult.cpp +57 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/CallFunctionTool.cpp +147 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/CallFunctionTool.h +17 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/ConsoleVarTool.cpp +105 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/ConsoleVarTool.h +29 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/GetLogsTool.cpp +119 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/GetLogsTool.h +41 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/QueryLevelTool.cpp +188 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/QueryLevelTool.h +20 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/SetPropertyTool.cpp +138 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/SetPropertyTool.h +17 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/SpawnActorTool.cpp +134 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Private/Tools/SpawnActorTool.h +18 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Public/Protocol/BridgeTypes.h +104 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Public/Server/BridgeServer.h +48 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Public/SoftUEBridgeModule.h +18 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Public/Subsystem/SoftUEBridgeSubsystem.h +48 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Public/Tools/BridgeToolBase.h +61 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Public/Tools/BridgeToolRegistry.h +56 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/Public/Tools/BridgeToolResult.h +29 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridge/SoftUEBridge.Build.cs +38 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/SoftUEBridgeEditorModule.cpp +156 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Analysis/ClassHierarchyTool.cpp +302 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Asset/DeleteAssetTool.cpp +102 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Asset/GetAssetDiffTool.cpp +995 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Asset/GetAssetPreviewTool.cpp +225 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Asset/OpenAssetTool.cpp +227 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Asset/QueryAssetTool.cpp +452 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Blueprint/QueryBlueprintGraphTool.cpp +1089 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Blueprint/QueryBlueprintTool.cpp +831 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Editor/CaptureScreenshotTool.cpp +418 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Material/QueryMaterialTool.cpp +329 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/PIE/PieInputTool.cpp +415 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/PIE/PieSessionTool.cpp +683 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Performance/InsightsAnalyzeTool.cpp +84 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Performance/InsightsCaptureTool.cpp +167 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Performance/InsightsListTracesTool.cpp +90 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Project/ProjectInfoTool.cpp +287 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/References/FindReferencesTool.cpp +780 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Scripting/RunPythonScriptTool.cpp +328 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/StateTree/AddStateTreeStateTool.cpp +214 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/StateTree/AddStateTreeTaskTool.cpp +210 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/StateTree/AddStateTreeTransitionTool.cpp +233 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/StateTree/QueryStateTreeTool.cpp +373 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/StateTree/RemoveStateTreeStateTool.cpp +159 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Widget/WidgetBlueprintTool.cpp +848 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/AddComponentTool.cpp +219 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/AddDataTableRowTool.cpp +129 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/AddGraphNodeTool.cpp +505 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/AddWidgetTool.cpp +205 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/ConnectGraphPinsTool.cpp +278 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/CreateAssetTool.cpp +508 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/DisconnectGraphPinTool.cpp +210 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/RemoveGraphNodeTool.cpp +149 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/SetNodePositionTool.cpp +239 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/SetPropertyTool.cpp +344 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Tools/Write/SpawnActorTool.cpp +175 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/UI/BridgeToolbarExtension.cpp +184 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Utils/BridgeAssetModifier.cpp +489 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Utils/BridgeGraphLayoutUtil.cpp +325 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Private/Utils/BridgePropertySerializer.cpp +945 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/SoftUEBridgeEditorModule.h +15 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Analysis/ClassHierarchyTool.h +42 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Asset/DeleteAssetTool.h +22 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Asset/GetAssetDiffTool.h +103 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Asset/GetAssetPreviewTool.h +46 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Asset/OpenAssetTool.h +64 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Asset/QueryAssetTool.h +64 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Blueprint/QueryBlueprintGraphTool.h +126 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Blueprint/QueryBlueprintTool.h +57 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Editor/CaptureScreenshotTool.h +128 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Material/QueryMaterialTool.h +59 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/PIE/PieInputTool.h +36 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/PIE/PieSessionTool.h +42 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Performance/InsightsAnalyzeTool.h +27 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Performance/InsightsCaptureTool.h +33 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Performance/InsightsListTracesTool.h +22 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Project/ProjectInfoTool.h +40 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/References/FindReferencesTool.h +71 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Scripting/RunPythonScriptTool.h +37 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/StateTree/AddStateTreeStateTool.h +26 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/StateTree/AddStateTreeTaskTool.h +26 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/StateTree/AddStateTreeTransitionTool.h +26 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/StateTree/QueryStateTreeTool.h +51 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/StateTree/RemoveStateTreeStateTool.h +26 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Widget/WidgetBlueprintTool.h +83 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/AddComponentTool.h +25 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/AddDataTableRowTool.h +25 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/AddGraphNodeTool.h +63 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/AddWidgetTool.h +25 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/ConnectGraphPinsTool.h +25 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/CreateAssetTool.h +64 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/DisconnectGraphPinTool.h +25 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/EditorSetPropertyTool.h +39 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/EditorSpawnActorTool.h +27 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/RemoveGraphNodeTool.h +25 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Tools/Write/SetNodePositionTool.h +26 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/UI/BridgeToolbarExtension.h +44 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Utils/BridgeAssetModifier.h +196 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Utils/BridgeGraphLayoutUtil.h +123 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/Public/Utils/BridgePropertySerializer.h +196 -0
- soft_ue_cli/plugin_data/SoftUEBridge/Source/SoftUEBridgeEditor/SoftUEBridgeEditor.Build.cs +92 -0
- soft_ue_cli-1.0.0.dist-info/METADATA +427 -0
- soft_ue_cli-1.0.0.dist-info/RECORD +118 -0
- soft_ue_cli-1.0.0.dist-info/WHEEL +4 -0
- soft_ue_cli-1.0.0.dist-info/entry_points.txt +2 -0
- soft_ue_cli-1.0.0.dist-info/licenses/LICENSE +21 -0
soft_ue_cli/__init__.py
ADDED