70typedef std::vector <FGFCSComponent*> FCSCompVec;
77 : fcs(FCS), OnOffNode(node), Name(name)
79 ExecRate = execRate < 1 ? 1 : execRate;
81 ExecFrameCountSinceLastRun = ExecRate;
86 for (
unsigned int i=0; i<FCSComponents.size(); i++)
delete FCSComponents[i];
87 FCSComponents.clear();
94 FCSComponents.push_back(comp);
101 std::cerr <<
"Tried to get nonexistent component" << std::endl;
104 return FCSComponents[i];
109 for (
unsigned int i=0; i<FCSComponents.size(); i++)
110 FCSComponents[i]->ResetPastStates();
114 ExecFrameCountSinceLastRun = ExecRate;
121 if (OnOffNode && !OnOffNode->getBoolValue())
return;
123 if (fcs->GetDt() != 0.0) {
124 if (ExecFrameCountSinceLastRun >= ExecRate) {
125 ExecFrameCountSinceLastRun = 0;
128 ++ExecFrameCountSinceLastRun;
133 if (fcs->GetTrimStatus() || ExecFrameCountSinceLastRun >= ExecRate) {
134 for (
unsigned int i=0; i<FCSComponents.size(); i++)
135 FCSComponents[i]->Run();
143 FCSCompVec FCSComponents;
144 FGConstPropertyNode_ptr OnOffNode;
148 int ExecFrameCountSinceLastRun;
void Execute()
Executes all the components in a channel.
FGFCSComponent * GetComponent(unsigned int i)
Retrieves a specific component.
void Reset()
Reset the components that can be reset.
void Add(FGFCSComponent *comp)
Adds a component to a channel.
std::string GetName()
Retrieves the name of the channel.
int GetRate(void) const
Get the channel rate.
FGFCSChannel(FGFCS *FCS, const std::string &name, int execRate, FGPropertyNode *node=0)
Constructor.
~FGFCSChannel()
Destructor.
size_t GetNumComponents()
Returns the number of components in the channel.
Base class for JSBSim Flight Control System Components.
Encapsulates the Flight Control System (FCS) functionality.
Class wrapper for property handling.