2015-12-02 00:30:52 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 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.
|
|
|
|
*/
|
|
|
|
|
2015-12-08 18:28:33 -05:00
|
|
|
#ifndef __AIS_APP_H__
|
|
|
|
#define __AIS_APP_H__
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2015-12-08 18:49:20 -05:00
|
|
|
#include "ui_widget.hpp"
|
2016-01-25 01:38:36 -05:00
|
|
|
#include "ui_navigation.hpp"
|
2016-07-25 18:46:37 -04:00
|
|
|
#include "ui_receiver.hpp"
|
|
|
|
#include "ui_rssi.hpp"
|
|
|
|
#include "ui_channel.hpp"
|
2016-01-25 01:38:36 -05:00
|
|
|
|
2016-05-12 01:53:09 -04:00
|
|
|
#include "event_m0.hpp"
|
|
|
|
|
2015-12-02 01:39:27 -05:00
|
|
|
#include "log_file.hpp"
|
2015-12-08 18:49:20 -05:00
|
|
|
|
|
|
|
#include "ais_packet.hpp"
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2015-12-03 17:04:20 -05:00
|
|
|
#include "lpc43xx_cpp.hpp"
|
|
|
|
using namespace lpc43xx;
|
|
|
|
|
2015-12-02 15:16:39 -05:00
|
|
|
#include <cstdint>
|
|
|
|
#include <cstddef>
|
2015-12-02 12:31:14 -05:00
|
|
|
#include <string>
|
2015-12-03 23:34:02 -05:00
|
|
|
#include <list>
|
2015-12-02 12:31:14 -05:00
|
|
|
#include <utility>
|
|
|
|
|
2015-12-05 17:24:41 -05:00
|
|
|
#include <iterator>
|
|
|
|
|
2016-01-18 00:42:15 -05:00
|
|
|
#include "recent_entries.hpp"
|
|
|
|
|
2016-01-13 14:52:39 -05:00
|
|
|
struct AISPosition {
|
|
|
|
rtc::RTC timestamp { };
|
2016-01-15 18:25:32 -05:00
|
|
|
ais::Latitude latitude;
|
|
|
|
ais::Longitude longitude;
|
2016-01-15 17:24:31 -05:00
|
|
|
ais::RateOfTurn rate_of_turn { -128 };
|
|
|
|
ais::SpeedOverGround speed_over_ground { 1023 };
|
|
|
|
ais::CourseOverGround course_over_ground { 3600 };
|
|
|
|
ais::TrueHeading true_heading { 511 };
|
2016-01-13 14:52:39 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct AISRecentEntry {
|
2016-01-17 20:58:39 -05:00
|
|
|
using Key = ais::MMSI;
|
|
|
|
|
2016-01-17 23:49:34 -05:00
|
|
|
static constexpr Key invalid_key = 0xffffffff;
|
|
|
|
|
2016-01-13 14:52:39 -05:00
|
|
|
ais::MMSI mmsi;
|
|
|
|
std::string name;
|
|
|
|
std::string call_sign;
|
|
|
|
std::string destination;
|
|
|
|
AISPosition last_position;
|
|
|
|
size_t received_count;
|
|
|
|
int8_t navigational_status;
|
|
|
|
|
2016-01-15 01:39:58 -05:00
|
|
|
AISRecentEntry(
|
|
|
|
) : AISRecentEntry { 0 }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-01-13 14:52:39 -05:00
|
|
|
AISRecentEntry(
|
|
|
|
const ais::MMSI& mmsi
|
|
|
|
) : mmsi { mmsi },
|
|
|
|
last_position { },
|
|
|
|
received_count { 0 },
|
|
|
|
navigational_status { -1 }
|
|
|
|
{
|
|
|
|
}
|
2016-01-14 01:27:30 -05:00
|
|
|
|
2016-01-17 20:58:39 -05:00
|
|
|
Key key() const {
|
|
|
|
return mmsi;
|
|
|
|
}
|
|
|
|
|
2016-01-14 01:27:30 -05:00
|
|
|
void update(const ais::Packet& packet);
|
2016-01-13 14:52:39 -05:00
|
|
|
};
|
|
|
|
|
2016-09-03 19:38:44 -04:00
|
|
|
using AISRecentEntries = RecentEntries<AISRecentEntry>;
|
2016-01-17 20:58:39 -05:00
|
|
|
|
2016-01-13 20:05:19 -05:00
|
|
|
class AISLogger {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
2016-08-21 21:06:39 -04:00
|
|
|
Optional<File::Error> append(const std::filesystem::path& filename) {
|
2016-05-16 17:01:44 -04:00
|
|
|
return log_file.append(filename);
|
|
|
|
}
|
|
|
|
|
2016-01-13 20:05:19 -05:00
|
|
|
void on_packet(const ais::Packet& packet);
|
2015-12-02 01:39:27 -05:00
|
|
|
|
|
|
|
private:
|
2016-02-10 23:53:14 -05:00
|
|
|
LogFile log_file;
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2016-01-17 23:49:34 -05:00
|
|
|
using AISRecentEntriesView = RecentEntriesView<AISRecentEntries>;
|
|
|
|
|
2016-01-15 01:39:58 -05:00
|
|
|
class AISRecentEntryDetailView : public View {
|
|
|
|
public:
|
|
|
|
std::function<void(void)> on_close;
|
|
|
|
|
|
|
|
AISRecentEntryDetailView();
|
|
|
|
|
|
|
|
void set_entry(const AISRecentEntry& new_entry);
|
2016-01-15 14:37:37 -05:00
|
|
|
const AISRecentEntry& entry() const { return entry_; };
|
2016-01-15 01:39:58 -05:00
|
|
|
|
|
|
|
void focus() override;
|
2016-01-15 14:23:28 -05:00
|
|
|
void paint(Painter&) override;
|
2016-01-15 01:39:58 -05:00
|
|
|
|
|
|
|
private:
|
2016-01-15 14:37:37 -05:00
|
|
|
AISRecentEntry entry_;
|
2016-01-15 01:39:58 -05:00
|
|
|
|
|
|
|
Button button_done {
|
2016-01-15 18:26:04 -05:00
|
|
|
{ 72, 216, 96, 24 },
|
2016-01-15 01:39:58 -05:00
|
|
|
"Done"
|
|
|
|
};
|
2016-01-15 14:23:28 -05:00
|
|
|
|
|
|
|
Rect draw_field(
|
|
|
|
Painter& painter,
|
|
|
|
const Rect& draw_rect,
|
|
|
|
const Style& style,
|
|
|
|
const std::string& label,
|
|
|
|
const std::string& value
|
|
|
|
);
|
2016-01-15 01:39:58 -05:00
|
|
|
};
|
|
|
|
|
2016-01-14 12:30:23 -05:00
|
|
|
class AISAppView : public View {
|
|
|
|
public:
|
2016-01-25 01:38:36 -05:00
|
|
|
AISAppView(NavigationView& nav);
|
2016-01-14 12:41:58 -05:00
|
|
|
~AISAppView();
|
2016-01-14 12:30:23 -05:00
|
|
|
|
|
|
|
void set_parent_rect(const Rect new_parent_rect) override;
|
|
|
|
|
2016-01-14 12:56:06 -05:00
|
|
|
// Prevent painting of region covered entirely by a child.
|
|
|
|
// TODO: Add flag to View that specifies view does not need to be cleared before painting.
|
|
|
|
void paint(Painter&) override { };
|
|
|
|
|
2016-01-25 14:47:59 -05:00
|
|
|
void focus() override;
|
|
|
|
|
2016-01-26 16:08:46 -05:00
|
|
|
std::string title() const override { return "AIS"; };
|
|
|
|
|
2016-01-14 12:30:23 -05:00
|
|
|
private:
|
2016-02-10 19:31:52 -05:00
|
|
|
static constexpr uint32_t initial_target_frequency = 162025000;
|
|
|
|
static constexpr uint32_t sampling_rate = 2457600;
|
|
|
|
static constexpr uint32_t baseband_bandwidth = 1750000;
|
|
|
|
|
2016-01-14 12:41:58 -05:00
|
|
|
AISRecentEntries recent;
|
2016-02-10 23:53:14 -05:00
|
|
|
std::unique_ptr<AISLogger> logger;
|
2016-01-14 12:41:58 -05:00
|
|
|
|
|
|
|
AISRecentEntriesView recent_entries_view { recent };
|
2016-01-15 01:39:58 -05:00
|
|
|
AISRecentEntryDetailView recent_entry_detail_view;
|
2016-01-14 12:41:58 -05:00
|
|
|
|
2016-01-25 14:47:59 -05:00
|
|
|
static constexpr auto header_height = 1 * 16;
|
|
|
|
|
|
|
|
Text label_channel {
|
|
|
|
{ 0 * 8, 0 * 16, 2 * 8, 1 * 16 },
|
|
|
|
"Ch"
|
|
|
|
};
|
|
|
|
|
|
|
|
OptionsField options_channel {
|
|
|
|
{ 3 * 8, 0 * 16 },
|
|
|
|
3,
|
|
|
|
{
|
|
|
|
{ "87B", 161975000 },
|
|
|
|
{ "88B", 162025000 },
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-07-25 18:46:37 -04:00
|
|
|
RFAmpField field_rf_amp {
|
|
|
|
{ 13 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
|
|
|
LNAGainField field_lna {
|
|
|
|
{ 15 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
|
|
|
VGAGainField field_vga {
|
|
|
|
{ 18 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
|
|
|
RSSI rssi {
|
|
|
|
{ 21 * 8, 0, 6 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
Channel channel {
|
|
|
|
{ 21 * 8, 5, 6 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
2016-05-12 01:53:09 -04:00
|
|
|
MessageHandlerRegistration message_handler_packet {
|
|
|
|
Message::ID::AISPacket,
|
|
|
|
[this](Message* const p) {
|
|
|
|
const auto message = static_cast<const AISPacketMessage*>(p);
|
|
|
|
const ais::Packet packet { message->packet };
|
|
|
|
if( packet.is_valid() ) {
|
|
|
|
this->on_packet(packet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-02-10 19:31:52 -05:00
|
|
|
uint32_t target_frequency_ = initial_target_frequency;
|
|
|
|
|
2016-01-14 12:41:58 -05:00
|
|
|
void on_packet(const ais::Packet& packet);
|
2016-01-15 01:39:58 -05:00
|
|
|
void on_show_list();
|
|
|
|
void on_show_detail(const AISRecentEntry& entry);
|
2016-01-25 14:47:59 -05:00
|
|
|
|
2016-02-10 19:31:52 -05:00
|
|
|
void on_frequency_changed(const uint32_t new_target_frequency);
|
|
|
|
|
|
|
|
uint32_t target_frequency() const;
|
|
|
|
void set_target_frequency(const uint32_t new_value);
|
|
|
|
|
|
|
|
uint32_t tuning_frequency() const;
|
2016-01-14 12:30:23 -05:00
|
|
|
};
|
|
|
|
|
2015-12-02 00:30:52 -05:00
|
|
|
} /* namespace ui */
|
|
|
|
|
2015-12-08 18:28:33 -05:00
|
|
|
#endif/*__AIS_APP_H__*/
|