2016-01-03 04:37:44 +01:00
|
|
|
/*
|
|
|
|
Copyright (C) 2003 Parallel Realities
|
|
|
|
Copyright (C) 2011, 2012, 2013 Guus Sliepen
|
2020-12-26 06:10:10 +01:00
|
|
|
Copyright (C) 2012, 2015-2020 The Diligent Circle <diligentcircle@riseup.net>
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 3
|
|
|
|
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
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-06 04:13:48 +02:00
|
|
|
#include <libintl.h>
|
2017-01-25 16:48:29 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2016-11-26 00:21:31 +01:00
|
|
|
#include "defs.h"
|
|
|
|
#include "structs.h"
|
|
|
|
|
2017-01-21 05:48:53 +01:00
|
|
|
#include "alien.h"
|
|
|
|
#include "engine.h"
|
|
|
|
#include "event.h"
|
|
|
|
#include "game.h"
|
|
|
|
#include "player.h"
|
2016-11-23 03:16:49 +01:00
|
|
|
#include "radio.h"
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
static Event events[MAX_EVENTS];
|
2019-05-21 07:51:39 +02:00
|
|
|
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:14:31 +01:00
|
|
|
void events_init()
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
for (int i = 0 ; i < MAX_EVENTS ; i++)
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
events[i].time = 0;
|
|
|
|
events[i].face = -1;
|
|
|
|
strcpy(events[i].message, "");
|
|
|
|
events[i].entity = -1;
|
|
|
|
events[i].flag = 0;
|
2016-01-03 04:37:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (game.area)
|
|
|
|
{
|
|
|
|
case MISN_INTERCEPTION:
|
2020-11-23 05:33:26 +01:00
|
|
|
if ((aliens[ALIEN_KLINE].classDef == CD_KLINE)
|
|
|
|
&& (aliens[ALIEN_KLINE].active))
|
2017-10-19 22:36:35 +02:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 2;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_KLINE;
|
2019-06-06 04:13:48 +02:00
|
|
|
radio_getRandomMessage(events[0].message, _(
|
|
|
|
/// This is a list of taunts broadcast by Kline Kethlan when he shows
|
|
|
|
/// up at interceptions. Taunts are separated by a single "\n". Instead
|
|
|
|
/// of directly translating these, please populate the list with taunts
|
|
|
|
/// that work well in the target language, following the English
|
|
|
|
/// version only as a general guideline. Any number of taunts is
|
|
|
|
/// permitted.
|
|
|
|
"How nice to see you again, Bainfield!\n"
|
|
|
|
"It all ends here, rebel!\n"
|
|
|
|
"I hope you won't disappoint me this time...\n"
|
|
|
|
"Do you really think you can defeat us?!"
|
|
|
|
));
|
2017-10-19 22:36:35 +02:00
|
|
|
}
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_MOEBO:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 2;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
2020-08-27 16:14:45 +02:00
|
|
|
strcpy(events[0].message, _("You should try and destroy some of the frigate's weaponry, it'll help!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[1].time = 120;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[1].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
|
|
|
strcpy(events[1].message, _("Chris, get a move on! The frigate is almost in range!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[2].time = 150;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[2].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
|
|
|
strcpy(events[2].message, _("The frigate is charging its cannon!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[3].time = 170;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[3].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
|
|
|
strcpy(events[3].message, _("Chris, HURRY!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[4].time = 180;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[4].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
|
|
|
strcpy(events[4].message, _("Oh my god..."));
|
2016-01-03 20:31:39 +01:00
|
|
|
events[4].entity = ALIEN_BOSS;
|
|
|
|
events[4].flag = FL_LEAVESECTOR | FL_IMMORTAL;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_NEROD:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 2;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_PHOEBE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Phoebe Lexx)
|
|
|
|
strcpy(events[0].message, _("Hey, over here! Destroy this tug so I can break free!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_ALLEZ:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 2;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_CREW;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (friendly transport from Eyananth, Allez mission)
|
|
|
|
strcpy(events[0].message, _("Thank God! Please, help us! If they destroy this ship..."));
|
2016-01-03 20:31:39 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[1].time = 3 + engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[1].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[1].message, _("How long do you need?"));
|
2016-01-03 20:31:39 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[2].time = 4 + 2*engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[2].face = FS_CREW;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (friendly transport from Eyananth, Allez mission)
|
|
|
|
strcpy(events[2].message, _("Just a few minutes!"));
|
2016-01-03 20:31:39 +01:00
|
|
|
|
|
|
|
events[3].time = 60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[3].face = FS_CREW;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (friendly transport from Eyananth, Allez mission)
|
|
|
|
strcpy(events[3].message, _("Alright! We've got the weapons working again! Now to look at the engines..."));
|
2016-01-03 22:20:22 +01:00
|
|
|
events[3].entity = ALIEN_FRIEND1;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[3].flag = -FL_NOFIRE;
|
|
|
|
|
|
|
|
events[4].time = 80;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[4].face = FS_CREW;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (friendly transport from Eyananth, Allez mission)
|
|
|
|
strcpy(events[4].message, _("DAMN! The guns are offline again! What you guys doing back there?!"));
|
2016-01-03 22:20:22 +01:00
|
|
|
events[4].entity = ALIEN_FRIEND1;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[4].flag = FL_NOFIRE;
|
|
|
|
|
|
|
|
events[5].time = 100;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[5].face = FS_CREW;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (friendly transport from Eyananth, Allez mission)
|
|
|
|
strcpy(events[5].message, _("Chris, HELP! We've lost all system power! We're a sitting duck out here!"));
|
2016-01-03 22:20:22 +01:00
|
|
|
events[5].entity = ALIEN_FRIEND1;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[5].flag = FL_DISABLED;
|
|
|
|
|
|
|
|
events[6].time = 120;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[6].face = FS_CREW;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (friendly transport from Eyananth, Allez mission)
|
|
|
|
strcpy(events[6].message, _("Just a little longer..."));
|
2016-01-03 20:31:39 +01:00
|
|
|
|
|
|
|
events[7].time = 140;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[7].face = FS_CREW;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (friendly transport from Eyananth, Allez mission)
|
|
|
|
strcpy(events[7].message, _("Okay! We've fixed that one. We think we've found the problem with the engines too..."));
|
2016-01-03 22:20:22 +01:00
|
|
|
events[7].entity = ALIEN_FRIEND1;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[7].flag = -FL_DISABLED;
|
|
|
|
|
|
|
|
events[8].time = 177;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[8].face = FS_CREW;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (friendly transport from Eyananth, Allez mission)
|
|
|
|
strcpy(events[8].message, _("Engines fixed! Let's move!"));
|
2016-01-03 20:31:39 +01:00
|
|
|
|
|
|
|
events[9].time = 180;
|
2016-01-03 22:20:22 +01:00
|
|
|
events[9].entity = ALIEN_FRIEND1;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[9].flag = FL_LEAVESECTOR | FL_IMMORTAL;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_ELAMALE:
|
2020-07-20 18:00:24 +02:00
|
|
|
/* It would be trivial to modify these radio times for
|
|
|
|
* engine.radioLife like with everything else, but we don't
|
|
|
|
* do that here so that the music cue stays the same. A bit
|
|
|
|
* inconsistent, but the dialog isn't terribly important,
|
|
|
|
* just flavor text really, and you can read it at your
|
|
|
|
* leasure if you want by pausing. We might change this
|
|
|
|
* later if we decide that preserving the music cue isn't
|
|
|
|
* important after all.
|
|
|
|
*/
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 5;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_PHOEBE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Phoebe Lexx)
|
|
|
|
strcpy(events[0].message, _("Ummm... something about this doesn't look right! They should be offering more resistance than this!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[1].time = -8;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[1].face = FS_PHOEBE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Phoebe Lexx)
|
|
|
|
strcpy(events[1].message, _("DAMMIT! It's a trap! Come on, Chris, we have to leave NOW!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[2].time = -9;
|
|
|
|
events[2].entity = ALIEN_PHOEBE;
|
|
|
|
events[2].flag = FL_LEAVESECTOR;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[3].time = -13;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[3].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
|
|
|
strcpy(events[3].message, _("Chris, wh..."));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[4].time = -15;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[4].face = FS_KLINE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Kline Kethlan)
|
|
|
|
strcpy(events[4].message, _("So finally I meet the man who has been causing us so much trouble!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[5].time = -20;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[5].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[5].message, _("I see you've jammed up my warp drive. Who are you?"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[6].time = -25;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[6].face = FS_KLINE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Kline Kethlan)
|
|
|
|
strcpy(events[6].message, _("I am Kline Kethlan. And I am here to put to a stop to your worthless little crusade!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[7].time = -31;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[7].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[7].message, _("Kline Kethlan, huh? You sure sound confident."));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[8].time = -36;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[8].face = FS_KLINE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Kline Kethlan)
|
|
|
|
strcpy(events[8].message, _("Nowhere to run, nowhere to hide, and no one to help you! This will certainly be interesting..."));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[9].time = -42;
|
|
|
|
events[9].entity = ALIEN_KLINE;
|
|
|
|
events[9].flag = -(FL_IMMORTAL | FL_NOFIRE);
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_ODEON:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 2;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_URSULA;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Ursula Lexx under mind control)
|
|
|
|
/// Translation note: This should appear robotic or at least monotone.
|
|
|
|
strcpy(events[0].message, _("Unidentified craft sighted. Will proceed to destroy all targets."));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[1].time = 4 + engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[1].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[1].message, _("Looks like she's got one of those homing missile launchers too! Any advice, Phoebe?"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[2].time = 5 + 2*engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[2].face = FS_PHOEBE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Phoebe Lexx)
|
|
|
|
strcpy(events[2].message, _("Just try and dodge them!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_ALMARTHA:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 1;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[0].message, _("That's a nice ship you got there, old-timer!"));
|
2016-01-03 20:31:39 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[1].time = 2 + engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[1].face = FS_KRASS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Krass Tyler)
|
|
|
|
strcpy(events[1].message, _("Thanks, boy. Made it myself!"));
|
2016-01-03 20:31:39 +01:00
|
|
|
|
|
|
|
events[2].time = 60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[2].face = FS_KRASS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Krass Tyler)
|
|
|
|
strcpy(events[2].message, _("Hey, boy, we've got company! Looks like your friends didn't do a very good job after all!"));
|
2016-01-03 20:31:39 +01:00
|
|
|
events[2].entity = ALIEN_BOSS_PART1;
|
|
|
|
events[2].flag = -FL_ACTIVATE;
|
|
|
|
|
|
|
|
events[3].time = 90;
|
|
|
|
events[3].entity = ALIEN_BOSS_PART2;
|
|
|
|
events[3].flag = -FL_ACTIVATE;
|
|
|
|
|
|
|
|
events[4].time = 93;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[4].face = FS_KRASS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Krass Tyler)
|
|
|
|
strcpy(events[4].message, _("Keep those things off my back or it'll cost you extra!"));
|
2016-01-03 20:31:39 +01:00
|
|
|
|
|
|
|
events[5].time = 120;
|
|
|
|
events[5].entity = ALIEN_BOSS_PART3;
|
|
|
|
events[5].flag = -FL_ACTIVATE;
|
|
|
|
|
|
|
|
events[6].time = 140;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[6].face = FS_PHOEBE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Phoebe Lexx)
|
|
|
|
strcpy(events[6].message, _("Hey! Did we miss anything exciting?"));
|
2016-01-03 20:31:39 +01:00
|
|
|
events[6].entity = ALIEN_PHOEBE;
|
|
|
|
events[6].flag = -FL_ACTIVATE;
|
|
|
|
|
|
|
|
events[7].time = 140;
|
|
|
|
events[7].entity = ALIEN_URSULA;
|
|
|
|
events[7].flag = -FL_ACTIVATE;
|
|
|
|
|
|
|
|
events[8].time = 150;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[8].face = FS_KRASS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Krass Tyler)
|
|
|
|
strcpy(events[8].message, _("I've earned my fee. I'll see you around, boy!"));
|
2016-01-03 22:20:22 +01:00
|
|
|
events[8].entity = ALIEN_FRIEND1;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[8].flag = FL_LEAVESECTOR;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_POSWIC:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 90;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
|
|
|
strcpy(events[0].message, _("DAMMIT! It's getting away! We've got to stop it!"));
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].entity = ALIEN_BOSS;
|
|
|
|
events[0].flag = FL_LEAVESECTOR;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_SATURN:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 45;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
|
|
|
strcpy(events[0].message, _("Chris! Another two of those ray cannons just arrived in your sector!"));
|
2016-01-03 22:20:22 +01:00
|
|
|
events[0].entity = ALIEN_BOSS_PART3;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].flag = -FL_ACTIVATE;
|
|
|
|
|
|
|
|
events[1].time = 45;
|
2016-01-03 22:20:22 +01:00
|
|
|
events[1].entity = ALIEN_BOSS_PART4;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[1].flag = -FL_ACTIVATE;
|
|
|
|
|
|
|
|
events[2].time = 90;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[2].face = FS_SID;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Sid Wilson)
|
|
|
|
strcpy(events[2].message, _("Two more!"));
|
2016-01-03 22:20:22 +01:00
|
|
|
events[2].entity = ALIEN_BOSS_PART5;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[2].flag = -FL_ACTIVATE;
|
|
|
|
|
|
|
|
events[3].time = 90;
|
2016-01-03 22:20:22 +01:00
|
|
|
events[3].entity = ALIEN_BOSS_PART6;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[3].flag = -FL_ACTIVATE;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_JUPITER:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 1;
|
2016-01-03 22:20:22 +01:00
|
|
|
events[0].entity = ALIEN_BOSS_PART1;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].flag = -FL_ACTIVATE;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[1].time = 2;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[1].face = FS_URSULA;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Ursula Lexx)
|
|
|
|
strcpy(events[1].message, _("It's a trap! My God! It's Tyler!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[2].time = 3 + engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[2].face = FS_KRASS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Krass Tyler)
|
|
|
|
strcpy(events[2].message, _("I'm a mercenary, what do you expect?! WEAPCO hired me to do a job, just like you have been doing."));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[3].time = 4 + 2*engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[3].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[3].message, _("Good point. It would be foolish to expect anything else."));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[4].time = 15;
|
2016-01-03 22:20:22 +01:00
|
|
|
events[4].entity = ALIEN_BOSS_PART2;
|
2016-01-03 20:31:39 +01:00
|
|
|
events[4].flag = -FL_ACTIVATE;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[5].time = 5 + 3*engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[5].face = FS_KRASS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Krass Tyler)
|
|
|
|
strcpy(events[5].message, _("Now if you'll assist me in dying quickly, I have a cheque to earn, boy..."));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[6].time = 6 + 4*engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[6].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[6].message, _("I have a name, you know. Do you remember it?"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 23:18:24 +01:00
|
|
|
events[7].time = 45;
|
|
|
|
events[7].entity = ALIEN_BOSS_PART3;
|
|
|
|
events[7].flag = -FL_ACTIVATE;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2016-01-03 23:18:24 +01:00
|
|
|
events[8].time = 45;
|
|
|
|
events[8].entity = ALIEN_BOSS_PART4;
|
|
|
|
events[8].flag = -FL_ACTIVATE;
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_EARTH:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 2;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_KLINE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Kline Kethlan)
|
|
|
|
strcpy(events[0].message, _("That's far enough, Bainfield. You've been lucky so far, but your luck is about to run out!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[1].time = 3 + engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[1].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[1].message, _("Yeah, right! Like I'd lose to you after coming this far!"));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MISN_VENUS:
|
2016-01-03 20:31:39 +01:00
|
|
|
events[0].time = 2;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[0].face = FS_CHRIS;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Chris Bainfield)
|
|
|
|
strcpy(events[0].message, _("WEAPCO is finished, Kethlan! You have nowhere to run, nowhere to hide, and no one to help you."));
|
2016-01-03 04:37:44 +01:00
|
|
|
|
2020-07-20 18:00:24 +02:00
|
|
|
events[1].time = 3 + engine.radioLife/60;
|
2016-01-04 15:07:30 +01:00
|
|
|
events[1].face = FS_KLINE;
|
2019-06-06 04:13:48 +02:00
|
|
|
/// Dialog (Kline Kethlan)
|
|
|
|
strcpy(events[1].message, _("You underestimate me, Bainfield."));
|
2020-12-26 01:40:27 +01:00
|
|
|
if (game.difficulty == DIFFICULTY_ORIGINAL) {
|
|
|
|
events[1].entity = ALIEN_KLINE;
|
|
|
|
events[1].flag = -(FL_IMMORTAL | FL_NOMOVE | FL_NOFIRE);
|
|
|
|
}
|
2016-01-03 04:37:44 +01:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
void events_check()
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
for (int i = 0 ; i < MAX_EVENTS ; i++)
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
if (engine.timeTaken == events[i].time)
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 21:59:17 +01:00
|
|
|
if (strcmp(events[i].message, "") != 0)
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-11-23 03:16:49 +01:00
|
|
|
radio_setMessage(events[i].face, events[i].message, 1);
|
2016-01-03 04:37:44 +01:00
|
|
|
}
|
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
if (events[i].entity > -1)
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
if (events[i].flag != -FL_ACTIVATE)
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
aliens[events[i].entity].flags += events[i].flag;
|
2016-01-03 04:37:44 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-11-19 17:43:50 +01:00
|
|
|
aliens[events[i].entity].active = 1;
|
2016-01-03 20:31:39 +01:00
|
|
|
aliens[events[i].entity].x = ((int)player.x +
|
2016-01-03 04:37:44 +01:00
|
|
|
RANDRANGE(400, 800));
|
2016-01-03 20:31:39 +01:00
|
|
|
aliens[events[i].entity].y = ((int)player.y +
|
2016-01-03 04:37:44 +01:00
|
|
|
RANDRANGE(-400, 800));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
events[i].time = 0;
|
2016-01-03 04:37:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-03 20:31:39 +01:00
|
|
|
void events_sync()
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
for (int i = 0 ; i < MAX_EVENTS ; i++)
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
if (events[i].time < 0)
|
2016-01-03 04:37:44 +01:00
|
|
|
{
|
2016-01-03 20:31:39 +01:00
|
|
|
events[i].time = engine.timeTaken + abs(events[i].time);
|
2016-01-03 04:37:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|