mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
GCPad/Wiimote New: Added a set defaults button to the config dialog. (gave new wiimote plugin a few default buttons, not done) Moved MSWindows cursor position code to ControllerInterface/DInput (plan on moving Linux's cursor code to Xlib as well). IR Up,Down,L,R now must have Cursor X/Y/-+ mapped for regular mouse control on Windows. (hopefully this isn't too confusing, the reset to default button automatically sets this up). Renamed One,Two,Minus,Plus to 12-+ (you will have to reconfigure these buttons, sorry). Added text labels for the button and trigger preview bitmaps. -other minor stuff.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5865 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -6,7 +6,7 @@ namespace WiimoteEmu
|
||||
|
||||
static const u8 guitar_id[] = { 0x00, 0x00, 0xa4, 0x20, 0x01, 0x03 };
|
||||
|
||||
const u16 guitar_fret_bitmasks[] =
|
||||
static const u16 guitar_fret_bitmasks[] =
|
||||
{
|
||||
Guitar::FRET_GREEN,
|
||||
Guitar::FRET_RED,
|
||||
@ -15,18 +15,18 @@ const u16 guitar_fret_bitmasks[] =
|
||||
Guitar::FRET_ORANGE,
|
||||
};
|
||||
|
||||
const char* guitar_fret_names[] =
|
||||
static const char* const guitar_fret_names[] =
|
||||
{
|
||||
"Green","Red","Yellow","Blue","Orange",
|
||||
};
|
||||
|
||||
const u16 guitar_button_bitmasks[] =
|
||||
static const u16 guitar_button_bitmasks[] =
|
||||
{
|
||||
Guitar::BUTTON_MINUS,
|
||||
Guitar::BUTTON_PLUS,
|
||||
};
|
||||
|
||||
const u16 guitar_strum_bitmasks[] =
|
||||
static const u16 guitar_strum_bitmasks[] =
|
||||
{
|
||||
Guitar::BAR_UP,
|
||||
Guitar::BAR_DOWN,
|
||||
@ -53,8 +53,8 @@ Guitar::Guitar() : Attachment( "Guitar" )
|
||||
|
||||
// buttons
|
||||
groups.push_back( m_buttons = new Buttons( "Buttons" ) );
|
||||
m_buttons->controls.push_back( new ControlGroup::Input("Minus") );
|
||||
m_buttons->controls.push_back( new ControlGroup::Input("Plus") );
|
||||
m_buttons->controls.push_back( new ControlGroup::Input("-") );
|
||||
m_buttons->controls.push_back( new ControlGroup::Input("+") );
|
||||
|
||||
// set up register
|
||||
// id
|
||||
@ -64,6 +64,7 @@ Guitar::Guitar() : Attachment( "Guitar" )
|
||||
void Guitar::GetState(u8* const data, const bool focus)
|
||||
{
|
||||
wm_guitar_extension* const gdata = (wm_guitar_extension*)data;
|
||||
gdata->bt = 0;
|
||||
|
||||
// calibration data not figured out yet?
|
||||
|
||||
|
Reference in New Issue
Block a user