2016-05-09 14:42:20 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
2016-08-26 02:11:24 -04:00
|
|
|
* Copyright (C) 2016 Furrtek
|
2016-05-09 14:42:20 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-26 02:11:24 -04:00
|
|
|
#ifndef __UI_SOUNDBOARD_H__
|
|
|
|
#define __UI_SOUNDBOARD_H__
|
|
|
|
|
2016-05-09 14:42:20 -04:00
|
|
|
#include "ui.hpp"
|
|
|
|
#include "ui_widget.hpp"
|
|
|
|
#include "ui_font_fixed_8x16.hpp"
|
2016-08-26 02:11:24 -04:00
|
|
|
#include "baseband_api.hpp"
|
|
|
|
#include "ui_navigation.hpp"
|
2016-05-09 14:42:20 -04:00
|
|
|
#include "ui_receiver.hpp"
|
2016-08-26 02:11:24 -04:00
|
|
|
#include "message.hpp"
|
|
|
|
#include "file.hpp"
|
2016-05-09 14:42:20 -04:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
class SoundBoardView : public View {
|
|
|
|
public:
|
|
|
|
SoundBoardView(NavigationView& nav);
|
|
|
|
~SoundBoardView();
|
|
|
|
|
|
|
|
void focus() override;
|
|
|
|
|
2016-08-26 02:11:24 -04:00
|
|
|
std::string title() const override { return "Soundboard"; };
|
|
|
|
|
2016-05-09 14:42:20 -04:00
|
|
|
private:
|
2016-08-26 02:11:24 -04:00
|
|
|
enum tx_modes {
|
|
|
|
NORMAL = 0,
|
|
|
|
RANDOM
|
|
|
|
};
|
|
|
|
|
|
|
|
tx_modes tx_mode = NORMAL;
|
|
|
|
|
2016-05-09 14:42:20 -04:00
|
|
|
struct sound {
|
2016-08-26 03:54:17 -04:00
|
|
|
std::string filename = "";
|
|
|
|
std::string shortname = "";
|
|
|
|
bool sixteenbit = false;
|
|
|
|
uint32_t sample_rate = 0;
|
|
|
|
uint32_t size = 0;
|
|
|
|
uint32_t sample_duration = 0;
|
|
|
|
uint32_t ms_duration = 0;
|
2016-05-09 14:42:20 -04:00
|
|
|
};
|
|
|
|
|
2016-08-26 02:11:24 -04:00
|
|
|
uint32_t cnt;
|
|
|
|
uint32_t sample_duration;
|
|
|
|
uint8_t page = 0;
|
|
|
|
|
|
|
|
File file;
|
|
|
|
|
2016-09-23 06:20:36 -04:00
|
|
|
uint16_t lfsr_v = 0x1337;
|
2016-08-26 02:11:24 -04:00
|
|
|
|
|
|
|
sound sounds[100];
|
|
|
|
uint8_t max_sound;
|
|
|
|
uint8_t max_page;
|
|
|
|
|
|
|
|
int8_t audio_buffer[1024];
|
|
|
|
|
|
|
|
Style style_a {
|
|
|
|
.font = font::fixed_8x16,
|
|
|
|
.background = Color::black(),
|
|
|
|
.foreground = { 255, 51, 153 }
|
|
|
|
};
|
|
|
|
Style style_b {
|
|
|
|
.font = font::fixed_8x16,
|
|
|
|
.background = Color::black(),
|
|
|
|
.foreground = { 153, 204, 0 }
|
|
|
|
};
|
|
|
|
Style style_c {
|
|
|
|
.font = font::fixed_8x16,
|
|
|
|
.background = Color::black(),
|
|
|
|
.foreground = { 51, 204, 204 }
|
|
|
|
};
|
|
|
|
Style style_d {
|
|
|
|
.font = font::fixed_8x16,
|
|
|
|
.background = Color::black(),
|
|
|
|
.foreground = { 153, 102, 255 }
|
|
|
|
};
|
2016-05-09 14:42:20 -04:00
|
|
|
|
2016-08-26 02:11:24 -04:00
|
|
|
std::array<Button, 21> buttons;
|
|
|
|
const Style * styles[4] = { &style_a, &style_b, &style_c, &style_d };
|
2016-05-09 14:42:20 -04:00
|
|
|
|
|
|
|
void on_tuning_frequency_changed(rf::Frequency f);
|
|
|
|
|
2016-08-26 02:11:24 -04:00
|
|
|
void do_random();
|
|
|
|
void show_infos(uint16_t id);
|
|
|
|
void change_page(Button& button, const KeyEvent key);
|
|
|
|
void refresh_buttons(uint16_t id);
|
|
|
|
void play_sound(uint16_t id);
|
|
|
|
void prepare_audio();
|
|
|
|
uint16_t fb_to_uint16(const std::string& fb);
|
|
|
|
uint32_t fb_to_uint32(const std::string& fb);
|
|
|
|
|
|
|
|
Text text_duration {
|
|
|
|
{ 16, 236, 5 * 8, 16 }
|
2016-05-09 14:42:20 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
FrequencyField field_frequency {
|
|
|
|
{ 1 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
NumberField number_bw {
|
2016-09-23 11:34:50 -04:00
|
|
|
{ 13 * 8, 4 },
|
|
|
|
3,
|
|
|
|
{1, 150},
|
2016-08-26 02:11:24 -04:00
|
|
|
1,
|
2016-05-09 14:42:20 -04:00
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
2016-08-26 02:11:24 -04:00
|
|
|
Text text_kHz {
|
|
|
|
{ 16 * 8, 4, 3 * 8, 16 },
|
|
|
|
"kHz"
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_page {
|
|
|
|
{ 22 * 8, 4, 3 * 8, 16 },
|
|
|
|
"-/-"
|
2016-05-09 14:42:20 -04:00
|
|
|
};
|
|
|
|
|
2016-08-26 02:11:24 -04:00
|
|
|
ProgressBar pbar {
|
|
|
|
{ 72, 236, 150, 16 }
|
|
|
|
};
|
|
|
|
|
|
|
|
Checkbox check_loop {
|
|
|
|
{ 16, 274 },
|
|
|
|
4,
|
|
|
|
"Loop"
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_random {
|
|
|
|
{ 80, 270, 72, 32 },
|
|
|
|
"Random"
|
2016-05-09 14:42:20 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
Button button_exit {
|
2016-08-26 02:11:24 -04:00
|
|
|
{ 160, 270, 64, 32 },
|
2016-05-09 14:42:20 -04:00
|
|
|
"Exit"
|
|
|
|
};
|
2016-08-26 02:11:24 -04:00
|
|
|
|
|
|
|
MessageHandlerRegistration message_handler_fifo_signal {
|
|
|
|
Message::ID::FIFOSignal,
|
|
|
|
[this](const Message* const p) {
|
|
|
|
const auto message = static_cast<const FIFOSignalMessage*>(p);
|
|
|
|
if (message->signaltype == 1) {
|
|
|
|
this->prepare_audio();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-05-09 14:42:20 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
2016-08-26 02:11:24 -04:00
|
|
|
|
|
|
|
#endif/*__UI_SOUNDBOARD_H__*/
|