2016-04-11 17:59:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "capture_app.hpp"
|
|
|
|
|
2016-04-12 17:56:00 +00:00
|
|
|
#include "portapack.hpp"
|
|
|
|
using namespace portapack;
|
2016-04-11 17:59:55 +00:00
|
|
|
|
2016-04-20 17:23:59 +00:00
|
|
|
#include "file.hpp"
|
2016-04-27 19:03:43 +00:00
|
|
|
#include "time.hpp"
|
2016-04-20 17:23:59 +00:00
|
|
|
|
2016-04-11 17:59:55 +00:00
|
|
|
#include "utility.hpp"
|
|
|
|
|
2016-04-27 19:07:31 +00:00
|
|
|
#include "string_format.hpp"
|
|
|
|
|
2016-04-11 17:59:55 +00:00
|
|
|
namespace ui {
|
|
|
|
|
2016-04-12 17:56:00 +00:00
|
|
|
CaptureAppView::CaptureAppView(NavigationView& nav) {
|
2016-04-11 18:22:35 +00:00
|
|
|
add_children({ {
|
2016-04-22 19:08:01 +00:00
|
|
|
&button_record,
|
2016-04-12 17:56:00 +00:00
|
|
|
&rssi,
|
|
|
|
&channel,
|
|
|
|
&field_frequency,
|
|
|
|
&field_lna,
|
|
|
|
&field_vga,
|
2016-04-21 18:45:57 +00:00
|
|
|
&text_record_filename,
|
2016-04-27 19:07:31 +00:00
|
|
|
&text_record_dropped,
|
2016-04-13 18:09:18 +00:00
|
|
|
&waterfall,
|
2016-04-11 18:22:35 +00:00
|
|
|
} });
|
|
|
|
|
2016-04-12 17:56:00 +00:00
|
|
|
field_frequency.set_value(receiver_model.tuning_frequency());
|
|
|
|
field_frequency.set_step(receiver_model.frequency_step());
|
|
|
|
field_frequency.on_change = [this](rf::Frequency f) {
|
|
|
|
this->on_tuning_frequency_changed(f);
|
|
|
|
};
|
|
|
|
field_frequency.on_edit = [this, &nav]() {
|
|
|
|
// TODO: Provide separate modal method/scheme?
|
|
|
|
auto new_view = nav.push<FrequencyKeypadView>(receiver_model.tuning_frequency());
|
|
|
|
new_view->on_changed = [this](rf::Frequency f) {
|
|
|
|
this->on_tuning_frequency_changed(f);
|
|
|
|
this->field_frequency.set_value(f);
|
|
|
|
};
|
|
|
|
};
|
2016-04-11 17:59:55 +00:00
|
|
|
|
2016-04-12 17:56:00 +00:00
|
|
|
field_lna.set_value(receiver_model.lna());
|
|
|
|
field_lna.on_change = [this](int32_t v) {
|
|
|
|
this->on_lna_changed(v);
|
|
|
|
};
|
|
|
|
|
|
|
|
field_vga.set_value(receiver_model.vga());
|
|
|
|
field_vga.on_change = [this](int32_t v_db) {
|
|
|
|
this->on_vga_changed(v_db);
|
|
|
|
};
|
2016-04-11 17:59:55 +00:00
|
|
|
|
2016-04-22 19:08:01 +00:00
|
|
|
button_record.on_select = [this](ImageButton&) {
|
|
|
|
this->on_record();
|
2016-04-12 18:37:58 +00:00
|
|
|
};
|
2016-04-12 17:56:00 +00:00
|
|
|
|
|
|
|
receiver_model.set_baseband_configuration({
|
|
|
|
.mode = toUType(ReceiverModel::Mode::Capture),
|
2016-04-11 17:59:55 +00:00
|
|
|
.sampling_rate = sampling_rate,
|
|
|
|
.decimation_factor = 1,
|
|
|
|
});
|
2016-04-12 17:56:00 +00:00
|
|
|
receiver_model.set_baseband_bandwidth(baseband_bandwidth);
|
|
|
|
receiver_model.enable();
|
2016-04-27 19:03:43 +00:00
|
|
|
|
|
|
|
signal_token_tick_second = time::signal_tick_second += [this]() {
|
|
|
|
this->on_tick_second();
|
|
|
|
};
|
2016-04-11 17:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CaptureAppView::~CaptureAppView() {
|
2016-04-27 19:03:43 +00:00
|
|
|
time::signal_tick_second -= signal_token_tick_second;
|
2016-04-12 17:56:00 +00:00
|
|
|
receiver_model.disable();
|
2016-04-11 17:59:55 +00:00
|
|
|
}
|
|
|
|
|
2016-04-13 18:09:18 +00:00
|
|
|
void CaptureAppView::on_hide() {
|
|
|
|
// TODO: Terrible kludge because widget system doesn't notify Waterfall that
|
|
|
|
// it's being shown or hidden.
|
|
|
|
waterfall.on_hide();
|
|
|
|
View::on_hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CaptureAppView::set_parent_rect(const Rect new_parent_rect) {
|
|
|
|
View::set_parent_rect(new_parent_rect);
|
|
|
|
|
|
|
|
const ui::Rect waterfall_rect { 0, header_height, new_parent_rect.width(), static_cast<ui::Dim>(new_parent_rect.height() - header_height) };
|
|
|
|
waterfall.set_parent_rect(waterfall_rect);
|
|
|
|
}
|
|
|
|
|
2016-04-11 18:22:35 +00:00
|
|
|
void CaptureAppView::focus() {
|
2016-04-22 19:08:01 +00:00
|
|
|
button_record.focus();
|
2016-04-11 18:22:35 +00:00
|
|
|
}
|
|
|
|
|
2016-04-30 18:09:39 +00:00
|
|
|
bool CaptureAppView::is_recording() const {
|
|
|
|
return (bool)capture_thread;
|
|
|
|
}
|
|
|
|
|
2016-04-22 19:08:01 +00:00
|
|
|
void CaptureAppView::on_record() {
|
2016-04-30 18:09:39 +00:00
|
|
|
if( is_recording() ) {
|
|
|
|
record_stop();
|
2016-04-12 18:37:58 +00:00
|
|
|
} else {
|
2016-04-30 18:09:39 +00:00
|
|
|
record_start();
|
2016-04-11 18:22:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-30 18:09:39 +00:00
|
|
|
void CaptureAppView::record_start() {
|
|
|
|
const auto filename_stem = next_filename_stem_matching_pattern("BBD_????");
|
|
|
|
text_record_filename.set(filename_stem);
|
|
|
|
text_record_dropped.set("");
|
|
|
|
if( filename_stem.empty() ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-30 18:25:04 +00:00
|
|
|
write_metadata_file(filename_stem + ".TXT");
|
|
|
|
|
2016-04-30 18:09:39 +00:00
|
|
|
capture_thread = std::make_unique<CaptureThread>(filename_stem + ".C16", 14, 1);
|
|
|
|
button_record.set_bitmap(&bitmap_stop);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CaptureAppView::record_stop() {
|
|
|
|
capture_thread.reset();
|
|
|
|
button_record.set_bitmap(&bitmap_record);
|
|
|
|
}
|
|
|
|
|
2016-04-30 18:25:04 +00:00
|
|
|
void CaptureAppView::write_metadata_file(const std::string& filename) {
|
|
|
|
File file;
|
|
|
|
file.open_for_writing(filename);
|
|
|
|
file.puts("sample_rate=" + to_string_dec_uint(sampling_rate) + "\n");
|
|
|
|
file.puts("center_frequency=" + to_string_dec_uint(receiver_model.tuning_frequency()) + "\n");
|
|
|
|
}
|
|
|
|
|
2016-04-27 19:03:43 +00:00
|
|
|
void CaptureAppView::on_tick_second() {
|
|
|
|
if( capture_thread ) {
|
2016-04-27 19:07:31 +00:00
|
|
|
const auto dropped_percent = std::min(99U, capture_thread->state().dropped_percent());
|
|
|
|
const auto s = to_string_dec_uint(dropped_percent, 2, ' ') + "\%";
|
|
|
|
text_record_dropped.set(s);
|
2016-04-27 19:03:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-12 17:56:00 +00:00
|
|
|
void CaptureAppView::on_tuning_frequency_changed(rf::Frequency f) {
|
|
|
|
receiver_model.set_tuning_frequency(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CaptureAppView::on_lna_changed(int32_t v_db) {
|
|
|
|
receiver_model.set_lna(v_db);
|
2016-04-11 17:59:55 +00:00
|
|
|
}
|
|
|
|
|
2016-04-12 17:56:00 +00:00
|
|
|
void CaptureAppView::on_vga_changed(int32_t v_db) {
|
|
|
|
receiver_model.set_vga(v_db);
|
2016-04-11 17:59:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace ui */
|