Skip to content

Commit

Permalink
metamemes and more
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 10, 2020
1 parent a5af715 commit 1578673
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions src/Etterna/Globals/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,24 +390,23 @@ Calc::CalcMain(const vector<NoteInfo>& NoteInfo,
float music_rate,
float score_goal)
{
// in flux
float grindscaler =
CalcClamp(
0.93f +
(0.07f * ((NoteInfo.back().rowTime / music_rate) - 30.f) / 30.f),
0.93f,
0.95f +
(0.05f * ((NoteInfo.back().rowTime / music_rate) - 30.f) / 30.f),
0.95f,
1.f) *
CalcClamp(
0.873f +
(0.13f * ((NoteInfo.back().rowTime / music_rate) - 15.f) / 15.f),
0.87f,
0.9f +
(0.1f * ((NoteInfo.back().rowTime / music_rate) - 15.f) / 15.f),
0.9f,
1.f);

float shortstamdownscaler = CalcClamp(
0.9f + (0.1f * ((NoteInfo.back().rowTime / music_rate) - 150.f) / 150.f),
0.9f,
1.f);

float jprop = chord_proportion(NoteInfo, 2);
float hprop = chord_proportion(NoteInfo, 3);
float qprop = chord_proportion(NoteInfo, 4);
float cprop = jprop + hprop + qprop;

static const int fo_rizzy = 1;
vector<vector<float>> the_hizzle_dizzles(fo_rizzy);
Expand All @@ -419,8 +418,10 @@ Calc::CalcMain(const vector<NoteInfo>& NoteInfo,
NoteInfo, music_rate, 0.2f * WHAT_IS_EVEN_HAPPEN_THE_BOMB);

// if we exceed max_nps_for_single_interval during processing
if (!continue_calc)
if (!continue_calc) {
std::cout << "skipping junk file" << std::endl;
return gertrude_the_all_max_output;
}

TotalMaxPoints();

Expand Down

0 comments on commit 1578673

Please sign in to comment.