/* * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. * * 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. */ #ifndef __UI_SPECTRUM_H__ #define __UI_SPECTRUM_H__ #include "ui.hpp" #include "ui_widget.hpp" #include "spectrum_color_lut.hpp" #include "lcd_ili9341.hpp" #include "message.hpp" #include #include namespace ui { namespace spectrum { class FrequencyScale : public Widget { public: void set_scale(const uint32_t new_hz_per_pixel) { if( hz_per_pixel != new_hz_per_pixel ) { hz_per_pixel = new_hz_per_pixel; set_dirty(); } } void set_spectrum_bandwidth(const uint32_t new_bandwidth) { if( spectrum_bandwidth != new_bandwidth ) { spectrum_bandwidth = new_bandwidth; set_dirty(); } } void set_channel_filter( const uint32_t pass_bandwidth, const uint32_t stop_bandwidth ) { if( (channel_filter_pass_bandwidth != pass_bandwidth) || (channel_filter_stop_bandwidth != stop_bandwidth) ) { channel_filter_pass_bandwidth = pass_bandwidth; channel_filter_stop_bandwidth = stop_bandwidth; set_dirty(); } } void paint(Painter& painter) override { if( !hz_per_pixel ) { // Can't draw without non-zero scale. return; } const auto r = screen_rect(); const auto x_center = r.width() / 2; /* const auto text = to_string_dec_int(bandwidth, 6); painter.draw_string( r.pos, style(), text ); */ if( channel_filter_pass_bandwidth ) { const auto pass_width = channel_filter_pass_bandwidth / hz_per_pixel; const auto stop_width = channel_filter_stop_bandwidth / hz_per_pixel; const auto pass_x_lo = x_center - pass_width / 2; const auto pass_x_hi = x_center + pass_width / 2; if( channel_filter_stop_bandwidth ) { const auto stop_x_lo = x_center - stop_width / 2; const auto stop_x_hi = x_center + stop_width / 2; const Rect r_stop_lo { static_cast(r.left() + stop_x_lo), r.top(), static_cast(pass_x_lo - stop_x_lo), r.height() }; painter.fill_rectangle( r_stop_lo, Color::yellow() ); const Rect r_stop_hi { static_cast(r.left() + pass_x_hi), r.top(), static_cast(stop_x_hi - pass_x_hi), r.height() }; painter.fill_rectangle( r_stop_hi, Color::yellow() ); } const Rect r_pass { static_cast(r.left() + pass_x_lo), r.top(), static_cast(pass_x_hi - pass_x_lo), r.height() }; painter.fill_rectangle( r_pass, Color::green() ); } const Rect tick { static_cast(r.left() + x_center), r.top(), 1, r.height() }; painter.fill_rectangle(tick, Color::white()); const Rect bottom_separator { r.left(), static_cast(r.bottom() - 1), r.width(), 1 }; painter.fill_rectangle(bottom_separator, Color::white()); } private: uint32_t spectrum_bandwidth { 0 }; uint32_t channel_filter_pass_bandwidth { 0 }; uint32_t channel_filter_stop_bandwidth { 0 }; uint32_t hz_per_pixel { 0 }; }; class WaterfallView : public Widget { public: void on_show() override { const auto screen_r = screen_rect(); context().display.scroll_set_area(screen_r.top(), screen_r.bottom()); } void on_hide() override { /* TODO: Clear region to eliminate brief flash of content at un-shifted * position? */ context().display.scroll_disable(); } void paint(Painter& painter) override { // Do nothing. (void)painter; } void on_channel_spectrum( const ChannelSpectrum& spectrum ) { /* TODO: static_assert that message.spectrum.db.size() >= pixel_row.size() */ const auto& db = *spectrum.db; std::array pixel_row; for(size_t i=0; i<120; i++) { const auto pixel_color = spectrum_rgb3_lut[db[256 - 120 + i]]; pixel_row[i] = pixel_color; } for(size_t i=120; i<240; i++) { const auto pixel_color = spectrum_rgb3_lut[db[i - 120]]; pixel_row[i] = pixel_color; } auto& display = context().display; const auto draw_y = display.scroll(1); display.draw_pixels( { { 0, draw_y }, { pixel_row.size(), 1 } }, pixel_row ); } }; class WaterfallWidget : public View { public: WaterfallWidget() { add_children({ &waterfall_view, &frequency_scale, }); } void on_show() override { context().message_map[Message::ID::ChannelSpectrum] = [this](const Message* const p) { this->on_channel_spectrum(reinterpret_cast(p)->spectrum); }; } void on_hide() override { context().message_map[Message::ID::ChannelSpectrum] = nullptr; } void set_parent_rect(const Rect new_parent_rect) override { constexpr Dim scale_height = 16; View::set_parent_rect(new_parent_rect); frequency_scale.set_parent_rect({ 0, 0, new_parent_rect.width(), scale_height }); waterfall_view.set_parent_rect({ 0, scale_height, new_parent_rect.width(), static_cast(new_parent_rect.height() - scale_height) }); } void paint(Painter& painter) override { // TODO: (void)painter; } private: WaterfallView waterfall_view; FrequencyScale frequency_scale; void on_channel_spectrum(const ChannelSpectrum& spectrum) { waterfall_view.on_channel_spectrum(spectrum); frequency_scale.set_scale(spectrum.bandwidth / spectrum.db_count); // TODO: Set with actual information. //taps_64_lp_042_078_tfilter frequency_scale.set_channel_filter(spectrum.bandwidth * 42 / 1000, spectrum.bandwidth * 78 / 1000); } }; } /* namespace spectrum */ } /* namespace ui */ #endif/*__UI_SPECTRUM_H__*/