mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
2dca408e45
* WardriveMap app * better txt * Count only displayed markers
86 lines
2.7 KiB
C++
86 lines
2.7 KiB
C++
/*
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
|
* Copyright (C) 2017 Furrtek
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
// Code from https://github.com/Flipper-XFW/Xtreme-Apps/tree/04c3a60093e2c2378e79498b4505aa8072980a42/ble_spam/protocols
|
|
// Thanks for the work of the original creators!
|
|
// Saying thanks in the main view!
|
|
|
|
#ifndef __UI_WARDRIVEMAP_H__
|
|
#define __UI_WARDRIVEMAP_H__
|
|
|
|
#include "ui.hpp"
|
|
#include "ui_language.hpp"
|
|
#include "ui_navigation.hpp"
|
|
#include "ui_geomap.hpp"
|
|
#include "app_settings.hpp"
|
|
#include "utility.hpp"
|
|
|
|
using namespace ui;
|
|
|
|
namespace ui::external_app::wardrivemap {
|
|
|
|
class WardriveMapView : public View {
|
|
public:
|
|
WardriveMapView(NavigationView& nav);
|
|
~WardriveMapView();
|
|
|
|
void focus() override;
|
|
|
|
std::string title() const override {
|
|
return "WardriveMap";
|
|
};
|
|
|
|
private:
|
|
NavigationView& nav_;
|
|
|
|
Text text_info{{0 * 8, 0 * 8, 30 * 8, 16 * 1}, "All GEOTAG from CAPTURES"};
|
|
Text text_notfound{{0 * 8, 3 * 8, 30 * 8, 16 * 1}, "No GeoTagged captures found"};
|
|
GeoPos geopos{
|
|
{0, 20},
|
|
GeoPos::alt_unit::METERS,
|
|
GeoPos::spd_unit::HIDDEN};
|
|
GeoMap geomap{{0, 75, 240, 320 - 75}};
|
|
|
|
void on_gps(const GPSPosDataMessage* msg);
|
|
void on_orientation(const OrientationDataMessage* msg);
|
|
|
|
bool load_markers(); // returns true if any exists, false if none.
|
|
|
|
bool first_init = false;
|
|
|
|
MessageHandlerRegistration message_handler_gps{
|
|
Message::ID::GPSPosData,
|
|
[this](Message* const p) {
|
|
const auto message = static_cast<const GPSPosDataMessage*>(p);
|
|
this->on_gps(message);
|
|
}};
|
|
MessageHandlerRegistration message_handler_orientation{
|
|
Message::ID::OrientationData,
|
|
[this](Message* const p) {
|
|
const auto message = static_cast<const OrientationDataMessage*>(p);
|
|
this->on_orientation(message);
|
|
}};
|
|
};
|
|
}; // namespace ui::external_app::wardrivemap
|
|
|
|
#endif /*__UI_WARDRIVEMAP_H__*/
|