summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/StarshipTacticalAI.h
blob: 17e7f05ee16ef2ef0e0efec4b575f3342faba659 (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
/*  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
    ========
    Starship-specific mid-level (tactical) AI
*/

#pragma once

#include <cstdint>

#include "TacticalAI.h"


class StarshipTacticalAI : public TacticalAI
{
public:
    StarshipTacticalAI(ShipAI* ai);
    virtual ~StarshipTacticalAI();

    virtual void      ExecFrame(double seconds);

protected:
    virtual void      FindThreat();
    virtual void      FindSupport();

    virtual void      CheckBugOut(Ship* c_ship, double range);

    std::uint32_t     THREAT_REACTION_TIME;
    int               ai_level;
    double            drop_time;
    double            initial_integrity;
    bool              bugout;
};