2013-08-13 20:04:25 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* GamePad.h *
|
|
|
|
* *
|
|
|
|
* XFX::Input::GamePad class definition file *
|
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
|
|
|
*****************************************************************************/
|
2013-05-05 18:18:41 +02:00
|
|
|
#ifndef _XFX_INPUT_GAMEPAD_
|
|
|
|
#define _XFX_INPUT_GAMEPAD_
|
|
|
|
|
|
|
|
#include <Enums.h>
|
|
|
|
#include "Enums.h"
|
|
|
|
#include "GamePadState.h"
|
|
|
|
|
|
|
|
namespace XFX
|
|
|
|
{
|
|
|
|
namespace Input
|
|
|
|
{
|
2013-08-13 20:04:25 +02:00
|
|
|
/**
|
|
|
|
* Allows retrieval of user interaction with an XBOX Controller
|
|
|
|
* and setting of controller vibration motors.
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
class GamePad
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
GamePad(); // Private constructor to prevent instantiation.
|
|
|
|
|
|
|
|
public:
|
|
|
|
static GamePadState GetState(const PlayerIndex_t playerIndex);
|
|
|
|
static GamePadState GetState(const PlayerIndex_t playerIndex, const GamePadDeadZone_t deadZoneMode);
|
|
|
|
static bool SetVibration(const PlayerIndex_t playerIndex, const float leftMotor, const float rightMotor);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //_XFX_INPUT_GAMEPAD_
|