| 29 | #include "utils.hpp" |
| 30 | |
| 31 | Module::Module(const std::string& filePath, const std::string& title, |
| 32 | const std::string& author, const std::string& copyright, |
| 33 | const std::string& comment, unsigned int tickFreq) |
| 34 | : filePath_(filePath), |
| 35 | title_(title), |
| 36 | author_(author), |
| 37 | copyright_(copyright), |
| 38 | comment_(comment), |
| 39 | tickFreq_(tickFreq), |
| 40 | stepHl1Dist_(4), |
| 41 | stepHl2Dist_(16), |
| 42 | mixType_(MixerType::PC_9821_PC_9801_86), |
| 43 | customLevelFM_(0), |
| 44 | customLevelSSG_(0) |
| 45 | { |
| 46 | songs_.emplace_back(0); |
| 47 | addGroove(); |
| 48 | } |
| 49 | |
| 50 | size_t Module::getSongCount() const |
| 51 | { |
nothing calls this directly
no outgoing calls
no test coverage detected