-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalyzeFP.hpp
53 lines (39 loc) · 1.24 KB
/
analyzeFP.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#pragma once
#include "EuroScopePlugIn.h"
#include <iostream>
#include <string>
#include "Constant.hpp"
#include <fstream>
#include <vector>
#define MY_PLUGIN_NAME "EDFF Check FlightPlan"
#define MY_PLUGIN_VERSION "1.2"
#define MY_PLUGIN_DEVELOPER "Nikolas Goerlitz, Jan Fries"
#define MY_PLUGIN_COPYRIGHT "GPL v4"
#define MY_PLUGIN_VIEW_AVISO "Check FlightPlan Plugin"
#define PLUGIN_WELCOME_MESSAGE "Willkommen beim RG-Frankfurt Flugplan-RFL checker"
using namespace std;
using namespace EuroScopePlugIn;
class CcheckFPPlugin :
public EuroScopePlugIn::CPlugIn
{
public:
CcheckFPPlugin();
virtual ~CcheckFPPlugin();
virtual void getSids();
virtual void OnFunctionCall(int FunctionId, const char * ItemString, POINT Pt, RECT Area);
//Define OnGetTagItem function
virtual void OnGetTagItem(CFlightPlan FlightPlan,
CRadarTarget RadarTarget,
int ItemCode,
int TagData,
char sItemString[16],
int* pColorCode,
COLORREF* pRGB,
double* pFontSize);
virtual bool OnCompileCommand(const char * sCommandLine);
virtual void debugMessage(string type, string message);
virtual void sendMessage(string type, string message);
virtual void sendMessage(string message);
virtual void checkFPDetail();
virtual void OnTimer(int Count);
};