/ghost/gpsprotocol.h

http://ghostcb.googlecode.com/ · C Header · 64 lines · 28 code · 13 blank · 23 comment · 0 complexity · 247f6a11a4d9434b332550222d5ea0ca MD5 · raw file

  1. /*
  2. Copyright 2010 Trevor Hogan
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. #ifndef GPSPROTOCOL_H
  14. #define GPSPROTOCOL_H
  15. //
  16. // CGameProtocol
  17. //
  18. #define GPS_HEADER_CONSTANT 248
  19. #define REJECTGPS_INVALID 1
  20. #define REJECTGPS_NOTFOUND 2
  21. class CGPSProtocol
  22. {
  23. public:
  24. enum Protocol {
  25. GPS_INIT = 1,
  26. GPS_RECONNECT = 2,
  27. GPS_ACK = 3,
  28. GPS_REJECT = 4
  29. };
  30. CGPSProtocol( );
  31. ~CGPSProtocol( );
  32. // receive functions
  33. // send functions
  34. BYTEARRAY SEND_GPSC_INIT( uint32_t version );
  35. BYTEARRAY SEND_GPSC_RECONNECT( unsigned char PID, uint32_t reconnectKey, uint32_t lastPacket );
  36. BYTEARRAY SEND_GPSC_ACK( uint32_t lastPacket );
  37. BYTEARRAY SEND_GPSS_INIT( uint16_t reconnectPort, unsigned char PID, uint32_t reconnectKey, unsigned char numEmptyActions );
  38. BYTEARRAY SEND_GPSS_RECONNECT( uint32_t lastPacket );
  39. BYTEARRAY SEND_GPSS_ACK( uint32_t lastPacket );
  40. BYTEARRAY SEND_GPSS_REJECT( uint32_t reason );
  41. // other functions
  42. private:
  43. bool AssignLength( BYTEARRAY &content );
  44. bool ValidateLength( BYTEARRAY &content );
  45. };
  46. #endif