Files
itgmania212121/stepmania/src/arch/InputHandler/InputHandler_Win32_Pump.cpp
T

140 lines
3.1 KiB
C++
Raw Normal View History

2003-02-16 04:02:21 +00:00
#include "global.h"
2003-02-16 01:16:25 +00:00
#include "InputHandler_Win32_Pump.h"
2003-07-14 06:26:09 +00:00
#include "PrefsManager.h"
2003-02-16 01:16:25 +00:00
#include "RageLog.h"
2003-10-11 04:05:43 +00:00
#include "RageUtil.h"
2003-02-16 01:16:25 +00:00
#include "RageInputDevice.h"
2003-03-19 20:34:40 +00:00
#include "archutils/Win32/USB.h"
2003-02-16 01:16:25 +00:00
2003-02-16 02:25:22 +00:00
InputHandler_Win32_Pump::InputHandler_Win32_Pump()
2003-02-16 01:16:25 +00:00
{
2003-07-14 06:26:09 +00:00
shutdown = false;
2003-02-16 01:16:25 +00:00
const int pump_usb_vid = 0x0d2f, pump_usb_pid = 0x0001;
2003-03-19 20:34:40 +00:00
dev = new USBDevice[NUM_PUMPS];
bool FoundOnePad = false;
2003-02-16 01:16:25 +00:00
for(int i = 0; i < NUM_PUMPS; ++i)
{
2003-07-14 06:26:09 +00:00
if(dev[i].Open(pump_usb_vid, pump_usb_pid, sizeof(long), i))
{
FoundOnePad = true;
2003-02-16 01:16:25 +00:00
LOG->Info("Found Pump pad %i", i);
}
2003-02-16 01:16:25 +00:00
}
2003-07-14 06:26:09 +00:00
/* Don't start a thread if we have no pads. */
if( FoundOnePad && PREFSMAN->m_bThreadedInput )
2003-08-05 01:32:51 +00:00
{
InputThread.SetName("Pump thread");
InputThread.Create( InputThread_Start, this );
}
2003-02-16 01:16:25 +00:00
}
2003-02-16 02:25:22 +00:00
InputHandler_Win32_Pump::~InputHandler_Win32_Pump()
2003-02-16 01:16:25 +00:00
{
2003-08-05 01:32:51 +00:00
if( InputThread.IsCreated() )
2003-07-14 06:26:09 +00:00
{
shutdown = true;
LOG->Trace("Shutting down Pump thread ...");
2003-08-05 01:32:51 +00:00
InputThread.Wait();
2003-07-14 06:26:09 +00:00
LOG->Trace("Pump thread shut down.");
}
2003-02-16 01:16:25 +00:00
delete[] dev;
}
2003-07-14 06:26:09 +00:00
void InputHandler_Win32_Pump::HandleInput( int devno, int event )
2003-02-16 01:16:25 +00:00
{
2003-05-28 04:21:12 +00:00
static const int bits[NUM_PUMP_PAD_BUTTONS] = {
2003-02-16 01:16:25 +00:00
/* P1 */ (1<<9), (1<<12), (1<<13), (1<<11), (1<<10),
/* ESC */ (1<<16),
/* P1 */ (1<<17), (1<<20), (1<<21), (1<<19), (1<<18),
};
2003-07-14 06:26:09 +00:00
InputDevice id = InputDevice(DEVICE_PUMP1 + devno);
for (int butno = 0 ; butno < NUM_PUMP_PAD_BUTTONS ; butno++)
2003-02-16 01:16:25 +00:00
{
2003-12-17 09:32:56 +00:00
DeviceInput di(id, butno);
2003-07-14 06:26:09 +00:00
/* If we're in a thread, our timestamp is accurate. */
2003-08-05 01:32:51 +00:00
if( InputThread.IsCreated() )
2003-12-17 09:32:56 +00:00
di.ts.Touch();
2003-02-16 01:16:25 +00:00
2003-12-17 09:32:56 +00:00
ButtonPressed(di, !(event & bits[butno]));
2003-02-16 01:16:25 +00:00
}
}
2003-05-28 02:35:05 +00:00
void InputHandler_Win32_Pump::GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut)
{
for(int i = 0; i < NUM_PUMPS; ++i)
{
if( dev[i].IsOpen() )
{
vDevicesOut.push_back( InputDevice(DEVICE_PUMP1+i) );
vDescriptionsOut.push_back( "Pump USB" );
}
}
}
2003-07-14 06:26:09 +00:00
int InputHandler_Win32_Pump::InputThread_Start( void *p )
{
2003-08-05 01:32:51 +00:00
((InputHandler_Win32_Pump *) p)->InputThreadMain();
2003-07-14 06:26:09 +00:00
return 0;
}
2003-08-05 01:32:51 +00:00
void InputHandler_Win32_Pump::InputThreadMain()
2003-07-14 06:26:09 +00:00
{
2003-10-11 00:15:19 +00:00
if(!SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_HIGHEST))
LOG->Warn(werr_ssprintf(GetLastError(), "Failed to set Pump thread priority"));
2003-07-14 06:26:09 +00:00
vector<WindowsFileIO *> sources;
int i;
for(i = 0; i < NUM_PUMPS; ++i)
{
if( dev[i].io.IsOpen() )
sources.push_back( &dev[i].io );
}
while(!shutdown)
{
2003-08-05 01:32:51 +00:00
CHECKPOINT;
2003-07-14 06:26:09 +00:00
int actual = 0, val = 0;
int ret = WindowsFileIO::read_several(sources, &val, actual, 0.100f);
2003-08-05 01:32:51 +00:00
CHECKPOINT;
2003-07-14 06:26:09 +00:00
if(ret <= 0)
continue; /* no event */
HandleInput( actual, val );
InputHandler::UpdateTimer();
}
2003-08-05 01:32:51 +00:00
CHECKPOINT;
2003-07-14 06:26:09 +00:00
}
void InputHandler_Win32_Pump::Update(float fDeltaTime)
{
2003-08-05 01:32:51 +00:00
if( !InputThread.IsCreated() )
2003-07-14 06:26:09 +00:00
{
for(int i = 0; i < NUM_PUMPS; ++i)
{
int ret = dev[i].GetPadEvent();
if(ret == -1)
continue; /* no event */
HandleInput( i, ret );
}
InputHandler::UpdateTimer();
}
}
2003-03-19 20:34:40 +00:00
/*
-----------------------------------------------------------------------------
Copyright (c) 2002-2003 by the person(s) listed below. All rights reserved.
Glenn Maynard
-----------------------------------------------------------------------------
*/