/******************************************************************************** * FaceTrackNoIR This program is a private project of the some enthusiastic * * gamers from Holland, who don't like to pay much for * * head-tracking. * * * * Copyright (C) 2011 Wim Vriend (Developing) * * Ron Hendriks (Researching and Testing) * * * * Homepage * * * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * * Free Software Foundation; either version 3 of the License, or (at your * * option) any later version. * * * * This program is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * * more details. * * * * You should have received a copy of the GNU General Public License along * * with this program; if not, see . * *********************************************************************************/ #include "facetracknoir.h" #include "opentrack/tracker.h" #include FaceTrackNoIR::FaceTrackNoIR() : timUpdateHeadPose(this), kbd_quit(QKeySequence("Ctrl+Q"), this), no_feed_pixmap(":/uielements/no-feed.png") { ui.setupUi(this); setFixedSize(size()); updateButtonState(false, false); ui.video_frame_label->setPixmap(no_feed_pixmap); QDir::setCurrent(QCoreApplication::applicationDirPath()); connect(ui.btnLoad, SIGNAL(clicked()), this, SLOT(open())); connect(ui.btnSave, SIGNAL(clicked()), this, SLOT(save())); connect(ui.btnSaveAs, SIGNAL(clicked()), this, SLOT(saveAs())); connect(ui.btnEditCurves, SIGNAL(clicked()), this, SLOT(showCurveConfiguration())); connect(ui.btnShortcuts, SIGNAL(clicked()), this, SLOT(showKeyboardShortcuts())); connect(ui.btnShowEngineControls, SIGNAL(clicked()), this, SLOT(showTrackerSettings())); connect(ui.btnShowServerControls, SIGNAL(clicked()), this, SLOT(showServerControls())); connect(ui.btnShowFilterControls, SIGNAL(clicked()), this, SLOT(showFilterControls())); modules.filters().push_back(nullptr); ui.iconcomboFilter->addItem(QIcon(), ""); for (auto x : modules.trackers()) ui.iconcomboTrackerSource->addItem(x->icon, x->name); for (auto x : modules.protocols()) ui.iconcomboProtocol->addItem(x->icon, x->name); for (auto x : modules.filters()) ui.iconcomboFilter->addItem(x->icon, x->name); fill_profile_combobox(); tie_setting(s.tracker_dll, ui.iconcomboTrackerSource); tie_setting(s.protocol_dll, ui.iconcomboProtocol); tie_setting(s.filter_dll, ui.iconcomboFilter); connect(ui.btnStartTracker, SIGNAL(clicked()), this, SLOT(startTracker())); connect(ui.btnStopTracker, SIGNAL(clicked()), this, SLOT(stopTracker())); connect(ui.iconcomboProfile, SIGNAL(currentIndexChanged(int)), this, SLOT(profileSelected(int))); connect(&timUpdateHeadPose, SIGNAL(timeout()), this, SLOT(showHeadPose())); connect(&kbd_quit, SIGNAL(activated()), this, SLOT(exit())); kbd_quit.setEnabled(true); } FaceTrackNoIR::~FaceTrackNoIR() { stopTracker(); save(); } void FaceTrackNoIR::open() { QFileDialog dialog(this); dialog.setFileMode(QFileDialog::ExistingFile); QString fileName = dialog.getOpenFileName( this, tr("Open the settings file"), QCoreApplication::applicationDirPath() + "/settings/", tr("Settings file (*.ini);;All Files (*)"), NULL); if (! fileName.isEmpty() ) { { QSettings settings("opentrack"); settings.setValue ("SettingsFile", QFileInfo(fileName).absoluteFilePath()); } fill_profile_combobox(); loadSettings(); } } void FaceTrackNoIR::save_mappings() { pose.save_mappings(); } #if defined(__unix) || defined(__linux) || defined(__APPLE__) # include #endif void FaceTrackNoIR::save() { b->save(); save_mappings(); #if defined(__unix) || defined(__linux) QSettings settings("opentrack"); const QString currentFile = settings.value ( "SettingsFile", QCoreApplication::applicationDirPath() + "/settings/default.ini" ).toString(); QByteArray bytes = QFile::encodeName(currentFile); const char* filename_as_asciiz = bytes.constData(); if (access(filename_as_asciiz, R_OK | W_OK)) { QMessageBox::warning(this, "Something went wrong", "Check permissions and ownership for your .ini file!", QMessageBox::Ok, QMessageBox::NoButton); } #endif } void FaceTrackNoIR::saveAs() { QSettings settings("opentrack"); QString oldFile = settings.value ( "SettingsFile", QCoreApplication::applicationDirPath() + "/settings/default.ini" ).toString(); QString fileName = QFileDialog::getSaveFileName(this, tr("Save file"), oldFile, tr("Settings file (*.ini);;All Files (*)")); if (!fileName.isEmpty()) { QFileInfo newFileInfo ( fileName ); if ((newFileInfo.exists()) && (oldFile != fileName)) { QFile newFileFile ( fileName ); newFileFile.remove(); } QFileInfo oldFileInfo ( oldFile ); if (oldFileInfo.exists()) { QFile oldFileFile ( oldFile ); oldFileFile.copy( fileName ); } settings.setValue ("SettingsFile", fileName); save(); } fill_profile_combobox(); } void FaceTrackNoIR::load_mappings() { pose.load_mappings(); } void FaceTrackNoIR::loadSettings() { b->reload(); load_mappings(); } extern "C" volatile const char* opentrack_version; void FaceTrackNoIR::fill_profile_combobox() { QSettings settings("opentrack"); QString currentFile = settings.value ( "SettingsFile", QCoreApplication::applicationDirPath() + "/settings/default.ini" ).toString(); qDebug() << "Config file now" << currentFile; QFileInfo pathInfo ( currentFile ); setWindowTitle(QString( const_cast(opentrack_version) + QStringLiteral(" :: ")) + pathInfo.fileName()); QDir settingsDir( pathInfo.dir() ); auto iniFileList = settingsDir.entryList( QStringList { "*.ini" } , QDir::Files, QDir::Name ); ui.iconcomboProfile->clear(); for (auto x : iniFileList) ui.iconcomboProfile->addItem(QIcon(":/images/settings16.png"), x); ui.iconcomboProfile->setCurrentText(pathInfo.fileName()); } void FaceTrackNoIR::updateButtonState(bool running, bool inertialp) { bool not_running = !running; ui.iconcomboProfile->setEnabled ( not_running ); ui.btnStartTracker->setEnabled ( not_running ); ui.btnStopTracker->setEnabled ( running ); ui.iconcomboProtocol->setEnabled ( not_running ); ui.iconcomboFilter->setEnabled ( not_running ); ui.iconcomboTrackerSource->setEnabled(not_running); ui.btnStartTracker->setEnabled(not_running); ui.btnStopTracker->setEnabled(running); ui.video_frame_label->setVisible(not_running || inertialp); } void FaceTrackNoIR::bindKeyboardShortcuts() { if (work) work->sc = std::make_shared(winId()); } void FaceTrackNoIR::startTracker( ) { b->save(); loadSettings(); bindKeyboardShortcuts(); // tracker dtor needs run first work = nullptr; libs = SelectedLibraries(ui.video_frame, current_tracker(), current_protocol(), current_filter()); work = std::make_shared(s, pose, libs, this, winId()); { double p[6] = {0,0,0, 0,0,0}; display_pose(p, p); } if (!libs.correct) { QMessageBox::warning(this, "Library load error", "One of libraries failed to load. Check installation.", QMessageBox::Ok, QMessageBox::NoButton); return; } ui.video_frame->show(); timUpdateHeadPose.start(50); // NB check valid since SelectedLibraries ctor called // trackers take care of layout state updates const bool is_inertial = ui.video_frame->layout() == nullptr; updateButtonState(true, is_inertial); } void FaceTrackNoIR::stopTracker( ) { ui.game_name->setText("Not connected"); timUpdateHeadPose.stop(); ui.pose_display->rotateBy(0, 0, 0); if (pTrackerDialog) { pTrackerDialog->unregister_tracker(); pTrackerDialog = nullptr; } if (pProtocolDialog) { pProtocolDialog->unregister_protocol(); pProtocolDialog = nullptr; } if (pFilterDialog) { pFilterDialog->unregisterFilter(); pFilterDialog = nullptr; } work = nullptr; libs = SelectedLibraries(); { double p[6] = {0,0,0, 0,0,0}; display_pose(p, p); } updateButtonState(false, false); } void FaceTrackNoIR::display_pose(const double *mapped, const double *raw) { ui.pose_display->rotateBy(mapped[Yaw], mapped[Roll], mapped[Pitch]); if (mapping_widget) mapping_widget->update(); double mapped_[6], raw_[6]; for (int i = 0; i < 6; i++) { mapped_[i] = (int) mapped[i]; raw_[i] = (int) raw[i]; } ui.lcdNumX->display(raw_[TX]); ui.lcdNumY->display(raw_[TY]); ui.lcdNumZ->display(raw_[TZ]); ui.lcdNumRotX->display(raw_[Yaw]); ui.lcdNumRotY->display(raw_[Pitch]); ui.lcdNumRotZ->display(raw_[Roll]); ui.lcdNumOutputPosX->display(mapped_[TX]); ui.lcdNumOutputPosY->display(mapped_[TY]); ui.lcdNumOutputPosZ->display(mapped_[TZ]); ui.lcdNumOutputRotX->display(mapped_[Yaw]); ui.lcdNumOutputRotY->display(mapped_[Pitch]); ui.lcdNumOutputRotZ->display(mapped_[Roll]); } void FaceTrackNoIR::showHeadPose() { double mapped[6], raw[6]; work->tracker->get_raw_and_mapped_poses(mapped, raw); display_pose(mapped, raw); if (libs.pProtocol) { const QString name = libs.pProtocol->game_name(); ui.game_name->setText(name); } } void FaceTrackNoIR::showTrackerSettings() { ptr lib = modules.trackers().value(ui.iconcomboTrackerSource->currentIndex(), nullptr); if (lib) { pTrackerDialog = ptr(reinterpret_cast(lib->Dialog())); pTrackerDialog->setFixedSize(pTrackerDialog->size()); pTrackerDialog->register_tracker(libs.pTracker.get()); pTrackerDialog->show(); } } void FaceTrackNoIR::showServerControls() { ptr lib = modules.protocols().value(ui.iconcomboProtocol->currentIndex(), nullptr); if (lib) { pProtocolDialog = ptr(reinterpret_cast(lib->Dialog())); pProtocolDialog->setFixedSize(pProtocolDialog->size()); pProtocolDialog->show(); } } void FaceTrackNoIR::showFilterControls() { ptr lib = modules.filters().value(ui.iconcomboFilter->currentIndex(), nullptr); if (lib) { pFilterDialog = ptr(reinterpret_cast(lib->Dialog())); pFilterDialog->setFixedSize(pFilterDialog->size()); pFilterDialog->registerFilter(libs.pFilter.get()); pFilterDialog->show(); } } void FaceTrackNoIR::showKeyboardShortcuts() { shortcuts_widget = std::make_shared(); shortcuts_widget->show(); shortcuts_widget->raise(); connect(shortcuts_widget.get(), SIGNAL(reload()), this, SLOT(bindKeyboardShortcuts())); } void FaceTrackNoIR::showCurveConfiguration() { mapping_widget = std::make_shared(pose, s, this); mapping_widget->show(); mapping_widget->raise(); } void FaceTrackNoIR::exit() { QCoreApplication::exit(0); } extern "C" volatile const char* opentrack_version; void FaceTrackNoIR::profileSelected(int index) { QSettings settings("opentrack"); QString currentFile = settings.value ( "SettingsFile", QCoreApplication::applicationDirPath() + "/settings/default.ini" ).toString(); QFileInfo pathInfo ( currentFile ); settings.setValue ("SettingsFile", pathInfo.absolutePath() + "/" + ui.iconcomboProfile->itemText(index)); loadSettings(); } void FaceTrackNoIR::shortcutRecentered() { qDebug() << "Center"; if (work) work->tracker->center(); } void FaceTrackNoIR::shortcutToggled() { qDebug() << "Toggle"; if (work) work->tracker->toggle_enabled(); }