Constructor.
52 : fcs(_fcs)
53{
54 Input = Output = delay_time = 0.0;
55 delay = index = 0;
56 ClipMin = ClipMax = new FGRealValue(0.0);
57 clip = cyclic_clip = false;
58 dt = fcs->GetChannelDeltaT();
59
60 auto PropertyManager = fcs->GetPropertyManager();
61 if (element->GetName() == string("lag_filter")) {
62 Type = "LAG_FILTER";
63 } else if (element->GetName() == string("lead_lag_filter")) {
64 Type = "LEAD_LAG_FILTER";
65 } else if (element->GetName() == string("washout_filter")) {
66 Type = "WASHOUT_FILTER";
67 } else if (element->GetName() == string("second_order_filter")) {
68 Type = "SECOND_ORDER_FILTER";
69 } else if (element->GetName() == string("integrator")) {
70 Type = "INTEGRATOR";
71 } else if (element->GetName() == string("summer")) {
72 Type = "SUMMER";
73 } else if (element->GetName() == string("pure_gain")) {
74 Type = "PURE_GAIN";
75 } else if (element->GetName() == string("scheduled_gain")) {
76 Type = "SCHEDULED_GAIN";
77 } else if (element->GetName() == string("aerosurface_scale")) {
78 Type = "AEROSURFACE_SCALE";
79 } else if (element->GetName() == string("switch")) {
80 Type = "SWITCH";
81 } else if (element->GetName() == string("kinematic")) {
82 Type = "KINEMATIC";
83 } else if (element->GetName() == string("deadband")) {
84 Type = "DEADBAND";
85 } else if (element->GetName() == string("fcs_function")) {
86 Type = "FCS_FUNCTION";
87 } else if (element->GetName() == string("pid")) {
88 Type = "PID";
89 } else if (element->GetName() == string("sensor")) {
90 Type = "SENSOR";
91 } else if (element->GetName() == string("accelerometer")) {
92 Type = "ACCELEROMETER";
93 } else if (element->GetName() == string("magnetometer")) {
94 Type = "MAGNETOMETER";
95 } else if (element->GetName() == string("gyro")) {
96 Type = "GYRO";
97 } else if (element->GetName() == string("actuator")) {
98 Type = "ACTUATOR";
99 } else if (element->GetName() == string("waypoint_heading")) {
100 Type = "WAYPOINT_HEADING";
101 } else if (element->GetName() == string("waypoint_distance")) {
102 Type = "WAYPOINT_DISTANCE";
103 } else if (element->GetName() == string("angle")) {
104 Type = "ANGLE";
105 } else if (element->GetName() == string("distributor")) {
106 Type = "DISTRIBUTOR";
107 } else {
108 Type = "UNKNOWN";
109 }
110
111 Name = element->GetAttributeValue("name");
112
113 Element *init_element = element->FindElement("init");
114 while (init_element) {
115 InitNodes.push_back(new FGPropertyValue(init_element->GetDataLine(),
116 PropertyManager, init_element));
117 init_element = element->FindNextElement("init");
118 }
119
120 Element *input_element = element->FindElement("input");
121 while (input_element) {
122 InputNodes.push_back(new FGPropertyValue(input_element->GetDataLine(),
123 PropertyManager, input_element));
124
125 input_element = element->FindNextElement("input");
126 }
127
128 Element *out_elem = element->FindElement("output");
129 while (out_elem) {
130 string output_node_name = out_elem->GetDataLine();
131 bool node_exists = PropertyManager->HasNode(output_node_name);
132 FGPropertyNode* OutputNode = PropertyManager->GetNode( output_node_name, true );
133 if (!OutputNode) {
134 cerr << out_elem->ReadFrom() << " Unable to process property: "
135 << output_node_name << endl;
136 throw(string("Invalid output property name in flight control definition"));
137 }
138 OutputNodes.push_back(OutputNode);
139
140
141
142
143 if (!node_exists)
144 OutputNode->setDoubleValue(Output);
145 out_elem = element->FindNextElement("output");
146 }
147
148 Element* delay_elem = element->FindElement("delay");
149 if ( delay_elem ) {
150 string delay_str = delay_elem->GetDataLine();
151 FGParameterValue delayParam(delay_str, PropertyManager, delay_elem);
152 delay_time = delayParam.GetValue();
153 string delayType = delay_elem->GetAttributeValue("type");
154 if (delayType.length() > 0) {
155 if (delayType == "time") {
156 delay = (unsigned int)(delay_time / dt);
157 } else if (delayType == "frames") {
158 delay = (unsigned int)delay_time;
159 } else {
160 cerr << "Unallowed delay type" << endl;
161 }
162 } else {
163 delay = (unsigned int)(delay_time / dt);
164 }
165 output_array.resize(delay);
166 for (unsigned int i=0; i<delay; i++) output_array[i] = 0.0;
167 }
168
169 Element *clip_el = element->FindElement("clipto");
170 if (clip_el) {
171 Element* el = clip_el->FindElement("min");
172 if (!el) {
173 cerr << clip_el->ReadFrom()
174 << "Element <min> is missing, <clipto> is ignored." << endl;
175 return;
176 }
177
178 ClipMin = new FGParameterValue(el, PropertyManager);
179
180 el = clip_el->FindElement("max");
181 if (!el) {
182 cerr << clip_el->ReadFrom()
183 << "Element <max> is missing, <clipto> is ignored." << endl;
184 ClipMin = nullptr;
185 return;
186 }
187
188 ClipMax = new FGParameterValue(el, PropertyManager);
189
190 if (clip_el->GetAttributeValue("type") == "cyclic")
191 cyclic_clip = true;
192
193 clip = true;
194 }
195
196 Debug(0);
197}