mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-14 12:08:40 +00:00
Added categories for Frequency Manager
Very bad memory leak fix in MenuView
This commit is contained in:
parent
c0876ebe9f
commit
84be3a363c
@ -21,17 +21,26 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "freqman.hpp"
|
#include "freqman.hpp"
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
bool load_freqman_file(std::vector<freqman_entry> &frequencies) {
|
#define FREQMAN_MAX_PER_CAT 64
|
||||||
|
#define FREQMAN_CAT_MAX_LEN 8
|
||||||
|
#define FREQMAN_DESC_MAX_LEN 32
|
||||||
|
|
||||||
|
bool load_freqman_file(freqman_db &db) {
|
||||||
File freqs_file;
|
File freqs_file;
|
||||||
size_t end, n = 0;
|
size_t length, span_end, n = 0;
|
||||||
char * file_buffer;
|
uint64_t seek_pos = 0;
|
||||||
char * desc_pos;
|
char * line_end;
|
||||||
char desc_buffer[32] = { 0 };
|
int32_t category_id;
|
||||||
|
char * pos;
|
||||||
|
char desc_buffer[FREQMAN_DESC_MAX_LEN + 1] = { 0 };
|
||||||
|
char category_buffer[FREQMAN_CAT_MAX_LEN + 1] = { 0 };
|
||||||
std::string description;
|
std::string description;
|
||||||
rf::Frequency value;
|
rf::Frequency value;
|
||||||
|
std::vector<std::string>::iterator category_find;
|
||||||
|
|
||||||
file_buffer = (char *)chHeapAlloc(0, 2048);
|
char file_buffer[256];
|
||||||
|
|
||||||
while (freqs_file.open("freqman.txt").is_valid()) {
|
while (freqs_file.open("freqman.txt").is_valid()) {
|
||||||
auto result = freqs_file.create("freqman.txt");
|
auto result = freqs_file.create("freqman.txt");
|
||||||
@ -39,47 +48,88 @@ bool load_freqman_file(std::vector<freqman_entry> &frequencies) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
freqs_file.read(file_buffer, 2048);
|
freqs_file.read(file_buffer, 256);
|
||||||
|
|
||||||
|
while ((pos = strstr(file_buffer, "f=")) && (n < FREQMAN_MAX_PER_CAT)) {
|
||||||
|
|
||||||
|
// Cut buffer at end of line
|
||||||
|
line_end = file_buffer;
|
||||||
|
do {
|
||||||
|
span_end = strcspn(line_end, "\x0D\x0A");
|
||||||
|
line_end += (span_end + 1);
|
||||||
|
} while (span_end);
|
||||||
|
*line_end = (char)0;
|
||||||
|
|
||||||
char * pos = file_buffer;
|
|
||||||
while ((pos = strstr(pos, "f=")) && n < 32) {
|
|
||||||
pos += 2;
|
pos += 2;
|
||||||
|
value = strtol(pos, nullptr, 10); // Read frequency
|
||||||
|
|
||||||
value = strtol(pos, nullptr, 10);
|
pos = strstr(file_buffer, "d=");
|
||||||
|
if (pos) {
|
||||||
desc_pos = strstr(pos, "d=");
|
pos += 2;
|
||||||
if (desc_pos) {
|
length = strcspn(pos, ",\x0D\x0A"); // Read description until , or CR LF
|
||||||
desc_pos += 2;
|
if (length > FREQMAN_DESC_MAX_LEN) length = FREQMAN_DESC_MAX_LEN;
|
||||||
end = strcspn(desc_pos, ",\x0D\x0A"); // CR LF
|
memcpy(desc_buffer, pos, length);
|
||||||
if (end > 31) end = 31;
|
desc_buffer[length] = (char)0;
|
||||||
memcpy(desc_buffer, desc_pos, end);
|
|
||||||
desc_buffer[end] = (char)0;
|
|
||||||
description = desc_buffer;
|
description = desc_buffer;
|
||||||
pos = desc_pos;
|
|
||||||
} else {
|
} else {
|
||||||
description = "-";
|
description = "-";
|
||||||
}
|
}
|
||||||
|
|
||||||
frequencies.push_back({ value, "", description });
|
pos = strstr(file_buffer, "c=");
|
||||||
|
if (pos) {
|
||||||
|
pos += 2;
|
||||||
|
length = strcspn(pos, ",\x0D\x0A"); // Read category name until , or CR LF
|
||||||
|
if (length > FREQMAN_CAT_MAX_LEN) length = FREQMAN_CAT_MAX_LEN;
|
||||||
|
memcpy(category_buffer, pos, length);
|
||||||
|
category_buffer[length] = (char)0;
|
||||||
|
|
||||||
|
// See if we already know that category
|
||||||
|
category_find = find(db.categories.begin(), db.categories.end(), category_buffer);
|
||||||
|
if (category_find == db.categories.end()) {
|
||||||
|
// Not found: add to list
|
||||||
|
db.categories.push_back(category_buffer);
|
||||||
|
category_id = db.categories.size() - 1;
|
||||||
|
} else {
|
||||||
|
// Found
|
||||||
|
category_id = category_find - db.categories.begin();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
category_id = -1; // Uncategorized
|
||||||
|
}
|
||||||
|
|
||||||
|
db.entries.push_back({ value, "", description, category_id });
|
||||||
|
n++;
|
||||||
|
|
||||||
|
seek_pos += (line_end - file_buffer);
|
||||||
|
|
||||||
|
if (freqs_file.seek(seek_pos).value() == seek_pos)
|
||||||
|
break;
|
||||||
|
else
|
||||||
|
freqs_file.read(file_buffer, 256);
|
||||||
}
|
}
|
||||||
|
|
||||||
chHeapFree(file_buffer);
|
//chHeapFree(file_buffer);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool save_freqman_file(std::vector<freqman_entry> &frequencies) {
|
bool save_freqman_file(freqman_db &db) {
|
||||||
File freqs_file;
|
File freqs_file;
|
||||||
size_t n;
|
size_t n;
|
||||||
std::string item_string;
|
std::string item_string;
|
||||||
|
int32_t category_id;
|
||||||
|
|
||||||
if (!create_freqman_file(freqs_file)) return false;
|
if (!create_freqman_file(freqs_file)) return false;
|
||||||
|
|
||||||
for (n = 0; n < frequencies.size(); n++) {
|
for (n = 0; n < db.entries.size(); n++) {
|
||||||
item_string = "f=" + to_string_dec_uint(frequencies[n].value);
|
item_string = "f=" + to_string_dec_uint(db.entries[n].value);
|
||||||
|
|
||||||
if (frequencies[n].description.size())
|
if (db.entries[n].description.size())
|
||||||
item_string += ",d=" + frequencies[n].description;
|
item_string += ",d=" + db.entries[n].description;
|
||||||
|
|
||||||
|
category_id = db.entries[n].category_id;
|
||||||
|
if ((category_id >= 0) && (category_id < (int32_t)db.categories.size()))
|
||||||
|
item_string += ",c=" + db.categories[db.entries[n].category_id];
|
||||||
|
|
||||||
freqs_file.write_line(item_string);
|
freqs_file.write_line(item_string);
|
||||||
}
|
}
|
||||||
@ -89,26 +139,27 @@ bool save_freqman_file(std::vector<freqman_entry> &frequencies) {
|
|||||||
|
|
||||||
bool create_freqman_file(File &freqs_file) {
|
bool create_freqman_file(File &freqs_file) {
|
||||||
auto result = freqs_file.create("freqman.txt");
|
auto result = freqs_file.create("freqman.txt");
|
||||||
if (result.is_valid()) return false;
|
if (result.is_valid())
|
||||||
|
return false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string freqman_item_string(freqman_entry &entry) {
|
std::string freqman_item_string(freqman_entry &entry) {
|
||||||
std::string item_string, frequency_str, description;
|
std::string item_string, frequency_str, description;
|
||||||
char temp_buffer[32];
|
|
||||||
rf::Frequency value;
|
rf::Frequency value;
|
||||||
|
|
||||||
value = entry.value;
|
value = entry.value;
|
||||||
entry.frequency_str = to_string_dec_int(value / 1000000, 4) + "." +
|
entry.frequency_str = to_string_dec_int(value / 1000000, 4) + "." +
|
||||||
to_string_dec_int((value / 100) % 10000, 4, '0');
|
to_string_dec_int((value / 100) % 10000, 4, '0');
|
||||||
|
|
||||||
|
item_string = entry.frequency_str + "M: ";
|
||||||
|
|
||||||
if (entry.description.size() <= 19) {
|
if (entry.description.size() <= 19) {
|
||||||
item_string = entry.frequency_str + "M: " + entry.description;
|
item_string += entry.description;
|
||||||
} else {
|
} else {
|
||||||
memcpy(temp_buffer, entry.description.c_str(), 16);
|
// Cut if too long
|
||||||
temp_buffer[16] = (char)0;
|
item_string += entry.description.substr(0, 16) + "...";
|
||||||
item_string = entry.frequency_str + ":" + temp_buffer + "...";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return item_string;
|
return item_string;
|
||||||
|
@ -42,11 +42,17 @@ struct freqman_entry {
|
|||||||
rf::Frequency value;
|
rf::Frequency value;
|
||||||
std::string frequency_str;
|
std::string frequency_str;
|
||||||
std::string description;
|
std::string description;
|
||||||
|
int32_t category_id;
|
||||||
};
|
};
|
||||||
|
|
||||||
bool load_freqman_file(std::vector<freqman_entry> &frequencies);
|
struct freqman_db {
|
||||||
bool save_freqman_file(std::vector<freqman_entry> &frequencies);
|
std::vector<freqman_entry> entries;
|
||||||
|
std::vector<std::string> categories;
|
||||||
|
};
|
||||||
|
|
||||||
|
bool load_freqman_file(freqman_db &db);
|
||||||
|
bool save_freqman_file(freqman_db &db);
|
||||||
bool create_freqman_file(File &freqs_file);
|
bool create_freqman_file(File &freqs_file);
|
||||||
std::string freqman_item_string(freqman_entry &frequencies);
|
std::string freqman_item_string(freqman_entry &item);
|
||||||
|
|
||||||
#endif/*__FREQMAN_H__*/
|
#endif/*__FREQMAN_H__*/
|
||||||
|
@ -31,8 +31,10 @@
|
|||||||
//TEST: Imperial in whipcalc
|
//TEST: Imperial in whipcalc
|
||||||
//TEST: Numbers
|
//TEST: Numbers
|
||||||
|
|
||||||
|
//TODO: FreqMan: Add and rename categories
|
||||||
|
//TODO: FreqMan: Sort by category in edit screen
|
||||||
|
//TODO: FreqMan: Cap entry count per category (only done for total entries right now)
|
||||||
//TODO: Script engine ?
|
//TODO: Script engine ?
|
||||||
//TODO: Morse coder for foxhunts
|
|
||||||
//TODO: Close Call multiple slices (buggy)
|
//TODO: Close Call multiple slices (buggy)
|
||||||
//TODO: Finish EPAR tx
|
//TODO: Finish EPAR tx
|
||||||
//TODO: IQ replay
|
//TODO: IQ replay
|
||||||
|
@ -32,13 +32,14 @@ using namespace portapack;
|
|||||||
namespace ui {
|
namespace ui {
|
||||||
|
|
||||||
void FrequencySaveView::on_save_name(NavigationView& nav) {
|
void FrequencySaveView::on_save_name(NavigationView& nav) {
|
||||||
|
// TODO: Here be a bug.
|
||||||
textentry(nav, desc_buffer, 28);
|
textentry(nav, desc_buffer, 28);
|
||||||
frequencies.push_back({ value_, "", desc_buffer });
|
database.entries.push_back({ value_, "", desc_buffer, (int32_t)options_category.selected_index_value() });
|
||||||
nav.pop();
|
nav.pop();
|
||||||
}
|
}
|
||||||
|
|
||||||
void FrequencySaveView::on_save_timestamp(NavigationView& nav) {
|
void FrequencySaveView::on_save_timestamp(NavigationView& nav) {
|
||||||
frequencies.push_back({ value_, "", str_timestamp });
|
database.entries.push_back({ value_, "", str_timestamp, (int32_t)options_category.selected_index_value() });
|
||||||
nav.pop();
|
nav.pop();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,7 +62,7 @@ void FrequencySaveView::on_tick_second() {
|
|||||||
|
|
||||||
FrequencySaveView::~FrequencySaveView() {
|
FrequencySaveView::~FrequencySaveView() {
|
||||||
rtc_time::signal_tick_second -= signal_token_tick_second;
|
rtc_time::signal_tick_second -= signal_token_tick_second;
|
||||||
save_freqman_file(frequencies);
|
save_freqman_file(database);
|
||||||
}
|
}
|
||||||
|
|
||||||
FrequencySaveView::FrequencySaveView(
|
FrequencySaveView::FrequencySaveView(
|
||||||
@ -70,18 +71,23 @@ FrequencySaveView::FrequencySaveView(
|
|||||||
) : nav_ (nav),
|
) : nav_ (nav),
|
||||||
value_ (value)
|
value_ (value)
|
||||||
{
|
{
|
||||||
|
using name_t = std::string;
|
||||||
|
using value_t = int32_t;
|
||||||
|
using option_t = std::pair<name_t, value_t>;
|
||||||
|
using options_t = std::vector<option_t>;
|
||||||
|
options_t categories;
|
||||||
File freqs_file;
|
File freqs_file;
|
||||||
size_t n;
|
size_t n;
|
||||||
|
|
||||||
if (!load_freqman_file(frequencies)) {
|
if (!load_freqman_file(database)) {
|
||||||
if (!create_freqman_file(freqs_file)) {
|
if (!create_freqman_file(freqs_file)) {
|
||||||
error = ERROR_ACCESS;
|
error = ERROR_ACCESS;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (n = 0; n < frequencies.size(); n++) {
|
for (n = 0; n < database.entries.size(); n++) {
|
||||||
if (frequencies[n].value == value_) {
|
if (database.entries[n].value == value_) {
|
||||||
error = ERROR_DUPLICATE;
|
error = ERROR_DUPLICATE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -97,9 +103,18 @@ FrequencySaveView::FrequencySaveView(
|
|||||||
&button_save_name,
|
&button_save_name,
|
||||||
&button_save_timestamp,
|
&button_save_timestamp,
|
||||||
&text_timestamp,
|
&text_timestamp,
|
||||||
|
&text_category,
|
||||||
|
&options_category,
|
||||||
&button_cancel
|
&button_cancel
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Populate categories OptionsField
|
||||||
|
categories.emplace_back(std::make_pair("No cat.", -1));
|
||||||
|
for (n = 0; n < database.categories.size(); n++)
|
||||||
|
categories.emplace_back(std::make_pair(database.categories[n], n));
|
||||||
|
options_category.set_options(categories);
|
||||||
|
options_category.set_selected_index(0);
|
||||||
|
|
||||||
on_tick_second();
|
on_tick_second();
|
||||||
|
|
||||||
big_display.set(value);
|
big_display.set(value);
|
||||||
@ -110,6 +125,7 @@ FrequencySaveView::FrequencySaveView(
|
|||||||
button_save_timestamp.on_select = [this, &nav](Button&) {
|
button_save_timestamp.on_select = [this, &nav](Button&) {
|
||||||
on_save_timestamp(nav);
|
on_save_timestamp(nav);
|
||||||
};
|
};
|
||||||
|
|
||||||
button_cancel.on_select = [this, &nav](Button&) {
|
button_cancel.on_select = [this, &nav](Button&) {
|
||||||
nav.pop();
|
nav.pop();
|
||||||
};
|
};
|
||||||
@ -120,17 +136,23 @@ void FrequencyLoadView::setup_list() {
|
|||||||
|
|
||||||
menu_view.clear();
|
menu_view.clear();
|
||||||
|
|
||||||
for (n = 0; n < frequencies.size(); n++) {
|
for (n = 0; n < database.entries.size(); n++) {
|
||||||
menu_view.add_item({ freqman_item_string(frequencies[n]), ui::Color::white(), nullptr, [this](){ on_frequency_select(); } });
|
menu_view.add_item({
|
||||||
|
freqman_item_string(database.entries[n]),
|
||||||
|
ui::Color::white(),
|
||||||
|
nullptr,
|
||||||
|
[this](){
|
||||||
|
on_frequency_select();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
menu_view.set_parent_rect({ 0, 0, 240, 216 });
|
|
||||||
menu_view.set_highlighted(menu_view.highlighted()); // Refresh
|
menu_view.set_highlighted(menu_view.highlighted()); // Refresh
|
||||||
}
|
}
|
||||||
|
|
||||||
void FrequencyLoadView::on_frequency_select() {
|
void FrequencyLoadView::on_frequency_select() {
|
||||||
nav_.pop();
|
nav_.pop();
|
||||||
if (on_changed) on_changed(frequencies[menu_view.highlighted()].value);
|
if (on_changed) on_changed(database.entries[menu_view.highlighted()].value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void FrequencyLoadView::focus() {
|
void FrequencyLoadView::focus() {
|
||||||
@ -146,12 +168,12 @@ FrequencyLoadView::FrequencyLoadView(
|
|||||||
NavigationView& nav
|
NavigationView& nav
|
||||||
) : nav_ (nav)
|
) : nav_ (nav)
|
||||||
{
|
{
|
||||||
if (!load_freqman_file(frequencies)) {
|
if (!load_freqman_file(database)) {
|
||||||
error = ERROR_ACCESS;
|
error = ERROR_ACCESS;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (frequencies.size() == 0) {
|
if (database.entries.size() == 0) {
|
||||||
error = ERROR_EMPTY;
|
error = ERROR_EMPTY;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -163,45 +185,61 @@ FrequencyLoadView::FrequencyLoadView(
|
|||||||
|
|
||||||
setup_list();
|
setup_list();
|
||||||
|
|
||||||
|
// Just to allow exit on left
|
||||||
|
menu_view.on_left = [this]() {
|
||||||
|
on_frequency_select();
|
||||||
|
};
|
||||||
|
|
||||||
button_cancel.on_select = [this, &nav](Button&) {
|
button_cancel.on_select = [this, &nav](Button&) {
|
||||||
nav.pop();
|
nav.pop();
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
void FreqManView::on_frequency_select() {
|
void FreqManView::on_frequency_select() {
|
||||||
|
options_category.set_selected_index(database.entries[menu_view.highlighted()].category_id + 1);
|
||||||
button_edit_freq.focus();
|
button_edit_freq.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
void FreqManView::on_edit_freq(rf::Frequency f) {
|
void FreqManView::on_edit_freq(rf::Frequency f) {
|
||||||
frequencies[menu_view.highlighted()].value = f;
|
database.entries[menu_view.highlighted()].value = f;
|
||||||
setup_list();
|
setup_list();
|
||||||
}
|
}
|
||||||
|
|
||||||
void FreqManView::on_edit_desc(NavigationView& nav) {
|
void FreqManView::on_edit_desc(NavigationView& nav) {
|
||||||
char desc_buffer[32] = { 0 };
|
char desc_buffer[32] = { 0 };
|
||||||
|
|
||||||
strcpy(desc_buffer, frequencies[menu_view.highlighted()].description.c_str());
|
strcpy(desc_buffer, database.entries[menu_view.highlighted()].description.c_str());
|
||||||
textentry(nav, desc_buffer, 28, [this, &desc_buffer](char * buffer) {
|
textentry(nav, desc_buffer, 28, [this, &desc_buffer](char * buffer) {
|
||||||
frequencies[menu_view.highlighted()].description = buffer;
|
database.entries[menu_view.highlighted()].description = buffer;
|
||||||
setup_list();
|
setup_list();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void FreqManView::on_delete() {
|
void FreqManView::on_delete() {
|
||||||
frequencies.erase(frequencies.begin() + menu_view.highlighted());
|
database.entries.erase(database.entries.begin() + menu_view.highlighted());
|
||||||
setup_list();
|
setup_list();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void FreqManView::on_edit_category(int32_t category_id) {
|
||||||
|
database.entries[menu_view.highlighted()].category_id = category_id;
|
||||||
|
}
|
||||||
|
|
||||||
void FreqManView::setup_list() {
|
void FreqManView::setup_list() {
|
||||||
size_t n;
|
size_t n;
|
||||||
|
|
||||||
menu_view.clear();
|
menu_view.clear();
|
||||||
|
|
||||||
for (n = 0; n < frequencies.size(); n++) {
|
for (n = 0; n < database.entries.size(); n++) {
|
||||||
menu_view.add_item({ freqman_item_string(frequencies[n]), ui::Color::white(), nullptr, [this](){ on_frequency_select(); } });
|
menu_view.add_item({
|
||||||
|
freqman_item_string(database.entries[n]),
|
||||||
|
ui::Color::white(),
|
||||||
|
nullptr,
|
||||||
|
[this](){
|
||||||
|
on_frequency_select();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
menu_view.set_parent_rect({ 0, 0, 240, 168 });
|
|
||||||
menu_view.set_highlighted(menu_view.highlighted()); // Refresh
|
menu_view.set_highlighted(menu_view.highlighted()); // Refresh
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -215,19 +253,26 @@ void FreqManView::focus() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
FreqManView::~FreqManView() {
|
FreqManView::~FreqManView() {
|
||||||
save_freqman_file(frequencies);
|
save_freqman_file(database);
|
||||||
}
|
}
|
||||||
|
|
||||||
FreqManView::FreqManView(
|
FreqManView::FreqManView(
|
||||||
NavigationView& nav
|
NavigationView& nav
|
||||||
) : nav_ (nav)
|
) : nav_ (nav)
|
||||||
{
|
{
|
||||||
if (!load_freqman_file(frequencies)) {
|
using name_t = std::string;
|
||||||
|
using value_t = int32_t;
|
||||||
|
using option_t = std::pair<name_t, value_t>;
|
||||||
|
using options_t = std::vector<option_t>;
|
||||||
|
options_t categories;
|
||||||
|
size_t n;
|
||||||
|
|
||||||
|
if (!load_freqman_file(database)) {
|
||||||
error = ERROR_ACCESS;
|
error = ERROR_ACCESS;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (frequencies.size() == 0) {
|
if (database.entries.size() == 0) {
|
||||||
error = ERROR_EMPTY;
|
error = ERROR_EMPTY;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -237,14 +282,32 @@ FreqManView::FreqManView(
|
|||||||
&text_edit,
|
&text_edit,
|
||||||
&button_edit_freq,
|
&button_edit_freq,
|
||||||
&button_edit_desc,
|
&button_edit_desc,
|
||||||
|
&text_category,
|
||||||
|
&options_category,
|
||||||
&button_del,
|
&button_del,
|
||||||
&button_exit
|
&button_exit
|
||||||
});
|
});
|
||||||
|
|
||||||
setup_list();
|
setup_list();
|
||||||
|
|
||||||
|
// Populate categories OptionsField
|
||||||
|
categories.emplace_back(std::make_pair("No cat.", -1));
|
||||||
|
for (n = 0; n < database.categories.size(); n++)
|
||||||
|
categories.emplace_back(std::make_pair(database.categories[n], n));
|
||||||
|
options_category.set_options(categories);
|
||||||
|
options_category.set_selected_index(0);
|
||||||
|
|
||||||
|
options_category.on_change = [this](size_t, int32_t category_id) {
|
||||||
|
on_edit_category(category_id);
|
||||||
|
};
|
||||||
|
|
||||||
|
// Just to allow exit on left
|
||||||
|
menu_view.on_left = [this]() {
|
||||||
|
on_frequency_select();
|
||||||
|
};
|
||||||
|
|
||||||
button_edit_freq.on_select = [this, &nav](Button&) {
|
button_edit_freq.on_select = [this, &nav](Button&) {
|
||||||
auto new_view = nav.push<FrequencyKeypadView>(frequencies[menu_view.highlighted()].value);
|
auto new_view = nav.push<FrequencyKeypadView>(database.entries[menu_view.highlighted()].value);
|
||||||
new_view->on_changed = [this](rf::Frequency f) {
|
new_view->on_changed = [this](rf::Frequency f) {
|
||||||
on_edit_freq(f);
|
on_edit_freq(f);
|
||||||
};
|
};
|
||||||
|
@ -48,12 +48,13 @@ private:
|
|||||||
rtc::RTC datetime { };
|
rtc::RTC datetime { };
|
||||||
rf::Frequency value_ { };
|
rf::Frequency value_ { };
|
||||||
std::string str_timestamp { };
|
std::string str_timestamp { };
|
||||||
|
//int32_t category_id_ { -1 };
|
||||||
|
|
||||||
void on_save_name(NavigationView& nav);
|
void on_save_name(NavigationView& nav);
|
||||||
void on_save_timestamp(NavigationView& nav);
|
void on_save_timestamp(NavigationView& nav);
|
||||||
void on_tick_second();
|
void on_tick_second();
|
||||||
|
|
||||||
std::vector<freqman_entry> frequencies { };
|
freqman_db database { };
|
||||||
|
|
||||||
SignalToken signal_token_tick_second { };
|
SignalToken signal_token_tick_second { };
|
||||||
|
|
||||||
@ -63,22 +64,32 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
Text text_save {
|
Text text_save {
|
||||||
{ 88, 120, 8 * 8, 16 },
|
{ 4 * 8, 15 * 8, 8 * 8, 16 },
|
||||||
"Save as:",
|
"Save as:",
|
||||||
};
|
};
|
||||||
Button button_save_name {
|
Button button_save_name {
|
||||||
{ 72, 144, 96, 32 },
|
{ 4 * 8, 18 * 8, 12 * 8, 32 },
|
||||||
"Name (set)"
|
"Name (set)"
|
||||||
};
|
};
|
||||||
Button button_save_timestamp {
|
Button button_save_timestamp {
|
||||||
{ 72, 184, 96, 32 },
|
{ 4 * 8, 23 * 8, 12 * 8, 32 },
|
||||||
"Timestamp:"
|
"Timestamp:"
|
||||||
};
|
};
|
||||||
Text text_timestamp {
|
Text text_timestamp {
|
||||||
{ 76, 220, 11 * 8, 16 },
|
{ 17 * 8, 24 * 8, 11 * 8, 16 },
|
||||||
"MM/DD HH:MM",
|
"MM/DD HH:MM",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Text text_category {
|
||||||
|
{ 4 * 8, 28 * 8, 12 * 8, 16 },
|
||||||
|
"In category:",
|
||||||
|
};
|
||||||
|
OptionsField options_category {
|
||||||
|
{ 17 * 8, 28 * 8 },
|
||||||
|
8,
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
Button button_cancel {
|
Button button_cancel {
|
||||||
{ 72, 264, 96, 32 },
|
{ 72, 264, 96, 32 },
|
||||||
"Cancel"
|
"Cancel"
|
||||||
@ -102,9 +113,12 @@ private:
|
|||||||
void on_frequency_select();
|
void on_frequency_select();
|
||||||
void setup_list();
|
void setup_list();
|
||||||
|
|
||||||
std::vector<freqman_entry> frequencies { };
|
freqman_db database { };
|
||||||
|
|
||||||
MenuView menu_view { };
|
MenuView menu_view {
|
||||||
|
{ 0, 0, 240, 216 },
|
||||||
|
false
|
||||||
|
};
|
||||||
|
|
||||||
Button button_cancel {
|
Button button_cancel {
|
||||||
{ 72, 264, 96, 32 },
|
{ 72, 264, 96, 32 },
|
||||||
@ -130,31 +144,45 @@ private:
|
|||||||
void on_edit_freq(rf::Frequency f);
|
void on_edit_freq(rf::Frequency f);
|
||||||
void on_edit_desc(NavigationView& nav);
|
void on_edit_desc(NavigationView& nav);
|
||||||
void on_delete();
|
void on_delete();
|
||||||
|
void on_edit_category(int32_t category_id);
|
||||||
void setup_list();
|
void setup_list();
|
||||||
|
|
||||||
std::vector<freqman_entry> frequencies { };
|
freqman_db database { };
|
||||||
|
|
||||||
MenuView menu_view { true };
|
MenuView menu_view {
|
||||||
|
{ 0, 0, 240, 168 },
|
||||||
|
true
|
||||||
|
};
|
||||||
|
|
||||||
Text text_edit {
|
Text text_edit {
|
||||||
{ 16, 194, 5 * 8, 16 },
|
{ 2 * 8, 24 * 8, 5 * 8, 16 },
|
||||||
"Edit:"
|
"Edit:"
|
||||||
};
|
};
|
||||||
Button button_edit_freq {
|
Button button_edit_freq {
|
||||||
{ 16, 194 + 16, 104, 32 },
|
{ 2 * 8, 26 * 8, 14 * 8, 32 },
|
||||||
"Frequency"
|
"Frequency"
|
||||||
};
|
};
|
||||||
Button button_edit_desc {
|
Button button_edit_desc {
|
||||||
{ 16, 194 + 16 + 34, 104, 32 },
|
{ 2 * 8, 30 * 8 + 4, 14 * 8, 32 },
|
||||||
"Description"
|
"Description"
|
||||||
};
|
};
|
||||||
|
Text text_category {
|
||||||
|
{ 2 * 8, 35 * 8, 9 * 8, 16 },
|
||||||
|
"Category:",
|
||||||
|
};
|
||||||
|
OptionsField options_category {
|
||||||
|
{ 12 * 8, 35 * 8 },
|
||||||
|
8,
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
|
||||||
Button button_del {
|
Button button_del {
|
||||||
{ 160, 192, 72, 64 },
|
{ 20 * 8, 24 * 8, 9 * 8, 48 },
|
||||||
"Delete"
|
"Delete"
|
||||||
};
|
};
|
||||||
|
|
||||||
Button button_exit {
|
Button button_exit {
|
||||||
{ 160, 264, 72, 32 },
|
{ 20 * 8, 33 * 8, 9 * 8, 40 },
|
||||||
"Exit"
|
"Exit"
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -89,9 +89,15 @@ void MenuItemView::paint(Painter& painter) {
|
|||||||
/* MenuView **************************************************************/
|
/* MenuView **************************************************************/
|
||||||
|
|
||||||
MenuView::MenuView(
|
MenuView::MenuView(
|
||||||
|
Rect new_parent_rect,
|
||||||
bool keep_highlight
|
bool keep_highlight
|
||||||
) : keep_highlight_ { keep_highlight }
|
) : keep_highlight_ { keep_highlight }
|
||||||
{
|
{
|
||||||
|
View::set_parent_rect(new_parent_rect);
|
||||||
|
|
||||||
|
displayed_max_ = (parent_rect().size().height() / 24);
|
||||||
|
arrow_more.set_parent_rect( { 228, (Coord)(displayed_max_ * item_height), 8, 8 } );
|
||||||
|
|
||||||
set_focusable(true);
|
set_focusable(true);
|
||||||
|
|
||||||
signal_token_tick_second = rtc_time::signal_tick_second += [this]() {
|
signal_token_tick_second = rtc_time::signal_tick_second += [this]() {
|
||||||
@ -105,6 +111,7 @@ MenuView::MenuView(
|
|||||||
}
|
}
|
||||||
|
|
||||||
MenuView::~MenuView() {
|
MenuView::~MenuView() {
|
||||||
|
clear();
|
||||||
rtc_time::signal_tick_second -= signal_token_tick_second;
|
rtc_time::signal_tick_second -= signal_token_tick_second;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -120,19 +127,15 @@ void MenuView::on_tick_second() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void MenuView::clear() {
|
void MenuView::clear() {
|
||||||
children_.erase(children_.begin() + 1, children_.end());
|
for (auto child : children_) {
|
||||||
|
if (!child->id) {
|
||||||
|
delete child;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MenuView::add_item(const MenuItem item) {
|
void MenuView::add_item(const MenuItem item) {
|
||||||
add_child(new MenuItemView { item, keep_highlight_ });
|
add_child(new MenuItemView { item, keep_highlight_ });
|
||||||
}
|
|
||||||
|
|
||||||
void MenuView::set_parent_rect(const Rect new_parent_rect) {
|
|
||||||
View::set_parent_rect(new_parent_rect);
|
|
||||||
|
|
||||||
displayed_max_ = new_parent_rect.size().height() / 24;
|
|
||||||
arrow_more.set_parent_rect( { 228, (Coord)(displayed_max_ * item_height), 8, 8 } );
|
|
||||||
|
|
||||||
update_items();
|
update_items();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,13 +178,14 @@ size_t MenuView::highlighted() const {
|
|||||||
|
|
||||||
bool MenuView::set_highlighted(int32_t new_value) {
|
bool MenuView::set_highlighted(int32_t new_value) {
|
||||||
int32_t item_count = (int32_t)children_.size() - 1;
|
int32_t item_count = (int32_t)children_.size() - 1;
|
||||||
|
|
||||||
if (new_value < 0)
|
if (new_value < 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (new_value >= item_count)
|
if (new_value >= item_count)
|
||||||
new_value = item_count - 1;
|
new_value = item_count - 1;
|
||||||
|
|
||||||
if ((new_value > offset_) && ((new_value - offset_ + 1) >= displayed_max_)) {
|
if ((new_value > offset_) && ((new_value - offset_) >= displayed_max_)) {
|
||||||
// Shift MenuView up
|
// Shift MenuView up
|
||||||
offset_ = new_value - displayed_max_ + 1;
|
offset_ = new_value - displayed_max_ + 1;
|
||||||
update_items();
|
update_items();
|
||||||
@ -191,9 +195,9 @@ bool MenuView::set_highlighted(int32_t new_value) {
|
|||||||
update_items();
|
update_items();
|
||||||
}
|
}
|
||||||
|
|
||||||
item_view(highlighted())->unhighlight();
|
item_view(highlighted_)->unhighlight();
|
||||||
highlighted_ = new_value;
|
highlighted_ = new_value;
|
||||||
item_view(highlighted())->highlight();
|
item_view(highlighted_)->highlight();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -71,7 +71,7 @@ class MenuView : public View {
|
|||||||
public:
|
public:
|
||||||
std::function<void(void)> on_left { };
|
std::function<void(void)> on_left { };
|
||||||
|
|
||||||
MenuView(bool keep_highlight = false);
|
MenuView(Rect new_parent_rect = { 0, 0, 240, 304 }, bool keep_highlight = false);
|
||||||
|
|
||||||
~MenuView();
|
~MenuView();
|
||||||
|
|
||||||
@ -85,8 +85,6 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void set_parent_rect(const Rect new_parent_rect) override;
|
|
||||||
|
|
||||||
MenuItemView* item_view(size_t index) const;
|
MenuItemView* item_view(size_t index) const;
|
||||||
|
|
||||||
size_t highlighted() const;
|
size_t highlighted() const;
|
||||||
@ -96,7 +94,6 @@ public:
|
|||||||
void on_blur() override;
|
void on_blur() override;
|
||||||
bool on_key(const KeyEvent event) override;
|
bool on_key(const KeyEvent event) override;
|
||||||
bool on_encoder(const EncoderEvent event) override;
|
bool on_encoder(const EncoderEvent event) override;
|
||||||
//bool on_touch(const TouchEvent event) override;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void update_items();
|
void update_items();
|
||||||
@ -116,7 +113,7 @@ private:
|
|||||||
const size_t item_height = 24;
|
const size_t item_height = 24;
|
||||||
bool blink_ = false;
|
bool blink_ = false;
|
||||||
bool more_ = false;
|
bool more_ = false;
|
||||||
size_t displayed_max_;
|
size_t displayed_max_ { 0 };
|
||||||
size_t highlighted_ { 0 };
|
size_t highlighted_ { 0 };
|
||||||
size_t offset_ { 0 };
|
size_t offset_ { 0 };
|
||||||
};
|
};
|
||||||
|
@ -291,8 +291,8 @@ ReceiverMenuView::ReceiverMenuView(NavigationView& nav) {
|
|||||||
{ "Audio", ui::Color::green(), nullptr, [&nav](){ nav.push<AnalogAudioView>(); } },
|
{ "Audio", ui::Color::green(), nullptr, [&nav](){ nav.push<AnalogAudioView>(); } },
|
||||||
{ "CCIR", ui::Color::grey(), nullptr, [&nav](){ nav.push<NotImplementedView>(); } },
|
{ "CCIR", ui::Color::grey(), nullptr, [&nav](){ nav.push<NotImplementedView>(); } },
|
||||||
{ "Nordic/BTLE", ui::Color::grey(), &bitmap_icon_nordic, [&nav](){ nav.push<NotImplementedView>(); } },
|
{ "Nordic/BTLE", ui::Color::grey(), &bitmap_icon_nordic, [&nav](){ nav.push<NotImplementedView>(); } },
|
||||||
{ "POCSAG", ui::Color::cyan(), nullptr, [&nav](){ nav.push<POCSAGAppView>(); } },
|
{ "POCSAG", ui::Color::cyan(), &bitmap_icon_pocsag, [&nav](){ nav.push<POCSAGAppView>(); } },
|
||||||
{ "SIGFOX", ui::Color::grey(), &bitmap_icon_fox, [&nav](){ nav.push<NotImplementedView>(); } }, // SIGFRXView
|
{ "SIGFOX", ui::Color::grey(), &bitmap_icon_fox, [&nav](){ nav.push<NotImplementedView>(); } }, // SIGFRXView
|
||||||
{ "Transponders", ui::Color::green(), nullptr, [&nav](){ nav.push<TranspondersMenuView>(); } },
|
{ "Transponders", ui::Color::green(), nullptr, [&nav](){ nav.push<TranspondersMenuView>(); } },
|
||||||
} });
|
} });
|
||||||
on_left = [&nav](){ nav.pop(); };
|
on_left = [&nav](){ nav.pop(); };
|
||||||
|
@ -63,7 +63,10 @@ private:
|
|||||||
|
|
||||||
std::vector<script_line> script { };
|
std::vector<script_line> script { };
|
||||||
|
|
||||||
MenuView menu_view { true };
|
MenuView menu_view {
|
||||||
|
{ 0, 0, 240, 168 },
|
||||||
|
true
|
||||||
|
};
|
||||||
|
|
||||||
Text text_edit {
|
Text text_edit {
|
||||||
{ 16, 194, 5 * 8, 16 },
|
{ 16, 194, 5 * 8, 16 },
|
||||||
|
@ -40,26 +40,6 @@ public:
|
|||||||
static void whistle_th(void *p);
|
static void whistle_th(void *p);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
typedef struct rstchs {
|
|
||||||
rf::Frequency out[3];
|
|
||||||
rf::Frequency in;
|
|
||||||
} rstchs;
|
|
||||||
rstchs whistle_chs[14] = {
|
|
||||||
{{ 467650000, 467700000, 467750000 }, 457700000},
|
|
||||||
{{ 467750000, 467825000, 467875000 }, 457825000},
|
|
||||||
{{ 467875000, 467925000, 467975000 }, 457925000},
|
|
||||||
{{ 467950000, 468000000, 468050000 }, 457800000},
|
|
||||||
{{ 467625000, 467675000, 467725000 }, 457675000},
|
|
||||||
{{ 467700000, 467750000, 467800000 }, 457750000},
|
|
||||||
{{ 467750000, 467800000, 467850000 }, 457800000},
|
|
||||||
{{ 467825000, 467875000, 467925000 }, 457875000},
|
|
||||||
{{ 467900000, 467950000, 468000000 }, 457950000},
|
|
||||||
{{ 468025000, 468075000, 468125000 }, 458075000},
|
|
||||||
{{ 468100000, 468150000, 468200000 }, 458150000},
|
|
||||||
{{ 468075000, 468125000, 468175000 }, 458125000},
|
|
||||||
{{ 468175000, 468225000, 468275000 }, 458225000},
|
|
||||||
{{ 468225000, 468275000, 468325000 }, 458275000}
|
|
||||||
};
|
|
||||||
rf::Frequency f;
|
rf::Frequency f;
|
||||||
|
|
||||||
Text text_status {
|
Text text_status {
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user