This repository has been archived by the owner on Oct 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpsprotocol.h
66 lines (47 loc) · 1.52 KB
/
gpsprotocol.h
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
Copyright 2010 Trevor Hogan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef GPSPROTOCOL_H
#define GPSPROTOCOL_H
#include <QByteArray>
//
// CGameProtocol
//
#define GPS_HEADER_CONSTANT 248
#define REJECTGPS_INVALID 1
#define REJECTGPS_NOTFOUND 2
class CGPSProtocol
{
public:
enum Protocol {
GPS_INIT = 1,
GPS_RECONNECT = 2,
GPS_ACK = 3,
GPS_REJECT = 4
};
CGPSProtocol( );
~CGPSProtocol( );
// receive functions
// send functions
QByteArray SEND_GPSC_INIT( quint32 version );
QByteArray SEND_GPSC_RECONNECT( quint8 PID, quint32 reconnectKey, quint32 lastPacket );
QByteArray SEND_GPSC_ACK( quint32 lastPacket );
QByteArray SEND_GPSS_INIT( quint16 reconnectPort, quint8 PID, quint32 reconnectKey, quint8 numEmptyActions );
QByteArray SEND_GPSS_RECONNECT( quint32 lastPacket );
QByteArray SEND_GPSS_ACK( quint32 lastPacket );
QByteArray SEND_GPSS_REJECT( quint32 reason );
// other functions
private:
bool AssignLength( QByteArray &content );
bool ValidateLength( QByteArray &content );
};
#endif