summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/CarrierAI.cpp
blob: 6bf759fcc99a126c82409f00444b775b40dc3c5c (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/*  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
    ========
    "Air Boss" AI class for managing carrier fighter squadrons
*/

#include "CarrierAI.h"
#include "ShipAI.h"
#include "Ship.h"
#include "ShipDesign.h"
#include "Element.h"
#include "FlightPlanner.h"
#include "Instruction.h"
#include "RadioMessage.h"
#include "RadioTraffic.h"
#include "Hangar.h"
#include "FlightDeck.h"
#include "Mission.h"
#include "Contact.h"
#include "Sim.h"
#include "StarSystem.h"
#include "Callsign.h"
#include "NetUtil.h"

#include "Clock.h"
#include "Random.h"

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

CarrierAI::CarrierAI(Ship* s, int level)
    : sim(0), ship(s), hangar(0), exec_time(0), flight_planner(0),
      hold_time(0), ai_level(level)
{
    if (ship) {
        sim      = Sim::GetSim();
        hangar = ship->GetHangar();

        for (int i = 0; i < 4; i++)
        patrol_elem[i] = 0;

        if (ship)
        flight_planner = new FlightPlanner(ship);

        hold_time = (int) Clock::GetInstance()->GameTime();
    }
}

CarrierAI::~CarrierAI()
{
    delete flight_planner;
}

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

void
CarrierAI::ExecFrame(double secs)
{
    const int INIT_HOLD   = 15000;
    const int EXEC_PERIOD =  3000;

    if (!sim || !ship || !hangar)
    return;

    if (((int) Clock::GetInstance()->GameTime() - hold_time >= INIT_HOLD) &&
            ((int) Clock::GetInstance()->GameTime() - exec_time >  EXEC_PERIOD)) {

        CheckHostileElements();
        CheckPatrolCoverage();

        exec_time = (int) Clock::GetInstance()->GameTime();
    }
}

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

bool
CarrierAI::CheckPatrolCoverage()
{
    const DWORD PATROL_PERIOD = 900 * 1000;

    // pick up existing patrol elements:

    ListIter<Element> iter = sim->GetElements();
    while (++iter) {
        Element* elem = iter.value();

        if (elem->GetCarrier()   == ship                   &&
                (elem->Type()         == Mission::PATROL        ||
                    elem->Type()         == Mission::SWEEP         ||
                    elem->Type()         == Mission::AIR_PATROL    ||
                    elem->Type()         == Mission::AIR_SWEEP)    &&
                !elem->IsSquadron()                             &&
                !elem->IsFinished()) {

            bool found = false;
            int  open  = -1;

            for (int i = 0; i < 4; i++) {
                if (patrol_elem[i] == elem)
                found = true;

                else if (patrol_elem[i] == 0 && open < 0)
                open = i;
            }

            if (!found && open >= 0) {
                patrol_elem[open] = elem;
            }
        }
    }

    // manage the four screening patrols:

    for (int i = 0; i < 4; i++) {
        Element* elem = patrol_elem[i];

        if (elem) {
            if (elem->IsFinished()) {
                patrol_elem[i] = 0;
            }

            else {
                LaunchElement(elem);
            }
        }

        else if (Clock::GetInstance()->GameTime() - hangar->GetLastPatrolLaunch() > PATROL_PERIOD ||
                hangar->GetLastPatrolLaunch() == 0) {
            Element* patrol = CreatePackage(0, 2, Mission::PATROL, 0, "ACM Medium Range");
            if (patrol) {
                patrol_elem[i] = patrol;

                if (flight_planner)
                flight_planner->CreatePatrolRoute(patrol, i);

                hangar->SetLastPatrolLaunch(Clock::GetInstance()->GameTime());
                return true;
            }
        }
    }

    return false;
}

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

bool
CarrierAI::CheckHostileElements()
{
    List<Element>     assigned;
    ListIter<Element> iter = sim->GetElements();
    while (++iter) {
        Element* elem = iter.value();

        // if this element is hostile to us
        // or if the element is a target objective
        // of the carrier, or is hostile to any
        // of our squadrons...

        bool hostile = false;

        if (elem->IsHostileTo(ship) || elem->IsObjectiveTargetOf(ship)) {
            hostile = true;
        }
        else {
            for (int i = 0; i < hangar->NumSquadrons() && !hostile; i++) {
                int squadron_iff = hangar->SquadronIFF(i);

                if (elem->IsHostileTo(squadron_iff))
                hostile = true;
            }
        }

        if (hostile) {
            sim->GetAssignedElements(elem, assigned);

            // is one of our fighter elements already assigned to this target?
            bool found = false;
            ListIter<Element> a_iter = assigned;
            while (++a_iter && !found) {
                Element* a = a_iter.value();

                if (a->GetCarrier() == ship)
                found = true;
            }

            // nobody is assigned yet, create an attack package
            if (!found && CreateStrike(elem)) {
                hold_time = (int) Clock::GetInstance()->GameTime() + 30000;
                return true;
            }
        }
    }

    return false;
}

bool
CarrierAI::CreateStrike(Element* elem)
{
    Element* strike = 0;
    Ship*    target = elem->GetShip(1);

    if (target && !target->IsGroundUnit()) {
        Contact* contact = ship->FindContact(target);
        if (contact && contact->GetIFF(ship) > 0) {

            // fighter intercept
            if (target->IsDropship()) {
                int squadron = 0;
                if (hangar->NumShipsReady(1) >= hangar->NumShipsReady(0))
                squadron = 1;

                int count = 2;

                if (count < elem->NumShips())
                count = elem->NumShips();

                strike = CreatePackage(squadron, count, Mission::INTERCEPT, elem->Name(), "ACM Medium Range");

                if (strike) {
                    strike->SetAssignment(elem);

                    if (flight_planner)
                    flight_planner->CreateStrikeRoute(strike, elem);
                }
            }

            // starship or station assault
            else {
                int squadron = 0;
                if (hangar->NumSquadrons() > 1)
                squadron = 1;
                if (hangar->NumSquadrons() > 2)
                squadron = 2;

                int count = 2;

                if (target->Class() > Ship::FRIGATE) {
                    count = 4;
                    strike = CreatePackage(squadron, count, Mission::ASSAULT, elem->Name(), "Hvy Ship Strike");
                }
                else {
                    count = 2;
                    strike = CreatePackage(squadron, count, Mission::ASSAULT, elem->Name(), "Ship Strike");
                }

                if (strike) {
                    strike->SetAssignment(elem);

                    if (flight_planner)
                    flight_planner->CreateStrikeRoute(strike, elem);

                    // strike escort if target has fighter protection:
                    if (target->GetHangar()) {
                        if (squadron > 1) squadron--;
                        Element* escort = CreatePackage(squadron, 2, Mission::ESCORT_STRIKE, strike->Name(), "ACM Short Range");

                        if (escort && flight_planner)
                        flight_planner->CreateEscortRoute(escort, strike);
                    }
                }
            }
        }
    }

    return strike != 0;
}

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

Element*
CarrierAI::CreatePackage(int squadron, int size, int code, const char* target, const char* loadname)
{
    if (squadron < 0 || size < 1 || code < Mission::PATROL || hangar->NumShipsReady(squadron) < size)
    return 0;

    Sim*        sim    = Sim::GetSim();
    const char* call   = sim->FindAvailCallsign(ship->GetIFF());
    Element*    elem   = sim->CreateElement(call, ship->GetIFF(), code);
    FlightDeck* deck   = 0;
    int         queue  = 1000;
    int*        load   = 0;
    const ShipDesign*
    design = hangar->SquadronDesign(squadron);

    elem->SetSquadron(hangar->SquadronName(squadron));
    elem->SetCarrier(ship);

    if (target) {
        int i_code = 0;

        switch (code) {
        case Mission::ASSAULT:     i_code = Instruction::ASSAULT;   break;
        case Mission::STRIKE:      i_code = Instruction::STRIKE;    break;

        case Mission::AIR_INTERCEPT:
        case Mission::INTERCEPT:   i_code = Instruction::INTERCEPT; break;

        case Mission::ESCORT:
        case Mission::ESCORT_STRIKE:
        case Mission::ESCORT_FREIGHT:
            i_code = Instruction::ESCORT;    break;

        case Mission::DEFEND:      i_code = Instruction::DEFEND;    break;
        }

        Instruction* objective = new Instruction(i_code, target);
        if (objective)
        elem->AddObjective(objective);
    }

    if (design && loadname) {
        Text name = loadname;
        name.setSensitive(false);

        ListIter<ShipLoad> sl = (List<ShipLoad>&) design->loadouts;
        while (++sl) {
            if (name == sl->name) {
                load = sl->load;
                elem->SetLoadout(load);
            }
        }
    }

    for (int i = 0; i < ship->NumFlightDecks(); i++) {
        FlightDeck* d = ship->GetFlightDeck(i);

        if (d && d->IsLaunchDeck()) {
            int dq = hangar->PreflightQueue(d);

            if (dq < queue) {
                queue = dq;
                deck  = d;
            }
        }
    }

    int npackage = 0;
    int slots[4];

    for (int i = 0; i < 4; i++)
    slots[i] = -1;

    for (int slot = 0; slot < hangar->SquadronSize(squadron); slot++) {
        const HangarSlot* s = hangar->GetSlot(squadron, slot);

        if (hangar->GetState(s) == Hangar::STORAGE) {
            if (npackage < 4)
            slots[npackage] = slot;

            hangar->GotoAlert(squadron, slot, deck, elem, load, code > Mission::SWEEP);
            npackage++;

            if (npackage >= size)
            break;
        }
    }

    NetUtil::SendElemCreate(elem, squadron, slots, code <= Mission::SWEEP);

    return elem;
}

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

bool
CarrierAI::LaunchElement(Element* elem)
{
    bool result = false;

    if (!elem)
    return result;

    for (int squadron = 0; squadron < hangar->NumSquadrons(); squadron++) {
        for (int slot = 0; slot < hangar->SquadronSize(squadron); slot++) {
            const HangarSlot* s = hangar->GetSlot(squadron, slot);

            if (hangar->GetState(s) == Hangar::ALERT &&
                    hangar->GetPackageElement(s) == elem) {

                hangar->Launch(squadron, slot);
                NetUtil::SendShipLaunch(ship, squadron, slot);

                result = true;
            }
        }
    }

    return result;
}