From e33e19d0587146859d48a134ec9fd94e7b7ba5cd Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 8 Dec 2011 14:53:40 +0000 Subject: Initial upload --- Stars45/Combatant.h | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 Stars45/Combatant.h (limited to 'Stars45/Combatant.h') diff --git a/Stars45/Combatant.h b/Stars45/Combatant.h new file mode 100644 index 0000000..c449bea --- /dev/null +++ b/Stars45/Combatant.h @@ -0,0 +1,73 @@ +/* Project Starshatter 4.5 + Destroyer Studios LLC + Copyright © 1997-2004. All Rights Reserved. + + SUBSYSTEM: Stars.exe + FILE: Combatant.h + AUTHOR: John DiCamillo + + + OVERVIEW + ======== + One side in a military conflict +*/ + +#ifndef Combatant_h +#define Combatant_h + +#include "Types.h" +#include "Geometry.h" +#include "Text.h" +#include "List.h" + +// +--------------------------------------------------------------------+ + +class CombatGroup; +class Mission; + +// +--------------------------------------------------------------------+ + +class Combatant +{ +public: + static const char* TYPENAME() { return "Combatant"; } + + Combatant(const char* com_name, const char* file_name, int iff); + Combatant(const char* com_name, CombatGroup* force); + ~Combatant(); + + // operations: + + // accessors: + const char* Name() const { return name; } + int GetIFF() const { return iff; } + int Score() const { return score; } + const char* GetDescription() const { return name; } + CombatGroup* GetForce() { return force; } + CombatGroup* FindGroup(int type, int id=-1); + List& GetTargetList() { return target_list; } + List& GetDefendList() { return defend_list; } + List& GetMissionList() { return mission_list; } + + void AddMission(Mission* m); + void SetScore(int points) { score = points; } + void AddScore(int points) { score += points; } + + double GetTargetStratFactor(int type); + void SetTargetStratFactor(int type, double f); + +private: + Text name; + int iff; + int score; + + CombatGroup* force; + List target_list; + List defend_list; + List mission_list; + + double target_factor[8]; +}; + + +#endif Combatant_h -- cgit v1.1