/* * 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_navigation.hpp" //#include "modules.h" #include "portapack.hpp" #include "event_m0.hpp" #include "bmp_splash.hpp" #include "bmp_modal_warning.hpp" #include "portapack_persistent_memory.hpp" #include "ui_about_simple.hpp" #include "ui_adsb_rx.hpp" #include "ui_adsb_tx.hpp" #include "ui_afsk_rx.hpp" #include "ui_aprs_rx.hpp" #include "ui_btle_rx.hpp" #include "ui_nrf_rx.hpp" #include "ui_aprs_tx.hpp" #include "ui_bht_tx.hpp" #include "ui_coasterp.hpp" #include "ui_debug.hpp" #include "ui_encoders.hpp" #include "ui_fileman.hpp" #include "ui_freqman.hpp" #include "ui_jammer.hpp" #include "ui_keyfob.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_remote.hpp" #include "ui_scanner.hpp" #include "ui_search.hpp" #include "ui_recon.hpp" #include "ui_level.hpp" #include "ui_sd_wipe.hpp" #include "ui_settings.hpp" #include "ui_siggen.hpp" #include "ui_sonde.hpp" #include "ui_sstvtx.hpp" //#include "ui_test.hpp" #include "ui_tone_search.hpp" #include "ui_touchtunes.hpp" #include "ui_playlist.hpp" #include "ui_view_wav.hpp" #include "ui_whipcalc.hpp" //#include "acars_app.hpp" #include "ais_app.hpp" #include "analog_audio_app.hpp" #include "analog_tv_app.hpp" #include "capture_app.hpp" #include "ert_app.hpp" #include "lge_app.hpp" #include "pocsag_app.hpp" #include "replay_app.hpp" #include "gps_sim_app.hpp" #include "soundboard_app.hpp" #include "tpms_app.hpp" #include "core_control.hpp" #include "ui_looking_glass_app.hpp" #include "file.hpp" #include "png_writer.hpp" using portapack::receiver_model; using portapack::transmitter_model; namespace ui { /* SystemStatusView ******************************************************/ SystemStatusView::SystemStatusView( NavigationView& nav ) : nav_ (nav) { static constexpr Style style_systemstatus { .font = font::fixed_8x16, .background = Color::dark_grey(), .foreground = Color::white(), }; add_children({ &backdrop, &button_back, &title, &button_title, &button_hamitup, &button_speaker, &button_stealth, //&button_textentry, &button_camera, &button_sleep, &button_bias_tee, &button_clock_status, &sd_card_status_view, }); if (portapack::persistent_memory::config_speaker()) button_speaker.hidden(false); else button_speaker.hidden(true); button_back.id = -1; // Special ID used by FocusManager title.set_style(&style_systemstatus); if (portapack::persistent_memory::stealth_mode()) button_stealth.set_foreground(ui::Color::green()); /*if (!portapack::persistent_memory::ui_config_textentry()) button_textentry.set_bitmap(&bitmap_icon_keyboard); else button_textentry.set_bitmap(&bitmap_icon_unistroke);*/ refresh(); button_back.on_select = [this](ImageButton&){ if (this->on_back) this->on_back(); }; button_title.on_select = [this](ImageButton&) { this->on_title(); }; button_hamitup.on_select = [this](ImageButton&) { this->on_hamitup(); }; button_speaker.on_select = [this](ImageButton&) { this->on_speaker(); }; button_stealth.on_select = [this](ImageButton&) { this->on_stealth(); }; button_bias_tee.on_select = [this](ImageButton&) { this->on_bias_tee(); }; /*button_textentry.on_select = [this](ImageButton&) { this->on_textentry(); };*/ button_camera.on_select = [this](ImageButton&) { this->on_camera(); }; button_sleep.on_select = [this](ImageButton&) { DisplaySleepMessage message; EventDispatcher::send_message(message); }; button_clock_status.on_select = [this](ImageButton&) { this->on_clk(); }; } void SystemStatusView::refresh() { if( portapack::persistent_memory::config_hamitup() ) { button_hamitup.set_foreground(Color::red()); } else { button_hamitup.set_foreground(Color::light_grey()); } // Retune to take hamitup change in account receiver_model.set_tuning_frequency( portapack::persistent_memory::tuned_frequency() ); if (!portapack::persistent_memory::config_speaker()) { button_speaker.set_foreground(Color::light_grey()); button_speaker.set_bitmap(&bitmap_icon_speaker_mute); button_speaker.hidden(false); } else { button_speaker.hidden(true); } if (portapack::get_antenna_bias()) { button_bias_tee.set_bitmap(&bitmap_icon_biast_on); button_bias_tee.set_foreground(ui::Color::yellow()); } else { button_bias_tee.set_bitmap(&bitmap_icon_biast_off); button_bias_tee.set_foreground(ui::Color::light_grey()); } if (portapack::clock_manager.get_reference().source == ClockManager::ReferenceSource::External) { button_clock_status.set_bitmap(&bitmap_icon_clk_ext); // button_bias_tee.set_foreground(ui::Color::green()); Typo? } else { button_clock_status.set_bitmap(&bitmap_icon_clk_int); // button_bias_tee.set_foreground(ui::Color::green()); } if(portapack::persistent_memory::clkout_enabled()) { button_clock_status.set_foreground(ui::Color::green()); } else { button_clock_status.set_foreground(ui::Color::light_grey()); } set_dirty(); } void SystemStatusView::set_back_enabled(bool new_value) { if(new_value){ add_child(&button_back); } else{ remove_child(&button_back); } } void SystemStatusView::set_title_image_enabled(bool new_value) { if(new_value){ add_child(&button_title); } else{ remove_child(&button_title); } } void SystemStatusView::set_title(const std::string new_value) { if( new_value.empty() ) { title.set(default_title); } else { title.set(new_value); } } void SystemStatusView::on_hamitup() { if(!portapack::persistent_memory::config_hamitup()) { portapack::persistent_memory::set_config_hamitup( true ); button_hamitup.set_foreground(Color::red()); } else { portapack::persistent_memory::set_config_hamitup( false ); button_hamitup.set_foreground(Color::light_grey()); } receiver_model.set_tuning_frequency( portapack::persistent_memory::tuned_frequency() ); // Retune } void SystemStatusView::on_speaker() { if (!portapack::speaker_mode) { portapack::set_speaker_mode(true); button_speaker.set_foreground(Color::green()); button_speaker.set_bitmap(&bitmap_icon_speaker); } else { portapack::set_speaker_mode(false); button_speaker.set_foreground(Color::light_grey()); button_speaker.set_bitmap(&bitmap_icon_speaker_mute); } } void SystemStatusView::on_stealth() { bool mode = not portapack::persistent_memory::stealth_mode(); portapack::persistent_memory::set_stealth_mode(mode); button_stealth.set_foreground(mode ? Color::green() : Color::light_grey()); } void SystemStatusView::on_bias_tee() { if (!portapack::antenna_bias) { nav_.display_modal("Bias voltage", "Enable DC voltage on\nantenna connector?", YESNO, [this](bool v) { if (v) { portapack::set_antenna_bias(true); //radio::set_antenna_bias(true); receiver_model.set_antenna_bias(); transmitter_model.set_antenna_bias(); refresh(); } }); } else { portapack::set_antenna_bias(false); //radio::set_antenna_bias(false); receiver_model.set_antenna_bias(); transmitter_model.set_antenna_bias(); refresh(); } } /*void SystemStatusView::on_textentry() { uint8_t cfg; cfg = portapack::persistent_memory::ui_config_textentry(); portapack::persistent_memory::set_config_textentry(cfg ^ 1); if (!cfg) button_textentry.set_bitmap(&bitmap_icon_unistroke); else button_textentry.set_bitmap(&bitmap_icon_keyboard); }*/ 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 row; portapack::display.read_pixels({ 0, i, 240, 1 }, row); png.write_scanline(row); } } void SystemStatusView::on_clk() { bool v = portapack::persistent_memory::clkout_enabled(); if(v) { v = false; } else { v = true; } portapack::clock_manager.enable_clock_output(v); portapack::persistent_memory::set_clkout_enabled(v); refresh(); } void SystemStatusView::on_title() { if(nav_.is_top()) nav_.push(); else nav_.pop(); } /* Information View *****************************************************/ InformationView::InformationView( NavigationView& nav ) : nav_ (nav) { static constexpr Style style_infobar { .font = font::fixed_8x16, .background = {33, 33, 33}, .foreground = Color::white(), }; add_children({ &backdrop, &version, <ime }); version.set_style(&style_infobar); ltime.set_hide_clock(portapack::persistent_memory::hide_clock()); ltime.set_style(&style_infobar); ltime.set_seconds_enabled(true); ltime.set_date_enabled(portapack::persistent_memory::clock_with_date()); set_dirty(); } void InformationView::refresh() { ltime.set_hide_clock(portapack::persistent_memory::hide_clock()); ltime.set_seconds_enabled(true); ltime.set_date_enabled(portapack::persistent_memory::clock_with_date()); } /* Navigation ************************************************************/ bool NavigationView::is_top() const { return view_stack.size() == 1; } View* NavigationView::push_view(std::unique_ptr new_view) { free_view(); const auto p = new_view.get(); view_stack.emplace_back(std::move(new_view)); update_view(); return p; } void NavigationView::pop() { if( view() == modal_view ) { modal_view = nullptr; } // Can't pop last item from stack. if( view_stack.size() > 1 ) { free_view(); view_stack.pop_back(); update_view(); } } 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 on_choice ) { /* If a modal view is already visible, don't display another */ if( !modal_view ) { modal_view = push(title, message, type, on_choice); } } void NavigationView::free_view() { remove_child(view()); } void NavigationView::update_view() { const auto new_view = view_stack.back().get(); add_child(new_view); new_view->set_parent_rect({ {0, 0}, size() }); focus(); set_dirty(); if( on_view_changed ) { on_view_changed(*new_view); } } Widget* NavigationView::view() const { return children_.empty() ? nullptr : children_[0]; } void NavigationView::focus() { if( view() ) { view()->focus(); } } /* ReceiversMenuView *****************************************************/ ReceiversMenuView::ReceiversMenuView(NavigationView& nav) { if( portapack::persistent_memory::show_gui_return_icon() ) { add_items( { { "..", ui::Color::light_grey(),&bitmap_icon_previous , [&nav](){ nav.pop(); } } } ); } add_items( { { "ADS-B", ui::Color::green(), &bitmap_icon_adsb, [&nav](){ nav.push(); }, }, //{ "ACARS", ui::Color::yellow(), &bitmap_icon_adsb, [&nav](){ nav.push(); }, }, { "AIS Boats", ui::Color::green(), &bitmap_icon_ais, [&nav](){ nav.push(); } }, { "AFSK", ui::Color::yellow(), &bitmap_icon_modem, [&nav](){ nav.push(); } }, { "BTLE", ui::Color::yellow(), &bitmap_icon_btle, [&nav](){ nav.push(); } }, { "NRF", ui::Color::yellow(), &bitmap_icon_nrf, [&nav](){ nav.push(); } }, { "Audio", ui::Color::green(), &bitmap_icon_speaker, [&nav](){ nav.push(); } }, { "Analog TV", ui::Color::yellow(), &bitmap_icon_sstv, [&nav](){ nav.push(); } }, { "ERT Meter", ui::Color::green(), &bitmap_icon_ert, [&nav](){ nav.push(); } }, { "POCSAG", ui::Color::green(), &bitmap_icon_pocsag, [&nav](){ nav.push(); } }, { "Radiosnde", ui::Color::green(), &bitmap_icon_sonde, [&nav](){ nav.push(); } }, { "TPMS Cars", ui::Color::green(), &bitmap_icon_tpms, [&nav](){ nav.push(); } }, { "Recon", ui::Color::green(), &bitmap_icon_scanner, [&nav](){ nav.push(); } }, { "Level", ui::Color::green(), &bitmap_icon_options_radio, [&nav](){ nav.push(); } }, { "APRS", ui::Color::green(), &bitmap_icon_aprs, [&nav](){ nav.push(); } } /* { "DMR", ui::Color::dark_grey(), &bitmap_icon_dmr, [&nav](){ nav.push(); } }, { "SIGFOX", ui::Color::dark_grey(), &bitmap_icon_fox, [&nav](){ nav.push(); } }, // SIGFRXView { "LoRa", ui::Color::dark_grey(), &bitmap_icon_lora, [&nav](){ nav.push(); } }, { "SSTV", ui::Color::dark_grey(), &bitmap_icon_sstv, [&nav](){ nav.push(); } }, { "TETRA", ui::Color::dark_grey(), &bitmap_icon_tetra, [&nav](){ nav.push(); } },*/ } ); //set_highlighted(0); // Default selection is "Audio" } /* TransmittersMenuView **************************************************/ TransmittersMenuView::TransmittersMenuView(NavigationView& nav) { if( portapack::persistent_memory::show_gui_return_icon() ) { add_items( { { "..", ui::Color::light_grey(),&bitmap_icon_previous , [&nav](){ nav.pop(); } } } ); } add_items({ { "ADS-B [S]", ui::Color::yellow(), &bitmap_icon_adsb, [&nav](){ nav.push(); } }, { "APRS", ui::Color::green(), &bitmap_icon_aprs, [&nav](){ nav.push(); } }, { "BHT Xy/EP", ui::Color::green(), &bitmap_icon_bht, [&nav](){ nav.push(); } }, { "GPS Sim", ui::Color::yellow(), &bitmap_icon_gps_sim, [&nav](){ nav.push(); } }, { "Jammer", ui::Color::green(), &bitmap_icon_jammer, [&nav](){ nav.push(); } }, { "Key fob", ui::Color::orange(), &bitmap_icon_keyfob, [&nav](){ nav.push(); } }, { "LGE tool", ui::Color::yellow(), &bitmap_icon_lge, [&nav](){ nav.push(); } }, { "Morse", ui::Color::green(), &bitmap_icon_morse, [&nav](){ nav.push(); } }, { "BurgerPgr", ui::Color::yellow(), &bitmap_icon_burger, [&nav](){ nav.push(); } }, //{ "Nuoptix DTMF", ui::Color::green(), &bitmap_icon_nuoptix, [&nav](){ nav.push(); } }, { "OOK", ui::Color::yellow(), &bitmap_icon_remote, [&nav](){ nav.push(); } }, { "POCSAG", ui::Color::green(), &bitmap_icon_pocsag, [&nav](){ nav.push(); } }, { "RDS", ui::Color::green(), &bitmap_icon_rds, [&nav](){ nav.push(); } }, { "Soundbrd", ui::Color::green(), &bitmap_icon_soundboard,[&nav](){ nav.push(); } }, { "SSTV", ui::Color::green(), &bitmap_icon_sstv, [&nav](){ nav.push(); } }, { "TEDI/LCR", ui::Color::yellow(), &bitmap_icon_lcr, [&nav](){ nav.push(); } }, { "TouchTune", ui::Color::yellow(), &bitmap_icon_remote, [&nav](){ nav.push(); } }, { "Playlist", ui::Color::yellow(), &bitmap_icon_remote, [&nav](){ nav.push(); } }, //{ "Remote", ui::Color::dark_grey(), &bitmap_icon_remote, [&nav](){ nav.push(); } }, }); } /* UtilitiesMenuView *****************************************************/ UtilitiesMenuView::UtilitiesMenuView(NavigationView& nav) { if( portapack::persistent_memory::show_gui_return_icon() ) { add_items( { { "..", ui::Color::light_grey(),&bitmap_icon_previous , [&nav](){ nav.pop(); } } } ); } add_items({ //{ "Test app", ui::Color::dark_grey(), nullptr, [&nav](){ nav.push(); } }, { "Freq. manager", ui::Color::green(), &bitmap_icon_freqman, [&nav](){ nav.push(); } }, { "File manager", ui::Color::yellow(), &bitmap_icon_dir, [&nav](){ nav.push(); } }, //{ "Notepad", ui::Color::dark_grey(), &bitmap_icon_notepad, [&nav](){ nav.push(); } }, { "Signal gen", ui::Color::green(), &bitmap_icon_cwgen, [&nav](){ nav.push(); } }, //{ "Tone search", ui::Color::dark_grey(), nullptr, [&nav](){ nav.push(); } }, { "Wav viewer", ui::Color::yellow(), &bitmap_icon_soundboard, [&nav](){ nav.push(); } }, { "Antenna length", ui::Color::green(), &bitmap_icon_tools_antenna, [&nav](){ nav.push(); } }, { "Wipe SD card", ui::Color::red(), &bitmap_icon_tools_wipesd, [&nav](){ nav.push(); } }, }); set_max_rows(2); // allow wider buttons } /* SystemMenuView ********************************************************/ void SystemMenuView::hackrf_mode(NavigationView& nav) { nav.push("HackRF mode", " This mode enables HackRF\n functionality. To return,\n press the reset button.\n\n Switch to HackRF mode?", YESNO, [this](bool choice) { if (choice) { EventDispatcher::request_stop(); } } ); } SystemMenuView::SystemMenuView(NavigationView& nav) { add_items({ //{ "Play dead", ui::Color::red(), &bitmap_icon_playdead, [&nav](){ nav.push(); } }, { "Receive", ui::Color::cyan(), &bitmap_icon_receivers, [&nav](){ nav.push(); } }, { "Transmit", ui::Color::cyan(), &bitmap_icon_transmit, [&nav](){ nav.push(); } }, { "Capture", ui::Color::red(), &bitmap_icon_capture, [&nav](){ nav.push(); } }, { "Replay", ui::Color::green(), &bitmap_icon_replay, [&nav](){ nav.push(); } }, { "Search", ui::Color::yellow(), &bitmap_icon_search, [&nav](){ nav.push(); } }, { "Scanner", ui::Color::yellow(), &bitmap_icon_scanner, [&nav](){ nav.push(); } }, { "Microphone", ui::Color::yellow(), &bitmap_icon_microphone,[&nav](){ nav.push(); } }, { "Looking Glass", ui::Color::yellow(), &bitmap_icon_looking, [&nav](){ nav.push(); } }, { "Utilities", ui::Color::cyan(), &bitmap_icon_utilities, [&nav](){ nav.push(); } }, { "Settings", ui::Color::cyan(), &bitmap_icon_setup, [&nav](){ nav.push(); } }, { "Debug", ui::Color::light_grey(), &bitmap_icon_debug, [&nav](){ nav.push(); } }, { "HackRF", ui::Color::cyan(), &bitmap_icon_hackrf, [this, &nav](){ hackrf_mode(nav); } }, //{ "About", ui::Color::cyan(), nullptr, [&nav](){ nav.push(); } } }); set_max_rows(2); // allow wider buttons set_arrow_enabled(false); //set_highlighted(1); // Startup selection } /* SystemView ************************************************************/ static constexpr ui::Style style_default { .font = ui::font::fixed_8x16, .background = ui::Color::black(), .foreground = ui::Color::white() }; SystemView::SystemView( Context& context, const Rect parent_rect ) : View { parent_rect }, context_(context) { set_style(&style_default); constexpr ui::Dim status_view_height = 16; constexpr ui::Dim info_view_height = 16; add_child(&status_view); status_view.set_parent_rect({ { 0, 0 }, { parent_rect.width(), status_view_height } }); status_view.on_back = [this]() { this->navigation_view.pop(); }; add_child(&navigation_view); navigation_view.set_parent_rect({ { 0, status_view_height }, { parent_rect.width(), static_cast(parent_rect.height() - status_view_height) } }); add_child(&info_view); info_view.set_parent_rect({ {0, 19 * 16}, { parent_rect.width(), info_view_height } }); navigation_view.on_view_changed = [this](const View& new_view) { if(!this->navigation_view.is_top()){ remove_child(&info_view); } else{ add_child(&info_view); info_view.refresh(); } this->status_view.set_back_enabled(!this->navigation_view.is_top()); this->status_view.set_title_image_enabled(this->navigation_view.is_top()); this->status_view.set_title(new_view.title()); this->status_view.set_dirty(); }; // 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(); } else {*/ navigation_view.push(); if (portapack::persistent_memory::config_splash()) { navigation_view.push(); } status_view.set_back_enabled(false); status_view.set_title_image_enabled(true); status_view.set_dirty(); //else // navigation_view.push(); //} } Context& SystemView::context() const { return context_; } /* ***********************************************************************/ void BMPView::focus() { button_done.focus(); } BMPView::BMPView(NavigationView& nav) { add_children({ &button_done }); button_done.on_select = [this, &nav](Button&){ nav.pop(); }; } void BMPView::paint(Painter&) { if(!portapack::display.drawBMP2({ 0, 0 }, "splash.bmp")) portapack::display.drawBMP({(240 - 230) / 2, (320 - 50) / 2 - 10}, splash_bmp, false); } /* NotImplementedView ****************************************************/ /*NotImplementedView::NotImplementedView(NavigationView& nav) { button_done.on_select = [&nav](Button&){ nav.pop(); }; add_children({ &text_title, &button_done, }); } 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 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(); } } } /* namespace ui */