10 prmLogger->
Log(
"Config::Initialize...");
14 if (wcslen(configFilePath) == 0)
21 _wsopen_s(&configFile, configFilePath, _O_RDONLY | _O_BINARY | _O_SEQUENTIAL, SH_DENYWR, S_IREAD);
25 sprintf_s(msg, 99,
"Config::Initialize could not open file: %S", configFilePath);
31 int fileLength = _filelength(configFile);
32 char* buffer =
new char[fileLength + 1];
33 _read(configFile, buffer, fileLength);
35 buffer[fileLength] = 0;
37 using namespace rapidxml;
41 xml_node<>* root = doc.first_node(
"Avionics");
43 xml_node<>* devices = root->first_node(
"Devices");
46 xml_node<>* moduleNodes = root->first_node(
"Modules");
49 xml_node<>* viewportNode = root->first_node(
"Viewport");
57 using namespace rapidxml;
58 for (xml_node<>* device = devices->first_node(); device; device = device->next_sibling())
60 xml_attribute<> *deviceType = device->first_attribute(
"type");
61 if (_strcmpi(deviceType->value(),
"interfacekit") == 0)
64 xml_attribute<> *sensorNodes = device->first_attribute(
"sensors");
65 int sensorsCount = atoi(sensorNodes->value());
66 interfaceKitConfig.
sensors.resize(sensorsCount);
67 for (UINT i = 0; i < interfaceKitConfig.
sensors.size(); i++)
69 interfaceKitConfig.
sensors.at(i).defined =
false;
71 xml_attribute<> *inputNodes = device->first_attribute(
"inputs");
72 interfaceKitConfig.
inputs.resize(atoi(inputNodes->value()));
73 for (UINT i = 0; i < interfaceKitConfig.
inputs.size(); i++)
75 interfaceKitConfig.
inputs.at(i).defined =
false;
77 xml_attribute<> *outputNodes = device->first_attribute(
"outputs");
78 interfaceKitConfig.
outputs.resize(atoi(outputNodes->value()));
79 for (UINT i = 0; i < interfaceKitConfig.
outputs.size(); i++)
81 interfaceKitConfig.
outputs.at(i).defined =
false;
83 xml_attribute<> *deviceEnabled = device->first_attribute(
"enable");
84 interfaceKitConfig.
enable = atoi(deviceEnabled->value()) == 1;
87 xml_attribute<> *ratiometric = device->first_attribute(
"ratiometric");
88 if (ratiometric) interfaceKitConfig.
ratiometric = atoi(ratiometric->value()) == 1;
90 xml_attribute<> *serialno = device->first_attribute(
"serialno");
91 interfaceKitConfig.
serialno = atoi(serialno->value());
92 xml_attribute<> *friendlyName = device->first_attribute(
"friendlyName");
93 if (friendlyName) interfaceKitConfig.
friendlyName = friendlyName->value();
95 for (xml_node<>* io = device->first_node(); io; io = io->next_sibling())
97 xml_attribute<> *ioIndex = io->first_attribute(
"index");
98 int index = atoi(ioIndex->value());
100 if (_strcmpi(io->name(),
"Sensor") == 0)
102 interfaceKitConfig.
sensors.at(index).defined =
true;
103 xml_attribute<> *sensorName = io->first_attribute(
"name");
104 interfaceKitConfig.
sensors.at(index).name = sensorName->value();
105 xml_attribute<> *sensitivity = io->first_attribute(
"sensitivity");
106 interfaceKitConfig.
sensors.at(index).sensitivity = atoi(sensitivity->value());
107 xml_attribute<> *sensorGuid = io->first_attribute(
"guid");
108 interfaceKitConfig.
sensors.at(index).guid = sensorGuid->value();
109 xml_attribute<> *sensorType = io->first_attribute(
"type");
110 interfaceKitConfig.
sensors.at(index).type = sensorType->value();
111 xml_attribute<> *sensorSubType = io->first_attribute(
"subtype");
112 if (sensorSubType) interfaceKitConfig.
sensors.at(index).subtype = sensorSubType->value();
113 xml_attribute<> *inverse = io->first_attribute(
"inverse");
114 if (inverse) interfaceKitConfig.
sensors.at(index).inverse = atoi(inverse->value()) == 1;
115 xml_attribute<> *bias = io->first_attribute(
"bias");
116 if (bias) interfaceKitConfig.
sensors.at(index).bias =
static_cast<float>(atof(bias->value()));
118 else if (_strcmpi(io->name(),
"Input") == 0)
120 interfaceKitConfig.
inputs.at(index).defined =
true;
121 xml_attribute<> *name = io->first_attribute(
"name");
122 interfaceKitConfig.
inputs.at(index).name = name->value();
123 xml_attribute<> *guid = io->first_attribute(
"guid");
124 if (guid) interfaceKitConfig.
inputs.at(index).guid = guid->value();
126 else if (_strcmpi(io->name(),
"Output") == 0)
128 interfaceKitConfig.
outputs.at(index).defined =
true;
129 xml_attribute<> *trigger = io->first_attribute(
"trigger");
130 interfaceKitConfig.
outputs.at(index).trigger = trigger->value();
131 xml_attribute<> *guid = io->first_attribute(
"guid");
132 if (guid) interfaceKitConfig.
outputs.at(index).guid = guid->value();
136 if (interfaceKitConfig.
enable)
139 else if (_strcmpi(deviceType->value(),
"encoder") == 0)
163 xml_attribute<> *deviceEnabled = device->first_attribute(
"enable");
164 interfaceKitConfig.
enable = atoi(deviceEnabled->value()) == 1;
165 xml_attribute<> *serialno = device->first_attribute(
"serialno");
166 interfaceKitConfig.
serialno = atoi(serialno->value());
167 xml_attribute<> *friendlyName = device->first_attribute(
"friendlyName");
168 if (friendlyName) interfaceKitConfig.
friendlyName = friendlyName->value();
213 if (interfaceKitConfig.
enable)
216 else if (_strcmpi(deviceType->value(),
"analog") == 0)
219 xml_attribute<> *outputNodes = device->first_attribute(
"outputs");
220 interfaceKitConfig.
channels.resize(atoi(outputNodes->value()));
221 for (UINT i = 0; i < interfaceKitConfig.
channels.size(); i++)
223 interfaceKitConfig.
channels.at(i).defined =
false;
225 xml_attribute<> *deviceEnabled = device->first_attribute(
"enable");
226 interfaceKitConfig.
enable = atoi(deviceEnabled->value()) == 1;
227 xml_attribute<> *serialno = device->first_attribute(
"serialno");
228 interfaceKitConfig.
serialno = atoi(serialno->value());
230 for (xml_node<>* io = device->first_node(); io; io = io->next_sibling())
232 xml_attribute<> *ioIndex = io->first_attribute(
"index");
233 int index = atoi(ioIndex->value());
235 interfaceKitConfig.
channels.at(index).defined =
true;
237 xml_attribute<> *trigger = io->first_attribute(
"trigger");
238 interfaceKitConfig.
channels.at(index).trigger = trigger->value();
241 if (interfaceKitConfig.
enable)
244 else if (_strcmpi(deviceType->value(),
"keyboard") == 0)
246 xml_attribute<> *serialno = device->first_attribute(
"serialno");
248 int p1, p2, p3, p4, p5, p6, p7, p8, p9, p10;
249 int err = sscanf_s(serialno->value(),
"%08lX-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X",
250 &p0, &p1, &p2, &p3, &p4, &p5, &p6, &p7, &p8, &p9, &p10);
268 xml_attribute<> *deviceEnabled = device->first_attribute(
"enable");
270 xml_attribute<> *bufferTimeout = device->first_attribute(
"bufferTimeout");
272 xml_attribute<> *endOfBufferKey = device->first_attribute(
"endOfBufferKey");
275 for (xml_node<>* inputType = device->first_node(); inputType; inputType = inputType->next_sibling())
277 if (_strcmpi(inputType->name(),
"Buffer") == 0)
281 xml_attribute<> *input = inputType->first_attribute(
"input");
282 buffer.
input = input->value();
283 xml_attribute<> *enterReq = inputType->first_attribute(
"enterReq");
290 else if (_strcmpi(inputType->name(),
"Key") == 0)
294 xml_attribute<> *input = inputType->first_attribute(
"input");
295 buffer.
input = atoi(input->value());
304 else if (_strcmpi(deviceType->value(),
"spatial") == 0)
306 xml_attribute<> *deviceEnabled = device->first_attribute(
"enable");
308 xml_attribute<> *serialno = device->first_attribute(
"serialno");
310 xml_attribute<> *sampleRate = device->first_attribute(
"sampleRateMs");
312 xml_attribute<> *accelerationAxes = device->first_attribute(
"accelerationAxes");
315 for (xml_node<>* inputType = device->first_node(); inputType; inputType = inputType->next_sibling())
317 xml_attribute<> *ioIndex = inputType->first_attribute(
"index");
318 int index = atoi(ioIndex->value());
320 if (_strcmpi(inputType->name(),
"AccelAxis") == 0)
322 xml_attribute<> *input = inputType->first_attribute(
"name");
324 xml_attribute<> *bias = inputType->first_attribute(
"bias");
332 else if (_strcmpi(deviceType->value(),
"apcupsd") == 0)
334 xml_attribute<> *deviceEnabled = device->first_attribute(
"enable");
337 xml_attribute<> *pollSeconds = device->first_attribute(
"pollSeconds");
339 xml_attribute<> *pollTimeout = device->first_attribute(
"pollTimeout");
341 xml_attribute<> *port = device->first_attribute(
"port");
344 for (xml_node<>* paramNode = device->first_node(); paramNode; paramNode = paramNode->next_sibling())
348 xml_attribute<> *field = paramNode->first_attribute(
"field");
349 if (field) param.
field = field->value();
350 xml_attribute<> *modulate = paramNode->first_attribute(
"modulate");
351 if (modulate) param.
modulate =
static_cast<float>(atof(modulate->value()));
352 xml_attribute<> *guid = paramNode->first_attribute(
"guid");
353 param.
guid = guid->value();
358 else if (_strcmpi(deviceType->value(),
"bass") == 0)
362 xml_attribute<> *serialno = device->first_attribute(
"serialno");
364 xml_attribute<> *initialVolume = device->first_attribute(
"initialVolume");
365 if (initialVolume) bassConfig.
initialVolume =
static_cast<float>(atof(initialVolume->value()));
367 for (xml_node<>* io = device->first_node(); io; io = io->next_sibling())
369 if (_strcmpi(io->name(),
"Sound") == 0)
373 sound.
path = io->value();
375 xml_attribute<> *trigger = io->first_attribute(
"trigger");
376 sound.
trigger = trigger->value();
378 xml_attribute<> *mono = io->first_attribute(
"mono");
379 if (mono) sound.
mono = atoi(mono->value()) == 1;
381 xml_attribute<> *restart = io->first_attribute(
"restart");
382 if (restart) sound.
restart = atoi(restart->value()) == 1;
384 xml_attribute<> *loop = io->first_attribute(
"loop");
385 if (loop) sound.
loop = atoi(loop->value()) == 1;
387 xml_attribute<> *pan = io->first_attribute(
"pan");
388 if (pan) sound.
pan =
static_cast<float>(atof(pan->value()));
390 xml_attribute<> *baseHz = io->first_attribute(
"baseHz");
391 if (baseHz) sound.
baseHz =
static_cast<float>(atof(baseHz->value()));
393 bassConfig.
sounds.push_back(sound);
400 else if (_strcmpi(deviceType->value(),
"teamspeak") == 0)
402 xml_attribute<> *deviceEnabled = device->first_attribute(
"enable");
404 xml_attribute<> *handle = device->first_attribute(
"handle");
407 xml_node<> *identity = device->first_node(
"Identity");
410 xml_node<> *capture = device->first_node(
"Capture");
411 xml_attribute<> *captureMode = capture->first_attribute(
"mode");
413 xml_attribute<> *captureDevice = capture->first_attribute(
"device");
415 xml_attribute<> *gain = capture->first_attribute(
"gain");
417 xml_attribute<> *vad = capture->first_attribute(
"voiceActivated");
420 xml_node<> *playback = device->first_node(
"Playback");
421 xml_attribute<> *playbackMode = playback->first_attribute(
"mode");
423 xml_attribute<> *playbackDevice = playback->first_attribute(
"device");
425 xml_attribute<> *volume = playback->first_attribute(
"volume");
428 else if (_strcmpi(deviceType->value(),
"joystick") == 0)
432 xml_attribute<> *deviceEnabled = device->first_attribute(
"enable");
433 interfaceKitConfig.
enable = atoi(deviceEnabled->value()) == 1;
435 xml_attribute<> *serialno = device->first_attribute(
"serialno");
437 int p1, p2, p3, p4, p5, p6, p7, p8, p9, p10;
438 int err = sscanf_s(serialno->value(),
"%08lX-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X",
439 &p0, &p1, &p2, &p3, &p4, &p5, &p6, &p7, &p8, &p9, &p10);
442 interfaceKitConfig.
serialno.Data1 = p0;
443 interfaceKitConfig.
serialno.Data2 =
static_cast<unsigned short>(p1);
444 interfaceKitConfig.
serialno.Data3 =
static_cast<unsigned short>(p2);
445 interfaceKitConfig.
serialno.Data4[0] =
static_cast<unsigned char>(p3);
446 interfaceKitConfig.
serialno.Data4[1] =
static_cast<unsigned char>(p4);
447 interfaceKitConfig.
serialno.Data4[2] =
static_cast<unsigned char>(p5);
448 interfaceKitConfig.
serialno.Data4[3] =
static_cast<unsigned char>(p6);
449 interfaceKitConfig.
serialno.Data4[4] =
static_cast<unsigned char>(p7);
450 interfaceKitConfig.
serialno.Data4[5] =
static_cast<unsigned char>(p8);
451 interfaceKitConfig.
serialno.Data4[6] =
static_cast<unsigned char>(p9);
452 interfaceKitConfig.
serialno.Data4[7] =
static_cast<unsigned char>(p10);
455 interfaceKitConfig.
serialno = GUID_NULL;
457 xml_attribute<> *location = device->first_attribute(
"location");
458 interfaceKitConfig.
location = atoi(location->value());
459 xml_attribute<> *registerWithFcs = device->first_attribute(
"registerWithFcs");
460 if (registerWithFcs) interfaceKitConfig.
registerWithFcs = atoi(registerWithFcs->value()) == 1;
461 xml_attribute<> *registerWithFadec = device->first_attribute(
"registerWithFadec");
462 if (registerWithFadec) interfaceKitConfig.
registerWithFadec = atoi(registerWithFadec->value()) == 1;
464 for (xml_node<>* inputType = device->first_node(); inputType; inputType = inputType->next_sibling())
466 if (_strcmpi(inputType->name(),
"Button") == 0)
470 xml_attribute<> *index = inputType->first_attribute(
"index");
471 button.
index = atoi(index->value());
472 xml_attribute<> *onPress = inputType->first_attribute(
"onPress");
473 button.
onPress = atoi(onPress->value()) == 1;
474 xml_attribute<> *duration = inputType->first_attribute(
"duration");
475 if (duration) button.
durationRequired =
static_cast<float>(atof(duration->value()));
479 interfaceKitConfig.
buttons.push_back(button);
481 else if (_strcmpi(inputType->name(),
"Axis") == 0)
485 xml_attribute<> *index = inputType->first_attribute(
"index");
486 axis.
index = atoi(index->value());
487 xml_attribute<> *inverse = inputType->first_attribute(
"inverse");
488 if (inverse) axis.
inverse = atoi(inverse->value()) == 1;
489 xml_attribute<> *deadband = inputType->first_attribute(
"deadband");
490 if (deadband) axis.
deadband = atoi(deadband->value());
491 xml_attribute<> *min = inputType->first_attribute(
"min");
492 if (min) axis.
min = atoi(min->value());
493 xml_attribute<> *max = inputType->first_attribute(
"max");
494 if (max) axis.
max = atoi(max->value());
495 xml_attribute<> *scale = inputType->first_attribute(
"scale");
496 if (scale) axis.
scale =
static_cast<float>(atof(scale->value()));
498 interfaceKitConfig.
axes.push_back(axis);
502 if (interfaceKitConfig.
enable)
505 else if (_strcmpi(deviceType->value(),
"raknet") == 0)
507 xml_attribute<> *enabled = device->first_attribute(
"enable");
510 xml_attribute<> *clientPort = device->first_attribute(
"clientPort");
512 xml_attribute<> *maxPeer = device->first_attribute(
"maxPeer");
514 xml_attribute<> *sendEmails = device->first_attribute(
"sendEmails");
516 xml_attribute<> *useSsl = device->first_attribute(
"useSsl");
519 xml_node<> *smtpServer = device->first_node(
"SmtpServer");
521 xml_attribute<> *smtpServerPort = smtpServer->first_attribute(
"port");
524 xml_node<> *sender = device->first_node(
"Sender");
525 xml_node<> *senderName = sender->first_node(
"Name");
527 xml_node<> *senderEmail = sender->first_node(
"Email");
529 xml_node<> *password = sender->first_node(
"Password");
532 xml_node<> *recipient = device->first_node(
"Recipient");
533 xml_node<> *recipientName = recipient->first_node(
"Name");
535 xml_node<> *recipientEmail = recipient->first_node(
"Email");
538 else if (_strcmpi(deviceType->value(),
"youtube") == 0)
540 xml_node<> *username = device->first_node(
"Username");
542 xml_node<> *password = device->first_node(
"Password");
544 xml_node<> *source = device->first_node(
"Source");
546 xml_node<> *developerkey = device->first_node(
"DeveloperKey");
549 else if (_strcmpi(deviceType->value(),
"webcam") == 0)
551 xml_attribute<> *enabled = device->first_attribute(
"enable");
554 std::string stdString;
555 xml_node<> *video = device->first_node(
"Video");
556 stdString = video->value();
558 xml_attribute<> *width = video->first_attribute(
"width");
560 xml_attribute<> *height = video->first_attribute(
"height");
562 xml_attribute<> *numerator = video->first_attribute(
"numerator");
564 xml_attribute<> *denominator = video->first_attribute(
"denominator");
567 xml_node<> *audio = device->first_node(
"Audio");
568 stdString = audio->value();
570 xml_attribute<> *frequency = audio->first_attribute(
"frequency");
572 xml_attribute<> *channels = audio->first_attribute(
"channels");
575 else if (_strcmpi(deviceType->value(),
"xplane") == 0)
577 xml_attribute<> *enabled = device->first_attribute(
"enable");
579 xml_attribute<> *port = device->first_attribute(
"port");
585 sprintf_s(msg, 99,
"Config::ctor Unrecognized Device type: %s", deviceType->value());
593 using namespace rapidxml;
594 for (xml_node<>* module = moduleNodes->first_node(); module; module = module->next_sibling())
596 xml_attribute<> *moduleType = module->first_attribute(
"type");
597 if (_strcmpi(moduleType->value(),
"fcs") == 0)
599 xml_attribute<> *
joysticks = module->first_attribute(
"joysticks");
600 prmModules->push_back(
new Fcs(prmBus, atoi(
joysticks->value())));
602 for (xml_node<>* watchNode = module->first_node(); watchNode; watchNode = watchNode->next_sibling())
604 xml_attribute<> *type = watchNode->first_attribute(
"type");
605 Fcs* fadec =
static_cast<Fcs*
>(prmModules->back());
609 else if (_strcmpi(moduleType->value(),
"fadec") == 0)
611 xml_attribute<> *prmSoundDevice = module->first_attribute(
"soundDevice");
612 int soundDevice = atoi(prmSoundDevice->value());
613 xml_attribute<> *prmJoystickAxis = module->first_attribute(
"joystickAxis");
614 int joystickAxis = atoi(prmJoystickAxis->value());
615 xml_attribute<> *prmEngineOrdinal = module->first_attribute(
"engineOrdinal");
616 int engineOrdinal = atoi(prmEngineOrdinal->value());
617 xml_attribute<> *prefix = module->first_attribute(
"prefix");
618 prmModules->push_back(
new Fadec(prmBus, soundDevice, joystickAxis, engineOrdinal, prefix->value()));
620 for (xml_node<>* watchNode = module->first_node(); watchNode; watchNode = watchNode->next_sibling())
622 xml_attribute<> *type = watchNode->first_attribute(
"type");
623 Fadec* fadec =
static_cast<Fadec*
>(prmModules->back());
627 else if (_strcmpi(moduleType->value(),
"vmu") == 0)
629 xml_attribute<> *prmSoundDevice = module->first_attribute(
"soundDevice");
631 xml_attribute<> *guid = module->first_attribute(
"componentGuid");
632 float* floatPtr = prmBus->GetComponentCurrentStatePtr(guid->value());
634 prmModules->push_back(
new Vmu(prmBus, atoi(prmSoundDevice->value()), floatPtr));
636 else if (_strcmpi(moduleType->value(),
"ase") == 0)
638 xml_attribute<> *prmSoundDevice = module->first_attribute(
"soundDevice");
642 xml_node<>* vocalwareNode = module->first_node();
644 xml_attribute<> *acc = vocalwareNode->first_attribute(
"acc");
645 vocalware.
acc = acc->value();
646 xml_attribute<> *api = vocalwareNode->first_attribute(
"api");
647 vocalware.
api = api->value();
648 xml_attribute<> *secret = vocalwareNode->first_attribute(
"secret");
649 vocalware.
secret = secret->value();
651 for (xml_node<>* voiceNode = vocalwareNode->first_node(); voiceNode; voiceNode = voiceNode->next_sibling())
655 xml_attribute<> *eid = voiceNode->first_attribute(
"eid");
656 voice.
eid = eid->value();
657 xml_attribute<> *lid = voiceNode->first_attribute(
"lid");
658 voice.
lid = lid->value();
659 xml_attribute<> *vid = voiceNode->first_attribute(
"vid");
660 voice.
vid = vid->value();
661 xml_attribute<> *fxtype = voiceNode->first_attribute(
"fxtype");
662 if (fxtype) voice.
fxtype = fxtype->value();
663 xml_attribute<> *fxlevel = voiceNode->first_attribute(
"fxlevel");
664 if (fxlevel) voice.
fxlevel = fxlevel->value();
666 vocalware.
voices.push_back(voice);
669 prmModules->push_back(
new Ase(prmBus, prmLogger, atoi(prmSoundDevice->value()), vocalware));
671 else if (_strcmpi(moduleType->value(),
"tcas") == 0)
673 prmModules->push_back(
new Tcas(prmBus));
675 else if (_strcmpi(moduleType->value(),
"mcu") == 0)
677 prmModules->push_back(
new Mcu(prmBus, prmLogger));
679 else if (_strcmpi(moduleType->value(),
"rtu") == 0)
681 prmModules->push_back(
new Rtu(prmBus, prmLogger));
683 else if (_strcmpi(moduleType->value(),
"pfd") == 0)
685 prmModules->push_back(
new Pfd(prmBus, prmLogger));
687 else if (_strcmpi(moduleType->value(),
"gpws") == 0)
689 prmModules->push_back(
new Gpws(prmBus));
691 else if (_strcmpi(moduleType->value(),
"fms") == 0)
693 prmModules->push_back(
new Fms(prmBus, prmLogger));
695 else if (_strcmpi(moduleType->value(),
"fdr") == 0)
697 prmModules->push_back(
new Fdr(prmBus, prmLogger));
699 else if (_strcmpi(moduleType->value(),
"afcs") == 0)
701 prmModules->push_back(
new Afcs(prmBus, prmLogger));
703 else if (_strcmpi(moduleType->value(),
"door") == 0)
705 prmModules->push_back(
new Door(prmBus, prmLogger));
707 else if (_strcmpi(moduleType->value(),
"logo") == 0)
709 xml_attribute<> *lat_attribute = module->first_attribute(
"latitude");
710 float lat =
static_cast<float>(atof(lat_attribute->value()));
711 xml_attribute<> *lng_attribute = module->first_attribute(
"longitude");
712 float lng =
static_cast<float>(atof(lng_attribute->value()));
713 xml_attribute<> *alt_attribute = module->first_attribute(
"altitudeFeet");
714 float alt =
static_cast<float>(atof(alt_attribute->value()));
715 xml_attribute<> *zenith_attribute = module->first_attribute(
"zenithDegrees");
716 float zenith =
static_cast<float>(atof(zenith_attribute->value()));
717 prmModules->push_back(
new Logo(prmBus, prmLogger, lat, lng, alt, zenith));
719 else if (_strcmpi(moduleType->value(),
"cas") == 0)
722 std::vector<Watch> watches;
724 for (xml_node<>* watchNode = module->first_node(); watchNode; watchNode = watchNode->next_sibling())
728 xml_attribute<> *guid = watchNode->first_attribute(
"guid");
729 watch.
guid = guid->value();
730 xml_attribute<> *onClear = watchNode->first_attribute(
"onClear");
731 if (onClear) watch.
onClear = onClear->value();
732 xml_attribute<> *sendEmail = watchNode->first_attribute(
"sendEmail");
733 if (sendEmail) watch.
sendEmail = atoi(sendEmail->value()) == 1;
734 xml_attribute<> *quietStart = watchNode->first_attribute(
"quietStart");
738 sscanf_s(quietStart->value(),
"%d:%d", &tmp.wHour, &tmp.wMinute);
741 xml_attribute<> *quietEnd = watchNode->first_attribute(
"quietEnd");
745 sscanf_s(quietEnd->value(),
"%d:%d", &tmp.wHour, &tmp.wMinute);
749 for (xml_node<>* conditionNode = watchNode->first_node(); conditionNode; conditionNode = conditionNode->next_sibling())
753 xml_attribute<> *fault = conditionNode->first_attribute(
"fault");
755 xml_attribute<> *severity = conditionNode->first_attribute(
"severity");
757 std::string message = conditionNode->value();
758 condition.
message.assign(message.begin(), message.end());
759 xml_attribute<> *above = conditionNode->first_attribute(
"above");
760 if (above) condition.
above =
static_cast<float>(atof(above->value()));
761 xml_attribute<> *below = conditionNode->first_attribute(
"below");
762 if (below) condition.
below =
static_cast<float>(atof(below->value()));
767 watches.push_back(watch);
770 xml_attribute<> *guid = module->first_attribute(
"componentGuid");
771 float* floatPtr = prmBus->GetComponentCurrentStatePtr(guid->value());
773 prmModules->push_back(
new Cas(prmBus, prmLogger, watches, floatPtr));
779 sprintf_s(msg, 99,
"Config::ctor Unrecognized Module type: %s", moduleType->value());
788 using namespace rapidxml;
789 for (xml_node<>* commandNode = parentNode->first_node(); commandNode; commandNode = commandNode->next_sibling())
793 xml_attribute<> *name = commandNode->first_attribute(
"name");
794 command.
name = name->value();
796 xml_attribute<> *delay = commandNode->first_attribute(
"delay");
797 if (delay) command.
delay =
static_cast<float>(atof(delay->value()));
else command.
delay = 0.0f;
799 xml_attribute<> *ivalue = commandNode->first_attribute(
"ivalue");
800 if (ivalue) command.
ivalue = atoi(ivalue->value());
802 xml_attribute<> *fvalue = commandNode->first_attribute(
"fvalue");
803 if (fvalue) command.
fvalue =
static_cast<float>(atof(fvalue->value()));
805 xml_attribute<> *svalue = commandNode->first_attribute(
"svalue");
806 if (svalue) strcpy_s(command.
svalue, 64, svalue->value());
808 xml_attribute<> *guid = commandNode->first_attribute(
"guid");
809 if (guid) command.
guid = guid->value();
811 commands->push_back(command);
817 using namespace rapidxml;
819 xml_attribute<> *exclusiveMode = viewportNode->first_attribute(
"exclusiveMode");
822 for (xml_node<>* screenNode = viewportNode->first_node(); screenNode; screenNode = screenNode->next_sibling())
824 if (_strcmpi(screenNode->name(),
"Font") == 0)
828 xml_attribute<> *width = screenNode->first_attribute(
"width");
829 font.
width = atoi(width->value());
830 xml_attribute<> *height = screenNode->first_attribute(
"height");
831 font.
height = atoi(height->value());
832 xml_attribute<> *name = screenNode->first_attribute(
"name");
833 font.
name = name->value();
842 xml_attribute<> *screenName = screenNode->first_attribute(
"name");
843 if (screenName) screen.
name = screenName->value();
844 xml_attribute<> *adapter = screenNode->first_attribute(
"adapter");
845 screen.
adapter = atoi(adapter->value());
846 xml_attribute<> *window = screenNode->first_attribute(
"window");
847 screen.
window = atoi(window->value());
848 xml_attribute<> *flip = screenNode->first_attribute(
"flip");
849 if (flip) screen.
flip = atoi(flip->value()) == 1;
851 for (xml_node<>* pageNode = screenNode->first_node(); pageNode; pageNode = pageNode->next_sibling())
854 xml_attribute<> *
id = pageNode->first_attribute(
"id");
855 page.
id = atoi(id->value());
856 xml_attribute<> *pageName = pageNode->first_attribute(
"name");
857 page.
name = pageName->value();
858 for (xml_node<>* instrumentOrElementNode = pageNode->first_node(); instrumentOrElementNode; instrumentOrElementNode = instrumentOrElementNode->next_sibling())
860 if (_strcmpi(instrumentOrElementNode->name(),
"Instrument") == 0)
862 xml_attribute<> *xAtt = instrumentOrElementNode->first_attribute(
"x");
863 int x = atoi(xAtt->value());
864 xml_attribute<> *yAtt = instrumentOrElementNode->first_attribute(
"y");
865 int y = atoi(yAtt->value());
866 xml_attribute<> *xScaleAtt = instrumentOrElementNode->first_attribute(
"xScale");
867 float xScale = xScaleAtt ?
static_cast<float>(atof(xScaleAtt->value())) : 1.0f;
868 xml_attribute<> *yScaleAtt = instrumentOrElementNode->first_attribute(
"yScale");
869 float yScale = yScaleAtt ?
static_cast<float>(atof(yScaleAtt->value())) : 1.0f;
871 xml_attribute<> *widthAtt = instrumentOrElementNode->first_attribute(
"width");
872 int width = widthAtt ? atoi(widthAtt->value()) : 0;
873 xml_attribute<> *heightAtt = instrumentOrElementNode->first_attribute(
"height");
874 int height = heightAtt ? atoi(heightAtt->value()) : 0;
876 xml_attribute<> *typeAtt = instrumentOrElementNode->first_attribute(
"type");
877 std::string type = typeAtt->value();
878 xml_attribute<> *textureAtt = instrumentOrElementNode->first_attribute(
"texture");
879 std::string texfile = textureAtt ? textureAtt->value() :
"";
880 xml_attribute<> *modulateKmAtt = instrumentOrElementNode->first_attribute(
"modulateKm");
881 float modulateKm = modulateKmAtt ?
static_cast<float>(atof(modulateKmAtt->value())) : 1.0f;
883 xml_attribute<> *guid1element = instrumentOrElementNode->first_attribute(
"guid1");
884 std::string guid1 = guid1element ? guid1element->value() :
"";
885 xml_attribute<> *guid2element = instrumentOrElementNode->first_attribute(
"guid2");
886 std::string guid2 = guid2element ? guid2element->value() :
"";
887 xml_attribute<> *ordinalElement = instrumentOrElementNode->first_attribute(
"ordinal");
888 int ordinal = ordinalElement ? atoi(ordinalElement->value()) : -1;
894 if (type ==
"AltitudeTape") page.
instruments.push_back(
new AltitudeTape(x, y, width, height, texfile.c_str(), modulateKm));
896 if (type ==
"N1Indicator") page.
instruments.push_back(
new N1Indicator(x, y, xScale, yScale, guid1, guid2, ordinal));
897 if (type ==
"ITTIndicator") page.
instruments.push_back(
new ITTIndicator(x, y, xScale, yScale, guid1, guid2, ordinal));
901 else if (_strcmpi(instrumentOrElementNode->name(),
"Element") == 0)
904 xml_attribute<> *x = instrumentOrElementNode->first_attribute(
"x");
905 if (x) element.
x = atoi(x->value());
906 xml_attribute<> *y = instrumentOrElementNode->first_attribute(
"y");
907 if (y) element.
y = atoi(y->value());
909 for (xml_node<>* componentNode = instrumentOrElementNode->first_node(); componentNode; componentNode = componentNode->next_sibling())
912 xml_attribute<> *guid = componentNode->first_attribute(
"guid");
913 if (guid) component.
guid = guid->value();
914 xml_attribute<> *busval = componentNode->first_attribute(
"busval");
915 if (busval) component.
busval = busval->value();
916 xml_attribute<> *modulate = componentNode->first_attribute(
"modulate");
917 if (modulate) component.
modulate =
static_cast<float>(atof(modulate->value()));
919 for (xml_node<>* conditionNode = componentNode->first_node(); conditionNode; conditionNode = conditionNode->next_sibling())
922 xml_attribute<> *fault = conditionNode->first_attribute(
"fault");
923 if (fault) condition.
fault = atoi(fault->value());
924 xml_attribute<> *min = conditionNode->first_attribute(
"min");
925 if (min) condition.
min =
static_cast<float>(atof(min->value()));
926 xml_attribute<> *max = conditionNode->first_attribute(
"max");
927 if (max) condition.
max =
static_cast<float>(atof(max->value()));
929 for (xml_node<>* spriteOrTextNode = conditionNode->first_node(); spriteOrTextNode; spriteOrTextNode = spriteOrTextNode->next_sibling())
931 if (_strcmpi(spriteOrTextNode->name(),
"Sprite") == 0)
936 xml_attribute<> *spriteX = spriteOrTextNode->first_attribute(
"x");
937 sprite.
x = atoi(spriteX->value());
938 xml_attribute<> *spriteY = spriteOrTextNode->first_attribute(
"y");
939 sprite.
y = atoi(spriteY->value());
940 xml_attribute<> *z = spriteOrTextNode->first_attribute(
"z");
941 if (z) sprite.
z =
static_cast<float>(atof(z->value()));
942 xml_attribute<> *width = spriteOrTextNode->first_attribute(
"width");
943 sprite.
width = atoi(width->value());
944 xml_attribute<> *height = spriteOrTextNode->first_attribute(
"height");
945 sprite.
height = atoi(height->value());
946 xml_attribute<> *color = spriteOrTextNode->first_attribute(
"color");
947 if (color) sprite.
color = strtoul(color->value(),
nullptr, 16);
948 xml_attribute<> *name = spriteOrTextNode->first_attribute(
"name");
950 xml_attribute<> *hidden = spriteOrTextNode->first_attribute(
"hidden");
953 condition.
sprites.push_back(sprite);
955 else if (_strcmpi(spriteOrTextNode->name(),
"Text") == 0)
960 xml_attribute<> *textX = spriteOrTextNode->first_attribute(
"x");
961 text.
x = atoi(textX->value());
962 xml_attribute<> *textY = spriteOrTextNode->first_attribute(
"y");
963 text.
y = atoi(textY->value());
964 xml_attribute<> *width = spriteOrTextNode->first_attribute(
"width");
965 if (width) text.
width = atoi(width->value());
966 xml_attribute<> *height = spriteOrTextNode->first_attribute(
"height");
967 if (height) text.
height = atoi(height->value());
968 xml_attribute<> *align = spriteOrTextNode->first_attribute(
"align");
971 if (_strcmpi(align->value(),
"right") == 0)
973 text.
flags |= DT_RIGHT;
976 xml_attribute<> *color = spriteOrTextNode->first_attribute(
"color");
977 text.
color = strtoul(color->value(),
nullptr, 16);
978 xml_attribute<> *font = spriteOrTextNode->first_attribute(
"font");
979 if (font) text.
font = atoi(font->value());
981 condition.
text.push_back(text);
994 screen.
pages.push_back(page);
std::vector< Element > elements
std::vector< Command > commands
Flight Management System.
std::wstring message
message to add
Forward definitions for the instruments are below.
void ConnectComponent(std::string name, std::string guid)
std::vector< Command > commands
Nullable< Systems::Fault > fault
fault that triggers this condition
std::string captureDevice
std::vector< Condition > conditions
Devices::SpatialConfig spatialConfig
void ConfigureModules(rapidxml::xml_node<> *modules, std::vector< Module *> *prmModules, Bus *prmBus, Logger *prmLogger) const
std::vector< ApcupsdParam > params
std::vector< Devices::AnalogConfig > analogConfigs
Automatic Flight Control System.
std::vector< Channel > channels
MessageLevel level
message level
std::string guid
component to watch
Devices::TeamSpeakConfig teamSpeakConfig
Alert Message Stack (CAS)
std::vector< Output > outputs
void ConfigureViewport(rapidxml::xml_node<> *viewportNode, Viewport *viewport)
void ConfigureDevices(rapidxml::xml_node<> *devices)
Adaptive Scenario Engine.
std::vector< Font > fonts
void LoadCommands(rapidxml::xml_node<> *parentNode, std::vector< Command > *commands)
Traffic Collision Avoidance System.
Nullable< float > above
above this threshold will trigger this condition
std::vector< Sound > sounds
std::vector< Screen > screens
std::string recipientEmail
std::string name
command name
std::vector< Sprite > sprites
bool sendEmail
[environmental] sendEmails for watch
void ConnectComponent(std::string name, std::string guid)
std::string formattedText
std::vector< SVoice > voices
Devices::RakNetConfig rakNetConfig
Devices::WebcamConfig webcamConfig
Full Authority Digital Engine Control.
Devices::YouTubeConfig youTubeConfig
Forward definitions for the modules are below.
Devices::ApcupsdConfig apcupsdConfig
void Initialize(Logger *logger, std::vector< Module *> *modules, Bus *prmBus, Viewport *viewport, WCHAR *configFile)
Nullable< float > below
below this threshold will trigger this condition
Nullable< float > modulate
std::vector< Page > pages
std::vector< Input > inputs
std::string playbackDevice
Nullable< SYSTEMTIME > quietStart
[environmental] on or after this time we will not send onClear emails
std::string recipientName
std::vector< Component > components
std::string pathAndFilename
Devices::XplaneConfig xplaneConfig
std::vector< Devices::InterfaceKitConfig > interfaceKitConfigs
std::vector< Condition > conditions
void Log(const char *msg, Level level=Info, int errorCode=0)
These have to be in this order.
std::vector< Devices::EncoderConfig > encoderConfigs
std::string pathAndFilename
std::vector< Devices::JoystickConfig > joystickConfigs
std::string name
config items
std::vector< Devices::BassConfig > bassConfigs
Devices::KeyboardConfig keyboardConfig
std::string onClear
[environmental] sent via email when all conditions clear
std::vector< Buffer > buffers
std::vector< Button > buttons
float delay
wait number of seconds before executing command
std::vector< Sensor > sensors
std::vector< AccelerationAxis > accelerationAxes
Nullable< SYSTEMTIME > quietEnd
[environmental] before this time we will not send onClear emails
int soundDevice
The device to use... -1 = default device, 0 = no sound, 1 = first real output device. BASS_GetDeviceInfo can be used to enumerate the available devices.
std::vector< Devices::Joystick > joysticks
std::vector< Instrument * > instruments