2011-08-24 14:14:44 +02:00
|
|
|
/*
|
|
|
|
Copyright (C) 2003 Parallel Realities
|
2015-03-01 21:37:32 +01:00
|
|
|
Copyright (C) 2011 Guus Sliepen
|
|
|
|
Copyright (C) 2015 Julian Marchant
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
2015-02-26 17:20:36 +01:00
|
|
|
as published by the Free Software Foundation; either version 3
|
2011-08-24 14:14:44 +02:00
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-02-26 17:20:36 +01:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2015-02-26 17:20:36 +01:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-08-24 14:14:44 +02:00
|
|
|
*/
|
|
|
|
|
2011-08-26 21:29:04 +02:00
|
|
|
#include "Starfighter.h"
|
|
|
|
|
|
|
|
object cargo[MAX_CARGO];
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
void initCargo()
|
|
|
|
{
|
|
|
|
for (int i = 0 ; i < MAX_CARGO ; i++)
|
|
|
|
{
|
2011-08-26 16:14:58 +02:00
|
|
|
cargo[i].active = false;
|
2011-08-24 14:14:44 +02:00
|
|
|
cargo[i].owner = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* I think you all know what this does by now! ;)
|
|
|
|
*/
|
2011-08-26 21:29:04 +02:00
|
|
|
static int getCargo()
|
2011-08-24 14:14:44 +02:00
|
|
|
{
|
|
|
|
for (int i = 0 ; i < MAX_CARGO ; i++)
|
|
|
|
{
|
2011-08-26 16:14:58 +02:00
|
|
|
if (!cargo[i].active)
|
2011-08-24 14:14:44 +02:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
object *addCargo(object *owner, int cargoType)
|
|
|
|
{
|
|
|
|
int index = getCargo();
|
|
|
|
|
|
|
|
if (index == -1)
|
|
|
|
return NULL;
|
|
|
|
|
2011-08-27 22:08:08 +02:00
|
|
|
cargo[index].active = true;
|
2011-08-24 14:14:44 +02:00
|
|
|
cargo[index].owner = owner;
|
|
|
|
cargo[index].x = owner->x;
|
|
|
|
cargo[index].y = owner->y;
|
|
|
|
cargo[index].dx = 0;
|
|
|
|
cargo[index].dy = 0;
|
|
|
|
cargo[index].collectType = cargoType;
|
2011-08-26 23:53:46 +02:00
|
|
|
cargo[index].image[0] = shape[32];
|
2011-08-24 14:14:44 +02:00
|
|
|
if (cargoType == P_PHOEBE)
|
2011-08-26 23:53:46 +02:00
|
|
|
cargo[index].image[0] = shipShape[20];
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
return &cargo[index];
|
|
|
|
}
|
|
|
|
|
2015-04-08 01:16:46 +02:00
|
|
|
void cargo_becomeCollectable(int i)
|
2011-08-24 14:14:44 +02:00
|
|
|
{
|
|
|
|
if (cargo[i].collectType != P_PHOEBE)
|
|
|
|
{
|
|
|
|
addCollectable(cargo[i].x, cargo[i].y, cargo[i].collectType, 1, 600);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-03-09 01:59:33 +01:00
|
|
|
aliens[ALIEN_PHOEBE].active = true;
|
|
|
|
aliens[ALIEN_PHOEBE].x = cargo[i].x;
|
|
|
|
aliens[ALIEN_PHOEBE].y = cargo[i].y;
|
2011-08-24 14:14:44 +02:00
|
|
|
setRadioMessage(FACE_PHOEBE, "Thanks!! Watch out, WEAPCO! Phoebe's loose and she's ANGRY!!!", 1);
|
|
|
|
}
|
|
|
|
|
2011-08-26 16:14:58 +02:00
|
|
|
cargo[i].active = false;
|
2011-08-24 14:14:44 +02:00
|
|
|
}
|