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 { };
|
|
|
|
ais::Latitude latitude { 0 };
|
|
|
|
ais::Longitude longitude { 0 };
|
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
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>;
|
|
|
|
|
|
|
|
void on_packet(const ais::Packet& packet);
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
|
|
|
|
2015-12-03 23:34:02 -05:00
|
|
|
class AISView : public View {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
2016-01-13 19:44:01 -05:00
|
|
|
AISView();
|
|
|
|
~AISView();
|
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:23:53 -05:00
|
|
|
void on_focus() override;
|
|
|
|
void on_blur() override;
|
|
|
|
|
2015-12-05 17:24:41 -05:00
|
|
|
bool on_encoder(const EncoderEvent event) override;
|
|
|
|
|
2015-12-02 00:30:52 -05:00
|
|
|
private:
|
2016-01-13 20:05:19 -05:00
|
|
|
AISLogger logger;
|
2015-12-02 00:30:52 -05:00
|
|
|
|
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;
|
|
|
|
|
2015-12-05 17:23:53 -05:00
|
|
|
bool has_focus = false;
|
|
|
|
|
2016-01-13 21:01:38 -05:00
|
|
|
AISRecentEntries recent;
|
2015-12-05 17:24:41 -05:00
|
|
|
|
2015-12-08 18:53:17 -05:00
|
|
|
void on_packet(const ais::Packet& packet);
|
2015-12-03 23:34:02 -05:00
|
|
|
|
2015-12-05 17:24:41 -05:00
|
|
|
void advance(const int32_t amount);
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
|
|
|
|
2015-12-08 18:28:33 -05:00
|
|
|
#endif/*__AIS_APP_H__*/
|