![]() |
Paradox Game Engine
v1.0.0 beta06
|
Public Types | |
enum | Operation { Operation.Move, Operation.Copy, Operation.Delete } |
Public Member Functions | |
override IEnumerable< ObjectUrl > | GetInputFiles () |
Gets the list of input files (that can be deduced without running the command, only from command parameters). More... | |
override string | ToString () |
![]() | |
Task< ResultStatus > | DoCommand (ICommandContext commandContext) |
The method that indirectly call DoCommandOverride to execute the actual command code. It is called by the current Builder when the command is triggered More... | |
virtual void | PreCommand (ICommandContext commandContext) |
virtual void | PostCommand (ICommandContext commandContext, ResultStatus status) |
Command | Clone () |
virtual bool | ShouldForceExecution () |
Check some conditions that determine if the command should be executed. This method may not be called if some previous check determinated that it already needs to be executed. More... | |
virtual bool | ShouldSpawnNewProcess () |
virtual void | Cancel () |
Callback called by Builder.CancelBuild. It can be useful for commands in a blocking call that can be unblocked from here. More... | |
void | ComputeCommandHash (Stream stream, IPrepareContext prepareContext) |
Protected Member Functions | |
override async Task< ResultStatus > | DoCommandOverride (ICommandContext commandContext) |
The method to override containing the actual command code. It is called by the DoCommand function More... | |
override void | ComputeParameterHash (Stream stream) |
![]() | |
virtual void | ComputeParameterHash (BinarySerializationWriter writer) |
void | ComputeInputFilesHash (BinarySerializationWriter writer, IPrepareContext prepareContext) |
virtual void | ComputeAssemblyHash (BinarySerializationWriter writer) |
TagSymbol | RegisterTag (string name, Func< string > getValue) |
Properties | |
override string | Title [get] |
string | Source [get, set] |
string | Target [get, set] |
bool | Overwrite [get, set] |
Operation | Type [get, set] |
![]() | |
abstract string | Title [get] |
Title (short description) of the command More... | |
virtual IEnumerable< Tuple < string, string > > | TagList [get] |
List every tag created by the command. The first item of each entry is the TagSymbol.Name of the TagSymbol, The second item is the pattern or a description of the TagSymbol.RealName More... | |
Additional Inherited Members | |
![]() | |
const int | CommandCacheVersion = 1 |
The command cache version, should be bumped when binary serialization format changes (so that cache gets invalidated) More... | |
Definition at line 14 of file FileOperationCommand.cs.
Enumerator | |
---|---|
Move | |
Copy | |
Delete |
Definition at line 19 of file FileOperationCommand.cs.
|
protected |
Definition at line 69 of file FileOperationCommand.cs.
|
protectedvirtual |
The method to override containing the actual command code. It is called by the DoCommand function
commandContext |
Implements SiliconStudio.BuildEngine.Command.
Definition at line 31 of file FileOperationCommand.cs.
|
virtual |
Gets the list of input files (that can be deduced without running the command, only from command parameters).
Reimplemented from SiliconStudio.BuildEngine.Command.
Definition at line 64 of file FileOperationCommand.cs.
|
virtual |
Implements SiliconStudio.BuildEngine.Command.
Definition at line 79 of file FileOperationCommand.cs.
|
getset |
Definition at line 28 of file FileOperationCommand.cs.
|
getset |
Definition at line 26 of file FileOperationCommand.cs.
|
getset |
Definition at line 27 of file FileOperationCommand.cs.
|
get |
Definition at line 17 of file FileOperationCommand.cs.
|
getset |
Definition at line 29 of file FileOperationCommand.cs.