47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CPSO;
|
|
using CaeModel;
|
|
using CaeMesh;
|
|
using CaeGlobals;
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
namespace CPSO.Commands
|
|
{
|
|
[Serializable]
|
|
class CAddStep : PreprocessCommand
|
|
{
|
|
// Variables
|
|
private Step _step;
|
|
private bool _copyBCsAndLoads;
|
|
private bool _skipsAnalysisCreation;
|
|
|
|
|
|
// Constructor
|
|
public CAddStep(Step step, bool copyBCsAndLoads)
|
|
: base("Add step")
|
|
{
|
|
_step = step.DeepClone();
|
|
_copyBCsAndLoads = copyBCsAndLoads;
|
|
_skipsAnalysisCreation = true; // when old file version < 2.2.9 is opened this is false
|
|
}
|
|
|
|
|
|
// Methods
|
|
public override bool Execute(Controller receiver)
|
|
{
|
|
receiver.AddStep(_step.DeepClone(), _copyBCsAndLoads, _skipsAnalysisCreation);
|
|
return true;
|
|
}
|
|
|
|
public override string GetCommandString()
|
|
{
|
|
return base.GetCommandString() + _step.ToString();
|
|
}
|
|
}
|
|
}
|