Skip to content

Commit

Permalink
gdrb ps3
Browse files Browse the repository at this point in the history
  • Loading branch information
lunalawl committed May 28, 2024
1 parent 9415360 commit 7556b7c
Show file tree
Hide file tree
Showing 9 changed files with 976 additions and 26 deletions.
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Small patches to vanilla RB games that add small quality-of-life improvements
- Faster boot time
- Faster scrolling
- 1ms calibration increment
- Additional practice speeds
- SELECT button restarts current practice section

### RB1:

Expand All @@ -21,8 +23,6 @@ Small patches to vanilla RB games that add small quality-of-life improvements
- Black Background
- Performance Mode
- Autoplay (disables saving, online)
- Additional practice speeds
- SELECT button restarts current practice section
- Vocal practice mode
- Video Overscan enabled by default on RPCS3

Expand All @@ -33,6 +33,7 @@ Small patches to vanilla RB games that add small quality-of-life improvements
### GDRB:

- 60FPS venues on RPCS3
- Video Overscan enabled by default

### LRB:

Expand All @@ -43,8 +44,6 @@ Small patches to vanilla RB games that add small quality-of-life improvements
- All prefabs available
- All Rock Shop items unlocked
- Holiday DLC minifigures
- Additional practice speeds
- SELECT button restarts current practice section
- Vocal practice mode
- Compatible with the PS3 EU 1.0 debug build via patchcreator

Expand All @@ -53,12 +52,10 @@ Small patches to vanilla RB games that add small quality-of-life improvements
# 📥 Downloads

### 📥 [RB1 Patch (Xbox)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/RB1-Patch-Xbox.zip) 📥 [RB1 Patch (PS3)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/RB1-Patch-PS3.zip) *RPCS3 only!
### 📥 [TBRB Patch (Xbox)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/TBRB-Patch-Xbox.zip)
### 📥 [GDRB Patch (Xbox)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/GDRB-Patch-Xbox.zip)
### 📥 [TBRB Patch (Xbox)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/TBRB-Patch-Xbox.zip) (ps3 coming soon)
### 📥 [GDRB Patch (Xbox)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/GDRB-Patch-Xbox.zip) 📥 [GDRB Patch (PS3)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/GDRB-Patch-PS3.zip)
### 📥 [LRB Patch (Xbox)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/LRB-Patch-Xbox.zip) 📥 [LRB Patch (PS3)](https://nightly.link/hmxmilohax/rb-patches/workflows/build/main/LRB-Patch-PS3.zip)

</br>

> These install exactly the same as the *Deluxe* mods, as usual make sure you back up each game's `default.xex`
>
> PS3 versions coming soon
> These install exactly the same as the *Deluxe* mods, as usual make sure you back up each game's `default.xex`
15 changes: 15 additions & 0 deletions gdrb/_ark/dx/dx_init.dta
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
;ps3 hardware detection
#ifdef HX_PS3
{if {file_exists "GD:/dev_hdd0/game/NPIA00025/USRDIR/EBOOT.BIN"} ; used for hw detection, NPIA00025 is the playstation store
{set $dx_ps3hw TRUE}
}
{unless $dx_ps3hw
{if {file_exists "GD:/dev_hdd0/game/BLES80608/USRDIR/COLOR.INI"} ; ps3 hw detection fallback, BLES80608 is multiman
{set $dx_ps3hw TRUE}
}
}
#endif

;#ifdef HX_PS3 {unless $dx_ps3hw {rnd set_sync 0}} #endif

;{if {file_exists #ifdef HX_XBOX "GAME:/config.dta" #endif #ifdef HX_PS3 "GD:/dev_hdd0/game/BLUS30382/USRDIR/gdrb_config.dta" #endif} INIT_DTA_READER}
14 changes: 2 additions & 12 deletions gdrb/_ark/ui/init.dta
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
#include options/options_vocal.dta
#include options/options_console.dta
#include options/options_global.dta
#include ../dx/dx_init.dta

#include options/manage_data.dta
#include practice/training.dta
#include saveload.dta
Expand All @@ -43,16 +45,4 @@
#endif
{platform_mgr set_notify_ui_location kOSNotifyBottomCenter}
{set $saveload_skip_upload FALSE}
#endif

;ps3 hardware detection
#ifdef HX_PS3
{if {file_exists "GD:/dev_hdd0/game/NPIA00025/USRDIR/EBOOT.BIN"} ; used for hw detection, NPIA00025 is the playstation store
{set $dx_ps3hw TRUE}
}
{unless $dx_ps3hw
{if {file_exists "GD:/dev_hdd0/game/BLES80608/USRDIR/COLOR.INI"} ; ps3 hw detection fallback, BLES80608 is multiman
{set $dx_ps3hw TRUE}
}
}
#endif
Loading

0 comments on commit 7556b7c

Please sign in to comment.