portapack-mayhem/firmware/application/ui_xylos.hpp
2016-05-09 20:42:20 +02:00

328 lines
5.8 KiB
C++

/*
* 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.
*/
#include "ui.hpp"
#include "ui_widget.hpp"
#include "ui_painter.hpp"
#include "ui_menu.hpp"
#include "ui_navigation.hpp"
#include "ui_font_fixed_8x16.hpp"
#include "clock_manager.hpp"
#include "message.hpp"
#include "rf_path.hpp"
#include "max2837.hpp"
#include "volume.hpp"
#include "transmitter_model.hpp"
#include "receiver_model.hpp"
namespace ui {
#define XYLOS_VOICE_ZERO 0
#define XYLOS_VOICE_HEADER 16
#define XYLOS_VOICE_RELAYS 21
#define XYLOS_VOICE_TRAILER 25
class XylosRXView : public View {
public:
XylosRXView(NavigationView& nav);
~XylosRXView();
void talk();
void on_show() override;
void focus() override;
Text text_dbg {
{ 5 * 8, 14 * 16, 20 * 8, 16 },
"--------------------"
};
void do_something(void *p);
private:
uint8_t p_idx;
const rf::Frequency xylos_freqs[7] = { 31325000, 31387500, 31437500, 31475000, 31687500, 31975000, 88000000 };
uint8_t xylos_voice_phrase[32] = { 0xFF };
const char * xylos_voice_filenames[26] = { "zero.wav",
"one.wav",
"two.wav",
"three.wav",
"four.wav",
"five.wav",
"six.wav",
"seven.wav",
"eight.wav",
"nine.wav",
"a.wav",
"b.wav",
"c.wav",
"d.wav",
"e.wav",
"f.wav",
"header.wav",
"city.wav",
"family.wav",
"subfamily.wav",
"address.wav",
"relays.wav",
"ignored.wav",
"off.wav",
"on.wav",
"trailer.wav"
};
char ccir_received[21];
Text text_title {
{ 1 * 8, 1 * 16, 11, 16 },
"BH Xylos RX"
};
Text text_city {
{ 4 * 8, 3 * 16, 11 * 8, 16 },
"Code ville:"
};
NumberField city_code {
{ 16 * 8, 3 * 16 },
2,
{ 0, 99 },
1,
' '
};
Text text_freq {
{ 5 * 8, 9 * 16, 10 * 8, 16 },
"Frequence:"
};
OptionsField options_freq {
{ 16 * 8, 9 * 16 },
7,
{
{ "31.3250", 0 },
{ "31.3875", 1 },
{ "31.4375", 2 },
{ "31.4750", 3 },
{ "31.6875", 4 },
{ "31.9750", 5 },
{ "TEST 88", 6 }
}
};
Button button_start {
{ 2 * 8, 16 * 16, 64, 32 },
"START"
};
Button button_exit {
{ 21 * 8, 16 * 16, 64, 32 },
"Exit"
};
};
class XylosView : public View {
public:
XylosView(NavigationView& nav);
~XylosView();
void journuit();
void talk();
void upd_message();
void focus() override;
void paint(Painter& painter) override;
private:
bool txing = false;
const rf::Frequency xylos_freqs[7] = { 31325000, 31387500, 31437500, 31475000, 31687500, 31975000, 88000000 };
char ccirmessage[21];
char ccir_received[21];
Text text_title {
{ 8, 8, 11, 16 },
"BH Xylos TX"
};
Button button_txtest {
{ 180, 8, 40, 24 },
"TEST"
};
Text text_header {
{ 8 * 8, 2 * 16, 7 * 8, 16 },
"Header:"
};
NumberField header_code_a {
{ 16 * 8, 2 * 16 },
2,
{ 0, 99 },
1,
'0'
};
NumberField header_code_b {
{ 18 * 8, 2 * 16 },
2,
{ 0, 99 },
1,
'0'
};
Text text_city {
{ 4 * 8, 3 * 16, 11 * 8, 16 },
"Code ville:"
};
NumberField city_code {
{ 16 * 8, 3 * 16 },
2,
{ 0, 99 },
1,
' '
};
Text text_family {
{ 7 * 8, 4 * 16, 8 * 8, 16 },
"Famille:"
};
NumberField family_code {
{ 16 * 8, 4 * 16 },
2,
{ 0, 9 },
1,
' '
};
Text text_subfamily {
{ 2 * 8, 5 * 16 + 4, 13 * 8, 16 },
"Sous-famille:"
};
NumberField subfamily_code {
{ 16 * 8, 5 * 16 + 4 },
2,
{ 0, 9 },
1,
' '
};
Checkbox checkbox_wcsubfamily {
{ 20 * 8, 5 * 16},
6,
"Toutes"
};
Text text_receiver {
{ 2 * 8, 7 * 16 + 6, 13 * 8, 16 },
"ID recepteur:"
};
NumberField receiver_code {
{ 16 * 8, 7 * 16 + 6 },
2,
{ 0, 99 },
1,
' '
};
Checkbox checkbox_wcid {
{ 20 * 8, 7 * 16 + 4},
4,
"Tous"
};
Text text_freq {
{ 5 * 8, 9 * 16, 10 * 8, 16 },
"Frequence:"
};
OptionsField options_freq {
{ 16 * 8, 9 * 16 + 4},
7,
{
{ "31.3250", 0 },
{ "31.3875", 1 },
{ "31.4375", 2 },
{ "31.4750", 3 },
{ "31.6875", 4 },
{ "31.9750", 5 },
{ "TEST 88", 6 }
}
};
Text text_ra {
{ 12, 11 * 16, 8 * 8, 16 },
"Relais 1"
};
OptionsField options_ra {
{ 16, 12 * 16 },
3,
{
{ "Ignorer", 0 },
{ " OFF ", 1 },
{ " ON ", 2 }
}
};
Text text_rb {
{ 88, 11 * 16, 8 * 8, 16 },
"Relais 2"
};
OptionsField options_rb {
{ 92, 12 * 16 },
3,
{
{ "Ignorer", 0 },
{ " OFF ", 1 },
{ " ON ", 2 }
}
};
Text text_rc {
{ 164, 11 * 16, 8 * 8, 16 },
"Relais 3"
};
OptionsField options_rc {
{ 168, 12 * 16 },
3,
{
{ "Ignorer", 0 },
{ " OFF ", 1 },
{ " ON ", 2 }
}
};
Text text_progress {
{ 5 * 8, 13 * 16, 20 * 8, 16 },
" "
};
Text text_debug {
{ 5 * 8, 14 * 16, 20 * 8, 16 },
"--------------------"
};
Button button_transmit {
{ 2 * 8, 16 * 16, 64, 32 },
"START"
};
Checkbox checkbox_cligno {
{ 96, 16 * 16 + 4},
3,
"J/N"
};
Button button_exit {
{ 21 * 8, 16 * 16, 64, 32 },
"Exit"
};
};
} /* namespace ui */