Files
itgmania212121/stepmania/src/arch/InputHandler/InputHandler.h
T

95 lines
4.1 KiB
C++
Raw Normal View History

2003-02-16 01:16:25 +00:00
#ifndef INPUT_HANDLER_H
2005-05-25 22:15:11 +00:00
#define INPUT_HANDLER_H
2003-02-16 01:16:25 +00:00
/*
* This is a simple class to handle special input devices. Update()
* will be called during the input update; the derived class should
* send appropriate events to InputHandler.
*
2003-04-12 02:14:00 +00:00
* Note that, if the underlying device is capable of it, you're free to
* start a blocking thread; just store inputs in your class and send them
2004-06-16 21:11:56 +00:00
* off in a batch on the next Update. This gets much more accurate timestamps;
* we get events more quickly and timestamp them, instead of having a rough timing
* granularity due to the framerate.
2003-04-12 02:14:00 +00:00
*
2003-02-16 01:16:25 +00:00
* Send input events for a specific type of device. Only one driver
* for a given set of InputDevice types should be loaded for a given
* arch. For example, any number of drivers may produce DEVICE_PUMPn
2003-04-12 02:14:00 +00:00
* events, but only one may be loaded at a time. (This will be inconvenient
* if, for example, we have two completely distinct methods of getting
* input for the same device; we have no method to allocate device numbers.
* We don't need this now; I'll write it if it becomes needed.)
2003-02-16 01:16:25 +00:00
*/
2003-05-28 02:35:05 +00:00
#include "RageInputDevice.h" // for InputDevice
2003-02-16 01:16:25 +00:00
2003-02-16 02:25:22 +00:00
class InputHandler
2003-02-16 01:16:25 +00:00
{
public:
InputHandler() { m_iInputsSinceUpdate = 0; }
2003-02-16 02:25:22 +00:00
virtual ~InputHandler() { }
2005-12-18 22:51:12 +00:00
virtual void Update() { }
2005-12-18 03:08:12 +00:00
virtual bool DevicesChanged() { return false; }
2005-05-25 22:15:11 +00:00
virtual void GetDevicesAndDescriptions( vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut ) = 0;
2005-08-20 22:49:25 +00:00
// Override to return a pretty string that's specific to the controller type.
virtual CString GetDeviceSpecificInputString( const DeviceInput &di );
2003-06-18 05:43:12 +00:00
2005-08-20 22:49:25 +00:00
// Override to find out whether the controller is currently plugged in.
// Not all InputHandlers will support this. Not applicable to all InputHandlers.
virtual InputDeviceState GetInputDeviceState( InputDevice id ) { return InputDeviceState_Connected; }
2003-06-18 05:43:12 +00:00
/* In Windows, some devices need to be recreated if we recreate our main window.
* Override this if you need to do that. */
virtual void WindowReset() { }
2003-07-13 01:00:55 +00:00
protected:
/* Convenience function: Call this to queue a received event. This may be called
* in a thread.
*
* Important detail: If the timestamp, di.ts, is zero, then it is assumed that
* this is not a threaded event handler. In that case, input is being polled,
* and the actual time the button was pressed may be any time since the last
* poll. In this case, ButtonPressed will pretend the button was pressed at
* the midpoint since the last update, which will smooth out the error.
*
* Note that timestamps are set to the current time by default, so for this to
* happen, you need to explicitly call di.ts.SetZero().
*
* If the timestamp is set, it'll be left alone. */
void ButtonPressed( DeviceInput di, bool Down );
2003-07-14 06:25:14 +00:00
/* Call this at the end of polling input. */
void UpdateTimer();
private:
RageTimer m_LastUpdate;
int m_iInputsSinceUpdate;
2003-02-16 01:16:25 +00:00
};
#endif
/*
2004-05-15 22:07:41 +00:00
* (c) 2003-2004 Glenn Maynard
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
2003-02-16 01:16:25 +00:00
*/