List of commits:
Subject Hash Author Date (UTC)
Right joystick moves mouse f59369b8be29e9910ef3e5e807495b46a6403c19 mse 2022-03-06 09:50:35
Add CLEARSCREEN command 57f55faa0fec4c558e8c9a7942cb0f47ddca07d7 mse 2022-03-01 09:35:11
Tint rain ambient color & bump version to v0.7.8 56888b00706faddf9aea8a1930ee784b535c50bf mse 2022-01-31 03:02:45
Add controlKey function 6997d5afe5971694fe0222917f8125dd44b23aa3 mse 2022-01-21 17:23:00
Start CSL function library 4f2a3417450dc7389548cb39e245939c17f03fe9 mse 2021-12-28 19:16:57
Fix non-owning reference bug 65e4d1a89c656acbaced0923dd5f64fd8908b025 mse 2021-12-28 18:45:37
Translate 'Get closer' 86563edde1ef9fd574382b772b34ee78636af82b mse 2021-12-18 16:06:58
Bump version to v0.7.7 e1e9703ff5eec4b0003082052f9035a46a82767a mse 2021-12-18 04:23:49
Add item translation system & change trading text de19b57c624f0317b4fe57086eff3e57f16e3361 mse 2021-12-17 22:32:45
Fix fg3 depth buffer format 65eef1b171eb937c6c213f7af1f1206053183832 mse 2021-12-16 00:57:55
Upgrade fg3 depth precision 153ff3855ec6f47b18eef4b262e42e4c4ccee90b mse 2021-12-15 16:20:26
Translate confec_select and confec_name to Greek 285a98c703de8afd92129cd08147562573785a29 mse 2021-12-15 01:51:04
Update game controller DB 1bc318197ae0f77693da7b7b4f754d7c89f800f6 mse 2021-12-14 14:22:51
Bump version to v0.7.6 53d47f1b30d2e87a4b72456220b813848af22ba1 mse 2021-12-14 14:03:20
Bump version to v0.7.5 97863be956f3af1cd5fb76fdc304d69a343289fc mse 2021-12-12 05:40:46
Update fg2/fg3 lighting functionality d46bc128f5d2ff38193c26d1465ef6f33a83f7bb mse 2021-12-12 05:20:39
Support function calls from Talk::go d20c5a67477446ba3676d9a47610c3fa03e185b9 mse 2021-12-09 08:42:57
Clear minimap background 644696f99298c8ed0fd0b5544cefcf15074ac23e mse 2021-12-08 15:42:53
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
Commit f59369b8be29e9910ef3e5e807495b46a6403c19 - Right joystick moves mouse
Author: mse
Author date (UTC): 2022-03-06 09:50
Committer name: mse
Committer date (UTC): 2022-03-06 09:50
Parent(s): 57f55faa0fec4c558e8c9a7942cb0f47ddca07d7
Signer:
Signing key:
Signing status: N
Tree: ca78b5d1e1f88238361e04e0519229669a2e4167
File Lines added Lines deleted
confec.cpp 14 6
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;
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