mse / RSOD (public) (License: CC0 and other licenses) (since 2025-03-01) (hash sha1)
Free software FPS engine
List of commits:
Subject Hash Author Date (UTC)
Add weapon switching via D-pad db14ce946f4c65ab6625875f00f82ee1b8052374 MSE 2024-09-15 20:10:20
Allow crouch to be turned off via playerCrouch flag 024d43d877ca16d21e0feeb50d70f82acd449335 MSE 2024-09-15 03:02:29
Add configurable third-person camera pitch constraints 9e2ebdd325515a5bc83cd49229cb099738fb9e0e MSE 2024-09-11 21:02:38
Add configurable thirdPersonCameraAutoRotateSpeed c3104421a4df91fbda573dadcce135f8016fa40e MSE 2024-09-11 19:27:17
Fix inventory display bug 8626c06403b025c6423ec249771598375791b6ca MSE 2024-09-02 23:38:01
Highlight agents and default MSAA to 2 f51dcb39a8abf3d2800d074dfc9606c1c8d486ec MSE 2024-08-27 03:46:04
Fix bad math e0ef61f3961a4d98608fb2c724cb631955ae1d82 MSE 2024-08-24 22:04:23
Smooth camera auto-rotation 0ddcd28b59e564e123a4984d26d2ec80a9f57ec7 MSE 2024-08-24 21:58:32
Allow free look in third-person a8b209cdd85ae914027ffd6c04990b75e9752578 MSE 2024-08-24 21:26:39
Auto-rotate third-person camera b9f034155274b8dc20b9f33d1fc39ce701017b0d MSE 2024-08-24 04:25:51
Use common math to rotate avatars 75e98c52899f17d8d511e733c1445f5eb69b738a MSE 2024-08-24 02:03:53
Correct minimap rotation in third-person 9bcf201c6b24b80b7eec2bb4b2ad296cd5d296ed MSE 2024-08-22 07:07:08
Rotate third-person agents independently of camera d4bcdb8ff8b47d6429117002a71881812c45a3dc MSE 2024-08-22 06:43:19
Remove browser launch from package-steam edb75b8fd4499e49f4a7893b0acf23bde9c8e5f9 MSE 2024-07-31 23:42:42
Work around a minimap regression acc3a99e8b96af34179824bcef7a11b0d539a499 MSE 2024-07-18 23:44:57
Check noautosave flag 185b4817614429cd43e8cdc1237fa5c9e635eff9 MSE 2024-07-12 01:04:06
Make MSAA a setting (default 0) e236f9370b87befa80f03118bd269ced22953868 MSE 2024-07-12 00:44:19
Use maxTurn for AI rotation speed b43198bfbc9a9cfe88caf6dabb40aaf55fa5e7b6 MSE 2024-07-05 17:34:02
Add -DNO_OPENGL3, which seems to help with building for Windows 3fc75eb3ce6186e4fe34a155b138ac6bfaea74e4 MSE 2024-07-03 17:32:43
Add sheen to water edge ecb869a7849857e06f83b3e58a7abc118badcf95 MSE 2024-07-02 23:33:16
Commit db14ce946f4c65ab6625875f00f82ee1b8052374 - Add weapon switching via D-pad
Author: MSE
Author date (UTC): 2024-09-15 20:10
Committer name: MSE
Committer date (UTC): 2024-09-15 20:10
Parent(s): 024d43d877ca16d21e0feeb50d70f82acd449335
Signer:
Signing key:
Signing status: N
Tree: 15fde22bf59a95e735cf613bbee7035ae62ad3b7
File Lines added Lines deleted
src/rsod.cpp 12 12
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;
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/RSOD

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

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

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