portapack-mayhem/firmware/application/ui_numbers.hpp

170 lines
3.8 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2016 Furrtek
*
* This file is part of PortaPack.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef __UI_NUMBERS_H__
#define __UI_NUMBERS_H__
#include "ui.hpp"
#include "ui_widget.hpp"
#include "ui_receiver.hpp"
#include "ui_navigation.hpp"
#include "ui_font_fixed_8x16.hpp"
#include "rtc_time.hpp"
#include "clock_manager.hpp"
#include "baseband_api.hpp"
2016-12-07 19:49:42 +00:00
#include "utility.hpp"
#include "message.hpp"
#include "file.hpp"
#include "io_wave.hpp"
namespace ui {
class NumbersStationView : public View {
public:
NumbersStationView(NavigationView& nav);
~NumbersStationView();
void focus() override;
std::string title() const override { return "Numbers station"; };
private:
NavigationView& nav_;
// Sequencing state machine
enum segments {
IDLE = 0,
ANNOUNCE,
MESSAGE,
SIGNOFF
};
Style style_red {
.font = font::fixed_8x16,
2016-12-09 01:35:50 +00:00
.background = Color::black(),
.foreground = Color::red()
};
struct voice_t {
std::string dir;
bool accent;
bool announce;
};
segments segment { IDLE };
bool armed { false };
bool file_error { false };
std::vector<voice_t> voices;
const std::vector<std::string> file_names = {
{ "0" },
{ "1" },
{ "2" },
{ "3" },
{ "4" },
{ "5" },
{ "6" },
{ "7" },
{ "8" },
{ "9" },
{ "announce" }
};
2016-12-07 19:49:42 +00:00
// const uint8_t month_table[12] = { 0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4 };
// const char * day_of_week[7] = { "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" };
std::unique_ptr<WAVFileReader> reader { };
2016-12-07 19:49:42 +00:00
uint8_t code_index, announce_loop;
uint32_t sample_counter;
uint32_t sample_duration;
int8_t audio_buffer[1024];
uint32_t pause = 0;
bool armed_blink { false };
SignalToken signal_token_tick_second { };
2016-12-07 19:49:42 +00:00
void on_voice_changed(size_t index);
2016-12-07 19:49:42 +00:00
void on_tick_second();
void on_tuning_frequency_changed(rf::Frequency f);
void prepare_audio();
void start_tx();
// Schedule: save on sd card
// For each day of the week, max 8 messages ?
// For each message: Normal, accent. Can chose accent on first or last digit
// Prelude with number of repeats
// Message 1 with number of repeats
// Interlude ?
// Message 2 with number of repeats
// End
// Frequency list and sequence
Labels labels {
{ { 2 * 8, 5 * 8 }, "Voice: Flags:", Color::light_grey() },
{ { 1 * 8, 8 * 8 }, "Code:", Color::light_grey() }
};
OptionsField options_voices {
{ 8 * 8, 1 * 8 },
4,
{ }
};
Text text_voice_flags {
{ 19 * 8, 1 * 8, 2 * 8, 16 },
""
2016-12-07 19:49:42 +00:00
};
SymField symfield_code {
{ 1 * 8, 10 * 8 },
2016-12-07 19:49:42 +00:00
25,
SymField::SYMFIELD_DEF
};
2016-12-07 19:49:42 +00:00
Checkbox check_armed {
{ 2 * 8, 13 * 16 },
5,
"Armed"
};
/*Button button_tx_now {
2016-12-07 19:49:42 +00:00
{ 18 * 8, 13 * 16, 10 * 8, 32 },
"TX now"
};*/
Button button_exit {
{ 21 * 8, 16 * 16, 64, 32 },
"Exit"
};
MessageHandlerRegistration message_handler_fifo_signal {
Message::ID::RequestSignal,
[this](const Message* const p) {
const auto message = static_cast<const RequestSignalMessage*>(p);
if (message->signal == RequestSignalMessage::Signal::FillRequest) {
this->prepare_audio();
}
}
};
};
} /* namespace ui */
#endif/*__UI_NUMBERS_H__*/