-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RB1/LRB: Track Speed adjustment, Sync Diff Speeds
- Loading branch information
Showing
19 changed files
with
159 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
#define TRACK_END_FRAME | ||
(1920) | ||
#define TRACK_PANEL_HANDLERS | ||
((enter | ||
{{{gamemode get track_panel} loaded_dir} set view_time_easy {/ {if_else $dx_sync_diff_speeds 1.2 2.4} $trackspeed}} | ||
{{{gamemode get track_panel} loaded_dir} set view_time_expert {/ 1.2 $trackspeed}} | ||
{game add_sink $this} | ||
{$this | ||
set_showing | ||
{if_else | ||
{'||' | ||
$skip_intro | ||
{gamemode get is_drum_trainer} | ||
{gamemode get is_practice}} | ||
{gamemode get show_track} | ||
FALSE}}) | ||
(exit | ||
{game remove_sink $this}) | ||
(unison_hit) | ||
(unison_miss) | ||
(set_track_out) | ||
(set_track_in) | ||
(animate_track | ||
($start $end $period $units)) | ||
(animate_track_out) | ||
(animate_track_out_fast) | ||
(animate_track_in_fast) | ||
(finish_load | ||
{$this set_showing FALSE} | ||
{$this set_track_out}) | ||
(intro_start | ||
{$this reset} | ||
{$this | ||
set_showing | ||
{gamemode get show_track}} | ||
{$this set_track_in}) | ||
(intro_skip | ||
{$this reset} | ||
{$this | ||
set_showing | ||
{gamemode get show_track}} | ||
{$this set_track_out} | ||
{$this play_intro}) | ||
(on_reset | ||
{beatmatch | ||
foreach_active_player | ||
$m | ||
{$m on_new_track} | ||
{{$m track} | ||
init | ||
{$m track}}} | ||
{{$this loaded_dir} | ||
reset}) | ||
(on_extend | ||
{$this play_intro} | ||
{if | ||
{&& | ||
{exists gamemode} | ||
{gamemode get play_track_intro_sfx}} | ||
{synth play track_beg.cue}})) | ||
{new | ||
TrackPanel | ||
coop_track_panel | ||
(file ../track/trackpanel.milo) | ||
TRACK_PANEL_HANDLERS} | ||
{new | ||
TrackPanel | ||
h2h_track_panel | ||
(file | ||
{if_else | ||
{== | ||
{{game get_participant_config 0} | ||
get_track_sym} | ||
vocals} | ||
../track/trackpanel_h2h_vocals.milo | ||
../track/trackpanel_h2h.milo}) | ||
TRACK_PANEL_HANDLERS} | ||
{func | ||
get_track_panel | ||
{gamemode get track_panel}} | ||
{set | ||
$playback_file | ||
""} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
taskkill /IM rpcs3.exe /F |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
|
||
{set $dx_vsync TRUE} | ||
|
||
{set $trackspeed 1.0} | ||
|
||
INIT_DTA_READER | ||
|
||
{rnd set_sync $set_sync} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
taskkill /IM rpcs3.exe /F |