MCPcopy Create free account
hub / github.com/BambooTracker/BambooTracker / Module

Method Module

BambooTracker/module/module.cpp:31–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29#include "utils.hpp"
30
31Module::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
50size_t Module::getSongCount() const
51{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected