summaryrefslogtreecommitdiffhomepage
path: root/Stars45/RadioHandler.h
blob: 6a80859f20ac4bb355c349798dacc1acc337c22c (plain)
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
/*  Project Starshatter 4.5
	Destroyer Studios LLC
	Copyright © 1997-2004. All Rights Reserved.

	SUBSYSTEM:    Stars.exe
	FILE:         RadioHandler.h
	AUTHOR:       John DiCamillo


	OVERVIEW
	========
	RadioHandler (radio comms) class declaration
*/

#ifndef RadioHandler_h
#define RadioHandler_h

#include "Types.h"
#include "Geometry.h"
#include "SimObject.h"

// +--------------------------------------------------------------------+

class RadioMessage;
class Ship;

// +--------------------------------------------------------------------+

class RadioHandler
{
public:
	RadioHandler();
	virtual ~RadioHandler();

	virtual bool      ProcessMessage(RadioMessage* msg,       Ship*   s);
	virtual void      AcknowledgeMessage(RadioMessage* msg,   Ship*   s);

protected:
	virtual bool      IsOrder(int action);
	virtual bool      ProcessMessageOrders(RadioMessage* msg, Ship*   s);
	virtual bool      ProcessMessageAction(RadioMessage* msg, Ship*   s);

	virtual bool      Inbound(RadioMessage* msg, Ship* s);
	virtual bool      Picture(RadioMessage* msg, Ship* s);
	virtual bool      Support(RadioMessage* msg, Ship* s);
	virtual bool      SkipNavpoint(RadioMessage* msg, Ship* s);
	virtual bool      LaunchProbe(RadioMessage* msg, Ship* s);
};

// +--------------------------------------------------------------------+

#endif RadioHandler_h