-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ac data mount, analyze music with radar on fly
- Loading branch information
Showing
10 changed files
with
468 additions
and
235 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
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,29 @@ | ||
#pragma once | ||
|
||
namespace iidx::analyze | ||
{ | ||
struct chart_analyze_data_t | ||
{ | ||
size_t note_count; | ||
float total_seconds; | ||
|
||
struct | ||
{ | ||
float min; | ||
float max; | ||
} bpm; | ||
|
||
struct | ||
{ | ||
float notes; | ||
float peak; | ||
float scratch; | ||
float soflan; | ||
float charge; | ||
float chord; | ||
} radar; | ||
}; | ||
|
||
int map_chart(int in); | ||
void analyze_chart(const std::vector<iidx::event_t>& chart, chart_analyze_data_t& result, bool calc_radar); | ||
} |
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
Oops, something went wrong.