mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
New playlist (#1185)
* updated playlist file format * fix trim and delay part of item * playlist add/remove tracks * UI Tweak
This commit is contained in:
parent
960ecf616c
commit
e14fa5eab0
@ -23,11 +23,12 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ui_playlist.hpp"
|
#include "ui_playlist.hpp"
|
||||||
|
|
||||||
#include "convert.hpp"
|
#include "convert.hpp"
|
||||||
#include "file_reader.hpp"
|
#include "file_reader.hpp"
|
||||||
|
#include "io_file.hpp"
|
||||||
#include "string_format.hpp"
|
#include "string_format.hpp"
|
||||||
#include "ui_fileman.hpp"
|
#include "ui_fileman.hpp"
|
||||||
#include "io_file.hpp"
|
|
||||||
#include "utility.hpp"
|
#include "utility.hpp"
|
||||||
|
|
||||||
#include "baseband_api.hpp"
|
#include "baseband_api.hpp"
|
||||||
@ -39,11 +40,6 @@
|
|||||||
using namespace portapack;
|
using namespace portapack;
|
||||||
namespace fs = std::filesystem;
|
namespace fs = std::filesystem;
|
||||||
|
|
||||||
/* TODO: wouldn't it be easier if the playlist were just a list of C16 files
|
|
||||||
* (and maybe delays) and then read the metadata file next to the C16 file?
|
|
||||||
* TODO: use metadata_file.hpp to read the metadata.
|
|
||||||
* TODO: change PPL format to only allow paths, and !<number> for delay. */
|
|
||||||
|
|
||||||
namespace ui {
|
namespace ui {
|
||||||
|
|
||||||
void PlaylistView::load_file(const fs::path& playlist_path) {
|
void PlaylistView::load_file(const fs::path& playlist_path) {
|
||||||
@ -59,29 +55,47 @@ void PlaylistView::load_file(const fs::path& playlist_path) {
|
|||||||
continue; // Empty or comment line.
|
continue; // Empty or comment line.
|
||||||
|
|
||||||
auto cols = split_string(line, ',');
|
auto cols = split_string(line, ',');
|
||||||
if (cols.size() < 3)
|
auto entry = load_entry(trim(cols[0]));
|
||||||
continue; // Line doesn't have enough columns.
|
|
||||||
|
|
||||||
playlist_entry entry{};
|
if (!entry)
|
||||||
|
continue;
|
||||||
|
|
||||||
parse_int(cols[0], entry.replay_frequency);
|
// Read optional delay value.
|
||||||
parse_int(cols[2], entry.sample_rate);
|
if (cols.size() > 1)
|
||||||
if (entry.replay_frequency == 0 || entry.sample_rate == 0)
|
parse_int(cols[1], entry->ms_delay);
|
||||||
continue; // Invalid freq or rate.
|
|
||||||
|
|
||||||
entry.replay_file = fs::path{u"/"} + std::string{cols[1]};
|
playlist_db_.emplace_back(*std::move(entry));
|
||||||
|
|
||||||
if (cols.size() == 4) // Optional delay value.
|
|
||||||
parse_int(cols[3], entry.initial_delay);
|
|
||||||
|
|
||||||
playlist_db_.emplace_back(std::move(entry));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Optional<PlaylistView::playlist_entry> PlaylistView::load_entry(fs::path&& path) {
|
||||||
|
File capture_file;
|
||||||
|
|
||||||
|
auto error = capture_file.open(path);
|
||||||
|
if (error)
|
||||||
|
return {};
|
||||||
|
|
||||||
|
// Read metafile if it exists.
|
||||||
|
auto metadata_path = get_metadata_path(path);
|
||||||
|
auto metadata = read_metadata_file(metadata_path);
|
||||||
|
|
||||||
|
// TODO: For now, require a metadata file. Eventually,
|
||||||
|
// allow a user-defined center_freq like there was in Replay.
|
||||||
|
// metadata = {0, 500'000};
|
||||||
|
if (!metadata)
|
||||||
|
return {};
|
||||||
|
|
||||||
|
return playlist_entry{
|
||||||
|
std::move(path),
|
||||||
|
*metadata,
|
||||||
|
capture_file.size(),
|
||||||
|
0u};
|
||||||
|
}
|
||||||
|
|
||||||
void PlaylistView::on_file_changed(const fs::path& new_file_path) {
|
void PlaylistView::on_file_changed(const fs::path& new_file_path) {
|
||||||
stop();
|
stop();
|
||||||
reset();
|
|
||||||
|
|
||||||
|
current_index_ = 0;
|
||||||
playlist_path_ = new_file_path;
|
playlist_path_ = new_file_path;
|
||||||
playlist_db_.clear();
|
playlist_db_.clear();
|
||||||
load_file(playlist_path_);
|
load_file(playlist_path_);
|
||||||
@ -90,26 +104,97 @@ void PlaylistView::on_file_changed(const fs::path& new_file_path) {
|
|||||||
button_play.focus();
|
button_play.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistView::reset() {
|
void PlaylistView::open_file(bool prompt_save) {
|
||||||
current_track_ = 0;
|
if (playlist_dirty_ && prompt_save) {
|
||||||
current_entry_ = nullptr;
|
nav_.display_modal(
|
||||||
current_entry_size_ = 0;
|
"Save?", "Save changes?", YESNO,
|
||||||
|
[this](bool choice) {
|
||||||
|
if (choice)
|
||||||
|
save_file(false);
|
||||||
|
});
|
||||||
|
nav_.set_on_pop([this]() { open_file(false); });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto open_view = nav_.push<FileLoadView>(".PPL");
|
||||||
|
open_view->on_changed = [this](fs::path new_file_path) {
|
||||||
|
on_file_changed(new_file_path);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaylistView::save_file(bool show_dialogs) {
|
||||||
|
if (!playlist_dirty_ || playlist_path_.empty())
|
||||||
|
return;
|
||||||
|
|
||||||
|
File playlist_file;
|
||||||
|
auto error = playlist_file.create(playlist_path_.string());
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
if (show_dialogs)
|
||||||
|
nav_.display_modal(
|
||||||
|
"Save Error",
|
||||||
|
"Could not save file\n" + playlist_path_.string());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const auto& entry : playlist_db_) {
|
||||||
|
playlist_file.write_line(
|
||||||
|
entry.path.string() + "," +
|
||||||
|
to_string_dec_uint(entry.ms_delay));
|
||||||
|
}
|
||||||
|
|
||||||
|
playlist_dirty_ = false;
|
||||||
|
|
||||||
|
if (show_dialogs)
|
||||||
|
nav_.display_modal(
|
||||||
|
"Save",
|
||||||
|
"Saved playlist\n" + playlist_path_.string());
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaylistView::add_entry(fs::path&& path) {
|
||||||
|
if (playlist_path_.empty()) {
|
||||||
|
playlist_path_ = next_filename_matching_pattern(u"/PLAYLIST/PLAY_????.PPL");
|
||||||
|
button_play.focus();
|
||||||
|
}
|
||||||
|
|
||||||
|
auto entry = load_entry(std::move(path));
|
||||||
|
if (entry) {
|
||||||
|
playlist_db_.emplace_back(*std::move(entry));
|
||||||
|
current_index_ = playlist_db_.size() - 1;
|
||||||
|
playlist_dirty_ = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
update_ui();
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaylistView::delete_entry() {
|
||||||
|
if (playlist_db_.empty())
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Ugh, the STL is gross.
|
||||||
|
playlist_db_.erase(playlist_db_.begin() + current_index_);
|
||||||
|
|
||||||
|
if (current_index_ > 0)
|
||||||
|
--current_index_;
|
||||||
|
|
||||||
|
playlist_dirty_ = true;
|
||||||
|
update_ui();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistView::show_file_error(const fs::path& path, const std::string& message) {
|
void PlaylistView::show_file_error(const fs::path& path, const std::string& message) {
|
||||||
nav_.display_modal("Error", "Error opening file \n" + path.string() + "\n" + message);
|
nav_.display_modal("Error", "Error opening file \n" + path.string() + "\n" + message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const PlaylistView::playlist_entry* PlaylistView::current() const {
|
||||||
|
return playlist_db_.empty() ? nullptr : &playlist_db_[current_index_];
|
||||||
|
}
|
||||||
|
|
||||||
bool PlaylistView::is_active() const {
|
bool PlaylistView::is_active() const {
|
||||||
return replay_thread_ != nullptr;
|
return replay_thread_ != nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PlaylistView::loop() const {
|
bool PlaylistView::at_end() const {
|
||||||
return check_loop.value();
|
return current_index_ >= playlist_db_.size();
|
||||||
}
|
|
||||||
|
|
||||||
bool PlaylistView::is_done() const {
|
|
||||||
return current_track_ >= playlist_db_.size();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistView::toggle() {
|
void PlaylistView::toggle() {
|
||||||
@ -120,25 +205,24 @@ void PlaylistView::toggle() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistView::start() {
|
void PlaylistView::start() {
|
||||||
reset();
|
|
||||||
|
|
||||||
if (playlist_db_.empty())
|
if (playlist_db_.empty())
|
||||||
return; // Nothing to do.
|
return; // Nothing to do.
|
||||||
|
|
||||||
if (next_track())
|
current_index_ = 0u;
|
||||||
send_current_track();
|
send_current_track();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Advance to the next track in the playlist. */
|
/* Advance to the next track in the playlist. */
|
||||||
bool PlaylistView::next_track() {
|
bool PlaylistView::next_track() {
|
||||||
if (is_done()) {
|
++current_index_;
|
||||||
if (loop())
|
|
||||||
current_track_ = 0;
|
// Reset to the 0 once at the end to prevent current_index_
|
||||||
else
|
// from being outside the bounds of playlist_db_ when painting.
|
||||||
return false; // All done.
|
if (at_end()) {
|
||||||
|
current_index_ = 0;
|
||||||
|
return check_loop.value(); // Keep going if looping.
|
||||||
}
|
}
|
||||||
current_entry_ = &playlist_db_[current_track_];
|
|
||||||
current_track_++;
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -149,30 +233,25 @@ void PlaylistView::send_current_track() {
|
|||||||
transmitter_model.disable();
|
transmitter_model.disable();
|
||||||
ready_signal_ = false;
|
ready_signal_ = false;
|
||||||
|
|
||||||
if (!current_entry_)
|
if (!current())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// TODO: Use a timer so the UI isn't frozen.
|
||||||
|
if (current()->ms_delay > 0)
|
||||||
|
chThdSleepMilliseconds(current()->ms_delay);
|
||||||
|
|
||||||
// Open the sample file to send.
|
// Open the sample file to send.
|
||||||
auto reader = std::make_unique<FileReader>();
|
auto reader = std::make_unique<FileReader>();
|
||||||
auto error = reader->open(current_entry_->replay_file);
|
auto error = reader->open(current()->path);
|
||||||
if (error) {
|
if (error) {
|
||||||
show_file_error(current_entry_->replay_file, "Can't open file to send.");
|
show_file_error(current()->path, "Can't open file to send.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the sample file size for the progress bar.
|
|
||||||
current_entry_size_ = reader->file().size();
|
|
||||||
progressbar_transmit.set_value(0);
|
|
||||||
|
|
||||||
// Wait a bit before sending if specified.
|
|
||||||
// TODO: this pauses the main thread, move into ReplayThread instead.
|
|
||||||
if (current_entry_->initial_delay > 0)
|
|
||||||
chThdSleepMilliseconds(current_entry_->initial_delay);
|
|
||||||
|
|
||||||
// ReplayThread starts immediately on contruction so
|
// ReplayThread starts immediately on contruction so
|
||||||
// these need to be set before creating the ReplayThread.
|
// these need to be set before creating the ReplayThread.
|
||||||
transmitter_model.set_target_frequency(current_entry_->replay_frequency);
|
transmitter_model.set_target_frequency(current()->metadata.center_frequency);
|
||||||
transmitter_model.set_sampling_rate(current_entry_->sample_rate * 8);
|
transmitter_model.set_sampling_rate(current()->metadata.sample_rate * 8);
|
||||||
transmitter_model.set_baseband_bandwidth(baseband_bandwidth);
|
transmitter_model.set_baseband_bandwidth(baseband_bandwidth);
|
||||||
transmitter_model.enable();
|
transmitter_model.enable();
|
||||||
|
|
||||||
@ -180,6 +259,9 @@ void PlaylistView::send_current_track() {
|
|||||||
// TODO: Why doesn't the transmitter_model just handle this?
|
// TODO: Why doesn't the transmitter_model just handle this?
|
||||||
baseband::set_sample_rate(transmitter_model.sampling_rate());
|
baseband::set_sample_rate(transmitter_model.sampling_rate());
|
||||||
|
|
||||||
|
// Reset the transmit progress bar.
|
||||||
|
progressbar_transmit.set_value(0);
|
||||||
|
|
||||||
// Use the ReplayThread class to send the data.
|
// Use the ReplayThread class to send the data.
|
||||||
replay_thread_ = std::make_unique<ReplayThread>(
|
replay_thread_ = std::make_unique<ReplayThread>(
|
||||||
std::move(reader),
|
std::move(reader),
|
||||||
@ -199,37 +281,49 @@ void PlaylistView::stop() {
|
|||||||
// This terminates the underlying chThread.
|
// This terminates the underlying chThread.
|
||||||
replay_thread_.reset();
|
replay_thread_.reset();
|
||||||
transmitter_model.disable();
|
transmitter_model.disable();
|
||||||
|
|
||||||
|
// Reset the transmit progress bar.
|
||||||
|
progressbar_transmit.set_value(0);
|
||||||
update_ui();
|
update_ui();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistView::update_ui() {
|
void PlaylistView::update_ui() {
|
||||||
if (playlist_db_.empty()) {
|
if (playlist_db_.empty()) {
|
||||||
text_track.set("Open a playlist file.");
|
text_filename.set("");
|
||||||
} else {
|
|
||||||
text_track.set(
|
|
||||||
to_string_dec_uint(current_track_) + "/" +
|
|
||||||
to_string_dec_uint(playlist_db_.size()) + " " +
|
|
||||||
playlist_path_.filename().string());
|
|
||||||
}
|
|
||||||
|
|
||||||
button_play.set_bitmap(is_active() ? &bitmap_stop : &bitmap_play);
|
|
||||||
|
|
||||||
progressbar_track.set_value(current_track_);
|
|
||||||
progressbar_track.set_max(playlist_db_.size());
|
|
||||||
progressbar_transmit.set_max(current_entry_size_);
|
|
||||||
|
|
||||||
if (current_entry_) {
|
|
||||||
auto duration = ms_duration(current_entry_size_, current_entry_->sample_rate, 4);
|
|
||||||
text_filename.set(truncate(current_entry_->replay_file.filename().string(), 12));
|
|
||||||
text_sample_rate.set(unit_auto_scale(current_entry_->sample_rate, 3, 0) + "Hz");
|
|
||||||
text_duration.set(to_string_time_ms(duration));
|
|
||||||
text_frequency.set(to_string_short_freq(current_entry_->replay_frequency));
|
|
||||||
} else {
|
|
||||||
text_filename.set("-");
|
|
||||||
text_sample_rate.set("-");
|
text_sample_rate.set("-");
|
||||||
text_duration.set("-");
|
text_duration.set("-");
|
||||||
text_frequency.set("-");
|
text_frequency.set("-");
|
||||||
|
|
||||||
|
if (playlist_path_.empty())
|
||||||
|
text_track.set("Open playlist or add capture.");
|
||||||
|
else
|
||||||
|
text_track.set(playlist_path_.filename().string());
|
||||||
|
|
||||||
|
progressbar_track.set_value(0);
|
||||||
|
progressbar_track.set_max(0);
|
||||||
|
progressbar_transmit.set_max(0);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
chDbgAssert(!at_end(), "update_ui #1", "current_index_ invalid");
|
||||||
|
|
||||||
|
text_filename.set(current()->path.filename().string());
|
||||||
|
text_sample_rate.set(unit_auto_scale(current()->metadata.sample_rate, 3, 0) + "Hz");
|
||||||
|
|
||||||
|
auto duration = ms_duration(current()->file_size, current()->metadata.sample_rate, 4);
|
||||||
|
text_duration.set(to_string_time_ms(duration));
|
||||||
|
text_frequency.set(to_string_short_freq(current()->metadata.center_frequency));
|
||||||
|
|
||||||
|
text_track.set(
|
||||||
|
to_string_dec_uint(current_index_ + 1) + "/" +
|
||||||
|
to_string_dec_uint(playlist_db_.size()) + " " +
|
||||||
|
playlist_path_.filename().string());
|
||||||
|
|
||||||
|
progressbar_track.set_max(playlist_db_.size() - 1);
|
||||||
|
progressbar_track.set_value(current_index_);
|
||||||
|
progressbar_transmit.set_max(current()->file_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button_play.set_bitmap(is_active() ? &bitmap_stop : &bitmap_play);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaylistView::on_tx_progress(uint32_t progress) {
|
void PlaylistView::on_tx_progress(uint32_t progress) {
|
||||||
@ -245,7 +339,7 @@ void PlaylistView::handle_replay_thread_done(uint32_t return_code) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (return_code == ReplayThread::READ_ERROR)
|
if (return_code == ReplayThread::READ_ERROR)
|
||||||
show_file_error(current_entry_->replay_file, "Replay read failed.");
|
show_file_error(current()->path, "Replay read failed.");
|
||||||
|
|
||||||
stop();
|
stop();
|
||||||
}
|
}
|
||||||
@ -256,7 +350,6 @@ PlaylistView::PlaylistView(
|
|||||||
baseband::run_image(portapack::spi_flash::image_tag_replay);
|
baseband::run_image(portapack::spi_flash::image_tag_replay);
|
||||||
|
|
||||||
add_children({
|
add_children({
|
||||||
&button_open,
|
|
||||||
&text_filename,
|
&text_filename,
|
||||||
&text_sample_rate,
|
&text_sample_rate,
|
||||||
&text_duration,
|
&text_duration,
|
||||||
@ -267,6 +360,12 @@ PlaylistView::PlaylistView(
|
|||||||
&check_loop,
|
&check_loop,
|
||||||
&button_play,
|
&button_play,
|
||||||
&text_track,
|
&text_track,
|
||||||
|
&button_prev,
|
||||||
|
&button_add,
|
||||||
|
&button_delete,
|
||||||
|
&button_open,
|
||||||
|
&button_save,
|
||||||
|
&button_next,
|
||||||
&waterfall,
|
&waterfall,
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -276,13 +375,39 @@ PlaylistView::PlaylistView(
|
|||||||
toggle();
|
toggle();
|
||||||
};
|
};
|
||||||
|
|
||||||
button_open.on_select = [this, &nav](Button&) {
|
button_add.on_select = [this, &nav]() {
|
||||||
auto open_view = nav.push<FileLoadView>(".PPL");
|
auto open_view = nav_.push<FileLoadView>(".C16");
|
||||||
open_view->on_changed = [this](std::filesystem::path new_file_path) {
|
open_view->on_changed = [this](fs::path path) {
|
||||||
on_file_changed(new_file_path);
|
add_entry(std::move(path));
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
button_delete.on_select = [this, &nav]() {
|
||||||
|
delete_entry();
|
||||||
|
};
|
||||||
|
|
||||||
|
button_open.on_select = [this, &nav]() {
|
||||||
|
open_file();
|
||||||
|
};
|
||||||
|
|
||||||
|
button_save.on_select = [this]() {
|
||||||
|
save_file();
|
||||||
|
};
|
||||||
|
|
||||||
|
button_prev.on_select = [this]() {
|
||||||
|
--current_index_;
|
||||||
|
if (at_end())
|
||||||
|
current_index_ = playlist_db_.size() - 1;
|
||||||
|
update_ui();
|
||||||
|
};
|
||||||
|
|
||||||
|
button_next.on_select = [this]() {
|
||||||
|
++current_index_;
|
||||||
|
if (at_end())
|
||||||
|
current_index_ = 0;
|
||||||
|
update_ui();
|
||||||
|
};
|
||||||
|
|
||||||
update_ui();
|
update_ui();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -294,7 +419,7 @@ PlaylistView::~PlaylistView() {
|
|||||||
void PlaylistView::set_parent_rect(Rect new_parent_rect) {
|
void PlaylistView::set_parent_rect(Rect new_parent_rect) {
|
||||||
View::set_parent_rect(new_parent_rect);
|
View::set_parent_rect(new_parent_rect);
|
||||||
|
|
||||||
const ui::Rect waterfall_rect{
|
ui::Rect waterfall_rect{
|
||||||
0, header_height, new_parent_rect.width(),
|
0, header_height, new_parent_rect.width(),
|
||||||
new_parent_rect.height() - header_height};
|
new_parent_rect.height() - header_height};
|
||||||
waterfall.set_parent_rect(waterfall_rect);
|
waterfall.set_parent_rect(waterfall_rect);
|
||||||
|
@ -25,13 +25,16 @@
|
|||||||
#define NORMAL_UI false
|
#define NORMAL_UI false
|
||||||
|
|
||||||
#include "app_settings.hpp"
|
#include "app_settings.hpp"
|
||||||
|
#include "bitmap.hpp"
|
||||||
|
#include "file.hpp"
|
||||||
|
#include "metadata_file.hpp"
|
||||||
#include "radio_state.hpp"
|
#include "radio_state.hpp"
|
||||||
#include "ui_widget.hpp"
|
#include "replay_thread.hpp"
|
||||||
#include "ui_navigation.hpp"
|
#include "ui_navigation.hpp"
|
||||||
#include "ui_receiver.hpp"
|
#include "ui_receiver.hpp"
|
||||||
#include "replay_thread.hpp"
|
|
||||||
#include "ui_spectrum.hpp"
|
#include "ui_spectrum.hpp"
|
||||||
#include "ui_transmitter.hpp"
|
#include "ui_transmitter.hpp"
|
||||||
|
#include "ui_widget.hpp"
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
@ -44,10 +47,6 @@ class PlaylistView : public View {
|
|||||||
PlaylistView(NavigationView& nav);
|
PlaylistView(NavigationView& nav);
|
||||||
~PlaylistView();
|
~PlaylistView();
|
||||||
|
|
||||||
// Disable copy to make -Weffc++ happy.
|
|
||||||
PlaylistView(const PlaylistView&) = delete;
|
|
||||||
PlaylistView& operator=(const PlaylistView&) = delete;
|
|
||||||
|
|
||||||
void set_parent_rect(Rect new_parent_rect) override;
|
void set_parent_rect(Rect new_parent_rect) override;
|
||||||
void on_hide() override;
|
void on_hide() override;
|
||||||
void focus() override;
|
void focus() override;
|
||||||
@ -61,35 +60,40 @@ class PlaylistView : public View {
|
|||||||
"tx_playlist", app_settings::Mode::TX};
|
"tx_playlist", app_settings::Mode::TX};
|
||||||
|
|
||||||
// More header == less spectrum view.
|
// More header == less spectrum view.
|
||||||
static constexpr ui::Dim header_height = 4 * 16;
|
static constexpr ui::Dim header_height = 6 * 16;
|
||||||
static constexpr uint32_t baseband_bandwidth = 2500000;
|
static constexpr uint32_t baseband_bandwidth = 2500000;
|
||||||
|
|
||||||
struct playlist_entry {
|
struct playlist_entry {
|
||||||
rf::Frequency replay_frequency{0};
|
std::filesystem::path path{};
|
||||||
std::filesystem::path replay_file{};
|
capture_metadata metadata{};
|
||||||
uint32_t sample_rate{};
|
File::Size file_size{};
|
||||||
uint32_t initial_delay{};
|
uint32_t ms_delay{};
|
||||||
};
|
};
|
||||||
|
|
||||||
std::unique_ptr<ReplayThread> replay_thread_{};
|
std::unique_ptr<ReplayThread> replay_thread_{};
|
||||||
bool ready_signal_{}; // Used to signal the ReplayThread.
|
bool ready_signal_{}; // Used to signal the ReplayThread.
|
||||||
|
|
||||||
size_t current_track_{0};
|
size_t current_index_{0};
|
||||||
const playlist_entry* current_entry_{};
|
bool playlist_dirty_{};
|
||||||
size_t current_entry_size_{0};
|
|
||||||
std::vector<playlist_entry> playlist_db_{};
|
std::vector<playlist_entry> playlist_db_{};
|
||||||
std::filesystem::path playlist_path_{};
|
std::filesystem::path playlist_path_{};
|
||||||
|
|
||||||
void load_file(const std::filesystem::path& path);
|
void load_file(const std::filesystem::path& path);
|
||||||
|
Optional<playlist_entry> load_entry(std::filesystem::path&& path);
|
||||||
void on_file_changed(const std::filesystem::path& path);
|
void on_file_changed(const std::filesystem::path& path);
|
||||||
|
void open_file(bool prompt_save = true);
|
||||||
|
void save_file(bool show_dialogs = true);
|
||||||
|
void add_entry(std::filesystem::path&& path);
|
||||||
|
void delete_entry();
|
||||||
void reset();
|
void reset();
|
||||||
void show_file_error(
|
void show_file_error(
|
||||||
const std::filesystem::path& path,
|
const std::filesystem::path& path,
|
||||||
const std::string& message);
|
const std::string& message);
|
||||||
|
|
||||||
|
const playlist_entry* current() const;
|
||||||
|
|
||||||
bool is_active() const;
|
bool is_active() const;
|
||||||
bool loop() const;
|
bool at_end() const;
|
||||||
bool is_done() const;
|
|
||||||
|
|
||||||
void toggle();
|
void toggle();
|
||||||
void start();
|
void start();
|
||||||
@ -103,18 +107,16 @@ class PlaylistView : public View {
|
|||||||
void on_tx_progress(uint32_t progress);
|
void on_tx_progress(uint32_t progress);
|
||||||
void handle_replay_thread_done(uint32_t return_code);
|
void handle_replay_thread_done(uint32_t return_code);
|
||||||
|
|
||||||
Button button_open{
|
|
||||||
{0 * 8, 0 * 16, 10 * 8, 2 * 16},
|
|
||||||
"Open PPL"};
|
|
||||||
|
|
||||||
Text text_filename{
|
Text text_filename{
|
||||||
{11 * 8, 0 * 16, 12 * 8, 16}};
|
{0 * 8, 0 * 16, 30 * 8, 16}};
|
||||||
|
|
||||||
|
// TODO: delay duration field.
|
||||||
|
// TODO: TxFrequencyField to edit entry frequency.
|
||||||
|
Text text_frequency{
|
||||||
|
{0 * 8, 1 * 16, 9 * 8, 16}};
|
||||||
|
|
||||||
Text text_sample_rate{
|
Text text_sample_rate{
|
||||||
{24 * 8, 0 * 16, 6 * 8, 16}};
|
{10 * 8, 1 * 16, 7 * 8, 16}};
|
||||||
|
|
||||||
Text text_duration{
|
|
||||||
{11 * 8, 1 * 16, 6 * 8, 16}};
|
|
||||||
|
|
||||||
ProgressBar progressbar_track{
|
ProgressBar progressbar_track{
|
||||||
{18 * 8, 1 * 16, 12 * 8, 8}};
|
{18 * 8, 1 * 16, 12 * 8, 8}};
|
||||||
@ -122,12 +124,11 @@ class PlaylistView : public View {
|
|||||||
ProgressBar progressbar_transmit{
|
ProgressBar progressbar_transmit{
|
||||||
{18 * 8, 3 * 8, 12 * 8, 8}};
|
{18 * 8, 3 * 8, 12 * 8, 8}};
|
||||||
|
|
||||||
Text text_frequency{
|
Text text_duration{
|
||||||
{0 * 8, 2 * 16, 9 * 8, 16}};
|
{0 * 8, 2 * 16, 5 * 8, 16}};
|
||||||
|
|
||||||
TransmitterView2 tx_view{
|
TransmitterView2 tx_view{
|
||||||
74, 1 * 8, SHORT_UI // x(columns), y (line) position.
|
9 * 8, 1 * 8, SHORT_UI};
|
||||||
};
|
|
||||||
|
|
||||||
Checkbox check_loop{
|
Checkbox check_loop{
|
||||||
{21 * 8, 2 * 16},
|
{21 * 8, 2 * 16},
|
||||||
@ -144,6 +145,42 @@ class PlaylistView : public View {
|
|||||||
Text text_track{
|
Text text_track{
|
||||||
{0 * 8, 3 * 16, 30 * 8, 16}};
|
{0 * 8, 3 * 16, 30 * 8, 16}};
|
||||||
|
|
||||||
|
NewButton button_prev{
|
||||||
|
{0 * 8, 4 * 16, 4 * 8, 2 * 16},
|
||||||
|
"",
|
||||||
|
&bitmap_arrow_left,
|
||||||
|
Color::dark_grey()};
|
||||||
|
|
||||||
|
NewButton button_add{
|
||||||
|
{6 * 8, 4 * 16, 4 * 8, 2 * 16},
|
||||||
|
"",
|
||||||
|
&bitmap_icon_new_file,
|
||||||
|
Color::orange()};
|
||||||
|
|
||||||
|
NewButton button_delete{
|
||||||
|
{10 * 8, 4 * 16, 4 * 8, 2 * 16},
|
||||||
|
"",
|
||||||
|
&bitmap_icon_delete,
|
||||||
|
Color::orange()};
|
||||||
|
|
||||||
|
NewButton button_open{
|
||||||
|
{16 * 8, 4 * 16, 4 * 8, 2 * 16},
|
||||||
|
"",
|
||||||
|
&bitmap_icon_load,
|
||||||
|
Color::dark_blue()};
|
||||||
|
|
||||||
|
NewButton button_save{
|
||||||
|
{20 * 8, 4 * 16, 4 * 8, 2 * 16},
|
||||||
|
"",
|
||||||
|
&bitmap_icon_save,
|
||||||
|
Color::dark_blue()};
|
||||||
|
|
||||||
|
NewButton button_next{
|
||||||
|
{26 * 8, 4 * 16, 4 * 8, 2 * 16},
|
||||||
|
"",
|
||||||
|
&bitmap_arrow_right,
|
||||||
|
Color::dark_grey()};
|
||||||
|
|
||||||
spectrum::WaterfallWidget waterfall{};
|
spectrum::WaterfallWidget waterfall{};
|
||||||
|
|
||||||
MessageHandlerRegistration message_handler_replay_thread_error{
|
MessageHandlerRegistration message_handler_replay_thread_error{
|
||||||
|
@ -5417,6 +5417,82 @@ static constexpr Bitmap bitmap_icon_touchtunes{
|
|||||||
{16, 16},
|
{16, 16},
|
||||||
bitmap_icon_touchtunes_data};
|
bitmap_icon_touchtunes_data};
|
||||||
|
|
||||||
|
static constexpr uint8_t bitmap_arrow_left_data[] = {
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x20,
|
||||||
|
0x00,
|
||||||
|
0x30,
|
||||||
|
0x00,
|
||||||
|
0x38,
|
||||||
|
0x00,
|
||||||
|
0xFC,
|
||||||
|
0x7F,
|
||||||
|
0xFE,
|
||||||
|
0x7F,
|
||||||
|
0xFC,
|
||||||
|
0x7F,
|
||||||
|
0x38,
|
||||||
|
0x00,
|
||||||
|
0x30,
|
||||||
|
0x00,
|
||||||
|
0x20,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
};
|
||||||
|
static constexpr Bitmap bitmap_arrow_left{
|
||||||
|
{16, 16},
|
||||||
|
bitmap_arrow_left_data};
|
||||||
|
|
||||||
|
static constexpr uint8_t bitmap_arrow_right_data[] = {
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x04,
|
||||||
|
0x00,
|
||||||
|
0x0C,
|
||||||
|
0x00,
|
||||||
|
0x1C,
|
||||||
|
0xFE,
|
||||||
|
0x3F,
|
||||||
|
0xFE,
|
||||||
|
0x7F,
|
||||||
|
0xFE,
|
||||||
|
0x3F,
|
||||||
|
0x00,
|
||||||
|
0x1C,
|
||||||
|
0x00,
|
||||||
|
0x0C,
|
||||||
|
0x00,
|
||||||
|
0x04,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
0x00,
|
||||||
|
};
|
||||||
|
static constexpr Bitmap bitmap_arrow_right{
|
||||||
|
{16, 16},
|
||||||
|
bitmap_arrow_right_data};
|
||||||
|
|
||||||
} /* namespace ui */
|
} /* namespace ui */
|
||||||
|
|
||||||
#endif /*__BITMAP_HPP__*/
|
#endif /*__BITMAP_HPP__*/
|
||||||
|
BIN
firmware/graphics/arrow_left.png
Normal file
BIN
firmware/graphics/arrow_left.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 252 B |
BIN
firmware/graphics/arrow_right.png
Normal file
BIN
firmware/graphics/arrow_right.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 252 B |
@ -1,2 +0,0 @@
|
|||||||
315000000,SAMPLES/TeslaChargePort_US.C16,500000,0
|
|
||||||
433920000,SAMPLES/TeslaChargePort_EU_AU.C16,500000,10
|
|
4
sdcard/PLAYLIST/TESLAS.PPL
Normal file
4
sdcard/PLAYLIST/TESLAS.PPL
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Playlist file example
|
||||||
|
# capture path, pre-delay milliseconds (optional)
|
||||||
|
/SAMPLES/TeslaChargePort_US.C16
|
||||||
|
/SAMPLES/TeslaChargePort_EU_AU.C16,100
|
Loading…
Reference in New Issue
Block a user