Changeset 8284 for code/branches/kicklib2/src/external/ois/win32
- Timestamp:
- Apr 21, 2011, 6:58:23 PM (14 years ago)
- Location:
- code/branches/kicklib2
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib2
- Property svn:mergeinfo changed
-
code/branches/kicklib2/src/external/ois/win32/Win32ForceFeedback.cpp
r5929 r8284 21 21 3. This notice may not be removed or altered from any source distribution. 22 22 */ 23 #include " Win32/Win32ForceFeedback.h"23 #include "win32/Win32ForceFeedback.h" 24 24 #include "OISException.h" 25 #include < Math.h>25 #include <math.h> 26 26 27 27 // 0 = No trace; 1 = Important traces; 2 = Debug traces -
code/branches/kicklib2/src/external/ois/win32/Win32ForceFeedback.h
r5781 r8284 26 26 #include "OISPrereqs.h" 27 27 #include "OISForceFeedback.h" 28 #include " Win32/Win32Prereqs.h"28 #include "win32/Win32Prereqs.h" 29 29 30 30 namespace OIS -
code/branches/kicklib2/src/external/ois/win32/Win32InputManager.cpp
r5781 r8284 21 21 3. This notice may not be removed or altered from any source distribution. 22 22 */ 23 #include " Win32/Win32InputManager.h"24 #include " Win32/Win32Keyboard.h"25 #include " Win32/Win32Mouse.h"26 #include " Win32/Win32JoyStick.h"23 #include "win32/Win32InputManager.h" 24 #include "win32/Win32KeyBoard.h" 25 #include "win32/Win32Mouse.h" 26 #include "win32/Win32JoyStick.h" 27 27 #include "OISException.h" 28 28 … … 75 75 hInst = GetModuleHandle(0); 76 76 77 //Create the input system77 //Create the device 78 78 hr = DirectInput8Create( hInst, DIRECTINPUT_VERSION, IID_IDirectInput8, (VOID**)&mDirectInput, NULL ); 79 79 if (FAILED(hr)) … … 118 118 { 119 119 //Enumerate all attached devices 120 mDirectInput->EnumDevices(NULL , _DIEnumDevCallback, this, DIEDFL_ATTACHEDONLY); 120 mDirectInput->EnumDevices(NULL, _DIEnumDevCallback, this, DIEDFL_ATTACHEDONLY); 121 122 #ifdef OIS_WIN32_XINPUT_SUPPORT 123 //let's check how many possible XInput devices we may have (max 4)... 124 for(int i = 0; i < 3; ++i) 125 { 126 XINPUT_STATE state; 127 if(XInputGetState(i, &state) != ERROR_DEVICE_NOT_CONNECTED) 128 { //Once we found 1, just check our whole list against devices 129 Win32JoyStick::CheckXInputDevices(unusedJoyStickList); 130 break; 131 } 132 } 133 #endif 121 134 } 122 135 … … 134 147 { 135 148 JoyStickInfo jsInfo; 149 jsInfo.isXInput = false; 150 jsInfo.productGuid = lpddi->guidProduct; 136 151 jsInfo.deviceID = lpddi->guidInstance; 137 152 jsInfo.vendor = lpddi->tszInstanceName; -
code/branches/kicklib2/src/external/ois/win32/Win32InputManager.h
r5781 r8284 26 26 #include "OISInputManager.h" 27 27 #include "OISFactoryCreator.h" 28 #include " Win32/Win32Prereqs.h"28 #include "win32/Win32Prereqs.h" 29 29 30 30 namespace OIS -
code/branches/kicklib2/src/external/ois/win32/Win32JoyStick.cpp
r5781 r8284 21 21 3. This notice may not be removed or altered from any source distribution. 22 22 */ 23 #include " Win32/Win32JoyStick.h"24 #include " Win32/Win32InputManager.h"25 #include " Win32/Win32ForceFeedback.h"23 #include "win32/Win32JoyStick.h" 24 #include "win32/Win32InputManager.h" 25 #include "win32/Win32ForceFeedback.h" 26 26 #include "OISEvents.h" 27 27 #include "OISException.h" 28 28 29 // (Orxonox): Required for MinGW to compile properly 30 #ifdef __MINGW32__ 31 # include <oaidl.h> 32 # ifndef __MINGW_EXTENSION 33 # define __MINGW_EXTENSION __extension__ 34 # endif 35 #endif 36 29 37 #include <cassert> 38 #include <wbemidl.h> 39 #include <oleauto.h> 40 //#include <wmsstd.h> 41 #ifndef SAFE_RELEASE 42 #define SAFE_RELEASE(x) \ 43 if(x != NULL) \ 44 { \ 45 x->Release(); \ 46 x = NULL; \ 47 } 48 #endif 49 50 // (Orxonox): MinGW doesn't have swscanf_s 51 #ifdef __MINGW32__ 52 # define swscanf_s swscanf 53 #endif 54 55 #ifdef OIS_WIN32_XINPUT_SUPPORT 56 # pragma comment(lib, "xinput.lib") 57 #endif 30 58 31 59 //DX Only defines macros for the JOYSTICK not JOYSTICK2, so fix it … … 40 68 #define DIJOFS_SLIDER3(n) (FIELD_OFFSET(DIJOYSTATE2, rglFSlider)+(n) * sizeof(LONG)) 41 69 70 #define XINPUT_TRANSLATED_BUTTON_COUNT 12 71 #define XINPUT_TRANSLATED_AXIS_COUNT 6 72 42 73 using namespace OIS; 43 74 44 75 //--------------------------------------------------------------------------------------------------// 45 Win32JoyStick::Win32JoyStick( InputManager* creator, IDirectInput8* pDI, 46 bool buffered, DWORD coopSettings, const JoyStickInfo &info ) 47 : JoyStick(info.vendor, buffered, info.devId, creator) 48 { 49 mDirectInput = pDI; 50 coopSetting = coopSettings; 51 mJoyStick = 0; 52 53 deviceGuid = info.deviceID; 54 55 ff_device = 0; 76 Win32JoyStick::Win32JoyStick( InputManager* creator, IDirectInput8* pDI, bool buffered, DWORD coopSettings, const JoyStickInfo &info ) : 77 JoyStick(info.vendor, buffered, info.devId, creator), 78 mDirectInput(pDI), 79 coopSetting(coopSettings), 80 mJoyStick(0), 81 mJoyInfo(info), 82 mFfDevice(0) 83 { 56 84 } 57 85 … … 59 87 Win32JoyStick::~Win32JoyStick() 60 88 { 61 delete ff_device;89 delete mFfDevice; 62 90 63 91 if(mJoyStick) … … 69 97 70 98 //Return joystick to pool 71 JoyStickInfo js; 72 js.deviceID = deviceGuid; 73 js.devId = mDevID; 74 js.vendor = mVendor; 75 static_cast<Win32InputManager*>(mCreator)->_returnJoyStick(js); 99 static_cast<Win32InputManager*>(mCreator)->_returnJoyStick(mJoyInfo); 76 100 } 77 101 … … 79 103 void Win32JoyStick::_initialize() 80 104 { 81 //Clear old state 82 mState.mAxes.clear(); 83 84 if (ff_device) 85 { 86 delete ff_device; 87 ff_device = 0; 88 } 89 90 // Create direct input joystick device. 91 if(FAILED(mDirectInput->CreateDevice(deviceGuid, &mJoyStick, NULL))) 92 OIS_EXCEPT( E_General, "Win32JoyStick::_initialize() >> Could not initialize joy device!"); 93 94 // Set DIJoystick2 data format. 95 if(FAILED(mJoyStick->SetDataFormat(&c_dfDIJoystick2))) 96 OIS_EXCEPT( E_General, "Win32JoyStick::_initialize() >> data format error!"); 97 98 // Set cooperative level as specified when creating input manager. 99 HWND hwin = ((Win32InputManager*)mCreator)->getWindowHandle(); 100 if(FAILED(mJoyStick->SetCooperativeLevel( hwin, coopSetting))) 101 OIS_EXCEPT( E_General, "Win32JoyStick::_initialize() >> failed to set cooperation level!"); 102 103 // Set buffer size. 104 DIPROPDWORD dipdw; 105 dipdw.diph.dwSize = sizeof(DIPROPDWORD); 106 dipdw.diph.dwHeaderSize = sizeof(DIPROPHEADER); 107 dipdw.diph.dwObj = 0; 108 dipdw.diph.dwHow = DIPH_DEVICE; 109 dipdw.dwData = JOYSTICK_DX_BUFFERSIZE; 110 111 if( FAILED(mJoyStick->SetProperty(DIPROP_BUFFERSIZE, &dipdw.diph)) ) 112 OIS_EXCEPT( E_General, "Win32JoyStick::_initialize >> Failed to set buffer size property" ); 113 114 // Enumerate all axes/buttons/sliders/force feedback/etc before aquiring 115 _enumerate(); 116 117 mState.clear(); 118 119 capture(); 105 if (mJoyInfo.isXInput) 106 { 107 _enumerate(); 108 } 109 else 110 { 111 //Clear old state 112 mState.mAxes.clear(); 113 114 delete mFfDevice; 115 mFfDevice = 0; 116 117 DIPROPDWORD dipdw; 118 119 dipdw.diph.dwSize = sizeof(DIPROPDWORD); 120 dipdw.diph.dwHeaderSize = sizeof(DIPROPHEADER); 121 dipdw.diph.dwObj = 0; 122 dipdw.diph.dwHow = DIPH_DEVICE; 123 dipdw.dwData = JOYSTICK_DX_BUFFERSIZE; 124 125 if(FAILED(mDirectInput->CreateDevice(mJoyInfo.deviceID, &mJoyStick, NULL))) 126 OIS_EXCEPT( E_General, "Win32JoyStick::_initialize() >> Could not initialize joy device!"); 127 128 if(FAILED(mJoyStick->SetDataFormat(&c_dfDIJoystick2))) 129 OIS_EXCEPT( E_General, "Win32JoyStick::_initialize() >> data format error!"); 130 131 HWND hwin = ((Win32InputManager*)mCreator)->getWindowHandle(); 132 133 if(FAILED(mJoyStick->SetCooperativeLevel( hwin, coopSetting))) 134 OIS_EXCEPT( E_General, "Win32JoyStick::_initialize() >> failed to set cooperation level!"); 135 136 if( FAILED(mJoyStick->SetProperty(DIPROP_BUFFERSIZE, &dipdw.diph)) ) 137 OIS_EXCEPT( E_General, "Win32Mouse::Win32Mouse >> Failed to set buffer size property" ); 138 139 //Enumerate all axes/buttons/sliders/etc before aquiring 140 _enumerate(); 141 142 mState.clear(); 143 144 capture(); 145 } 120 146 } 121 147 … … 123 149 void Win32JoyStick::_enumerate() 124 150 { 125 // Get joystick capabilities. 126 mDIJoyCaps.dwSize = sizeof(DIDEVCAPS); 127 if( FAILED(mJoyStick->GetCapabilities(&mDIJoyCaps)) ) 128 OIS_EXCEPT( E_General, "Win32JoyStick::_enumerate >> Failed to get capabilities" ); 129 130 // => Number of POVs 131 mPOVs = (short)mDIJoyCaps.dwPOVs; 132 133 // => Number of buttons and axes. 134 mState.mButtons.resize(mDIJoyCaps.dwButtons); 135 mState.mAxes.resize(mDIJoyCaps.dwAxes); 136 137 // Enumerate all Force Feedback effects (if any) 138 mJoyStick->EnumEffects(DIEnumEffectsCallback, this, DIEFT_ALL); 139 140 //Reset the axis mapping enumeration value 141 _AxisNumber = 0; 142 143 // Enumerate and set axis constraints (and check FF Axes) 144 mJoyStick->EnumObjects(DIEnumDeviceObjectsCallback, this, DIDFT_AXIS); 151 if (mJoyInfo.isXInput) 152 { 153 mPOVs = 1; 154 155 mState.mButtons.resize(XINPUT_TRANSLATED_BUTTON_COUNT); 156 mState.mAxes.resize(XINPUT_TRANSLATED_AXIS_COUNT); 157 } 158 else 159 { 160 // Get joystick capabilities. 161 mDIJoyCaps.dwSize = sizeof(DIDEVCAPS); 162 if( FAILED(mJoyStick->GetCapabilities(&mDIJoyCaps)) ) 163 OIS_EXCEPT( E_General, "Win32JoyStick::_enumerate >> Failed to get capabilities" ); 164 165 mPOVs = (short)mDIJoyCaps.dwPOVs; 166 167 mState.mButtons.resize(mDIJoyCaps.dwButtons); 168 mState.mAxes.resize(mDIJoyCaps.dwAxes); 169 170 //Reset the axis mapping enumeration value 171 _AxisNumber = 0; 172 173 //Enumerate Force Feedback (if any) 174 mJoyStick->EnumEffects(DIEnumEffectsCallback, this, DIEFT_ALL); 175 176 //Enumerate and set axis constraints (and check FF Axes) 177 mJoyStick->EnumObjects(DIEnumDeviceObjectsCallback, this, DIDFT_AXIS); 178 } 145 179 } 146 180 … … 191 225 if((lpddoi->dwFlags & DIDOI_FFACTUATOR) != 0 ) 192 226 { 193 if( _this-> ff_device )227 if( _this->mFfDevice ) 194 228 { 195 _this-> ff_device->_addFFAxis();229 _this->mFfDevice->_addFFAxis(); 196 230 } 197 231 } … … 200 234 //as DInput has no API to query the device for these capabilities 201 235 //(the only way to know is to try them ...) 202 if( _this-> ff_device )203 { 204 _this-> ff_device->_setGainSupport(true);205 _this-> ff_device->_setAutoCenterSupport(true);236 if( _this->mFfDevice ) 237 { 238 _this->mFfDevice->_setGainSupport(true); 239 _this->mFfDevice->_setAutoCenterSupport(true); 206 240 } 207 241 … … 215 249 216 250 //Create the FF instance only after we know there is at least one effect type 217 if( _this-> ff_device == 0 )218 _this->ff_device = new Win32ForceFeedback(_this->mJoyStick, &_this->mDIJoyCaps);219 220 _this-> ff_device->_addEffectSupport( pdei);251 if( _this->mFfDevice == 0 ) 252 _this->mFfDevice = new Win32ForceFeedback(_this->mJoyStick, &_this->mDIJoyCaps); 253 254 _this->mFfDevice->_addEffectSupport(pdei); 221 255 222 256 return DIENUM_CONTINUE; … … 226 260 void Win32JoyStick::capture() 227 261 { 262 #ifdef OIS_WIN32_XINPUT_SUPPORT 263 //handle xbox controller differently 264 if (mJoyInfo.isXInput) 265 { 266 captureXInput(); 267 return; 268 } 269 #endif 270 271 //handle directinput based devices 228 272 DIDEVICEOBJECTDATA diBuff[JOYSTICK_DX_BUFFERSIZE]; 229 273 DWORD entries = JOYSTICK_DX_BUFFERSIZE; … … 241 285 242 286 // Poll the device to read the current state 243 287 mJoyStick->Poll(); 244 288 hr = mJoyStick->GetDeviceData( sizeof(DIDEVICEOBJECTDATA), diBuff, &entries, 0 ); 245 289 //Perhaps the user just tabbed away … … 353 397 354 398 //--------------------------------------------------------------------------------------------------// 399 void Win32JoyStick::captureXInput() 400 { 401 #ifdef OIS_WIN32_XINPUT_SUPPORT 402 XINPUT_STATE inputState; 403 if (XInputGetState((DWORD)mJoyInfo.xInputDev, &inputState) != ERROR_SUCCESS) 404 memset(&inputState, 0, sizeof(inputState)); 405 406 //Sticks and triggers 407 int value; 408 bool axisMoved[XINPUT_TRANSLATED_AXIS_COUNT] = {false,false,false,false,false,false}; 409 410 //LeftY 411 value = -(int)inputState.Gamepad.sThumbLY; 412 mState.mAxes[0].rel = value - mState.mAxes[0].abs; 413 mState.mAxes[0].abs = value; 414 if(mState.mAxes[0].rel != 0) 415 axisMoved[0] = true; 416 417 //LeftX 418 mState.mAxes[1].rel = inputState.Gamepad.sThumbLX - mState.mAxes[1].abs; 419 mState.mAxes[1].abs = inputState.Gamepad.sThumbLX; 420 421 if(mState.mAxes[1].rel != 0) 422 axisMoved[1] = true; 423 424 //RightY 425 value = -(int)inputState.Gamepad.sThumbRY; 426 mState.mAxes[2].rel = value - mState.mAxes[2].abs; 427 mState.mAxes[2].abs = value; 428 if(mState.mAxes[2].rel != 0) 429 axisMoved[2] = true; 430 431 //RightX 432 mState.mAxes[3].rel = inputState.Gamepad.sThumbRX - mState.mAxes[3].abs; 433 mState.mAxes[3].abs = inputState.Gamepad.sThumbRX; 434 if(mState.mAxes[3].rel != 0) 435 axisMoved[3] = true; 436 437 //Left trigger 438 value = inputState.Gamepad.bLeftTrigger * 129; 439 if(value > JoyStick::MAX_AXIS) 440 value = JoyStick::MAX_AXIS; 441 442 mState.mAxes[4].rel = value - mState.mAxes[4].abs; 443 mState.mAxes[4].abs = value; 444 if(mState.mAxes[4].rel != 0) 445 axisMoved[4] = true; 446 447 //Right trigger 448 value = (int)inputState.Gamepad.bRightTrigger * 129; 449 if(value > JoyStick::MAX_AXIS) 450 value = JoyStick::MAX_AXIS; 451 452 mState.mAxes[5].rel = value - mState.mAxes[5].abs; 453 mState.mAxes[5].abs = value; 454 if(mState.mAxes[5].rel != 0) 455 axisMoved[5] = true; 456 457 //POV 458 int previousPov = mState.mPOV[0].direction; 459 int& pov = mState.mPOV[0].direction; 460 pov = Pov::Centered; 461 if (inputState.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_UP) 462 pov |= Pov::North; 463 else if (inputState.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_DOWN) 464 pov |= Pov::South; 465 if (inputState.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_LEFT) 466 pov |= Pov::West; 467 else if (inputState.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_RIGHT) 468 pov |= Pov::East; 469 470 //Buttons - The first 4 buttons don't need to be checked since they represent the dpad 471 bool previousButtons[XINPUT_TRANSLATED_BUTTON_COUNT]; 472 std::copy(mState.mButtons.begin(), mState.mButtons.end(), previousButtons); 473 for (size_t i = 0; i < XINPUT_TRANSLATED_BUTTON_COUNT; i++) 474 mState.mButtons[i] = (inputState.Gamepad.wButtons & (1 << (i + 4))) != 0; 475 476 //Send events 477 if (mBuffered && mListener) 478 { 479 JoyStickEvent joystickEvent(this, mState); 480 481 //Axes 482 for (int i = 0; i < XINPUT_TRANSLATED_AXIS_COUNT; i++) 483 { 484 if (axisMoved[i] && !mListener->axisMoved(joystickEvent, i)) 485 return; 486 } 487 488 //POV 489 if (previousPov != pov && !mListener->povMoved(joystickEvent, 0)) 490 return; 491 492 //Buttons 493 for (int i = 0; i < XINPUT_TRANSLATED_BUTTON_COUNT; i++) 494 { 495 if (!previousButtons[i] && mState.mButtons[i]) 496 { 497 if (!mListener->buttonPressed(joystickEvent, i)) 498 return; 499 } 500 else if (previousButtons[i] && !mState.mButtons[i]) 501 { 502 if (!mListener->buttonReleased(joystickEvent, i)) 503 return; 504 } 505 } 506 } 507 #endif 508 } 509 510 //--------------------------------------------------------------------------------------------------// 355 511 bool Win32JoyStick::_doButtonClick( int button, DIDEVICEOBJECTDATA& di ) 356 512 { … … 410 566 Interface* Win32JoyStick::queryInterface(Interface::IType type) 411 567 { 412 //Thought about using covariant return type here.. however, 413 //some devices may allow LED light changing, or other interface stuff 414 415 if( ff_device && type == Interface::ForceFeedback ) 416 return ff_device; 568 if( mFfDevice && type == Interface::ForceFeedback ) 569 return mFfDevice; 417 570 else 418 571 return 0; 419 572 } 573 574 //--------------------------------------------------------------------------------------------------// 575 void Win32JoyStick::CheckXInputDevices(JoyStickInfoList &joys) 576 { 577 IWbemLocator* pIWbemLocator = NULL; 578 IEnumWbemClassObject* pEnumDevices = NULL; 579 IWbemClassObject* pDevices[20] = {0}; 580 IWbemServices* pIWbemServices = NULL; 581 BSTR bstrNamespace = NULL; 582 BSTR bstrDeviceID = NULL; 583 BSTR bstrClassName = NULL; 584 DWORD uReturned = 0; 585 bool bIsXinputDevice= false; 586 DWORD iDevice = 0; 587 int xDevice = 0; 588 VARIANT var; 589 HRESULT hr; 590 591 if(joys.size() == 0) 592 return; 593 594 // CoInit if needed 595 hr = CoInitialize(NULL); 596 bool bCleanupCOM = SUCCEEDED(hr); 597 598 // Create WMI 599 // (Orxonox): Fix for MinGW 600 #ifdef __MINGW32__ 601 hr = CoCreateInstance(CLSID_WbemLocator, NULL, CLSCTX_INPROC_SERVER, IID_IWbemLocator, (LPVOID*)&pIWbemLocator); 602 #else 603 hr = CoCreateInstance(__uuidof(WbemLocator), NULL, CLSCTX_INPROC_SERVER, __uuidof(IWbemLocator), (LPVOID*)&pIWbemLocator); 604 #endif 605 if( FAILED(hr) || pIWbemLocator == NULL ) 606 goto LCleanup; 607 608 bstrNamespace = SysAllocString( L"\\\\.\\root\\cimv2" ); 609 if( bstrNamespace == NULL ) 610 goto LCleanup; 611 612 bstrClassName = SysAllocString( L"Win32_PNPEntity" ); 613 if( bstrClassName == NULL ) 614 goto LCleanup; 615 616 bstrDeviceID = SysAllocString( L"DeviceID" ); 617 if( bstrDeviceID == NULL ) 618 goto LCleanup; 619 620 // Connect to WMI 621 hr = pIWbemLocator->ConnectServer( bstrNamespace, NULL, NULL, 0L, 0L, NULL, NULL, &pIWbemServices ); 622 if( FAILED(hr) || pIWbemServices == NULL ) 623 goto LCleanup; 624 625 // Switch security level to IMPERSONATE. 626 CoSetProxyBlanket(pIWbemServices, RPC_C_AUTHN_WINNT, RPC_C_AUTHZ_NONE, NULL, RPC_C_AUTHN_LEVEL_CALL, RPC_C_IMP_LEVEL_IMPERSONATE, NULL, EOAC_NONE ); 627 628 hr = pIWbemServices->CreateInstanceEnum( bstrClassName, 0, NULL, &pEnumDevices ); 629 if( FAILED(hr) || pEnumDevices == NULL ) 630 goto LCleanup; 631 632 // Loop over all devices 633 for( ;; ) 634 { 635 // Get 20 at a time 636 hr = pEnumDevices->Next(5000, 20, pDevices, &uReturned); 637 if( FAILED(hr) ) 638 goto LCleanup; 639 640 if( uReturned == 0 ) 641 break; 642 643 for(iDevice = 0; iDevice < uReturned; iDevice++) 644 { 645 // For each device, get its device ID 646 hr = pDevices[iDevice]->Get(bstrDeviceID, 0L, &var, NULL, NULL); 647 if(SUCCEEDED(hr) && var.vt == VT_BSTR && var.bstrVal != NULL) 648 { 649 // Check if the device ID contains "IG_". If it does, then it's an XInput device - This information can not be found from DirectInput 650 if(wcsstr(var.bstrVal, L"IG_")) 651 { 652 // If it does, then get the VID/PID from var.bstrVal 653 DWORD dwPid = 0, dwVid = 0; 654 WCHAR* strVid = wcsstr( var.bstrVal, L"VID_" ); 655 if(strVid && swscanf_s( strVid, L"VID_%4X", &dwVid ) != 1) 656 dwVid = 0; 657 658 WCHAR* strPid = wcsstr( var.bstrVal, L"PID_" ); 659 if(strPid && swscanf_s( strPid, L"PID_%4X", &dwPid ) != 1) 660 dwPid = 0; 661 662 // Compare the VID/PID to the DInput device 663 DWORD dwVidPid = MAKELONG(dwVid, dwPid); 664 for(JoyStickInfoList::iterator i = joys.begin(); i != joys.end(); ++i) 665 { 666 if(dwVidPid == i->productGuid.Data1) 667 { 668 i->isXInput = true; 669 i->xInputDev = xDevice; 670 } 671 } 672 673 if(joys.size() == 0) 674 goto LCleanup; 675 } 676 } 677 678 SAFE_RELEASE(pDevices[iDevice]); 679 } 680 } 681 682 LCleanup: 683 if(bstrNamespace) 684 SysFreeString(bstrNamespace); 685 686 if(bstrDeviceID) 687 SysFreeString(bstrDeviceID); 688 689 if(bstrClassName) 690 SysFreeString(bstrClassName); 691 692 for(iDevice=0; iDevice < 20; iDevice++) 693 SAFE_RELEASE(pDevices[iDevice]); 694 695 SAFE_RELEASE(pEnumDevices); 696 SAFE_RELEASE(pIWbemLocator); 697 SAFE_RELEASE(pIWbemServices); 698 699 if(bCleanupCOM) 700 CoUninitialize(); 701 } -
code/branches/kicklib2/src/external/ois/win32/Win32JoyStick.h
r5781 r8284 25 25 26 26 #include "OISJoyStick.h" 27 #include " Win32/Win32Prereqs.h"27 #include "win32/Win32Prereqs.h" 28 28 29 29 namespace OIS … … 41 41 virtual void capture(); 42 42 43 //! hanlde xinput 44 void captureXInput(); 45 43 46 /** @copydoc Object::queryInterface */ 44 47 virtual Interface* queryInterface(Interface::IType type); … … 46 49 /** @copydoc Object::_initialize */ 47 50 virtual void _initialize(); 51 52 /** 53 @remarks 54 Enum each PNP device using WMI and check each device ID to see if it contains 55 "IG_" (ex. "VID_045E&PID_028E&IG_00"). If it does, then it's an XInput device 56 Unfortunately this information can not be found by just using DirectInput 57 */ 58 static void CheckXInputDevices(JoyStickInfoList &joys); 48 59 49 60 protected: … … 61 72 IDirectInputDevice8* mJoyStick; 62 73 DIDEVCAPS mDIJoyCaps; 74 DWORD coopSetting; 63 75 64 DWORD coopSetting; 65 GUID deviceGuid; 76 JoyStickInfo mJoyInfo; 66 77 67 78 //! A force feedback device 68 Win32ForceFeedback* ff_device;79 Win32ForceFeedback* mFfDevice; 69 80 70 81 //! Mapping -
code/branches/kicklib2/src/external/ois/win32/Win32KeyBoard.cpp
r5781 r8284 21 21 3. This notice may not be removed or altered from any source distribution. 22 22 */ 23 #include " Win32/Win32InputManager.h"24 #include " Win32/Win32KeyBoard.h"23 #include "win32/Win32InputManager.h" 24 #include "win32/Win32KeyBoard.h" 25 25 #include "OISException.h" 26 26 #include "OISEvents.h" … … 287 287 288 288 //--------------------------------------------------------------------------------------------------// 289 const std::string& Win32Keyboard::getAsString( KeyCode kc)289 const std::string& Win32Keyboard::getAsString(KeyCode kc) 290 290 { 291 291 char temp[256]; … … 297 297 prop.diph.dwHow = DIPH_BYOFFSET; 298 298 299 if ( SUCCEEDED( mKeyboard->GetProperty( DIPROP_KEYNAME, &prop.diph ) ))299 if (SUCCEEDED(mKeyboard->GetProperty(DIPROP_KEYNAME, &prop.diph))) 300 300 { 301 301 // convert the WCHAR in "wsz" to multibyte 302 if ( WideCharToMultiByte( CP_ACP, 0, prop.wsz, -1, temp, sizeof(temp), NULL, NULL))303 return mGetString.assign( temp);302 if (WideCharToMultiByte(CP_ACP, 0, prop.wsz, -1, temp, sizeof(temp), NULL, NULL)) 303 return mGetString.assign(temp); 304 304 } 305 305 306 306 std::stringstream ss; 307 307 ss << "Key_" << (int)kc; 308 return mGetString.assign( ss.str());308 return mGetString.assign(ss.str()); 309 309 } 310 310 -
code/branches/kicklib2/src/external/ois/win32/Win32KeyBoard.h
r5781 r8284 25 25 26 26 #include "OISKeyboard.h" 27 #include " Win32/Win32Prereqs.h"27 #include "win32/Win32Prereqs.h" 28 28 29 29 namespace OIS … … 42 42 A combination of DI Flags (see DX Help for info on input device settings) 43 43 */ 44 Win32Keyboard( InputManager* creator, IDirectInput8* pDI, bool buffered, DWORD coopSettings);44 Win32Keyboard(InputManager* creator, IDirectInput8* pDI, bool buffered, DWORD coopSettings); 45 45 virtual ~Win32Keyboard(); 46 46 47 47 /** @copydoc Keyboard::isKeyDown */ 48 virtual bool isKeyDown( KeyCode key) const;48 virtual bool isKeyDown(KeyCode key) const; 49 49 50 50 /** @copydoc Keyboard::getAsString */ 51 virtual const std::string& getAsString( KeyCode kc);51 virtual const std::string& getAsString(KeyCode kc); 52 52 53 53 /** @copydoc Keyboard::copyKeyStates */ 54 virtual void copyKeyStates( char keys[256]) const;54 virtual void copyKeyStates(char keys[256]) const; 55 55 56 56 /** @copydoc Object::setBuffered */ -
code/branches/kicklib2/src/external/ois/win32/Win32Mouse.cpp
r5781 r8284 21 21 3. This notice may not be removed or altered from any source distribution. 22 22 */ 23 #include " Win32/Win32Mouse.h"24 #include " Win32/Win32InputManager.h"23 #include "win32/Win32Mouse.h" 24 #include "win32/Win32InputManager.h" 25 25 #include "OISException.h" 26 26 #include "OISEvents.h" -
code/branches/kicklib2/src/external/ois/win32/Win32Mouse.h
r5781 r8284 25 25 26 26 #include "OISMouse.h" 27 #include " Win32/Win32Prereqs.h"27 #include "win32/Win32Prereqs.h" 28 28 29 29 namespace OIS -
code/branches/kicklib2/src/external/ois/win32/Win32Prereqs.h
r5781 r8284 29 29 #include <dinput.h> 30 30 31 #ifdef OIS_WIN32_XINPUT_SUPPORT 32 # include <XInput.h> 33 #endif 34 31 35 //Max number of elements to collect from buffered DirectInput 32 36 #define KEYBOARD_DX_BUFFERSIZE 17 33 #define MOUSE_DX_BUFFERSIZE 6434 #define JOYSTICK_DX_BUFFERSIZE 12 437 #define MOUSE_DX_BUFFERSIZE 128 38 #define JOYSTICK_DX_BUFFERSIZE 129 35 39 36 40 //MinGW defines … … 55 59 int devId; 56 60 GUID deviceID; 61 GUID productGuid; 57 62 std::string vendor; 63 bool isXInput; 64 int xInputDev; 58 65 }; 59 66 60 typedef std::vector< JoyStickInfo> JoyStickInfoList;67 typedef std::vector<JoyStickInfo> JoyStickInfoList; 61 68 } 62 69
Note: See TracChangeset
for help on using the changeset viewer.