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 --- .../html/_campaign_plan_event_8h_source.html | 189 +++++++++++++++++++++ 1 file changed, 189 insertions(+) create mode 100644 Doc/doxygen/html/_campaign_plan_event_8h_source.html (limited to 'Doc/doxygen/html/_campaign_plan_event_8h_source.html') diff --git a/Doc/doxygen/html/_campaign_plan_event_8h_source.html b/Doc/doxygen/html/_campaign_plan_event_8h_source.html new file mode 100644 index 0000000..23fefbc --- /dev/null +++ b/Doc/doxygen/html/_campaign_plan_event_8h_source.html @@ -0,0 +1,189 @@ + + + + + +Starshatter_Open: D:/SRC/StarshatterSVN/Stars45/CampaignPlanEvent.h Source File + + + + + + + + + + + + + +
+
+ + + + + + +
+
Starshatter_Open +
+
Open source Starshatter engine
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
CampaignPlanEvent.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: CampaignPlanEvent.h
+
7  AUTHOR: John DiCamillo
+
8 
+
9 
+
10  OVERVIEW
+
11  ========
+
12  CampaignPlanEvent generates simulated combat
+
13  events based on a statistical analysis of the
+
14  combatants within the context of a dynamic
+
15  campaign.
+
16 */
+
17 
+
18 #ifndef CampaignPlanEvent_h
+
19 #define CampaignPlanEvent_h
+
20 
+
21 #include "Types.h"
+
22 #include "CampaignPlan.h"
+
23 
+
24 // +--------------------------------------------------------------------+
+
25 
+
26 class CombatAction;
+
27 class CombatAssignment;
+
28 class CombatEvent;
+
29 class CombatGroup;
+
30 class CombatUnit;
+
31 class CombatZone;
+
32 
+
33 // +--------------------------------------------------------------------+
+
34 
+ +
36 {
+
37 public:
+
38  static const char* TYPENAME() { return "CampaignPlanEvent"; }
+
39 
+ +
41  virtual ~CampaignPlanEvent();
+
42 
+
43  // operations:
+
44  virtual void ExecFrame();
+
45  virtual void SetLockout(int seconds);
+
46 
+
47  virtual bool ExecScriptedEvents();
+
48  virtual bool ExecStatisticalEvents();
+
49 
+
50 protected:
+
51  virtual void ProsecuteKills(CombatAction* action);
+
52 
+
53  virtual CombatAssignment*
+ +
55  virtual bool CreateEvent(CombatAssignment* a);
+
56 
+ + + + + +
62 
+
63  virtual bool IsFriendlyAssignment(CombatAssignment* a);
+
64  virtual bool Success(CombatAssignment* a);
+
65  virtual Text GetTeamName(CombatGroup* g);
+
66 
+
67  // attributes:
+ +
69 };
+
70 
+
71 #endif CampaignPlanEvent_h
+
72 
+
+
+ + + + -- cgit v1.1