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/_carrier_a_i_8h_source.html | 181 +++++++++++++++++++++++++++ 1 file changed, 181 insertions(+) create mode 100644 Doc/doxygen/html/_carrier_a_i_8h_source.html (limited to 'Doc/doxygen/html/_carrier_a_i_8h_source.html') diff --git a/Doc/doxygen/html/_carrier_a_i_8h_source.html b/Doc/doxygen/html/_carrier_a_i_8h_source.html new file mode 100644 index 0000000..8e05d74 --- /dev/null +++ b/Doc/doxygen/html/_carrier_a_i_8h_source.html @@ -0,0 +1,181 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/Stars45/CarrierAI.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
CarrierAI.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: CarrierAI.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  "Air Boss" AI class for managing carrier fighter squadrons
+
13 */
+
14 
+
15 #ifndef CarrierAI_h
+
16 #define CarrierAI_h
+
17 
+
18 #include "Types.h"
+
19 #include "Director.h"
+
20 
+
21 // +--------------------------------------------------------------------+
+
22 
+
23 class Sim;
+
24 class Ship;
+
25 class ShipAI;
+
26 class Instruction;
+
27 class Hangar;
+
28 class Element;
+
29 class FlightPlanner;
+
30 
+
31 // +--------------------------------------------------------------------+
+
32 
+
33 class CarrierAI : public Director
+
34 {
+
35 public:
+
36  CarrierAI(Ship* s, int level);
+
37  virtual ~CarrierAI();
+
38 
+
39  virtual void ExecFrame(double seconds);
+
40 
+
41 protected:
+
42  virtual bool CheckPatrolCoverage();
+
43  virtual bool CheckHostileElements();
+
44 
+
45  virtual bool CreateStrike(Element* elem);
+
46 
+
47  virtual Element* CreatePackage(int squad, int size, int code, const char* target=0, const char* loadname=0);
+
48  virtual bool LaunchElement(Element* elem);
+
49 
+
50  Sim* sim;
+ + + +
54  int exec_time;
+
55  int hold_time;
+
56  int ai_level;
+
57 
+ +
59 };
+
60 
+
61 // +--------------------------------------------------------------------+
+
62 
+
63 #endif CarrierAI_h
+
64 
+
+
+ + + + -- cgit v1.1