From 8898ad9b25fca6afe2374d293a981db02a83d7e9 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 31 May 2012 14:46:27 +0000 Subject: Committing the documentation to svn to have it accessible online --- Doc/doxygen/html/_radio_traffic_8h_source.html | 182 +++++++++++++++++++++++++ 1 file changed, 182 insertions(+) create mode 100644 Doc/doxygen/html/_radio_traffic_8h_source.html (limited to 'Doc/doxygen/html/_radio_traffic_8h_source.html') diff --git a/Doc/doxygen/html/_radio_traffic_8h_source.html b/Doc/doxygen/html/_radio_traffic_8h_source.html new file mode 100644 index 0000000..cf75d7b --- /dev/null +++ b/Doc/doxygen/html/_radio_traffic_8h_source.html @@ -0,0 +1,182 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/Stars45/RadioTraffic.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
RadioTraffic.h
+
+
+Go to the documentation of this file.
1 /* Project Starshatter 4.5
+
2  Destroyer Studios LLC
+
3  Copyright © 1997-2004. All Rights Reserved.
+
4 
+
5  SUBSYSTEM: Stars.exe
+
6  FILE: RadioTraffic.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  RadioTraffic maintains a history of all messages sent between ships
+
13  in the simulation. This class also handles displaying relevant
+
14  traffic to the player.
+
15 */
+
16 
+
17 #ifndef RadioTraffic_h
+
18 #define RadioTraffic_h
+
19 
+
20 #include "Types.h"
+
21 #include "Geometry.h"
+
22 #include "SimObject.h"
+
23 #include "List.h"
+
24 #include "Text.h"
+
25 
+
26 // +--------------------------------------------------------------------+
+
27 
+
28 class Element;
+
29 class RadioMessage;
+
30 class Ship;
+
31 class SimObject;
+
32 
+
33 // +--------------------------------------------------------------------+
+
34 
+ +
36 {
+
37 public:
+
38  RadioTraffic();
+
39  ~RadioTraffic();
+
40 
+
41  // accessors:
+
42  static void Initialize();
+
43  static void Close();
+
44 
+
45  static RadioTraffic* GetInstance() { return radio_traffic; }
+
46 
+
47  static void SendQuickMessage(Ship* ship, int msg);
+
48  static void Transmit(RadioMessage* msg);
+
49  static void DiscardMessages();
+
50  static Text TranslateVox(const char* phrase);
+
51 
+
52  void SendMessage(RadioMessage* msg);
+
53  void DisplayMessage(RadioMessage* msg);
+
54 
+
55 
+
56 protected:
+ +
58 
+ +
60 };
+
61 
+
62 // +--------------------------------------------------------------------+
+
63 
+
64 #endif RadioTraffic_h
+
65 
+
+
+ + + + -- cgit v1.1