From 03b28f03c38b35bcc1bbd1ec28a7be17affd3d28 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sun, 5 Jan 2025 22:32:01 +0100 Subject: Automatically access click sound file --- config.h | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index bb3ab30..062989d 100644 --- a/config.h +++ b/config.h @@ -3,6 +3,10 @@ #include #include +#include +#include +#include + // Defaults static const int CLICK_NOTE = 37; static const int CLICK_CHANNEL = 4; @@ -15,11 +19,12 @@ const int pcm_latency_us = 100000; const int click_latency_frames = 10000; const int default_mode = 0; // 0 = note, 1 = clock, 2 = internal const int default_output = 1; // 0 = off, 1 = on +extern std::filesystem::path click_data_filename; class Config { public: - Config(); + Config(int argc, char** argv); ~Config(); // signals @@ -29,26 +34,32 @@ public: boost::signals2::signal signal_bpm; boost::signals2::signal signal_output; - int get_midi_channel(); + int get_midi_channel() const; void set_midi_channel(int channel); - int get_midi_note(); + int get_midi_note() const; void set_midi_note(int note); - int get_bpm(); + int get_bpm() const; void set_bpm(int bpm); - int get_mode(); + int get_mode() const; void set_mode(int mode); - int get_output(); + int get_output() const; void set_output(int output); void recover(); void persist(); + std::string get_argv(int i) const; + + std::filesystem::path get_click_data_filename() const; + private: - std::string get_config_filename(); + std::string get_config_filename() const; + + std::vector m_argv; int m_midi_channel; int m_midi_note; -- cgit v1.2.3