List of commits:
Subject Hash Author Date (UTC)
Pause game on focus loss 2357bfbdc13df8caa49da487ab2094803458aec5 mse 2021-12-08 15:32:58
Hide minimap during character select & text input 14baf3d18e3e3a1f012064e04386279d920b6c75 mse 2021-12-07 12:59:19
Add tileset mipmap support & bump version to 0.7.4 9b10dbc7ae66493b87c53feddc600a8dda514802 mse 2021-12-06 11:38:53
Change UV behavior 7817fbe285427dd2c71a8460cf9a6adc5b58628c mse 2021-12-06 02:46:32
Bump version to v0.7.3 d5ec7a787af02be5e4e89236b62f7c69326a7166 mse 2021-12-06 00:50:25
Add a minimap 3da6d1001bcd89a903cd761492eab1cc23dbd0d6 mse 2021-12-05 16:04:36
Fix special item increment bug 8e7425924c63f56351357e6690d25ee6ecf3048a mse 2021-12-04 06:41:02
Bump version to v0.7.2 a4ccb6ce137ec34ec5852d95f8bff545f8b4b85c mse 2021-12-02 11:41:27
Make interact button also place items 3f1f27d32e162fc9e0cbe5e420b0ec78ef705d15 mse 2021-12-01 13:33:37
Switch entity button to interact a409b707d3e704e4370702bdb77a2a9841e624d3 mse 2021-11-30 06:37:25
Translate Continue button to Greek & bump version to 0.7.1 5dfb837cb70a16a71dc9338e1126f1cd69ada1a2 mse 2021-11-29 09:22:04
Bump version to v0.7.0 e303b764c874b5e61bedc64b634f4ac80d5f27e5 mse 2021-11-28 07:48:29
Add CSL functions, syntax enhancements, OnPlayerEat, & remove init.json a484c33465821c194fe5d34cfef6716de198aaa6 mse 2021-11-27 04:24:46
Fix libs.cpp c736b9be42a871adc4827431961e8b769572c26b mse 2021-11-20 02:34:34
Fix tile seams ae09d59880997b3e1fd1cdf2083f83b3f0f73312 mse 2021-11-20 00:29:03
Make particle light follow sun angle ef944efffd223dd843a1471d6b651f5dc46d871b mse 2021-11-19 22:14:29
Work on particle light and bump version to v0.6.5 73b7b68133f7767f78c47492f693c5e9e965e214 mse 2021-11-19 08:04:32
Improve rim lighting and flatten floor gibs 4a7082e02eda370dba12bb44089777552859c5bd mse 2021-11-18 04:30:05
Change rim lighting to specular 937d99bee19b936fbf95927c5877a915c4128de1 mse 2021-11-18 03:49:41
Add sprite rim lighting eb9ade21b6253e050d6962c273187f090c20ff2a mse 2021-11-18 01:29:22
Commit 2357bfbdc13df8caa49da487ab2094803458aec5 - Pause game on focus loss
Author: mse
Author date (UTC): 2021-12-08 15:32
Committer name: mse
Committer date (UTC): 2021-12-08 15:32
Parent(s): 14baf3d18e3e3a1f012064e04386279d920b6c75
Signer:
Signing key:
Signing status: N
Tree: 9cab875562a00335217f2a7181cb5854db8dd1fd
File Lines added Lines deleted
confec.cpp 3 2
include/fg2/fg2.h 20 8
include/fg3/fg3.h 22 5
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';
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mse/ConfectionerEngine

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mse/ConfectionerEngine

Clone this repository using git:
git clone git://git.rocketgit.com/user/mse/ConfectionerEngine

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main