mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
4e8980e5d8
Shaved off a few kBs by using the Labels widget
192 lines
4.2 KiB
C++
192 lines
4.2 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_navigation.hpp"
|
|
#include "ui_font_fixed_8x16.hpp"
|
|
#include "ui_receiver.hpp"
|
|
#include "ui_transmitter.hpp"
|
|
#include "encoders.hpp"
|
|
#include "message.hpp"
|
|
#include "transmitter_model.hpp"
|
|
|
|
using namespace encoders;
|
|
|
|
namespace ui {
|
|
|
|
class EncodersView : public View {
|
|
public:
|
|
EncodersView(NavigationView& nav);
|
|
~EncodersView();
|
|
|
|
EncodersView(const EncodersView&) = delete;
|
|
EncodersView(EncodersView&&) = delete;
|
|
EncodersView& operator=(const EncodersView&) = delete;
|
|
EncodersView& operator=(EncodersView&&) = delete;
|
|
|
|
void focus() override;
|
|
void on_show() override;
|
|
|
|
std::string title() const override { return "Encoders TX"; };
|
|
|
|
private:
|
|
void on_tuning_frequency_changed(rf::Frequency f);
|
|
|
|
enum tx_modes {
|
|
IDLE = 0,
|
|
SINGLE,
|
|
SCAN
|
|
};
|
|
|
|
uint8_t enc_type = 0;
|
|
const encoder_def_t * encoder_def { };
|
|
tx_modes tx_mode = IDLE;
|
|
//bool abort_scan = false;
|
|
//uint8_t scan_count;
|
|
//double scan_progress;
|
|
//unsigned int scan_index;
|
|
std::string debug_text = "0";
|
|
uint8_t repeat_index { 0 };
|
|
int8_t waveform_buffer[512];
|
|
|
|
void draw_waveform();
|
|
void on_bitfield();
|
|
void on_type_change(size_t index);
|
|
void generate_frame();
|
|
void update_progress();
|
|
void start_tx(const bool scan);
|
|
void on_txdone(int n, const bool txdone);
|
|
|
|
const Style style_val {
|
|
.font = font::fixed_8x16,
|
|
.background = Color::black(),
|
|
.foreground = Color::green(),
|
|
};
|
|
const Style style_cancel {
|
|
.font = font::fixed_8x16,
|
|
.background = Color::black(),
|
|
.foreground = Color::red(),
|
|
};
|
|
|
|
const Style style_address {
|
|
.font = font::fixed_8x16,
|
|
.background = Color::black(),
|
|
.foreground = Color::red(),
|
|
};
|
|
const Style style_data {
|
|
.font = font::fixed_8x16,
|
|
.background = Color::black(),
|
|
.foreground = Color::blue(),
|
|
};
|
|
|
|
Labels labels {
|
|
{ { 1 * 8, 4 * 8 }, "Type:", Color::light_grey() },
|
|
{ { 16 * 8, 4 * 8 }, "Clk:", Color::light_grey() },
|
|
{ { 24 * 8, 4 * 8 }, "kHz", Color::light_grey() },
|
|
{ { 16 * 8, 6 * 8 }, "Bit:", Color::light_grey() },
|
|
{ { 25 * 8, 6 * 8 }, "us", Color::light_grey() },
|
|
{ { 15 * 8, 8 * 8 }, "Word:", Color::light_grey() },
|
|
{ { 26 * 8, 8 * 8 }, "us", Color::light_grey() },
|
|
{ { 2 * 8, 10 * 8 }, "Word:", Color::light_grey() },
|
|
{ { 1 * 8, 17 * 8 }, "Waveform:", Color::light_grey() }
|
|
};
|
|
|
|
OptionsField options_enctype { // Options are loaded at runtime
|
|
{ 6 * 8, 32 },
|
|
7,
|
|
{
|
|
}
|
|
};
|
|
|
|
NumberField numberfield_clk {
|
|
{ 21 * 8, 4 * 8 },
|
|
3,
|
|
{ 1, 500 },
|
|
1,
|
|
' '
|
|
};
|
|
|
|
NumberField numberfield_bitduration {
|
|
{ 21 * 8, 6 * 8 },
|
|
4,
|
|
{ 50, 9999 },
|
|
1,
|
|
' '
|
|
};
|
|
|
|
NumberField numberfield_wordduration {
|
|
{ 21 * 8, 8 * 8 },
|
|
5,
|
|
{ 300, 99999 },
|
|
100,
|
|
' '
|
|
};
|
|
|
|
SymField symfield_word {
|
|
{ 2 * 8, 12 * 8 },
|
|
20,
|
|
SymField::SYMFIELD_DEF
|
|
};
|
|
Text text_format {
|
|
{ 2 * 8, 14 * 8, 24 * 8, 16 },
|
|
""
|
|
};
|
|
|
|
//Text text_format_a; // DEBUG
|
|
//Text text_format_d; // DEBUG
|
|
|
|
Waveform waveform {
|
|
{ 0, 160, 240, 32 },
|
|
waveform_buffer,
|
|
0,
|
|
0,
|
|
true,
|
|
Color::yellow()
|
|
};
|
|
|
|
Text text_status {
|
|
{ 2 * 8, 13 * 16, 128, 16 },
|
|
"Ready"
|
|
};
|
|
|
|
ProgressBar progress {
|
|
{ 2 * 8, 13 * 16 + 20, 208, 16 }
|
|
};
|
|
|
|
TransmitterView tx_view {
|
|
16 * 16,
|
|
50000,
|
|
9
|
|
};
|
|
|
|
MessageHandlerRegistration message_handler_tx_done {
|
|
Message::ID::TXDone,
|
|
[this](const Message* const p) {
|
|
const auto message = *reinterpret_cast<const TXDoneMessage*>(p);
|
|
this->on_txdone(message.progress, message.done);
|
|
}
|
|
};
|
|
};
|
|
|
|
} /* namespace ui */
|