File confec.cpp changed (mode: 100644) (index 7e4abec..4c4640e) |
... |
... |
void GameLoop( double d ){ |
5721 |
5721 |
player.walking = false; |
player.walking = false; |
5722 |
5722 |
player.frame = 0.0; |
player.frame = 0.0; |
5723 |
5723 |
} |
} |
5724 |
|
}else if( pauseButtonDown ){ |
|
5725 |
|
// The pause button is pressed when the player is free to move. |
|
|
5724 |
|
}else if( pauseButtonDown || !fgl::hasFocus ){ |
|
5725 |
|
// The pause button is pressed when the player is free to move, |
|
5726 |
|
// or window focus was lost. |
5726 |
5727 |
// Bring up the 2D pause menu. |
// Bring up the 2D pause menu. |
5727 |
5728 |
PauseMenu( "pause2d.json" ); |
PauseMenu( "pause2d.json" ); |
5728 |
5729 |
}else if( recipesButtonDown ){ |
}else if( recipesButtonDown ){ |
File include/fg2/fg2.h changed (mode: 100755) (index acfc2b3..03e8250) |
... |
... |
bool mouseTrapped = false; |
315 |
315 |
float touchPressure = 0.0f; |
float touchPressure = 0.0f; |
316 |
316 |
bool touchStart = false; |
bool touchStart = false; |
317 |
317 |
|
|
|
318 |
|
bool hasFocus = true; |
|
319 |
|
|
318 |
320 |
SDL_Window* window = nullptr; |
SDL_Window* window = nullptr; |
319 |
321 |
SDL_GLContext ctx = 0; |
SDL_GLContext ctx = 0; |
320 |
322 |
SDL_GameController* controller = nullptr; |
SDL_GameController* controller = nullptr; |
|
... |
... |
void syncEvents(){ |
1977 |
1979 |
}else if( event.type == SDL_QUIT ){ |
}else if( event.type == SDL_QUIT ){ |
1978 |
1980 |
end(); |
end(); |
1979 |
1981 |
}else if( event.type == SDL_WINDOWEVENT |
}else if( event.type == SDL_WINDOWEVENT |
1980 |
|
&& event.window.windowID == windowID |
|
1981 |
|
&& event.window.event == SDL_WINDOWEVENT_SIZE_CHANGED ){ |
|
1982 |
|
#ifdef __EMSCRIPTEN__ |
|
1983 |
|
glViewport( 0, 0, canvasWidth, canvasHeight ); |
|
1984 |
|
#else |
|
1985 |
|
SDL_GL_GetDrawableSize( window, &sdlWidth, &sdlHeight ); |
|
1986 |
|
glViewport( 0, 0, sdlWidth, sdlHeight ); |
|
1987 |
|
#endif |
|
|
1982 |
|
&& event.window.windowID == windowID ){ |
|
1983 |
|
// Window events. |
|
1984 |
|
if( event.window.event == SDL_WINDOWEVENT_SIZE_CHANGED ){ |
|
1985 |
|
#ifdef __EMSCRIPTEN__ |
|
1986 |
|
glViewport( 0, 0, canvasWidth, canvasHeight ); |
|
1987 |
|
#else |
|
1988 |
|
SDL_GL_GetDrawableSize( window, &sdlWidth, &sdlHeight ); |
|
1989 |
|
glViewport( 0, 0, sdlWidth, sdlHeight ); |
|
1990 |
|
#endif |
|
1991 |
|
}else if( event.window.event == SDL_WINDOWEVENT_FOCUS_GAINED ){ |
|
1992 |
|
hasFocus = true; |
|
1993 |
|
}else if( event.window.event == SDL_WINDOWEVENT_FOCUS_LOST ){ |
|
1994 |
|
hasFocus = false; |
|
1995 |
|
} |
1988 |
1996 |
}else if( textInputEnabled && event.type == SDL_TEXTINPUT ){ |
}else if( textInputEnabled && event.type == SDL_TEXTINPUT ){ |
1989 |
1997 |
// Text input from keyboard or IME. |
// Text input from keyboard or IME. |
1990 |
1998 |
textInputString += event.text.text; |
textInputString += event.text.text; |
|
... |
... |
int spaceKey(){ |
2139 |
2147 |
return keystates[ SDL_SCANCODE_SPACE ]; |
return keystates[ SDL_SCANCODE_SPACE ]; |
2140 |
2148 |
} |
} |
2141 |
2149 |
|
|
|
2150 |
|
int tabKey(){ |
|
2151 |
|
return keystates[ SDL_SCANCODE_TAB ]; |
|
2152 |
|
} |
|
2153 |
|
|
2142 |
2154 |
int charKey( char key ){ |
int charKey( char key ){ |
2143 |
2155 |
if( key >= 'A' && key <= 'Z' ) key = key - 'A' + 'a'; |
if( key >= 'A' && key <= 'Z' ) key = key - 'A' + 'a'; |
2144 |
2156 |
if( key >= 'a' && key <= 'z' ){ |
if( key >= 'a' && key <= 'z' ){ |
File include/fg3/fg3.h changed (mode: 100644) (index c8101da..df1486c) |
... |
... |
bool mouseTrapped = false; |
495 |
495 |
float touchPressure = 0.0f; |
float touchPressure = 0.0f; |
496 |
496 |
bool touchStart = false; |
bool touchStart = false; |
497 |
497 |
|
|
|
498 |
|
// TODO: SFML window focus detection. |
|
499 |
|
bool hasFocus = true; |
|
500 |
|
|
498 |
501 |
#ifdef SDL_MAJOR_VERSION |
#ifdef SDL_MAJOR_VERSION |
499 |
502 |
SDL_Window* window; |
SDL_Window* window; |
500 |
503 |
SDL_GLContext ctx; |
SDL_GLContext ctx; |
|
... |
... |
void syncEvents(){ |
2153 |
2156 |
SDL_Quit(); |
SDL_Quit(); |
2154 |
2157 |
exit( 0 ); |
exit( 0 ); |
2155 |
2158 |
}else if( event.type == SDL_WINDOWEVENT |
}else if( event.type == SDL_WINDOWEVENT |
2156 |
|
&& event.window.windowID == windowID |
|
2157 |
|
&& event.window.event == SDL_WINDOWEVENT_SIZE_CHANGED ){ |
|
2158 |
|
int width, height; |
|
2159 |
|
SDL_GL_GetDrawableSize( window, &width, &height ); |
|
2160 |
|
glViewport( 0, 0, width, height ); |
|
|
2159 |
|
&& event.window.windowID == windowID ){ |
|
2160 |
|
// Window events. |
|
2161 |
|
if( event.window.event == SDL_WINDOWEVENT_SIZE_CHANGED ){ |
|
2162 |
|
int width, height; |
|
2163 |
|
SDL_GL_GetDrawableSize( window, &width, &height ); |
|
2164 |
|
glViewport( 0, 0, width, height ); |
|
2165 |
|
}else if( event.window.event == SDL_WINDOWEVENT_FOCUS_GAINED ){ |
|
2166 |
|
hasFocus = true; |
|
2167 |
|
}else if( event.window.event == SDL_WINDOWEVENT_FOCUS_LOST ){ |
|
2168 |
|
hasFocus = false; |
|
2169 |
|
} |
2161 |
2170 |
}else if( textInputEnabled && event.type == SDL_TEXTINPUT ){ |
}else if( textInputEnabled && event.type == SDL_TEXTINPUT ){ |
2162 |
2171 |
// Text input from keyboard or IME. |
// Text input from keyboard or IME. |
2163 |
2172 |
textInputString += event.text.text; |
textInputString += event.text.text; |
|
... |
... |
int spaceKey(){ |
2256 |
2265 |
return keystates[ SDL_SCANCODE_SPACE ]; |
return keystates[ SDL_SCANCODE_SPACE ]; |
2257 |
2266 |
} |
} |
2258 |
2267 |
|
|
|
2268 |
|
int tabKey(){ |
|
2269 |
|
return keystates[ SDL_SCANCODE_TAB ]; |
|
2270 |
|
} |
|
2271 |
|
|
2259 |
2272 |
int charKey( char key ){ |
int charKey( char key ){ |
2260 |
2273 |
if( key >= 'A' && key <= 'Z' ) key = key - 'A' + 'a'; |
if( key >= 'A' && key <= 'Z' ) key = key - 'A' + 'a'; |
2261 |
2274 |
if( key >= 'a' && key <= 'z' ){ |
if( key >= 'a' && key <= 'z' ){ |
|
... |
... |
int spaceKey(){ |
2506 |
2519 |
return ( window.hasFocus() && sf::Keyboard::isKeyPressed( sf::Keyboard::Space ) ) ? 1 : 0; |
return ( window.hasFocus() && sf::Keyboard::isKeyPressed( sf::Keyboard::Space ) ) ? 1 : 0; |
2507 |
2520 |
} |
} |
2508 |
2521 |
|
|
|
2522 |
|
int tabKey(){ |
|
2523 |
|
return ( window.hasFocus() && sf::Keyboard::isKeyPressed( sf::Keyboard::Tab ) ) ? 1 : 0; |
|
2524 |
|
} |
|
2525 |
|
|
2509 |
2526 |
int charKey( char key ){ |
int charKey( char key ){ |
2510 |
2527 |
if( window.hasFocus() ){ |
if( window.hasFocus() ){ |
2511 |
2528 |
if( key >= 'A' && key <= 'Z' ) key = key - 'A' + 'a'; |
if( key >= 'A' && key <= 'Z' ) key = key - 'A' + 'a'; |