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"
|
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-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 {
|
|
|
|
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
|
|
|
|
|
|
|
void update(const ais::Packet& packet);
|
2016-01-13 14:52:39 -05:00
|
|
|
};
|
|
|
|
|
2016-01-13 21:01:38 -05:00
|
|
|
class AISRecentEntries {
|
|
|
|
public:
|
|
|
|
using ContainerType = std::list<AISRecentEntry>;
|
2016-01-14 14:49:19 -05:00
|
|
|
using RangeType = std::pair<ContainerType::const_iterator, ContainerType::const_iterator>;
|
|
|
|
|
2016-01-15 14:38:09 -05:00
|
|
|
const AISRecentEntry& on_packet(const ais::Packet& packet);
|
2016-01-13 21:01:38 -05:00
|
|
|
|
|
|
|
ContainerType::const_reference front() const {
|
|
|
|
return entries.front();
|
|
|
|
}
|
|
|
|
|
2016-01-13 21:04:04 -05:00
|
|
|
ContainerType::const_iterator find_by_mmsi(const ais::MMSI key) const;
|
2016-01-13 21:01:38 -05:00
|
|
|
|
|
|
|
ContainerType::const_iterator begin() const {
|
|
|
|
return entries.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
ContainerType::const_iterator end() const {
|
|
|
|
return entries.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool empty() const {
|
|
|
|
return entries.empty();
|
|
|
|
}
|
|
|
|
|
2016-01-14 14:49:19 -05:00
|
|
|
RangeType range_around(
|
|
|
|
ContainerType::const_iterator, const size_t count
|
|
|
|
) const;
|
|
|
|
|
2016-01-13 21:01:38 -05:00
|
|
|
private:
|
|
|
|
ContainerType entries;
|
|
|
|
const size_t entries_max = 64;
|
|
|
|
|
|
|
|
void truncate_entries();
|
|
|
|
};
|
|
|
|
|
2016-01-13 20:05:19 -05:00
|
|
|
class AISLogger {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
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-01-14 02:11:19 -05:00
|
|
|
LogFile log_file { "ais.txt" };
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2016-01-14 12:19:16 -05:00
|
|
|
class AISRecentEntriesView : public View {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
2016-01-15 01:39:58 -05:00
|
|
|
std::function<void(const AISRecentEntry& entry)> on_select;
|
|
|
|
|
2016-01-14 12:41:58 -05:00
|
|
|
AISRecentEntriesView(AISRecentEntries& recent);
|
2016-01-13 20:00:53 -05:00
|
|
|
|
2015-12-03 23:34:02 -05:00
|
|
|
void paint(Painter& painter) override;
|
|
|
|
|
2015-12-05 17:24:41 -05:00
|
|
|
bool on_encoder(const EncoderEvent event) override;
|
2016-01-15 01:39:58 -05:00
|
|
|
bool on_key(const ui::KeyEvent event) override;
|
2015-12-05 17:24:41 -05:00
|
|
|
|
2015-12-02 00:30:52 -05:00
|
|
|
private:
|
2016-01-14 12:41:58 -05:00
|
|
|
AISRecentEntries& recent;
|
|
|
|
|
2015-12-08 18:53:17 -05:00
|
|
|
using EntryKey = ais::MMSI;
|
2015-12-05 17:24:41 -05:00
|
|
|
EntryKey selected_key;
|
|
|
|
const EntryKey invalid_key = 0xffffffff;
|
|
|
|
|
|
|
|
void advance(const int32_t amount);
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
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 {
|
|
|
|
{ 72, 192, 96, 24 },
|
|
|
|
"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:
|
|
|
|
AISAppView();
|
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-14 12:30:23 -05:00
|
|
|
private:
|
2016-01-14 12:41:58 -05:00
|
|
|
AISRecentEntries recent;
|
|
|
|
AISLogger logger;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
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-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__*/
|