Skip to content

Commit

Permalink
double ALL the points
Browse files Browse the repository at this point in the history
  • Loading branch information
muskit committed May 8, 2023
1 parent c90bc46 commit eb4a974
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Assets/Script/PlayMode/DrumsTrack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected override void StartTrack() {
kickFretInside.material.SetColor("_EmissionColor", commonTrack.FretColor(kickIndex) * 2);

// initialize scoring variables
ptsPerNote = proInst.Contains(player.chosenInstrument) ? 30 : 25;
ptsPerNote = proInst.Contains(player.chosenInstrument) ? 60 : 50;
starsKeeper = new(Chart, scoreKeeper,
player.chosenInstrument,
ptsPerNote);
Expand Down
4 changes: 2 additions & 2 deletions Assets/Script/PlayMode/FiveFretTrack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public class FiveFretTrack : AbstractTrack {
private int[] allowedChordGhosts = new int[] { -1, -1, -1, -1, -1 }; // -1 = not a chord; 0 = ghosted; 1 = ghost allowed

// https://www.reddit.com/r/Rockband/comments/51t3c0/exactly_how_many_points_are_sustains_worth/
private const double SUSTAIN_PTS_PER_BEAT = 12.0;
private const int PTS_PER_NOTE = 25;
private const double SUSTAIN_PTS_PER_BEAT = 25.0;
private const int PTS_PER_NOTE = 50;
private int noteCount = -1;
protected override void StartTrack() {
notePool.player = player;
Expand Down
2 changes: 1 addition & 1 deletion Assets/Script/PlayMode/MicPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private string EndPhraseName {
// easy, medium, hard, expert
// https://rockband.scorehero.com/forum/viewtopic.php?t=4545
// max harmony pts = 10% of main points per extra mic
private readonly int[] MAX_POINTS = { 200, 400, 800, 1000, 1000 };
private readonly int[] MAX_POINTS = { 400, 800, 1600, 2000, 2000 };
private StarScoreKeeper starsKeeper;
private int ptsPerPhrase; // pts per phrase, set depending on difficulty

Expand Down
4 changes: 2 additions & 2 deletions Assets/Script/PlayMode/RealGuitarTrack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class RealGuitarTrack : AbstractTrack {
private Queue<NoteInfo> expectedHits = new();
private List<NoteInfo> heldNotes = new();

private const int PTS_PER_NOTE = 60;
private const int SUSTAIN_PTS_PER_BEAT = 30;
private const int PTS_PER_NOTE = 120;
private const int SUSTAIN_PTS_PER_BEAT = 60;


protected override void StartTrack() {
Expand Down

0 comments on commit eb4a974

Please sign in to comment.