From 16c527ee66123ed29ca2d6c0c6baae6e113eda40 Mon Sep 17 00:00:00 2001 From: Wim Vriend Date: Fri, 1 Feb 2013 12:38:35 +0000 Subject: Updated to FreeTrack 2.0 git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@258 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb --- FTNoIR_Protocol_FTIR/FTIRTypes.h | 186 ---------- FTNoIR_Protocol_FTIR/FTNoIR_FTIRcontrols.ui | 289 --------------- FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.cpp | 401 --------------------- FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h | 140 ------- .../FTNoIR_Protocol_FTIR_vc8.vcproj | 393 -------------------- .../FTNoIR_Protocol_FTIR_vc9.vcproj | 385 -------------------- FTNoIR_Protocol_FTIR/Protocol.qrc | 5 - .../ftnoir_protocol_FTIR_dialog.cpp | 192 ---------- FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dll.cpp | 56 --- FTNoIR_Protocol_FTIR/images/TrackIR.ico | Bin 15086 -> 0 bytes 10 files changed, 2047 deletions(-) delete mode 100644 FTNoIR_Protocol_FTIR/FTIRTypes.h delete mode 100644 FTNoIR_Protocol_FTIR/FTNoIR_FTIRcontrols.ui delete mode 100644 FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.cpp delete mode 100644 FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h delete mode 100644 FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR_vc8.vcproj delete mode 100644 FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR_vc9.vcproj delete mode 100644 FTNoIR_Protocol_FTIR/Protocol.qrc delete mode 100644 FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dialog.cpp delete mode 100644 FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dll.cpp delete mode 100644 FTNoIR_Protocol_FTIR/images/TrackIR.ico (limited to 'FTNoIR_Protocol_FTIR') diff --git a/FTNoIR_Protocol_FTIR/FTIRTypes.h b/FTNoIR_Protocol_FTIR/FTIRTypes.h deleted file mode 100644 index fcf2d458..00000000 --- a/FTNoIR_Protocol_FTIR/FTIRTypes.h +++ /dev/null @@ -1,186 +0,0 @@ -/******************************************************************************** -* FTIRTypes FTIRTypes contains the specific type definitions for the * -* Fake TrackIR protocol. * -* It was modelled after FTTypes.cpp. * -* * -* Copyright (C) 2010 Wim Vriend (Developing) * -* Ron Hendriks (Testing and Research) * -* * -* 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 . * -* * -********************************************************************************/ -#pragma once -#ifndef INCLUDED_FTIRTYPES_H -#define INCLUDED_FTIRTYPES_H - -#include "Windows.h" -#include -#include - -// -// Versioning hasn't been worked out yet... -// -// The following is the previous spec definition of versioning info -- I can probably do -// something very similar to this -- will keep you posted. -// -// request version information using 2 messages, they cannot be expected to arrive in a specific order - so always parse using the High byte -// the messages have a NPCONTROL byte in the first parameter, and the second parameter has packed bytes. -// Message 1) (first parameter)NPCONTROL : (second parameter) (High Byte)NPVERSIONMAJOR (Low Byte) major version number data -// Message 2) (first parameter)NPCONTROL : (second parameter) (High Byte)NPVERSIONMINOR (Low Byte) minor version number data - -#define NPQUERYVERSION 1040 - -// CONTROL DATA SUBFIELDS -#define NPVERSIONMAJOR 1 -#define NPVERSIONMINOR 2 - -// DATA FIELDS -#define NPControl 8 // indicates a control data field - // the second parameter of a message bearing control data information contains a packed data format. - // The High byte indicates what the data is, and the Low byte contains the actual data -// roll, pitch, yaw -#define NPRoll 1 // +/- 16383 (representing +/- 180) [data = input - 16383] -#define NPPitch 2 // +/- 16383 (representing +/- 180) [data = input - 16383] -#define NPYaw 4 // +/- 16383 (representing +/- 180) [data = input - 16383] - -// x, y, z - remaining 6dof coordinates -#define NPX 16 // +/- 16383 [data = input - 16383] -#define NPY 32 // +/- 16383 [data = input - 16383] -#define NPZ 64 // +/- 16383 [data = input - 16383] - -#define NP_AXIS_MIN -16383 -#define NP_AXIS_MAX 16383 - -// raw object position from imager -#define NPRawX 128 // 0..25600 (actual value is multiplied x 100 to pass two decimal places of precision) [data = input / 100] -#define NPRawY 256 // 0..25600 (actual value is multiplied x 100 to pass two decimal places of precision) [data = input / 100] -#define NPRawZ 512 // 0..25600 (actual value is multiplied x 100 to pass two decimal places of precision) [data = input / 100] - -// x, y, z deltas from raw imager position -#define NPDeltaX 1024 // +/- 2560 (actual value is multiplied x 10 to pass two decimal places of precision) [data = (input / 10) - 256] -#define NPDeltaY 2048 // +/- 2560 (actual value is multiplied x 10 to pass two decimal places of precision) [data = (input / 10) - 256] -#define NPDeltaZ 4096 // +/- 2560 (actual value is multiplied x 10 to pass two decimal places of precision) [data = (input / 10) - 256] - -// raw object position from imager -#define NPSmoothX 8192 // 0..32766 (actual value is multiplied x 10 to pass one decimal place of precision) [data = input / 10] -#define NPSmoothY 16384 // 0..32766 (actual value is multiplied x 10 to pass one decimal place of precision) [data = input / 10] -#define NPSmoothZ 32768 // 0..32766 (actual value is multiplied x 10 to pass one decimal place of precision) [data = input / 10] - -// NPESULT values are returned from the Game Client API functions. -// -typedef enum tagNPResult -{ - NP_OK = 0, - NP_ERR_DEVICE_NOT_PRESENT, - NP_ERR_UNSUPPORTED_OS, - NP_ERR_INVALID_ARG, - NP_ERR_DLL_NOT_FOUND, - NP_ERR_NO_DATA, - NP_ERR_INTERNAL_DATA -} NPRESULT; - - static const char* FTIR_CLIENT_FILENAME = "NPClient.dll"; - static const char* FTIR_VIEWS_FILENAME = "TIRViews.dll"; - static const char* FTIR_MM_DATA = "{0F98177E-0E5C-4F86-8837-229D19B1701D}"; - static const char* FTIR_MUTEX = "FT_TIR_Mutex"; - static const char* FTIR_REGISTER_PROGRAMHANDLE = "FT_Register_Program_Handle"; - static const char* FTIR_UNREGISTER_PROGRAMHANDLE = "FT_UnRegister_Program_Handle"; - - static const char* FTIR_SIG1 = "precise head tracking\n put your head into the game\n now go look around\n\n Copyright EyeControl Technologies\0\0"; - static const char* FTIR_SIG2 = "hardware camera\n software processing data\n track user movement\n\n Copyright EyeControl Technologies\0\0"; - -typedef struct tagTrackIRData -{ - unsigned short wNPStatus; - unsigned short wPFrameSignature; - unsigned long dwNPIOData; - - float fNPRoll; - float fNPPitch; - float fNPYaw; - float fNPX; - float fNPY; - float fNPZ; - float fNPRawX; - float fNPRawY; - float fNPRawZ; - float fNPDeltaX; - float fNPDeltaY; - float fNPDeltaZ; - float fNPSmoothX; - float fNPSmoothY; - float fNPSmoothZ; -} TRACKIRDATA, *LPTRACKIRDATA; - -struct FTIRMemMap { - // Emulators can check this - int iRecordSize; - TRACKIRDATA data; - int Version; - // Emulators should read these - HANDLE RegisteredHandle; - bool Transmission, Cursor; - long int RequestFormat; - long int ProgramProfileID; - // Read/Write - int LastError; - int Param[16]; - unsigned short ClientNotify1, ClientNotify2; - char Signature[400]; -}; -typedef FTIRMemMap * PFTIRMemMap; - -// -// Typedef for pointer to the notify callback function that is implemented within -// the client -- this function receives head tester reports from the game client API -// -typedef NPRESULT (__stdcall *PF_NOTIFYCALLBACK)( unsigned short, unsigned short ); -// -//// Typedefs for game client API functions (useful for declaring pointers to these -//// functions within the client for use during GetProcAddress() ops) -//// -//typedef NPRESULT (__stdcall *PF_NP_REGISTERWINDOWHANDLE)( HWND ); -//typedef NPRESULT (__stdcall *PF_NP_UNREGISTERWINDOWHANDLE)( void ); -//typedef NPRESULT (__stdcall *PF_NP_REGISTERPROGRAMPROFILEID)( unsigned short ); -//typedef NPRESULT (__stdcall *PF_NP_QUERYVERSION)( unsigned short* ); -//typedef NPRESULT (__stdcall *PF_NP_REQUESTDATA)( unsigned short ); -typedef NPRESULT (__stdcall *PF_NP_GETDATA)( LPTRACKIRDATA ); -//typedef NPRESULT (__stdcall *PF_NP_REGISTERNOTIFY)( PF_NOTIFYCALLBACK ); -//typedef NPRESULT (__stdcall *PF_NP_UNREGISTERNOTIFY)( void ); -//typedef NPRESULT (__stdcall *PF_NP_STARTCURSOR)( void ); -//typedef NPRESULT (__stdcall *PF_NP_STOPCURSOR)( void ); -//typedef NPRESULT (__stdcall *PF_NP_STARTDATATRANSMISSION)( void ); -//typedef NPRESULT (__stdcall *PF_NP_STOPDATATRANSMISSION)( void ); - -//// Function Prototypes /////////////////////////////////////////////// -// -// Functions exported from game client API DLL ( note __stdcall calling convention -// is used for ease of interface to clients of differing implementations including -// C, C++, Pascal (Delphi) and VB. ) -// -//NPRESULT __stdcall NP_RegisterWindowHandle( HWND hWnd ); -//NPRESULT __stdcall NP_RegisterWindowHandle( HWND ); -//NPRESULT __stdcall NP_UnregisterWindowHandle( void ); -//NPRESULT __stdcall NP_RegisterProgramProfileID( unsigned short wPPID ); -//NPRESULT __stdcall NP_QueryVersion( unsigned short* pwVersion ); -//NPRESULT __stdcall NP_RequestData( unsigned short wDataReq ); -//NPRESULT __stdcall NP_GetData( LPTRACKIRDATA pTID ); -//NPRESULT __stdcall NP_RegisterNotify( PF_NOTIFYCALLBACK pfNotify ); -//NPRESULT __stdcall NP_UnregisterNotify( void ); -//NPRESULT __stdcall NP_StartCursor( void ); -//NPRESULT __stdcall NP_StopCursor( void ); -//NPRESULT __stdcall NP_StartDataTransmission( void ); -//NPRESULT __stdcall NP_StopDataTransmission( void ); - -#endif//INCLUDED_FTIRTYPES_H diff --git a/FTNoIR_Protocol_FTIR/FTNoIR_FTIRcontrols.ui b/FTNoIR_Protocol_FTIR/FTNoIR_FTIRcontrols.ui deleted file mode 100644 index b7cbe25f..00000000 --- a/FTNoIR_Protocol_FTIR/FTNoIR_FTIRcontrols.ui +++ /dev/null @@ -1,289 +0,0 @@ - - - UICFTIRControls - - - - 0 - 0 - 588 - 216 - - - - FTIR settings FaceTrackNoIR - - - - images/FaceTrackNoIR.icoimages/FaceTrackNoIR.ico - - - Qt::LeftToRight - - - false - - - - - - - 0 - 70 - - - - TIRViews - - - - - 70 - 20 - 88 - 17 - - - - Qt::RightToLeft - - - Use TIRViews - - - - - - 180 - 10 - 301 - 16 - - - - TIRViews is only required for some older games (like CFS3). - - - - - - 180 - 30 - 421 - 16 - - - - For it to work, TIRViews.dll must be placed in the FaceTrackNoIR program folder. - - - true - - - - - - 180 - 50 - 251 - 16 - - - - If the checkbox is disabled, the DLL was not found. - - - - - - - - - 0 - 70 - - - - TrackIR.exe - - - - - 13 - 20 - 145 - 17 - - - - Qt::RightToLeft - - - Start dummy TrackIR.exe - - - - - - 180 - 10 - 351 - 16 - - - - Some programs check, to see if a process called TrackIR.exe is running, - - - - - - 180 - 30 - 261 - 16 - - - - before enabling head-tracking (EZCA is one of them). - - - true - - - - - - 180 - 50 - 231 - 16 - - - - Check the checkbox, to overcome this problem. - - - chkStartDummy - label_2 - label - label_3 - groupBox - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - QLayout::SetDefaultConstraint - - - - - - 0 - 0 - - - - - 100 - 0 - - - - - 100 - 16777215 - - - - OK - - - - - - - - 0 - 0 - - - - - 100 - 0 - - - - - 100 - 16777215 - - - - Cancel - - - - - - - - - Qt::Horizontal - - - QSizePolicy::Fixed - - - - 10 - 20 - - - - - - - - - - - - startEngineClicked() - stopEngineClicked() - cameraSettingsClicked() - - diff --git a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.cpp b/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.cpp deleted file mode 100644 index ab063b04..00000000 --- a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.cpp +++ /dev/null @@ -1,401 +0,0 @@ -/******************************************************************************** -* 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) 2010 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 . * -* * -* FTIRServer FTIRServer is the Class, that communicates headpose-data * -* to games, using the NPClient.dll. * -********************************************************************************/ -/* - Modifications (last one on top): - 20110401 - WVR: Moved protocol to a DLL, convenient for installation etc. - 20101224 - WVR: Base class is no longer inheriting QThread. sendHeadposeToGame - is called from run() of Tracker.cpp -*/ -#include "ftnoir_protocol_ftir.h" - -/** constructor **/ -FTNoIR_Protocol::FTNoIR_Protocol() -{ - loadSettings(); - ProgramName = ""; - dummyTrackIR = 0; - viewsStart = 0; - viewsStop = 0; -} - -/** destructor **/ -FTNoIR_Protocol::~FTNoIR_Protocol() -{ - // - // Destroy the File-mapping - // - FTIRDestroyMapping(); - - // - // Free the DLL's - // - FTIRClientLib.unload(); - if (viewsStop != NULL) { - viewsStop(); - FTIRViewsLib.unload(); - } - - // - // Kill the dummy TrackIR process. - // -// qDebug() << "FTIRServer::~FTIRServer() about to kill TrackIR.exe process"; - try { - if (dummyTrackIR) { - qDebug() << "FTIRServer::~FTIRServer() about to kill TrackIR.exe process"; -// dummyTrackIR->close(); - dummyTrackIR->kill(); - } - } - catch (...) - { - qDebug() << "~FTIRServer says: some error occurred"; - } -} - -/** helper to Auto-destruct **/ -void FTNoIR_Protocol::Release() -{ - delete this; -} - -void FTNoIR_Protocol::Initialize() -{ - return; -} - -// -// Scale the measured value to the Joystick values -// -float FTNoIR_Protocol::scale2AnalogLimits( float x, float min_x, float max_x ) { -double y; -double local_x; - - local_x = x; - if (local_x > max_x) { - local_x = max_x; - } - if (local_x < min_x) { - local_x = min_x; - } - y = ( NP_AXIS_MAX * local_x ) / max_x; - - return (float) y; -} - -// -// Load the current Settings from the currently 'active' INI-file. -// -void FTNoIR_Protocol::loadSettings() { - QSettings settings("Abbequerque Inc.", "FaceTrackNoIR"); // Registry settings (in HK_USER) - - QString currentFile = settings.value ( "SettingsFile", QCoreApplication::applicationDirPath() + "/Settings/default.ini" ).toString(); - QSettings iniFile( currentFile, QSettings::IniFormat ); // Application settings (in INI-file) - - iniFile.beginGroup ( "FTIR" ); - useTIRViews = iniFile.value ( "useTIRViews", 0 ).toBool(); - useDummyExe = iniFile.value ( "useDummyExe", 1 ).toBool(); - iniFile.endGroup (); -} - -// -// Update Headpose in Game. -// -void FTNoIR_Protocol::sendHeadposeToGame( THeadPoseData *headpose, THeadPoseData *rawheadpose ) { -float virtPosX; -float virtPosY; -float virtPosZ; - -float virtRotX; -float virtRotY; -float virtRotZ; - -TRACKIRDATA localdata; - - // - // Copy the Raw measurements directly to the client. - // - virtRotX = scale2AnalogLimits (headpose->pitch, -180.0f, 180.0f); - virtRotY = scale2AnalogLimits (headpose->yaw, -180.0f, 180.0f); - virtRotZ = scale2AnalogLimits (headpose->roll, -180.0f, 180.0f); - - virtPosX = scale2AnalogLimits (headpose->x * 10.0f, -500.0f, 500.0f); - virtPosY = scale2AnalogLimits (headpose->y * 10.0f, -500.0f, 500.0f); - virtPosZ = scale2AnalogLimits (headpose->z * 10.0f, -500.0f, 500.0f); - - // - // Check if the pointer is OK and wait for the Mutex. - // Use the setposition in the (special) DLL, to write the headpose-data. - // -// qDebug() << "FTIRCreateMapping says: sendHeadpose"; - if ( (pMemData != NULL) && (WaitForSingleObject(hFTIRMutex, 100) == WAIT_OBJECT_0) ) { -// qDebug() << "FTIRCreateMapping says: Calling setposition" << setdata; - - //localdata.fNPX = virtPosX; - //localdata.fNPY = virtPosY; - //localdata.fNPZ = virtPosZ; - //localdata.fNPRoll = virtRotZ; - //localdata.fNPPitch = virtRotX; - //localdata.fNPYaw = virtRotY; - //localdata.wPFrameSignature = localdata.wPFrameSignature + 1; - - //setdata(&localdata); - // -// setposition ( virtPosX, virtPosY, virtPosZ, virtRotZ, virtRotX, virtRotY ); - pMemData->data.fNPX = virtPosX; - pMemData->data.fNPY = virtPosY; - pMemData->data.fNPZ = virtPosZ; - pMemData->data.fNPRoll = virtRotZ; - pMemData->data.fNPPitch = virtRotX; - pMemData->data.fNPYaw = virtRotY; - pMemData->data.wPFrameSignature +=1; - if ((pMemData->data.wPFrameSignature < 0) || (pMemData->data.wPFrameSignature > 1000)){ - pMemData->data.wPFrameSignature = 0; - } - ReleaseMutex(hFTIRMutex); - } -} - -// -// Check if the Client DLL exists and load it (to test it), if so. -// Returns 'true' if all seems OK. -// -bool FTNoIR_Protocol::checkServerInstallationOK( HANDLE handle ) -{ - QSettings settings("NaturalPoint", "NATURALPOINT\\NPClient Location"); // Registry settings (in HK_USER) - QString aLocation; // Location of Client DLL - QString aFileName; // File Path and Name - - //importProvider provider; - //char *pProvider; - - qDebug() << "FTCheckClientDLL says: Starting Function"; - - try { - - // - // Load the NPClient.dll from the current path of FaceTrackNoIR, because there is no - // guarantee TrackIR or GlovePIE is also installed. - // - // Write this path in the registry (under NaturalPoint/NATURALPOINT, for the game(s). - // - aLocation = QCoreApplication::applicationDirPath() + "/"; - qDebug() << "FTCheckClientDLL says: Location of DLL =" << aLocation; - - // - // Append a '/' to the Path and then the name of the dll. - // - aFileName = aLocation; - aFileName.append(FTIR_CLIENT_FILENAME); -// aFileName.append("TIR5.dll"); - qDebug() << "FTCheckClientDLL says: Full path of DLL =" << aFileName; - - if ( QFile::exists( aFileName ) ) { - qDebug() << "FTCheckClientDLL says: DLL exists!"; - // - // Write the path to the key in the Registry, so the game(s) can find it too... - // - settings.setValue( "Path" , aLocation ); - - // - // Load the DLL and map to the functions in it. - // - FTIRClientLib.setFileName(aFileName); - FTIRClientLib.load(); - } - else { - QMessageBox::information(0, "FaceTrackNoIR error", QString("Necessary file (NPClient.dll) was NOT found!\n")); - return false; - } - - // - // Also load TIRViews.dll, to support some older games - // - if (useTIRViews) { - aFileName = aLocation; - aFileName.append(FTIR_VIEWS_FILENAME); - FTIRViewsLib.setFileName(aFileName); - FTIRViewsLib.load(); - } - - // - // Start TrackIR.exe, also to support some older games and EZCA - // Some TrackIR clients check if a process called TrackIR.exe is running. - // This should do the trick - // - if (useDummyExe) { - QString program = "TrackIR.exe"; - dummyTrackIR = new QProcess(); - dummyTrackIR->start(program); - } - - } catch(...) { - settings.~QSettings(); - } - - // - // Create the File-mapping for Inter Process Communication - // - if (!FTIRCreateMapping( handle )){ - return false; - } - - // - // Find the functions in the DLL's - // - //// Get the setposition function from the DLL and use it! - //// - ////setposition = (importSetPosition) FTIRClientLib.resolve("SetPosition"); - ////if (setdata == NULL) { - //// qDebug() << "FTIRServer::run() says: SetPosition function not found in DLL!"; - //// return false; - ////} - ////else { - //// qDebug() << "FTIRCreateMapping says: Calling setposition" << setposition; - //// setposition ( 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f ); - ////} - - // - // Load the Start function from TIRViews.dll and call it, to start compatibility with older games - // - if (useTIRViews) { - viewsStart = (importTIRViewsStart) FTIRViewsLib.resolve("TIRViewsStart"); - if (viewsStart == NULL) { - qDebug() << "FTIRServer::run() says: TIRViewsStart function not found in DLL!"; - } - else { - qDebug() << "FTIRServer::run() says: TIRViewsStart executed!"; - viewsStart(); - } - - // - // Load the Stop function from TIRViews.dll. Call it when terminating the thread. - // - viewsStop = (importTIRViewsStop) FTIRViewsLib.resolve("TIRViewsStop"); - if (viewsStop == NULL) { - qDebug() << "FTIRServer::run() says: TIRViewsStop function not found in DLL!"; - } - } - return true; -} - -// -// Create a memory-mapping to the TrackIR data. -// It contains the tracking data, a handle to the main-window and the program-name of the Game! -// -// -bool FTNoIR_Protocol::FTIRCreateMapping( HANDLE handle ) -{ - qDebug() << "FTIRCreateMapping says: Starting Function"; - - // - // A FileMapping is used to create 'shared memory' between the FTIRServer and the FTClient. - // - // Try to create a FileMapping to the Shared Memory. - // If one already exists: close it. - // - hFTIRMemMap = CreateFileMappingA( INVALID_HANDLE_VALUE , 00 , PAGE_READWRITE , 0 , - sizeof( FTIRMemMap ), -// sizeof( TRACKIRDATA ) + sizeof( HANDLE ) + 100, - (LPCSTR) FTIR_MM_DATA ); - - if ( hFTIRMemMap != 0 ) { - if ( (long) GetLastError == ERROR_ALREADY_EXISTS ) { - qDebug() << "FTIRCreateMapping says: FileMapping already exists!" << hFTIRMemMap; - CloseHandle( hFTIRMemMap ); - hFTIRMemMap = 0; - } - else { - qDebug() << "FTIRCreateMapping says: FileMapping newly created!" << hFTIRMemMap; - } - } - - // - // Open the FileMapping, Read/Write access - // - pMemData = 0; - hFTIRMemMap = OpenFileMappingA( FILE_MAP_ALL_ACCESS , false , (LPCSTR) FTIR_MM_DATA ); - if ( ( hFTIRMemMap != 0 ) ) { - qDebug() << "FTIRCreateMapping says: FileMapping opened: " << hFTIRMemMap; -// pMemData = (FTIRMemMap *) MapViewOfFile(hFTIRMemMap, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(TRACKIRDATA) + sizeof(hFTIRMemMap) + 100); - pMemData = (FTIRMemMap *) MapViewOfFile(hFTIRMemMap, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(FTIRMemMap)); - if (pMemData != NULL) { - qDebug() << "FTIRCreateMapping says: View of File mapped: " << pMemData; - pMemData->RegisteredHandle = handle; // The game uses the handle, to send a message that the Program-Name was set! - } - hFTIRMutex = CreateMutexA(NULL, false, FTIR_MUTEX); - } - else { - QMessageBox::information(0, "FaceTrackNoIR error", QString("FTIRServer Error! \n")); - return false; - } - - return true; -} - -// -// Destory the FileMapping to the shared memory -// -void FTNoIR_Protocol::FTIRDestroyMapping() -{ - if ( pMemData != NULL ) { - UnmapViewOfFile ( pMemData ); - } - - if (hFTIRMutex != 0) { - CloseHandle( hFTIRMutex ); - } - hFTIRMutex = 0; - - if (hFTIRMemMap != 0) { - CloseHandle( hFTIRMemMap ); - } - hFTIRMemMap = 0; - -} - -// -// Return a name, if present the name from the Game, that is connected... -// -void FTNoIR_Protocol::getNameFromGame( char *dest ) -{ - sprintf_s(dest, 99, "TIR compatible game"); - return; -} - -//////////////////////////////////////////////////////////////////////////////// -// Factory function that creates instances if the Protocol object. - -// Export both decorated and undecorated names. -// GetProtocol - Undecorated name, which can be easily used with GetProcAddress -// Win32 API function. -// _GetProtocol@0 - Common name decoration for __stdcall functions in C language. -#pragma comment(linker, "/export:GetProtocol=_GetProtocol@0") - -FTNOIR_PROTOCOL_BASE_EXPORT IProtocolPtr __stdcall GetProtocol() -{ - return new FTNoIR_Protocol; -} diff --git a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h b/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h deleted file mode 100644 index db50fdbc..00000000 --- a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR.h +++ /dev/null @@ -1,140 +0,0 @@ -/******************************************************************************** -* FaceTrackNoIR This program is a private project of some enthusiastic * -* gamers from Holland, who don't like to pay much for * -* head-tracking. * -* * -* Copyright (C) 2010 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 . * -* * -* FTIRServer FTIRServer is the Class, that communicates headpose-data * -* to games, using the NPClient.dll. * -********************************************************************************/ -#pragma once -#ifndef INCLUDED_FTIRSERVER_H -#define INCLUDED_FTIRSERVER_H - -#include "..\ftnoir_protocol_base\ftnoir_protocol_base.h" -#include "ui_FTNoIR_FTIRcontrols.h" -#include "FTIRTypes.h" -#include -#include -#include -#include -#include -#include -#include "Windows.h" -//#include "math.h" - -//typedef void (WINAPI *importSetPosition)(float, float, float, float, float, float); -typedef int (WINAPI *importSetData)(TRACKIRDATA*); -typedef void (WINAPI *importTIRViewsStart)(void); -typedef void (WINAPI *importTIRViewsStop)(void); - - -class FTNoIR_Protocol : public IProtocol -{ -public: - FTNoIR_Protocol(); - ~FTNoIR_Protocol(); - - void Release(); - void Initialize(); - - bool checkServerInstallationOK( HANDLE handle ); - void sendHeadposeToGame( THeadPoseData *headpose, THeadPoseData *rawheadpose ); - void getNameFromGame( char *dest ); // Take care dest can handle up to 100 chars... - -private: - bool FTIRCreateMapping(HANDLE handle); - void FTIRDestroyMapping(); - -// importSetPosition setposition; // Function inside NPClient.dll (old style) - importSetData setdata; // Function inside NPClient.dll - importTIRViewsStart viewsStart; // Functions inside TIRViews.dll - importTIRViewsStop viewsStop; - - HANDLE hFTIRMemMap; - FTIRMemMap *pMemData; - HANDLE hFTIRMutex; - - // Private properties - QString ProgramName; - QLibrary FTIRClientLib; - QLibrary FTIRViewsLib; - QProcess *dummyTrackIR; - bool useTIRViews; - bool useDummyExe; - - float scale2AnalogLimits( float x, float min_x, float max_x ); - void loadSettings(); - -}; - -// Widget that has controls for FTNoIR protocol client-settings. -class FTIRControls: public QWidget, Ui::UICFTIRControls, public IProtocolDialog -{ - Q_OBJECT -public: - - explicit FTIRControls(); - virtual ~FTIRControls(); - void showEvent ( QShowEvent * event ); - - void Release(); // Member functions which are accessible from outside the DLL - void Initialize(QWidget *parent); - void registerProtocol(IProtocol *protocol) { - theProtocol = (FTNoIR_Protocol *) protocol; // Accept the pointer to the Protocol - }; - void unRegisterProtocol() { - theProtocol = NULL; // Reset the pointer - }; - -private: - Ui::UICFTIRControls ui; - void loadSettings(); - void save(); - - /** helper **/ - bool settingsDirty; - FTNoIR_Protocol *theProtocol; - -private slots: - void doOK(); - void doCancel(); - void chkTIRViewsChanged() { settingsDirty = true; }; - void settingChanged() { settingsDirty = true; }; -}; - -//******************************************************************************************************* -// FaceTrackNoIR Protocol DLL. Functions used to get general info on the Protocol -//******************************************************************************************************* -class FTNoIR_ProtocolDll : public IProtocolDll -{ -public: - FTNoIR_ProtocolDll(); - ~FTNoIR_ProtocolDll(); - - void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("fake TrackIR"); }; - void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("FTIR"); }; - void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("TrackIR V4 protocol"); }; - - void getIcon(QIcon *icon) { *icon = QIcon(":/images/TrackIR.ico"); }; -}; - -#endif//INCLUDED_FTIRSERVER_H -//END diff --git a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR_vc8.vcproj b/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR_vc8.vcproj deleted file mode 100644 index ff086959..00000000 --- a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR_vc8.vcproj +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR_vc9.vcproj b/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR_vc9.vcproj deleted file mode 100644 index 085bb761..00000000 --- a/FTNoIR_Protocol_FTIR/FTNoIR_Protocol_FTIR_vc9.vcproj +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/FTNoIR_Protocol_FTIR/Protocol.qrc b/FTNoIR_Protocol_FTIR/Protocol.qrc deleted file mode 100644 index a527e454..00000000 --- a/FTNoIR_Protocol_FTIR/Protocol.qrc +++ /dev/null @@ -1,5 +0,0 @@ - - - images/TrackIR.ico - - diff --git a/FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dialog.cpp b/FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dialog.cpp deleted file mode 100644 index 24a9697a..00000000 --- a/FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dialog.cpp +++ /dev/null @@ -1,192 +0,0 @@ -/******************************************************************************** -* FaceTrackNoIR This program is a private project of some enthusiastic * -* gamers from Holland, who don't like to pay much for * -* head-tracking. * -* * -* Copyright (C) 2012 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 . * -* * -********************************************************************************/ -/* - Modifications (last one on top): - 20120830 - WVR: The Dialog class was used to get general info on the DLL. This - had a big disadvantage: the complete dialog was loaded, just to get - some data and then it was deleted again (without ever showing the dialog). - The ProtocolDll class solves this. - The functions to get the name(s) and icon were removed from the two other classes. -*/ -#include "ftnoir_protocol_ftir.h" -#include - -//******************************************************************************************************* -// FaceTrackNoIR Client Settings-dialog. -//******************************************************************************************************* - -// -// Constructor for server-settings-dialog -// -FTIRControls::FTIRControls() : -QWidget() -{ - QString aFileName; // File Path and Name - - ui.setupUi( this ); - - // Connect Qt signals to member-functions - connect(ui.btnOK, SIGNAL(clicked()), this, SLOT(doOK())); - connect(ui.btnCancel, SIGNAL(clicked()), this, SLOT(doCancel())); - connect(ui.chkTIRViews, SIGNAL(stateChanged(int)), this, SLOT(chkTIRViewsChanged())); - connect(ui.chkStartDummy, SIGNAL(stateChanged(int)), this, SLOT(settingChanged())); - - aFileName = QCoreApplication::applicationDirPath() + "/"; - aFileName.append(FTIR_VIEWS_FILENAME); - if ( !QFile::exists( aFileName ) ) { - ui.chkTIRViews->setChecked( false ); - ui.chkTIRViews->setEnabled ( false ); - } - else { - ui.chkTIRViews->setEnabled ( true ); - } - - theProtocol = NULL; - - // Load the settings from the current .INI-file - loadSettings(); -} - -// -// Destructor for server-dialog -// -FTIRControls::~FTIRControls() { - qDebug() << "~FTIRControls() says: started"; -} - -void FTIRControls::Release() -{ - delete this; -} - -// -// Initialize tracker-client-dialog -// -void FTIRControls::Initialize(QWidget *parent) { - - QPoint offsetpos(100, 100); - if (parent) { - this->move(parent->pos() + offsetpos); - } - show(); -} - -// -// OK clicked on server-dialog -// -void FTIRControls::doOK() { - save(); - this->close(); -} - -// override show event -void FTIRControls::showEvent ( QShowEvent * event ) { - loadSettings(); -} - -// -// Cancel clicked on server-dialog -// -void FTIRControls::doCancel() { - // - // Ask if changed Settings should be saved - // - if (settingsDirty) { - int ret = QMessageBox::question ( this, "Settings have changed", "Do you want to save the settings?", QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Discard ); - - qDebug() << "doCancel says: answer =" << ret; - - switch (ret) { - case QMessageBox::Save: - save(); - this->close(); - break; - case QMessageBox::Discard: - this->close(); - break; - case QMessageBox::Cancel: - // Cancel was clicked - break; - default: - // should never be reached - break; - } - } - else { - this->close(); - } -} - -// -// Load the current Settings from the currently 'active' INI-file. -// -void FTIRControls::loadSettings() { - qDebug() << "loadSettings says: Starting "; - QSettings settings("Abbequerque Inc.", "FaceTrackNoIR"); // Registry settings (in HK_USER) - - QString currentFile = settings.value ( "SettingsFile", QCoreApplication::applicationDirPath() + "/Settings/default.ini" ).toString(); - QSettings iniFile( currentFile, QSettings::IniFormat ); // Application settings (in INI-file) - - qDebug() << "loadSettings says: iniFile = " << currentFile; - - iniFile.beginGroup ( "FTIR" ); - ui.chkTIRViews->setChecked (iniFile.value ( "useTIRViews", 0 ).toBool()); - ui.chkStartDummy->setChecked (iniFile.value ( "useDummyExe", 1 ).toBool()); - - iniFile.endGroup (); - - settingsDirty = false; -} - -// -// Save the current Settings to the currently 'active' INI-file. -// -void FTIRControls::save() { - QSettings settings("Abbequerque Inc.", "FaceTrackNoIR"); // Registry settings (in HK_USER) - - QString currentFile = settings.value ( "SettingsFile", QCoreApplication::applicationDirPath() + "/Settings/default.ini" ).toString(); - QSettings iniFile( currentFile, QSettings::IniFormat ); // Application settings (in INI-file) - - iniFile.beginGroup ( "FTIR" ); - iniFile.setValue ( "useTIRViews", ui.chkTIRViews->isChecked() ); - iniFile.setValue ( "useDummyExe", ui.chkStartDummy->isChecked() ); - iniFile.endGroup (); - - settingsDirty = false; -} - -//////////////////////////////////////////////////////////////////////////////// -// Factory function that creates instances if the Protocol-settings dialog object. - -// Export both decorated and undecorated names. -// GetProtocolDialog - Undecorated name, which can be easily used with GetProcAddress -// Win32 API function. -// _GetProtocolDialog@0 - Common name decoration for __stdcall functions in C language. -#pragma comment(linker, "/export:GetProtocolDialog=_GetProtocolDialog@0") - -FTNOIR_PROTOCOL_BASE_EXPORT IProtocolDialogPtr __stdcall GetProtocolDialog( ) -{ - return new FTIRControls; -} diff --git a/FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dll.cpp b/FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dll.cpp deleted file mode 100644 index 9af0f7ab..00000000 --- a/FTNoIR_Protocol_FTIR/ftnoir_protocol_FTIR_dll.cpp +++ /dev/null @@ -1,56 +0,0 @@ -/******************************************************************************** -* FaceTrackNoIR This program is a private project of some enthusiastic * -* gamers from Holland, who don't like to pay much for * -* head-tracking. * -* * -* Copyright (C) 2012 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 . * -* * -********************************************************************************/ -/* - Modifications (last one on top): - 20120830 - WVR: The Dialog class was used to get general info on the DLL. This - had a big disadvantage: the complete dialog was loaded, just to get - some data and then it was deleted again (without ever showing the dialog). - The ProtocolDll class solves this. - The functions to get the name(s) and icon were removed from the two other classes. -*/ -#include "ftnoir_protocol_ftir.h" -#include - -FTNoIR_ProtocolDll::FTNoIR_ProtocolDll() { -} - -FTNoIR_ProtocolDll::~FTNoIR_ProtocolDll() -{ - -} - -//////////////////////////////////////////////////////////////////////////////// -// Factory function that creates instances if the Protocol object. - -// Export both decorated and undecorated names. -// GetProtocolDll - Undecorated name, which can be easily used with GetProcAddress -// Win32 API function. -// _GetProtocolDll@0 - Common name decoration for __stdcall functions in C language. -#pragma comment(linker, "/export:GetProtocolDll=_GetProtocolDll@0") - -FTNOIR_PROTOCOL_BASE_EXPORT IProtocolDllPtr __stdcall GetProtocolDll() -{ - return new FTNoIR_ProtocolDll; -} diff --git a/FTNoIR_Protocol_FTIR/images/TrackIR.ico b/FTNoIR_Protocol_FTIR/images/TrackIR.ico deleted file mode 100644 index 99e02e7b..00000000 Binary files a/FTNoIR_Protocol_FTIR/images/TrackIR.ico and /dev/null differ -- cgit v1.2.3