File confec.cpp changed (mode: 100644) (index d0353a8..3b902ac) |
... |
... |
void Render(){ |
4357 |
4357 |
timeCount = std::fmod( timeCount, 1.0 ); |
timeCount = std::fmod( timeCount, 1.0 ); |
4358 |
4358 |
} |
} |
4359 |
4359 |
|
|
4360 |
|
// Game will slow down. |
|
4361 |
4360 |
if( d > 1.0 / minFps ){ |
if( d > 1.0 / minFps ){ |
|
4361 |
|
// Game will slow down. |
4362 |
4362 |
d = 1.0 / minFps; |
d = 1.0 / minFps; |
4363 |
4363 |
} |
} |
4364 |
4364 |
|
|
|
4365 |
|
linalg::vec<double,2> rs( fgl::rightStickX(), fgl::rightStickY() ); |
|
4366 |
|
if( linalg::length( rs ) > dead_zone ){ |
|
4367 |
|
// Move the mouse cursor. |
|
4368 |
|
double sw = fgl::getDisplayWidth(), sh = fgl::getDisplayHeight(); |
|
4369 |
|
double s = sh; |
|
4370 |
|
SDL_WarpMouseInWindow( |
|
4371 |
|
fgl::window, |
|
4372 |
|
std::min( std::max( fgl::mouseX + rs.x * s * d, 0.0 ), sw - 1.0 ), |
|
4373 |
|
std::min( std::max( fgl::mouseY + rs.y * s * d, 0.0 ), sh - 1.0 ) |
|
4374 |
|
); |
|
4375 |
|
} |
|
4376 |
|
|
4365 |
4377 |
// TODO: Decouple fworld from render loop. |
// TODO: Decouple fworld from render loop. |
4366 |
4378 |
world.screenWidth = fgl::getDisplayWidth(); |
world.screenWidth = fgl::getDisplayWidth(); |
4367 |
4379 |
world.screenHeight = fgl::getDisplayHeight(); |
world.screenHeight = fgl::getDisplayHeight(); |
|
... |
... |
void Render(){ |
4678 |
4690 |
|
|
4679 |
4691 |
// In-game and menu interaction. |
// In-game and menu interaction. |
4680 |
4692 |
static bool interactButtonLast; |
static bool interactButtonLast; |
4681 |
|
interactButton = GetButtonState( k_interact ) || actionButton; |
|
|
4693 |
|
interactButton = GetButtonState( k_interact ) || ( actionButton && (inputTarget || !show_cursor) ); |
4682 |
4694 |
interactButtonDown = interactButton && !interactButtonLast; |
interactButtonDown = interactButton && !interactButtonLast; |
4683 |
4695 |
interactButtonLast = interactButton; |
interactButtonLast = interactButton; |
4684 |
4696 |
|
|
4685 |
|
// When there is no text input target, pressing an "interact" button |
|
4686 |
|
// instantly hides the mouse cursor. |
|
4687 |
|
if( !inputTarget && interactButtonDown ) show_cursor = false; |
|
4688 |
|
|
|
4689 |
4697 |
static bool recipesButtonLast; |
static bool recipesButtonLast; |
4690 |
4698 |
recipesButton = GetButtonState( k_recipes_menu ) || fgl::bButton(); |
recipesButton = GetButtonState( k_recipes_menu ) || fgl::bButton(); |
4691 |
4699 |
recipesButtonDown = recipesButton && !recipesButtonLast; |
recipesButtonDown = recipesButton && !recipesButtonLast; |