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
|
2020-05-24 03:10:45 +02:00
|
|
|
Copyright (C) 2015-2020 Layla Marchant <diligentcircle@riseup.net>
|
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
|
|
|
*/
|
|
|
|
|
2017-01-25 16:48:29 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2016-11-26 00:21:31 +01:00
|
|
|
#include "defs.h"
|
|
|
|
#include "structs.h"
|
|
|
|
|
2017-01-21 05:48:53 +01:00
|
|
|
#include "engine.h"
|
|
|
|
#include "gfx.h"
|
|
|
|
|
2011-08-24 14:14:44 +02:00
|
|
|
/*
|
|
|
|
Create a new explosion based on supplied parameters.
|
|
|
|
The "type" will actually be used as an explosion frame check.
|
|
|
|
All explosion types have 4 images. The "thinktime" will be used
|
|
|
|
to change frames on a 21, 14, 7 basis.
|
|
|
|
*/
|
2015-05-01 00:51:26 +02:00
|
|
|
void explosion_add(float x, float y, int type)
|
2011-08-24 14:14:44 +02:00
|
|
|
{
|
2019-05-23 17:25:54 +02:00
|
|
|
Object *explosion;
|
|
|
|
|
|
|
|
explosion = malloc(sizeof(*explosion));
|
2019-05-20 00:22:53 +02:00
|
|
|
if (explosion == NULL)
|
|
|
|
{
|
|
|
|
engine_warn("Failed to allocate memory for explosion.");
|
|
|
|
return;
|
|
|
|
}
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
explosion->next = NULL;
|
2016-11-19 17:43:50 +01:00
|
|
|
explosion->active = 1;
|
2011-08-24 14:14:44 +02:00
|
|
|
explosion->x = x;
|
|
|
|
explosion->y = y;
|
|
|
|
explosion->thinktime = 28;
|
|
|
|
explosion->face = type;
|
2016-01-04 04:39:16 +01:00
|
|
|
explosion->image[0] = gfx_sprites[type];
|
2011-08-24 14:14:44 +02:00
|
|
|
|
|
|
|
engine.explosionTail->next = explosion;
|
|
|
|
engine.explosionTail = explosion;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This very simply just adds a tiny explosion at the coordinate specified.
|
|
|
|
* It creates a small engine like effect.
|
|
|
|
*/
|
2016-11-25 18:37:26 +01:00
|
|
|
void explosion_addEngine(Object *craft)
|
2011-08-24 14:14:44 +02:00
|
|
|
{
|
Fixed more magic numbers.
God, this one was definitely the biggest headache of all of the
magic number erasing. Never did I expect such cryptic problems.
The first problem was that the entirety of the player's weapon
struct was a part of the save file, *including the weapon's "image
indexes"*. Since the indexes have been changed, and the originally
used one is now unavailable when it's requested, this was causing
a segfault later on. Had to fix this by setting the image index
when the game is loaded.
The second problem was related to another bug I've been confused
about for years: the one that causes mobile rays to fire 5 green
shots. The entire reason those shots were green was because
the weapon's image indexes were undefined, and *that was causing
them to default to 0*. 0 was simply the index of green plasma.
Of course, though, now attempting to use that image causes a
segfault, so for now, I've fixed this by changing the image index
of the mobile rays to the red plasma bolts.
There are still some magic numbers left, related to the intermission
screen. But the hardest part is now done, thank God.
2016-01-06 04:12:29 +01:00
|
|
|
if (CHANCE(0.5))
|
2011-08-24 14:14:44 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
float x = craft->x + (craft->engineX * craft->face);
|
|
|
|
float y = craft->y + craft->engineY;
|
|
|
|
|
2015-03-29 16:19:53 +02:00
|
|
|
y += RANDRANGE(-3, 3);
|
Fixed more magic numbers.
God, this one was definitely the biggest headache of all of the
magic number erasing. Never did I expect such cryptic problems.
The first problem was that the entirety of the player's weapon
struct was a part of the save file, *including the weapon's "image
indexes"*. Since the indexes have been changed, and the originally
used one is now unavailable when it's requested, this was causing
a segfault later on. Had to fix this by setting the image index
when the game is loaded.
The second problem was related to another bug I've been confused
about for years: the one that causes mobile rays to fire 5 green
shots. The entire reason those shots were green was because
the weapon's image indexes were undefined, and *that was causing
them to default to 0*. 0 was simply the index of green plasma.
Of course, though, now attempting to use that image causes a
segfault, so for now, I've fixed this by changing the image index
of the mobile rays to the red plasma bolts.
There are still some magic numbers left, related to the intermission
screen. But the hardest part is now done, thank God.
2016-01-06 04:12:29 +01:00
|
|
|
explosion_add(x, y, SP_TINY_EXPLOSION);
|
2011-08-24 14:14:44 +02:00
|
|
|
}
|