mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Just minor changes
This commit is contained in:
parent
9ee83c5dbb
commit
728426c5e7
@ -30,188 +30,203 @@
|
|||||||
|
|
||||||
using namespace portapack;
|
using namespace portapack;
|
||||||
|
|
||||||
namespace ui {
|
namespace ui
|
||||||
|
{
|
||||||
|
|
||||||
void WhipCalcView::focus() {
|
void WhipCalcView::focus()
|
||||||
field_frequency.focus();
|
|
||||||
}
|
|
||||||
|
|
||||||
double ui::WhipCalcView::get_decimals(double num, int16_t mult, bool round) {
|
|
||||||
num -= int(num); //keep decimals only
|
|
||||||
num *= mult; //Shift decimals into integers
|
|
||||||
if (!round) return num;
|
|
||||||
int16_t intnum = int(num); //Round it up if necessary
|
|
||||||
num -= intnum; //Get decimal part
|
|
||||||
if (num > .5) intnum++; //Round up
|
|
||||||
return intnum;
|
|
||||||
}
|
|
||||||
|
|
||||||
void WhipCalcView::update_result() {
|
|
||||||
double length, calclength, divider;
|
|
||||||
console.clear(true);
|
|
||||||
divider = ((double)options_type.selected_index_value() / 8.0);
|
|
||||||
|
|
||||||
// Antenna lengths fields
|
|
||||||
if (field_frequency.value() > 0)
|
|
||||||
{
|
{
|
||||||
// Metric
|
field_frequency.focus();
|
||||||
length = (speed_of_light_mps / (double)field_frequency.value()) * divider;
|
|
||||||
auto m = to_string_dec_int((int)length, 0);
|
|
||||||
//auto cm = to_string_dec_int(int(length * 100.0) % 100, 2);
|
|
||||||
//auto mm = to_string_dec_int(int(length * 1000.0) % 10, 1);
|
|
||||||
calclength = get_decimals(length, 100); //cm
|
|
||||||
auto cm = to_string_dec_int(int(calclength), 0);
|
|
||||||
auto mm = to_string_dec_int(int(get_decimals(calclength, 10, true)), 0);
|
|
||||||
text_result_metric.set(m + "m " + cm + "." + mm + "cm");
|
|
||||||
|
|
||||||
// Imperial
|
|
||||||
calclength = (speed_of_light_fps / (double)field_frequency.value()) * divider;
|
|
||||||
auto feet = to_string_dec_int(int(calclength), 0);
|
|
||||||
calclength = get_decimals(calclength, 12); //inches
|
|
||||||
auto inch = to_string_dec_int(int(calclength), 0);
|
|
||||||
auto inch_c = to_string_dec_int(int(get_decimals(calclength, 10, true)), 0);
|
|
||||||
text_result_imperial.set(feet + "ft " + inch + "." + inch_c + "in");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
text_result_metric.set("infinity+");
|
|
||||||
text_result_imperial.set("infinity+");
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t ant_count = 9; //Shown antennas counter
|
double ui::WhipCalcView::get_decimals(double num, int16_t mult, bool round)
|
||||||
length *= 1000; //Get length in mm needed to extend the antenna
|
{
|
||||||
for (antenna_entry antenna : antenna_db)
|
num -= int(num); //keep decimals only
|
||||||
{ //go thru all antennas available
|
num *= mult; //Shift decimals into integers
|
||||||
uint16_t element, refined_quarter = 0;
|
if (!round)
|
||||||
for (element = 0; element < antenna.elements.size(); element++)
|
return num;
|
||||||
|
int16_t intnum = int(num); //Round it up if necessary
|
||||||
|
num -= intnum; //Get decimal part
|
||||||
|
if (num > .5)
|
||||||
|
intnum++; //Round up
|
||||||
|
return intnum;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WhipCalcView::update_result()
|
||||||
|
{
|
||||||
|
double length, calclength, divider;
|
||||||
|
console.clear(true);
|
||||||
|
divider = ((double)options_type.selected_index_value() / 8.0);
|
||||||
|
|
||||||
|
// Antenna lengths fields
|
||||||
|
if (field_frequency.value() > 0)
|
||||||
{
|
{
|
||||||
if (length == antenna.elements[element]) //Exact element in length
|
// Metric
|
||||||
{
|
length = (speed_of_light_mps / (double)field_frequency.value()) * divider;
|
||||||
element++; //Real element is +1 (zero based vector)
|
auto m = to_string_dec_int((int)length, 0);
|
||||||
break; //Done with this ant
|
//auto cm = to_string_dec_int(int(length * 100.0) % 100, 2);
|
||||||
}
|
//auto mm = to_string_dec_int(int(length * 1000.0) % 10, 1);
|
||||||
else if (length < antenna.elements[element])
|
calclength = get_decimals(length, 100); //cm
|
||||||
{
|
auto cm = to_string_dec_int(int(calclength), 0);
|
||||||
double remain, this_element, quarter = 0;
|
auto mm = to_string_dec_int(int(get_decimals(calclength, 10, true)), 0);
|
||||||
remain = length - antenna.elements[element - 1]; //mm needed from this element to reach length
|
text_result_metric.set(m + "m " + cm + "." + mm + "cm");
|
||||||
this_element = antenna.elements[element] - antenna.elements[element - 1]; //total mm on this element
|
|
||||||
quarter = (remain * 4) / this_element; //havoc & portack ended on this int(quarter) resolution.
|
// Imperial
|
||||||
if (quarter - int(quarter) > 0.5)
|
calclength = (speed_of_light_fps / (double)field_frequency.value()) * divider;
|
||||||
{ //rounding gave a measure closer to next quarter
|
auto feet = to_string_dec_int(int(calclength), 0);
|
||||||
refined_quarter = int(quarter) + 1;
|
calclength = get_decimals(calclength, 12); //inches
|
||||||
if (refined_quarter == 4)
|
auto inch = to_string_dec_int(int(calclength), 0);
|
||||||
{ //rounding gave a measure closer to next element
|
auto inch_c = to_string_dec_int(int(get_decimals(calclength, 10, true)), 0);
|
||||||
refined_quarter = 0;
|
text_result_imperial.set(feet + "ft " + inch + "." + inch_c + "in");
|
||||||
element++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
refined_quarter = int(quarter);
|
|
||||||
}
|
|
||||||
break; //Done with this ant
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/*if (!ant_count)
|
else
|
||||||
|
{
|
||||||
|
text_result_metric.set("infinity+");
|
||||||
|
text_result_imperial.set("infinity+");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t ant_count = 9; //Shown antennas counter
|
||||||
|
length *= 1000; //Get length in mm needed to extend the antenna
|
||||||
|
for (antenna_entry antenna : antenna_db)
|
||||||
|
{ //go thru all antennas available
|
||||||
|
uint16_t element, refined_quarter = 0;
|
||||||
|
for (element = 0; element < antenna.elements.size(); element++)
|
||||||
|
{
|
||||||
|
if (length == antenna.elements[element]) //Exact element in length
|
||||||
|
{
|
||||||
|
element++; //Real element is +1 (zero based vector)
|
||||||
|
break; //Done with this ant
|
||||||
|
}
|
||||||
|
else if (length < antenna.elements[element])
|
||||||
|
{
|
||||||
|
double remain, this_element, quarter = 0;
|
||||||
|
remain = length - antenna.elements[element - 1]; //mm needed from this element to reach length
|
||||||
|
this_element = antenna.elements[element] - antenna.elements[element - 1]; //total mm on this element
|
||||||
|
quarter = (remain * 4) / this_element; //havoc & portack ended on this int(quarter) resolution.
|
||||||
|
if (quarter - int(quarter) > 0.5)
|
||||||
|
{ //rounding gave a measure closer to next quarter
|
||||||
|
refined_quarter = int(quarter) + 1;
|
||||||
|
if (refined_quarter == 4)
|
||||||
|
{ //rounding gave a measure closer to next element
|
||||||
|
refined_quarter = 0;
|
||||||
|
element++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
refined_quarter = int(quarter);
|
||||||
|
}
|
||||||
|
break; //Done with this ant
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*if (!ant_count)
|
||||||
{
|
{
|
||||||
console.write(" and more ...");
|
console.write(" and more ...");
|
||||||
break;
|
break;
|
||||||
}*/
|
}*/
|
||||||
console.write(antenna.label + ": " + to_string_dec_int(element, 1) + frac_str[refined_quarter] + " elements\n");
|
console.write(antenna.label + ": " + to_string_dec_int(element, 1) + frac_str[refined_quarter] + " elements\n");
|
||||||
ant_count--; // For now, just showing all.
|
ant_count--; // For now, just showing all.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
WhipCalcView::WhipCalcView(NavigationView& nav) {
|
WhipCalcView::WhipCalcView(NavigationView &nav)
|
||||||
|
{
|
||||||
|
add_children({&labels,
|
||||||
|
//&antennas_on_memory,
|
||||||
|
&field_frequency,
|
||||||
|
&options_type,
|
||||||
|
&text_result_metric,
|
||||||
|
&text_result_imperial,
|
||||||
|
&console,
|
||||||
|
&button_exit});
|
||||||
|
|
||||||
add_children({
|
File antennas_file;
|
||||||
&labels,
|
auto error = antennas_file.open("WHIPCALC/ANTENNAS.TXT");
|
||||||
&antennas_on_memory,
|
|
||||||
&field_frequency,
|
|
||||||
&options_type,
|
|
||||||
&text_result_metric,
|
|
||||||
&text_result_imperial,
|
|
||||||
&console,
|
|
||||||
&button_exit
|
|
||||||
});
|
|
||||||
|
|
||||||
File antennas_file;
|
if (!error.is_valid())
|
||||||
auto result = antennas_file.open("WHIPCALC/ANTENNAS.TXT");
|
{
|
||||||
|
std::string line;
|
||||||
|
char one_char[1];
|
||||||
|
for (size_t pointer = 0; pointer < antennas_file.size(); pointer++)
|
||||||
|
{
|
||||||
|
antennas_file.seek(pointer);
|
||||||
|
antennas_file.read(one_char, 1);
|
||||||
|
if ((int)one_char[0] >= ' ')
|
||||||
|
line += one_char[0]; //Add it to the textline
|
||||||
|
else if (one_char[0] == '\n')
|
||||||
|
{ //New Line
|
||||||
|
txtline_process(line); //make sense of this textline
|
||||||
|
line.clear(); //Ready for next textline
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (line.length() > 0)
|
||||||
|
txtline_process(line); //Last line had no newline at end ?
|
||||||
|
}
|
||||||
|
|
||||||
if (result.is_valid()) {
|
if (!antenna_db.size())
|
||||||
antenna_Default(); // default ant500
|
add_default_antenna();
|
||||||
} else {
|
//antennas_on_memory.set(to_string_dec_int(antenna_db.size(),0) + " antennas"); //tell user
|
||||||
std::string line;
|
|
||||||
char one_char[1];
|
options_type.set_selected_index(2); // Quarter wave
|
||||||
for (size_t pointer=0; pointer < antennas_file.size();pointer++) {
|
options_type.on_change = [this](size_t, OptionsField::value_t) {
|
||||||
antennas_file.seek(pointer);
|
|
||||||
antennas_file.read(one_char, 1);
|
|
||||||
if ((int)one_char[0] > ' ') { //ascii space upwards
|
|
||||||
line += one_char[0]; //Add it to the textline
|
|
||||||
}
|
|
||||||
else if (one_char[0] == '\n') { //New Line
|
|
||||||
txtline_process(line); //make sense of this textline
|
|
||||||
line.clear(); //Ready for next textline
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (line.length() > 0) txtline_process(line); //Last line had no newline at end ?
|
|
||||||
if (!antenna_db.size()) antenna_Default(); //no antenna found on txt, use default
|
|
||||||
}
|
|
||||||
antennas_on_memory.set(to_string_dec_int(antenna_db.size(),0) + " antennas"); //tell user
|
|
||||||
|
|
||||||
options_type.set_selected_index(2); // Quarter wave
|
|
||||||
options_type.on_change = [this](size_t, OptionsField::value_t) {
|
|
||||||
this->update_result();
|
|
||||||
};
|
|
||||||
|
|
||||||
field_frequency.set_step(1000000); // 1MHz step
|
|
||||||
field_frequency.on_change = [this](rf::Frequency) {
|
|
||||||
this->update_result();
|
|
||||||
};
|
|
||||||
field_frequency.on_edit = [this, &nav]() {
|
|
||||||
// TODO: Provide separate modal method/scheme?
|
|
||||||
auto new_view = nav.push<FrequencyKeypadView>(transmitter_model.tuning_frequency());
|
|
||||||
new_view->on_changed = [this](rf::Frequency f) {
|
|
||||||
this->field_frequency.set_value(f);
|
|
||||||
this->update_result();
|
this->update_result();
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
button_exit.on_select = [this, &nav](Button&) {
|
|
||||||
nav.pop();
|
|
||||||
};
|
|
||||||
|
|
||||||
field_frequency.set_value(transmitter_model.tuning_frequency());
|
|
||||||
}
|
|
||||||
|
|
||||||
void ui::WhipCalcView::txtline_process(std::string& line) {
|
field_frequency.set_step(1000000); // 1MHz step
|
||||||
if (line.find("#") != std::string::npos) return; //Line is just a comment
|
field_frequency.on_change = [this](rf::Frequency) {
|
||||||
char separator = ',';
|
this->update_result();
|
||||||
size_t previous = 0;
|
};
|
||||||
uint16_t value = 0;
|
field_frequency.on_edit = [this, &nav]() {
|
||||||
antenna_entry new_antenna;
|
// TODO: Provide separate modal method/scheme?
|
||||||
size_t current = line.find(separator);
|
auto new_view = nav.push<FrequencyKeypadView>(transmitter_model.tuning_frequency());
|
||||||
while (current != std::string::npos) {
|
new_view->on_changed = [this](rf::Frequency f) {
|
||||||
if (!previous) { //first space found
|
this->field_frequency.set_value(f);
|
||||||
new_antenna.label.assign(line,0,current); //antenna label
|
this->update_result();
|
||||||
} else {
|
};
|
||||||
value = std::stoi(line.substr(previous,current - previous));
|
};
|
||||||
if (!value) return; //No element length? abort antenna
|
|
||||||
new_antenna.elements.push_back(value); //Store this new element
|
|
||||||
}
|
|
||||||
previous = current + 1;
|
|
||||||
current = line.find(separator,previous); //Search for next space delimiter
|
|
||||||
}
|
|
||||||
if (!previous) return; //Not even a label ? drop this antenna!
|
|
||||||
value = std::stoi(line.substr(previous,current - previous)); //Last element
|
|
||||||
if (!value) return;
|
|
||||||
new_antenna.elements.push_back(value);
|
|
||||||
antenna_db.push_back(new_antenna); //Add this antenna
|
|
||||||
}
|
|
||||||
|
|
||||||
void ui::WhipCalcView::antenna_Default() {
|
button_exit.on_select = [this, &nav](Button &) {
|
||||||
antenna_db.push_back({"ANT500",{ 185, 315, 450, 586, 724, 862} }); //store a default ant500
|
nav.pop();
|
||||||
}
|
};
|
||||||
|
|
||||||
}
|
field_frequency.set_value(transmitter_model.tuning_frequency());
|
||||||
|
}
|
||||||
|
|
||||||
|
void ui::WhipCalcView::txtline_process(std::string &line)
|
||||||
|
{
|
||||||
|
if (line.find("#") != std::string::npos)
|
||||||
|
return; //Line is just a comment
|
||||||
|
|
||||||
|
char separator = ',';
|
||||||
|
size_t previous = 0;
|
||||||
|
uint16_t value = 0;
|
||||||
|
antenna_entry new_antenna;
|
||||||
|
size_t current = line.find(separator);
|
||||||
|
|
||||||
|
while (current != std::string::npos)
|
||||||
|
{
|
||||||
|
if (!previous)
|
||||||
|
new_antenna.label.assign(line, 0, current); //antenna label
|
||||||
|
else
|
||||||
|
{
|
||||||
|
value = std::stoi(line.substr(previous, current - previous));
|
||||||
|
if (!value) return; //No element length? abort antenna
|
||||||
|
new_antenna.elements.push_back(value); //Store this new element
|
||||||
|
}
|
||||||
|
previous = current + 1;
|
||||||
|
current = line.find(separator, previous); //Search for next space delimiter
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!previous) return; //Not even a label ? drop this antenna!
|
||||||
|
value = std::stoi(line.substr(previous, current - previous)); //Last element
|
||||||
|
|
||||||
|
if (!value) return;
|
||||||
|
new_antenna.elements.push_back(value);
|
||||||
|
antenna_db.push_back(new_antenna); //Add this antenna
|
||||||
|
}
|
||||||
|
|
||||||
|
void ui::WhipCalcView::add_default_antenna()
|
||||||
|
{
|
||||||
|
antenna_db.push_back({"ANT500", {185, 315, 450, 586, 724, 862}}); //store a default ant500
|
||||||
|
}
|
||||||
|
} // namespace ui
|
||||||
|
@ -30,85 +30,69 @@
|
|||||||
#include "string_format.hpp"
|
#include "string_format.hpp"
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace ui {
|
namespace ui
|
||||||
|
{
|
||||||
|
class WhipCalcView : public View
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
WhipCalcView(NavigationView &nav);
|
||||||
|
void focus() override;
|
||||||
|
std::string title() const override { return "Antenna length"; };
|
||||||
|
|
||||||
class WhipCalcView : public View {
|
private:
|
||||||
public:
|
const double speed_of_light_mps = 299792458.0; // m/s
|
||||||
WhipCalcView(NavigationView& nav);
|
const double speed_of_light_fps = 983571087.90472; // feet/s
|
||||||
|
const std::string frac_str[4] = {"", " 1/4", " 1/2", " 3/4"};
|
||||||
void focus() override;
|
|
||||||
|
|
||||||
std::string title() const override { return "Antenna length"; };
|
|
||||||
|
|
||||||
private:
|
struct antenna_entry
|
||||||
const double speed_of_light_mps = 299792458.0; // m/s
|
|
||||||
const double speed_of_light_fps = 983571087.90472; // feet/s
|
|
||||||
|
|
||||||
const std::string frac_str[4] = { "", " 1/4", " 1/2", " 3/4" };
|
|
||||||
|
|
||||||
struct antenna_entry {
|
|
||||||
std::string label { };
|
|
||||||
std::vector <uint16_t> elements { };
|
|
||||||
};
|
|
||||||
|
|
||||||
std::vector<antenna_entry> antenna_db { };
|
|
||||||
|
|
||||||
double get_decimals(double num, int16_t mult, bool round = false);
|
|
||||||
void update_result();
|
|
||||||
|
|
||||||
uint16_t string_to_number(std::string);
|
|
||||||
void txtline_process(std::string&);
|
|
||||||
void antenna_Default();
|
|
||||||
|
|
||||||
Labels labels {
|
|
||||||
//{ { 5 * 8, 1 * 16 }, "Loaded:", Color::light_grey() },
|
|
||||||
{ { 2 * 8, 1 * 16 }, "Frequency:", Color::light_grey() },
|
|
||||||
{ { 7 * 8, 2 * 16 }, "Wave:", Color::light_grey() },
|
|
||||||
{ { 5 * 8, 3 * 16 }, "Metric:", Color::light_grey() },
|
|
||||||
{ { 3 * 8, 4 * 16 }, "Imperial:", Color::light_grey() }
|
|
||||||
};
|
|
||||||
|
|
||||||
/*Text antennas_on_memory {
|
|
||||||
{ 13 * 8, 1 * 16, 2 * 16, 16 },
|
|
||||||
};*/
|
|
||||||
|
|
||||||
FrequencyField field_frequency {
|
|
||||||
{ 13 * 8, 1 * 16 },
|
|
||||||
};
|
|
||||||
|
|
||||||
OptionsField options_type {
|
|
||||||
{ 13 * 8, 2 * 16 },
|
|
||||||
7,
|
|
||||||
{
|
{
|
||||||
{ "Full", 8 },
|
std::string label{};
|
||||||
{ "Half", 4 },
|
std::vector<uint16_t> elements{};
|
||||||
{ "Quarter", 2 },
|
};
|
||||||
{ "3/4", 6 },
|
|
||||||
{ "1/8", 1 },
|
std::vector<antenna_entry> antenna_db{};
|
||||||
{ "3/8", 3 },
|
double get_decimals(double num, int16_t mult, bool round = false);
|
||||||
{ "5/8", 5 },
|
void update_result();
|
||||||
{ "7/8", 7 }
|
uint16_t string_to_number(std::string);
|
||||||
}
|
void txtline_process(std::string &);
|
||||||
|
void add_default_antenna();
|
||||||
|
|
||||||
|
Labels labels{
|
||||||
|
{{2 * 8, 1 * 16}, "Frequency:", Color::light_grey()},
|
||||||
|
{{7 * 8, 2 * 16}, "Wave:", Color::light_grey()},
|
||||||
|
{{5 * 8, 3 * 16}, "Metric:", Color::light_grey()},
|
||||||
|
{{3 * 8, 4 * 16}, "Imperial:", Color::light_grey()}};
|
||||||
|
|
||||||
|
FrequencyField field_frequency{
|
||||||
|
{13 * 8, 1 * 16},
|
||||||
|
};
|
||||||
|
|
||||||
|
OptionsField options_type{
|
||||||
|
{13 * 8, 2 * 16},
|
||||||
|
7,
|
||||||
|
{{"Full", 8},
|
||||||
|
{"Half", 4},
|
||||||
|
{"Quarter", 2},
|
||||||
|
{"3/4", 6},
|
||||||
|
{"1/8", 1},
|
||||||
|
{"3/8", 3},
|
||||||
|
{"5/8", 5},
|
||||||
|
{"7/8", 7}}};
|
||||||
|
|
||||||
|
Text text_result_metric{
|
||||||
|
{13 * 8, 3 * 16, 10 * 16, 16},
|
||||||
|
"-"};
|
||||||
|
Text text_result_imperial{
|
||||||
|
{13 * 8, 4 * 16, 10 * 16, 16},
|
||||||
|
"-"};
|
||||||
|
Console console{
|
||||||
|
{0, 6 * 16, 240, 160}};
|
||||||
|
|
||||||
|
Button button_exit{
|
||||||
|
{72, 17 * 16, 96, 32},
|
||||||
|
"Back"};
|
||||||
};
|
};
|
||||||
|
|
||||||
Text text_result_metric {
|
|
||||||
{ 13 * 8, 3 * 16, 10 * 16, 16 },
|
|
||||||
"-"
|
|
||||||
};
|
|
||||||
Text text_result_imperial {
|
|
||||||
{ 13 * 8, 4 * 16, 10 * 16, 16 },
|
|
||||||
"-"
|
|
||||||
};
|
|
||||||
Console console {
|
|
||||||
{ 0, 6 * 16, 240, 160 }
|
|
||||||
};
|
|
||||||
|
|
||||||
Button button_exit {
|
|
||||||
{ 72, 17 * 16, 96, 32 },
|
|
||||||
"Back"
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
} /* namespace ui */
|
} /* namespace ui */
|
||||||
|
|
||||||
#endif/*__UI_WHIPCALC__*/
|
#endif /*__UI_WHIPCALC__*/
|
||||||
|
Loading…
Reference in New Issue
Block a user