portapack-mayhem/firmware/application/ui_navigation.cpp

559 lines
16 KiB
C++
Raw Normal View History

2015-07-08 15:39:24 +00:00
/*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
2016-07-30 03:27:28 +00:00
* Copyright (C) 2016 Furrtek
2015-07-08 15:39:24 +00: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.
*/
#include "ui_navigation.hpp"
#include "modules.h"
2015-07-08 15:39:24 +00:00
#include "portapack.hpp"
2016-01-31 08:34:24 +00:00
#include "event_m0.hpp"
#include "bmp_splash.hpp"
#include "bmp_modal_warning.hpp"
2015-07-08 15:39:24 +00:00
#include "ui_about.hpp"
#include "ui_adsbtx.hpp"
#include "ui_bht_tx.hpp"
2016-12-07 19:49:42 +00:00
#include "ui_closecall.hpp"
2017-02-15 03:05:38 +00:00
#include "ui_cw.hpp"
#include "ui_debug.hpp"
#include "ui_encoders.hpp"
#include "ui_freqman.hpp"
#include "ui_jammer.hpp"
#include "ui_lcr.hpp"
#include "ui_mictx.hpp"
#include "ui_morse.hpp"
#include "ui_numbers.hpp"
#include "ui_nuoptix.hpp"
#include "ui_playdead.hpp"
#include "ui_pocsag_tx.hpp"
#include "ui_rds.hpp"
#include "ui_sd_wipe.hpp"
#include "ui_setup.hpp"
#include "ui_soundboard.hpp"
2017-03-22 18:21:31 +00:00
#include "ui_sstvtx.hpp"
#include "ui_whipcalc.hpp"
#include "ui_whistle.hpp"
#include "analog_audio_app.hpp"
2016-01-31 08:34:24 +00:00
#include "ais_app.hpp"
#include "ert_app.hpp"
#include "tpms_app.hpp"
#include "pocsag_app.hpp"
2016-04-11 17:59:55 +00:00
#include "capture_app.hpp"
2017-01-10 19:45:40 +00:00
#include "replay_app.hpp"
2016-01-31 08:34:24 +00:00
#include "core_control.hpp"
#include "file.hpp"
#include "png_writer.hpp"
2015-07-08 15:39:24 +00:00
namespace ui {
/* SystemStatusView ******************************************************/
SystemStatusView::SystemStatusView() {
2017-01-30 01:09:00 +00:00
static constexpr Style style_systemstatus {
.font = font::fixed_8x16,
.background = Color::dark_grey(),
.foreground = Color::white(),
};
add_children({
2017-01-30 01:09:00 +00:00
&backdrop,
2016-01-31 08:34:24 +00:00
&button_back,
&title,
&button_stealth,
&button_textentry,
2016-02-19 05:35:46 +00:00
&button_camera,
2016-01-31 08:34:24 +00:00
&button_sleep,
&sd_card_status_view,
});
2017-01-30 01:09:00 +00:00
title.set_style(&style_systemstatus);
if (!portapack::persistent_memory::ui_config_textentry())
2017-02-03 08:21:12 +00:00
button_textentry.set_bitmap(&bitmap_icon_keyboard);
else
2017-02-03 08:21:12 +00:00
button_textentry.set_bitmap(&bitmap_icon_unistroke);
if (portapack::persistent_memory::stealth_mode())
button_stealth.set_foreground(ui::Color::green());
2016-01-31 08:34:24 +00:00
2017-01-30 01:09:00 +00:00
button_back.on_select = [this](ImageButton&){
if (this->on_back)
2016-01-31 08:34:24 +00:00
this->on_back();
};
button_stealth.on_select = [this](ImageButton&) {
this->on_stealth();
2016-01-31 08:34:24 +00:00
};
button_textentry.on_select = [this](ImageButton&) {
this->on_textentry();
};
2016-01-31 08:34:24 +00:00
2016-02-19 05:35:46 +00:00
button_camera.on_select = [this](ImageButton&) {
this->on_camera();
};
button_sleep.on_select = [this](ImageButton&) {
2016-01-31 08:34:24 +00:00
DisplaySleepMessage message;
EventDispatcher::send_message(message);
2016-01-31 08:34:24 +00:00
};
}
2016-02-07 18:33:15 +00:00
void SystemStatusView::set_back_enabled(bool new_value) {
2017-01-30 01:09:00 +00:00
button_back.set_foreground(new_value ? Color::white() : Color::dark_grey());
2016-02-07 18:33:15 +00:00
button_back.set_focusable(new_value);
2016-01-31 08:34:24 +00:00
}
void SystemStatusView::set_title(const std::string new_value) {
if( new_value.empty() ) {
title.set(default_title);
} else {
title.set(new_value);
}
2015-07-08 15:39:24 +00:00
}
void SystemStatusView::on_stealth() {
bool cfg;
cfg = portapack::persistent_memory::stealth_mode();
portapack::persistent_memory::set_stealth_mode(not cfg);
if (!cfg)
button_stealth.set_foreground(ui::Color::green());
else
button_stealth.set_foreground(ui::Color::light_grey());
button_stealth.set_dirty();
}
void SystemStatusView::on_textentry() {
uint8_t cfg;
cfg = portapack::persistent_memory::ui_config_textentry();
portapack::persistent_memory::set_config_textentry(cfg ^ 1);
if (!cfg)
2017-02-03 08:21:12 +00:00
button_textentry.set_bitmap(&bitmap_icon_unistroke);
else
2017-02-03 08:21:12 +00:00
button_textentry.set_bitmap(&bitmap_icon_keyboard);
}
2016-02-19 05:35:46 +00:00
void SystemStatusView::on_camera() {
auto path = next_filename_stem_matching_pattern(u"SCR_????");
if( path.empty() ) {
return;
}
PNGWriter png;
auto create_error = png.create(path.replace_extension(u".PNG"));
if( create_error.is_valid() ) {
return;
}
for(int i=0; i<320; i++) {
std::array<ColorRGB888, 240> row;
portapack::display.read_pixels({ 0, i, 240, 1 }, row);
png.write_scanline(row);
}
2016-02-19 05:35:46 +00:00
}
2015-07-08 15:39:24 +00:00
/* Navigation ************************************************************/
2016-01-31 08:34:24 +00:00
bool NavigationView::is_top() const {
return view_stack.size() == 1;
2015-07-08 15:39:24 +00:00
}
2016-01-31 08:34:24 +00:00
View* NavigationView::push_view(std::unique_ptr<View> new_view) {
free_view();
const auto p = new_view.get();
view_stack.emplace_back(std::move(new_view));
update_view();
return p;
2015-07-08 15:39:24 +00:00
}
void NavigationView::pop() {
if( view() == modal_view ) {
modal_view = nullptr;
}
2015-07-08 15:39:24 +00:00
// Can't pop last item from stack.
if( view_stack.size() > 1 ) {
2016-01-31 08:34:24 +00:00
free_view();
2015-07-08 15:39:24 +00:00
view_stack.pop_back();
2016-01-31 08:34:24 +00:00
update_view();
2015-07-08 15:39:24 +00:00
}
}
void NavigationView::pop_modal() {
if( view() == modal_view ) {
modal_view = nullptr;
}
// Pop modal view + underlying app view
if( view_stack.size() > 2 ) {
free_view();
view_stack.pop_back();
free_view();
view_stack.pop_back();
update_view();
}
}
void NavigationView::display_modal(
const std::string& title,
const std::string& message
) {
display_modal(title, message, INFO, nullptr);
}
void NavigationView::display_modal(
const std::string& title,
const std::string& message,
const modal_t type,
const std::function<void(bool)> on_choice
) {
/* If a modal view is already visible, don't display another */
if( !modal_view ) {
modal_view = push<ModalMessageView>(title, message, type, on_choice);
}
}
2016-01-31 08:34:24 +00:00
void NavigationView::free_view() {
remove_child(view());
2015-07-08 15:39:24 +00:00
}
2016-01-31 08:34:24 +00:00
void NavigationView::update_view() {
const auto new_view = view_stack.back().get();
2016-01-31 08:34:24 +00:00
add_child(new_view);
new_view->set_parent_rect({ {0, 0}, size() });
2016-01-31 08:34:24 +00:00
focus();
set_dirty();
2015-07-08 15:39:24 +00:00
2016-01-31 08:34:24 +00:00
if( on_view_changed ) {
on_view_changed(*new_view);
2015-07-08 15:39:24 +00:00
}
2016-01-31 08:34:24 +00:00
}
2015-07-08 15:39:24 +00:00
2016-01-31 08:34:24 +00:00
Widget* NavigationView::view() const {
return children_.empty() ? nullptr : children_[0];
2015-07-08 15:39:24 +00:00
}
void NavigationView::focus() {
if( view() ) {
view()->focus();
}
}
2016-05-09 18:42:20 +00:00
/* TranspondersMenuView **************************************************/
2016-01-31 08:34:24 +00:00
TranspondersMenuView::TranspondersMenuView(NavigationView& nav) {
2016-11-30 06:41:55 +00:00
add_items<4>({ {
2016-12-26 19:33:38 +00:00
{ "ADS-B: Planes", ui::Color::grey(), &bitmap_icon_adsb, [&nav](){ nav.push<NotImplementedView>(); }, },
{ "AIS: Boats", ui::Color::white(), &bitmap_icon_ais, [&nav](){ nav.push<AISAppView>(); } },
{ "ERT: Utility Meters", ui::Color::white(), &bitmap_icon_ert, [&nav](){ nav.push<ERTAppView>(); } },
{ "TPMS: Cars", ui::Color::white(), &bitmap_icon_tpms, [&nav](){ nav.push<TPMSAppView>(); } },
2016-01-31 08:34:24 +00:00
} });
on_left = [&nav](){ nav.pop(); };
2016-01-31 08:34:24 +00:00
}
/* ReceiverMenuView ******************************************************/
ReceiverMenuView::ReceiverMenuView(NavigationView& nav) {
add_items<6>({ {
2016-12-26 19:33:38 +00:00
// { "AFSK", ui::Color::grey(), nullptr, [&nav](){ nav.push<NotImplementedView>(); } }, // AFSKRXView
{ "Audio", ui::Color::green(), nullptr, [&nav](){ nav.push<AnalogAudioView>(); } },
{ "CCIR", ui::Color::grey(), nullptr, [&nav](){ nav.push<NotImplementedView>(); } },
{ "Nordic/BTLE", ui::Color::grey(), &bitmap_icon_nordic, [&nav](){ nav.push<NotImplementedView>(); } },
{ "POCSAG", ui::Color::cyan(), &bitmap_icon_pocsag, [&nav](){ nav.push<POCSAGAppView>(); } },
{ "SIGFOX", ui::Color::grey(), &bitmap_icon_fox, [&nav](){ nav.push<NotImplementedView>(); } }, // SIGFRXView
2016-12-26 19:33:38 +00:00
{ "Transponders", ui::Color::green(), nullptr, [&nav](){ nav.push<TranspondersMenuView>(); } },
2016-11-30 06:41:55 +00:00
} });
on_left = [&nav](){ nav.pop(); };
}
/* TransmitterCodedMenuView ******************************************************/
TransmitterCodedMenuView::TransmitterCodedMenuView(NavigationView& nav) {
add_items<8>({ {
2016-12-26 19:33:38 +00:00
{ "ADS-B Mode S", ui::Color::orange(),&bitmap_icon_adsb, [&nav](){ nav.push<ADSBTxView>(); } },
{ "BHT Xy/EP", ui::Color::yellow(),&bitmap_icon_bht, [&nav](){ nav.push<BHTView>(); } },
2017-02-15 03:05:38 +00:00
{ "Morse code", ui::Color::green(), &bitmap_icon_morse, [&nav](){ nav.push<MorseView>(); } },
2016-12-26 19:33:38 +00:00
{ "Nuoptix DTMF timecode", ui::Color::green(), &bitmap_icon_nuoptix, [&nav](){ nav.push<NuoptixView>(); } },
{ "OOK remote encoders", ui::Color::green(), &bitmap_icon_remote, [&nav](){ nav.push<EncodersView>(); } },
2017-02-15 03:05:38 +00:00
{ "POCSAG", ui::Color::green(), &bitmap_icon_pocsag, [&nav](){ nav.push<POCSAGTXView>(); } },
2016-12-26 19:33:38 +00:00
{ "RDS", ui::Color::green(), &bitmap_icon_rds, [&nav](){ nav.push<RDSView>(); } },
{ "TEDI/LCR AFSK", ui::Color::green(), &bitmap_icon_lcr, [&nav](){ nav.push<LCRView>(); } },
2016-11-30 06:41:55 +00:00
} });
on_left = [&nav](){ nav.pop(); };
}
/* TransmitterAudioMenuView ******************************************************/
TransmitterAudioMenuView::TransmitterAudioMenuView(NavigationView& nav) {
add_items<4>({ {
2016-12-26 19:33:38 +00:00
{ "Soundboard", ui::Color::green(), &bitmap_icon_soundboard, [&nav](){ nav.push<SoundBoardView>(); } },
2017-03-14 08:20:13 +00:00
{ "Numbers station", ui::Color::yellow(),&bitmap_icon_numbers, [&nav](){ nav.push<NumbersStationView>(); } },
{ "Microphone", ui::Color::green(), &bitmap_icon_microphone, [&nav](){ nav.push<MicTXView>(); } },
2017-03-14 08:20:13 +00:00
{ "Whistle", ui::Color::orange(),&bitmap_icon_whistle, [&nav](){ nav.push<WhistleView>(); } },
2016-01-31 08:34:24 +00:00
} });
on_left = [&nav](){ nav.pop(); };
2016-01-31 08:34:24 +00:00
}
/* UtilitiesView *****************************************************************/
UtilitiesView::UtilitiesView(NavigationView& nav) {
2017-02-15 03:05:38 +00:00
add_items<5>({ {
2017-03-14 08:20:13 +00:00
{ "Frequency manager", ui::Color::green(), nullptr, [&nav](){ nav.push<FreqManView>(); } },
{ "CW generator", ui::Color::green(), &bitmap_icon_cwgen, [&nav](){ nav.push<CWTXView>(); } },
{ "Whip antenna length", ui::Color::yellow(),nullptr, [&nav](){ nav.push<WhipCalcView>(); } },
{ "Notepad", ui::Color::grey(), nullptr, [&nav](){ nav.push<NotImplementedView>(); } },
{ "Wipe SD card", ui::Color::red(), nullptr, [&nav](){ nav.push<WipeSDView>(); } },
} });
on_left = [&nav](){ nav.pop(); };
}
2015-07-08 15:39:24 +00:00
/* SystemMenuView ********************************************************/
void SystemMenuView::hackrf_mode(NavigationView& nav) {
nav.push<ModalMessageView>("Confirm", "Switch to HackRF mode ?", YESNO,
[this](bool choice) {
if (choice) {
EventDispatcher::request_stop();
}
}
);
}
2015-07-08 15:39:24 +00:00
SystemMenuView::SystemMenuView(NavigationView& nav) {
add_items<13>({ {
{ "Play dead", ui::Color::red(), &bitmap_icon_playdead, [&nav](){ nav.push<PlayDeadView>(); } },
2017-02-03 08:21:12 +00:00
{ "Receivers", ui::Color::cyan(), &bitmap_icon_receivers, [&nav](){ nav.push<ReceiverMenuView>(); } },
{ "Capture", ui::Color::blue(), &bitmap_icon_capture, [&nav](){ nav.push<CaptureAppView>(); } },
{ "Replay", ui::Color::grey(), &bitmap_icon_replay, [&nav](){ nav.push<NotImplementedView>(); } }, // ReplayAppView
{ "Audio transmitters", ui::Color::green(), &bitmap_icon_audiotx, [&nav](){ nav.push<TransmitterAudioMenuView>(); } },
{ "Code transmitters", ui::Color::green(), &bitmap_icon_codetx, [&nav](){ nav.push<TransmitterCodedMenuView>(); } },
{ "SSTV transmitter", ui::Color::dark_green(), &bitmap_icon_sstv, [&nav](){ nav.push<SSTVTXView>(); } },
2017-03-22 18:21:31 +00:00
{ "Close Call", ui::Color::cyan(), &bitmap_icon_closecall, [&nav](){ nav.push<CloseCallView>(); } },
2016-12-26 19:33:38 +00:00
{ "Jammer", ui::Color::orange(),&bitmap_icon_jammer, [&nav](){ nav.push<JammerView>(); } },
{ "Utilities", ui::Color::purple(),&bitmap_icon_utilities, [&nav](){ nav.push<UtilitiesView>(); } },
{ "Setup", ui::Color::white(), &bitmap_icon_setup, [&nav](){ nav.push<SetupMenuView>(); } },
//{ "Debug", ui::Color::white(), nullptr, [&nav](){ nav.push<DebugMenuView>(); } },
2016-12-26 19:33:38 +00:00
{ "HackRF mode", ui::Color::white(), &bitmap_icon_hackrf, [this, &nav](){ hackrf_mode(nav); } },
{ "About", ui::Color::white(), nullptr, [&nav](){ nav.push<AboutView>(); } }
2015-07-08 15:39:24 +00:00
} });
set_highlighted(1); // Startup selection is "Receivers"
2015-07-08 15:39:24 +00:00
}
/* SystemView ************************************************************/
static constexpr ui::Style style_default {
.font = ui::font::fixed_8x16,
.background = ui::Color::black(),
.foreground = ui::Color::white()
2015-07-08 15:39:24 +00:00
};
SystemView::SystemView(
Context& context,
const Rect parent_rect
) : View { parent_rect },
context_(context)
2015-07-08 15:39:24 +00:00
{
2016-02-07 18:40:06 +00:00
set_style(&style_default);
2015-07-08 15:39:24 +00:00
constexpr ui::Dim status_view_height = 16;
2016-05-09 18:42:20 +00:00
2015-07-08 15:39:24 +00:00
add_child(&status_view);
status_view.set_parent_rect({
{ 0, 0 },
{ parent_rect.width(), status_view_height }
});
2016-01-31 08:34:24 +00:00
status_view.on_back = [this]() {
this->navigation_view.pop();
};
2015-07-08 15:39:24 +00:00
add_child(&navigation_view);
navigation_view.set_parent_rect({
{ 0, status_view_height },
{ parent_rect.width(), static_cast<ui::Dim>(parent_rect.height() - status_view_height) }
});
2016-01-31 08:34:24 +00:00
navigation_view.on_view_changed = [this](const View& new_view) {
2016-02-07 18:33:15 +00:00
this->status_view.set_back_enabled(!this->navigation_view.is_top());
2016-01-31 08:34:24 +00:00
this->status_view.set_title(new_view.title());
};
2015-07-08 15:39:24 +00:00
// portapack::persistent_memory::set_playdead_sequence(0x8D1);
// Initial view
/*if ((portapack::persistent_memory::playing_dead() == 0x5920C1DF) || // Enable code
(portapack::persistent_memory::ui_config() & 16)) { // Login option
navigation_view.push<PlayDeadView>();
} else {*/
if (portapack::persistent_memory::ui_config() & 1)
navigation_view.push<BMPView>();
else
navigation_view.push<SystemMenuView>();
//}
2015-07-08 15:39:24 +00:00
}
Context& SystemView::context() const {
return context_;
}
2016-02-05 16:40:14 +00:00
/* ***********************************************************************/
void BMPView::focus() {
button_done.focus();
}
BMPView::BMPView(NavigationView& nav) {
add_children({
2016-02-05 16:40:14 +00:00
&text_info,
&button_done
});
2016-02-05 16:40:14 +00:00
button_done.on_select = [this, &nav](Button&){
2016-02-05 16:40:14 +00:00
nav.pop();
2016-12-29 22:20:26 +00:00
nav.push<SystemMenuView>();
2016-02-05 16:40:14 +00:00
};
}
void BMPView::paint(Painter&) {
portapack::display.drawBMP({(240 - 185) / 2, 0}, splash_bmp, false);
2016-02-05 16:40:14 +00:00
}
2015-07-08 15:39:24 +00:00
/* NotImplementedView ****************************************************/
NotImplementedView::NotImplementedView(NavigationView& nav) {
button_done.on_select = [&nav](Button&){
nav.pop();
};
add_children({
2015-07-08 15:39:24 +00:00
&text_title,
&button_done,
});
2015-07-08 15:39:24 +00:00
}
void NotImplementedView::focus() {
button_done.focus();
}
/* ModalMessageView ******************************************************/
ModalMessageView::ModalMessageView(
NavigationView& nav,
const std::string& title,
const std::string& message,
const modal_t type,
const std::function<void(bool)> on_choice
) : title_ { title },
message_ { message },
type_ { type },
on_choice_ { on_choice }
{
if (type == INFO) {
add_child(&button_ok);
button_ok.on_select = [&nav](Button&){
nav.pop();
};
} else if (type == YESNO) {
add_children({
&button_yes,
&button_no
});
button_yes.on_select = [this, &nav](Button&){
if (on_choice_) on_choice_(true);
nav.pop();
};
button_no.on_select = [this, &nav](Button&){
if (on_choice_) on_choice_(false);
nav.pop();
};
} else if (type == YESCANCEL) {
add_children({
&button_yes,
&button_no
});
button_yes.on_select = [this, &nav](Button&){
if (on_choice_) on_choice_(true);
nav.pop();
};
button_no.on_select = [this, &nav](Button&){
//if (on_choice_) on_choice_(false);
nav.pop_modal();
};
} else { // ABORT
add_child(&button_ok);
button_ok.on_select = [this, &nav](Button&){
if (on_choice_) on_choice_(true);
nav.pop_modal();
};
}
}
void ModalMessageView::paint(Painter& painter) {
size_t pos, i = 0, start = 0;
portapack::display.drawBMP({ 100, 48 }, modal_warning_bmp, false);
// Terrible...
while ((pos = message_.find("\n", start)) != std::string::npos) {
painter.draw_string(
{ 1 * 8, (Coord)(120 + (i * 16)) },
style(),
message_.substr(start, pos - start)
);
i++;
start = pos + 1;
}
painter.draw_string(
{ 1 * 8, (Coord)(120 + (i * 16)) },
style(),
message_.substr(start, pos)
);
}
void ModalMessageView::focus() {
if ((type_ == YESNO) || (type_ == YESCANCEL)) {
button_yes.focus();
} else {
button_ok.focus();
}
}
2015-07-08 15:39:24 +00:00
} /* namespace ui */