File src/rsod.cpp changed (mode: 100644) (index fe16ce5..f26892b) |
... |
... |
void Render(){ |
2565 |
2565 |
// Left joystick. |
// Left joystick. |
2566 |
2566 |
stickX = fgl::leftStickX(); |
stickX = fgl::leftStickX(); |
2567 |
2567 |
stickY = fgl::leftStickY(); |
stickY = fgl::leftStickY(); |
2568 |
|
// Directional pad. |
|
2569 |
|
int dPadR = fgl::rightPad(), dPadL = fgl::leftPad(), |
|
2570 |
|
dPadD = fgl::downPad(), dPadU = fgl::upPad(); |
|
2571 |
2568 |
|
|
2572 |
2569 |
std::string |
std::string |
2573 |
2570 |
*k_up = kb ? &kb->get( "up" ) : nullptr, |
*k_up = kb ? &kb->get( "up" ) : nullptr, |
|
... |
... |
void Render(){ |
2577 |
2574 |
|
|
2578 |
2575 |
// Directional input for movement and menus. |
// Directional input for movement and menus. |
2579 |
2576 |
moveX = |
moveX = |
2580 |
|
( fgl::rightKey() || GetButtonState( k_right ) || dPadR ) - |
|
2581 |
|
( fgl::leftKey() || GetButtonState( k_left ) || dPadL ) + |
|
|
2577 |
|
( fgl::rightKey() || GetButtonState( k_right ) ) - |
|
2578 |
|
( fgl::leftKey() || GetButtonState( k_left ) ) + |
2582 |
2579 |
stickX; |
stickX; |
2583 |
2580 |
moveY = |
moveY = |
2584 |
|
( fgl::downKey() || GetButtonState( k_down ) || dPadD ) - |
|
2585 |
|
( fgl::upKey() || GetButtonState( k_up ) || dPadU ) + |
|
|
2581 |
|
( fgl::downKey() || GetButtonState( k_down ) ) - |
|
2582 |
|
( fgl::upKey() || GetButtonState( k_up ) ) + |
2586 |
2583 |
stickY; |
stickY; |
2587 |
2584 |
|
|
2588 |
2585 |
static int moveXLast = 0; |
static int moveXLast = 0; |
|
... |
... |
void Render(){ |
2734 |
2731 |
} |
} |
2735 |
2732 |
|
|
2736 |
2733 |
// Disable mouse cursor input if the left joystick is moved past the |
// Disable mouse cursor input if the left joystick is moved past the |
2737 |
|
// left dead zone or dpad input is used. |
|
|
2734 |
|
// left dead zone. |
2738 |
2735 |
static bool use_mouse = true; |
static bool use_mouse = true; |
2739 |
|
if( std::sqrt( stickX * stickX + stickY * stickY ) > dead_zone_left |
|
2740 |
|
|| dPadR || dPadL || dPadD || dPadU ){ |
|
|
2736 |
|
if( std::sqrt( stickX * stickX + stickY * stickY ) > dead_zone_left ){ |
2741 |
2737 |
use_mouse = false; |
use_mouse = false; |
2742 |
2738 |
} |
} |
2743 |
2739 |
if( !fgl::controller ) use_mouse = true; |
if( !fgl::controller ) use_mouse = true; |
|
... |
... |
void FirstPersonLoop( double d ){ |
3573 |
3569 |
csPlaySound( "light", false ); |
csPlaySound( "light", false ); |
3574 |
3570 |
} |
} |
3575 |
3571 |
|
|
3576 |
|
// Switch weapons using the mouse scroll wheel. |
|
3577 |
|
PlayerSwitchWeapons( fgl::mouseWheel ); |
|
|
3572 |
|
// Switch weapons using the mouse scroll wheel and D-pad. |
|
3573 |
|
static int dPadYLast = 0; |
|
3574 |
|
int dPadY = fgl::upPad() - fgl::downPad(); |
|
3575 |
|
int dPadYDown = dPadY == dPadYLast ? 0 : dPadY; |
|
3576 |
|
dPadYLast = dPadY; |
|
3577 |
|
PlayerSwitchWeapons( fgl::mouseWheel + dPadYDown ); |
3578 |
3578 |
|
|
3579 |
3579 |
// Weapon animations. |
// Weapon animations. |
3580 |
3580 |
bool reloading = false; |
bool reloading = false; |