summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/CampaignPlan.h
blob: 553326ea644d77170a6a6d08057ec309e5d6ea5a (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
54
55
56
/*  Starshatter: The Open Source Project
    Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
    Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
    Copyright (c) 1997-2006, Destroyer Studios LLC.

    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
    CampaignPlan defines the interface for all campaign
    planning algorithms.  Known subclasses:
    CampaignPlanStrategic  - strategic planning
    CampaignPlanAssignment - logistics planning
    CampaignPlanMission    - mission planning
    CampaignPlanMovement   - starship movement
    CampaignPlanEvent      - scripted events
*/

#ifndef CampaignPlan_h
#define CampaignPlan_h

#include "Types.h"
#include "Text.h"
#include "List.h"

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

class Campaign;
class Combatant;
class CombatGroup;
class CombatUnit;

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

class CampaignPlan
{
public:
    static const char* TYPENAME() { return "CampaignPlan"; }

    CampaignPlan(Campaign* c) : campaign(c), exec_time(-1e6) { }
    virtual ~CampaignPlan()                                  { }

    int operator == (const CampaignPlan& p) const { return this == &p; }

    // operations:
    virtual void      ExecFrame() { }
    virtual void      SetLockout(int seconds) { }

protected:
    Campaign*         campaign;
    double            exec_time;
};

#endif  // CampaignPlan_h