Skip to content

Commit

Permalink
mess around with tech tuning | 392
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Jun 12, 2020
1 parent 47bd711 commit a3e45b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Etterna/Globals/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static const float stam_prop =
// and chordstreams start lower
// stam is a special case and may use normalizers again
static const std::array<float, NUM_Skillset> basescalers = {
0.F, 0.97F, 0.92F, 0.83F, 0.94F, 0.95F, 0.83F, 1.F
0.F, 0.97F, 0.92F, 0.83F, 0.94F, 0.95F, 0.83F, 0.9F
};

void
Expand Down Expand Up @@ -1133,7 +1133,7 @@ MinaSDCalcDebug(const vector<NoteInfo>& NoteInfo,
}
}

int mina_calc_version = 391;
int mina_calc_version = 392;
auto
GetCalcVersion() -> int
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ struct RM_Sequencer

// may be unnecessary
float glunk =
CalcClamp(static_cast<float>(_rm.off_taps_sh) / 3.F, 0.1F, 1.F);
CalcClamp(static_cast<float>(_rm.off_taps_sh) / 4.F, 0.1F, 1.F);

float pule = (flool + 25.F) / static_cast<float>(_rm._len - 1);
float drool = ms_to_scaled_nps(pule);
Expand Down
2 changes: 1 addition & 1 deletion src/Etterna/Globals/MinaCalc/SequencedBaseDiffCalc.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ struct techyo
obliosis = scoliosis / poliosis;
}
obliosis = CalcClamp(obliosis, 1.f, 10.F);
float pewp = cv(std::vector<float>{ scoliosis, poliosis });
float pewp = fastsqrt(div_high_by_low(scoliosis, poliosis) - 1.F);

pewp /= obliosis;
float vertebrae = CalcClamp(
Expand Down

0 comments on commit a3e45b0

Please sign in to comment.