2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2006-08-22 21:14:45 +00:00
|
|
|
#include "functions.h"
|
2006-03-24 08:00:45 +00:00
|
|
|
#include "industry_map.h"
|
2006-03-24 08:55:08 +00:00
|
|
|
#include "station_map.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2004-12-15 22:18:54 +00:00
|
|
|
#include "map.h"
|
2005-01-29 12:19:05 +00:00
|
|
|
#include "tile.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "vehicle.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "news.h"
|
|
|
|
#include "station.h"
|
2005-09-17 13:57:01 +00:00
|
|
|
#include "waypoint.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "town.h"
|
|
|
|
#include "industry.h"
|
|
|
|
#include "player.h"
|
2006-05-01 11:27:39 +00:00
|
|
|
#include "airport.h"
|
2004-11-05 23:12:33 +00:00
|
|
|
#include "sound.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "variables.h"
|
2005-10-19 06:46:41 +00:00
|
|
|
#include "table/sprites.h"
|
2006-08-14 14:21:15 +00:00
|
|
|
#include "date.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-17 09:41:46 +00:00
|
|
|
static void DisasterClearSquare(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
if (!EnsureNoVehicle(tile)) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-29 15:12:40 +00:00
|
|
|
switch (GetTileType(tile)) {
|
2005-01-17 09:41:46 +00:00
|
|
|
case MP_RAILWAY:
|
2006-05-27 16:12:16 +00:00
|
|
|
if (IS_HUMAN_PLAYER(GetTileOwner(tile)) && !IsRailWaypoint(tile)) {
|
|
|
|
PlayerID p = _current_player;
|
|
|
|
_current_player = OWNER_WATER;
|
|
|
|
DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR);
|
|
|
|
_current_player = p;
|
|
|
|
}
|
2005-01-17 09:41:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MP_HOUSE: {
|
2005-09-17 13:57:01 +00:00
|
|
|
PlayerID p = _current_player;
|
2005-01-17 09:41:46 +00:00
|
|
|
_current_player = OWNER_NONE;
|
2006-04-10 07:15:58 +00:00
|
|
|
DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR);
|
2005-01-17 09:41:46 +00:00
|
|
|
_current_player = p;
|
|
|
|
break;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-17 09:41:46 +00:00
|
|
|
case MP_TREES:
|
|
|
|
case MP_CLEAR:
|
2004-08-09 17:04:08 +00:00
|
|
|
DoClearSquare(tile);
|
2005-01-17 09:41:46 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
static const SpriteID _disaster_images_1[] = {0xF41, 0xF41, 0xF41, 0xF41, 0xF41, 0xF41, 0xF41, 0xF41};
|
|
|
|
static const SpriteID _disaster_images_2[] = {0xF44, 0xF44, 0xF44, 0xF44, 0xF44, 0xF44, 0xF44, 0xF44};
|
|
|
|
static const SpriteID _disaster_images_3[] = {0xF4E, 0xF4E, 0xF4E, 0xF4E, 0xF4E, 0xF4E, 0xF4E, 0xF4E};
|
|
|
|
static const SpriteID _disaster_images_4[] = {0xF46, 0xF46, 0xF47, 0xF47, 0xF48, 0xF48, 0xF49, 0xF49};
|
|
|
|
static const SpriteID _disaster_images_5[] = {0xF4A, 0xF4A, 0xF4B, 0xF4B, 0xF4C, 0xF4C, 0xF4D, 0xF4D};
|
|
|
|
static const SpriteID _disaster_images_6[] = {0xF50, 0xF50, 0xF50, 0xF50, 0xF50, 0xF50, 0xF50, 0xF50};
|
|
|
|
static const SpriteID _disaster_images_7[] = {0xF51, 0xF51, 0xF51, 0xF51, 0xF51, 0xF51, 0xF51, 0xF51};
|
|
|
|
static const SpriteID _disaster_images_8[] = {0xF52, 0xF52, 0xF52, 0xF52, 0xF52, 0xF52, 0xF52, 0xF52};
|
|
|
|
static const SpriteID _disaster_images_9[] = {0xF3E, 0xF3E, 0xF3E, 0xF3E, 0xF3E, 0xF3E, 0xF3E, 0xF3E};
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
static const SpriteID * const _disaster_images[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
_disaster_images_1, _disaster_images_1,
|
|
|
|
_disaster_images_2, _disaster_images_2,
|
|
|
|
_disaster_images_3, _disaster_images_3,
|
|
|
|
_disaster_images_8, _disaster_images_8, _disaster_images_9,
|
|
|
|
_disaster_images_6, _disaster_images_6,
|
|
|
|
_disaster_images_7, _disaster_images_7,
|
|
|
|
_disaster_images_4, _disaster_images_5,
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void DisasterVehicleUpdateImage(Vehicle *v)
|
|
|
|
{
|
|
|
|
int img = v->u.disaster.image_override;
|
|
|
|
if (img == 0)
|
|
|
|
img = _disaster_images[v->subtype][v->direction];
|
|
|
|
v->cur_image = img;
|
|
|
|
}
|
|
|
|
|
2006-03-08 06:55:33 +00:00
|
|
|
static void InitializeDisasterVehicle(Vehicle* v, int x, int y, byte z, Direction direction, byte subtype)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
v->type = VEH_Disaster;
|
|
|
|
v->x_pos = x;
|
|
|
|
v->y_pos = y;
|
|
|
|
v->z_pos = z;
|
2005-06-25 06:15:43 +00:00
|
|
|
v->tile = TileVirtXY(x, y);
|
2004-08-09 17:04:08 +00:00
|
|
|
v->direction = direction;
|
|
|
|
v->subtype = subtype;
|
|
|
|
v->x_offs = -1;
|
|
|
|
v->y_offs = -1;
|
|
|
|
v->sprite_width = 2;
|
|
|
|
v->sprite_height = 2;
|
|
|
|
v->z_height = 5;
|
|
|
|
v->owner = OWNER_NONE;
|
|
|
|
v->vehstatus = VS_UNCLICKABLE;
|
|
|
|
v->u.disaster.image_override = 0;
|
2004-12-05 12:43:04 +00:00
|
|
|
v->current_order.type = OT_NOTHING;
|
|
|
|
v->current_order.flags = 0;
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.station = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DisasterVehicleUpdateImage(v);
|
|
|
|
VehiclePositionChanged(v);
|
|
|
|
BeginVehicleMove(v);
|
|
|
|
EndVehicleMove(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DeleteDisasterVeh(Vehicle *v)
|
|
|
|
{
|
|
|
|
DeleteVehicleChain(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void SetDisasterVehiclePos(Vehicle *v, int x, int y, byte z)
|
|
|
|
{
|
|
|
|
Vehicle *u;
|
|
|
|
|
|
|
|
BeginVehicleMove(v);
|
|
|
|
v->x_pos = x;
|
|
|
|
v->y_pos = y;
|
|
|
|
v->z_pos = z;
|
2005-06-25 06:15:43 +00:00
|
|
|
v->tile = TileVirtXY(x, y);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DisasterVehicleUpdateImage(v);
|
|
|
|
VehiclePositionChanged(v);
|
|
|
|
EndVehicleMove(v);
|
|
|
|
|
|
|
|
if ( (u=v->next) != NULL) {
|
2006-08-11 09:42:12 +00:00
|
|
|
int safe_x = clamp(x, 0, MapMaxX() * TILE_SIZE);
|
|
|
|
int safe_y = clamp(y - 1, 0, MapMaxY() * TILE_SIZE);
|
2004-08-09 17:04:08 +00:00
|
|
|
BeginVehicleMove(u);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
u->x_pos = x;
|
2006-08-11 09:42:12 +00:00
|
|
|
u->y_pos = y - 1 - (max(z - GetSlopeZ(safe_x, safe_y), 0) >> 3);
|
|
|
|
safe_y = clamp(u->y_pos, 0, MapMaxY() * TILE_SIZE);
|
|
|
|
u->z_pos = GetSlopeZ(safe_x, safe_y);
|
2004-08-09 17:04:08 +00:00
|
|
|
u->direction = v->direction;
|
|
|
|
|
|
|
|
DisasterVehicleUpdateImage(u);
|
|
|
|
VehiclePositionChanged(u);
|
|
|
|
EndVehicleMove(u);
|
|
|
|
|
|
|
|
if ( (u=u->next) != NULL) {
|
|
|
|
BeginVehicleMove(u);
|
|
|
|
u->x_pos = x;
|
|
|
|
u->y_pos = y;
|
|
|
|
u->z_pos = z + 5;
|
|
|
|
VehiclePositionChanged(u);
|
|
|
|
EndVehicleMove(u);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void DisasterTick_Zeppeliner(Vehicle *v)
|
|
|
|
{
|
|
|
|
GetNewVehiclePosResult gp;
|
|
|
|
Station *st;
|
|
|
|
int x,y;
|
|
|
|
byte z;
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
++v->tick_counter;
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
if (v->current_order.dest.disaster < 2) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (v->tick_counter&1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GetNewVehiclePos(v, &gp);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
if (v->current_order.dest.disaster == 1) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (++v->age == 38) {
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((v->tick_counter&7)==0) {
|
2005-02-12 15:53:32 +00:00
|
|
|
CreateEffectVehicleRel(v, 0, -17, 2, EV_SMOKE);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-08-26 16:34:03 +00:00
|
|
|
} else if (v->current_order.dest.disaster == 0) {
|
2004-08-09 17:04:08 +00:00
|
|
|
tile = v->tile; /**/
|
|
|
|
|
2005-01-29 14:53:05 +00:00
|
|
|
if (IsValidTile(tile) &&
|
|
|
|
IsTileType(tile, MP_STATION) &&
|
2006-03-26 19:20:15 +00:00
|
|
|
IsAirport(tile) &&
|
2005-06-04 11:56:32 +00:00
|
|
|
IS_HUMAN_PLAYER(GetTileOwner(tile))) {
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
|
2006-03-24 08:55:08 +00:00
|
|
|
SetDParam(0, GetStationIndex(tile));
|
2004-08-09 17:04:08 +00:00
|
|
|
AddNewsItem(STR_B000_ZEPPELIN_DISASTER_AT,
|
|
|
|
NEWS_FLAGS(NM_THIN, NF_VIEWPORT|NF_VEHICLE, NT_ACCIDENT, 0),
|
|
|
|
v->index,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
}
|
2006-04-03 05:32:11 +00:00
|
|
|
if (v->y_pos >= ((int)MapSizeY() + 9) * TILE_SIZE - 1)
|
2004-08-09 17:04:08 +00:00
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
return;
|
2004-09-10 19:02:27 +00:00
|
|
|
}
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
if (v->current_order.dest.disaster > 2) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (++v->age <= 13320)
|
|
|
|
return;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
tile = v->tile; /**/
|
|
|
|
|
2005-01-29 14:53:05 +00:00
|
|
|
if (IsValidTile(tile) &&
|
|
|
|
IsTileType(tile, MP_STATION) &&
|
2006-03-26 19:20:15 +00:00
|
|
|
IsAirport(tile) &&
|
2005-06-04 11:56:32 +00:00
|
|
|
IS_HUMAN_PLAYER(GetTileOwner(tile))) {
|
2006-03-24 08:55:08 +00:00
|
|
|
st = GetStationByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
CLRBITS(st->airport_flags, RUNWAY_IN_block);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetDisasterVehiclePos(v, v->x_pos, v->y_pos, v->z_pos);
|
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = v->x_pos;
|
|
|
|
y = v->y_pos;
|
|
|
|
z = GetSlopeZ(x,y);
|
|
|
|
if (z < v->z_pos)
|
|
|
|
z = v->z_pos - 1;
|
|
|
|
SetDisasterVehiclePos(v, x, y, z);
|
|
|
|
|
|
|
|
if (++v->age == 1) {
|
2005-02-12 15:53:32 +00:00
|
|
|
CreateEffectVehicleRel(v, 0, 7, 8, EV_EXPLOSION_LARGE);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayVehicleFx(SND_12_EXPLOSION, v);
|
2005-10-19 06:46:41 +00:00
|
|
|
v->u.disaster.image_override = SPR_BLIMP_CRASHING;
|
2004-08-09 17:04:08 +00:00
|
|
|
} else if (v->age == 70) {
|
2005-10-19 06:46:41 +00:00
|
|
|
v->u.disaster.image_override = SPR_BLIMP_CRASHED;
|
2004-08-09 17:04:08 +00:00
|
|
|
} else if (v->age <= 300) {
|
|
|
|
if (!(v->tick_counter&7)) {
|
|
|
|
uint32 r = Random();
|
|
|
|
|
|
|
|
CreateEffectVehicleRel(v,
|
2005-07-20 15:29:28 +00:00
|
|
|
GB(r, 0, 4) - 7,
|
|
|
|
GB(r, 4, 4) - 7,
|
|
|
|
GB(r, 8, 3) + 5,
|
2005-02-12 15:53:32 +00:00
|
|
|
EV_EXPLOSION_SMALL);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
} else if (v->age == 350) {
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 3;
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
tile = v->tile;/**/
|
2005-01-29 14:53:05 +00:00
|
|
|
if (IsValidTile(tile) &&
|
|
|
|
IsTileType(tile, MP_STATION) &&
|
2006-03-26 19:20:15 +00:00
|
|
|
IsAirport(tile) &&
|
2005-06-04 11:56:32 +00:00
|
|
|
IS_HUMAN_PLAYER(GetTileOwner(tile))) {
|
2006-03-24 08:55:08 +00:00
|
|
|
st = GetStationByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
SETBITS(st->airport_flags, RUNWAY_IN_block);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// UFO starts in the middle, and flies around a bit until it locates
|
|
|
|
// a road vehicle which it targets.
|
|
|
|
static void DisasterTick_UFO(Vehicle *v)
|
|
|
|
{
|
|
|
|
GetNewVehiclePosResult gp;
|
|
|
|
Vehicle *u;
|
|
|
|
uint dist;
|
|
|
|
byte z;
|
|
|
|
|
2005-10-19 06:46:41 +00:00
|
|
|
v->u.disaster.image_override = (++v->tick_counter & 8) ? SPR_UFO_SMALL_SCOUT_DARKER : SPR_UFO_SMALL_SCOUT;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
if (v->current_order.dest.disaster == 0) {
|
2004-09-10 19:02:27 +00:00
|
|
|
// fly around randomly
|
2006-04-03 05:32:11 +00:00
|
|
|
int x = TileX(v->dest_tile) * TILE_SIZE;
|
|
|
|
int y = TileY(v->dest_tile) * TILE_SIZE;
|
|
|
|
if (abs(x - v->x_pos) + abs(y - v->y_pos) >= TILE_SIZE) {
|
2004-08-09 17:04:08 +00:00
|
|
|
v->direction = GetDirectionTowards(v, x, y);
|
|
|
|
GetNewVehiclePos(v, &gp);
|
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (++v->age < 6) {
|
2005-07-13 19:51:31 +00:00
|
|
|
v->dest_tile = RandomTile();
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
FOR_ALL_VEHICLES(u) {
|
|
|
|
if (u->type == VEH_Road && IS_HUMAN_PLAYER(u->owner)) {
|
|
|
|
v->dest_tile = u->index;
|
|
|
|
v->age = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
} else {
|
|
|
|
// target a vehicle
|
2005-01-06 22:31:58 +00:00
|
|
|
u = GetVehicle(v->dest_tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
if (u->type != VEH_Road) {
|
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dist = abs(v->x_pos - u->x_pos) + abs(v->y_pos - u->y_pos);
|
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
if (dist < TILE_SIZE && !(u->vehstatus&VS_HIDDEN) && u->breakdown_ctr==0) {
|
2004-08-09 17:04:08 +00:00
|
|
|
u->breakdown_ctr = 3;
|
|
|
|
u->breakdown_delay = 140;
|
|
|
|
}
|
|
|
|
|
|
|
|
v->direction = GetDirectionTowards(v, u->x_pos, u->y_pos);
|
|
|
|
GetNewVehiclePos(v, &gp);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
z = v->z_pos;
|
2006-04-03 05:32:11 +00:00
|
|
|
if (dist <= TILE_SIZE && z > u->z_pos) z--;
|
2004-08-09 17:04:08 +00:00
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, z);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (z <= u->z_pos && (u->vehstatus&VS_HIDDEN)==0) {
|
|
|
|
v->age++;
|
|
|
|
if (u->u.road.crashed_ctr == 0) {
|
|
|
|
u->u.road.crashed_ctr++;
|
|
|
|
u->vehstatus |= VS_CRASHED;
|
|
|
|
|
|
|
|
AddNewsItem(STR_B001_ROAD_VEHICLE_DESTROYED,
|
|
|
|
NEWS_FLAGS(NM_THIN, NF_VIEWPORT|NF_VEHICLE, NT_ACCIDENT, 0),
|
|
|
|
u->index,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// destroy?
|
|
|
|
if (v->age > 50) {
|
2005-02-12 15:53:32 +00:00
|
|
|
CreateEffectVehicleRel(v, 0, 7, 8, EV_EXPLOSION_LARGE);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayVehicleFx(SND_12_EXPLOSION, v);
|
2004-08-09 17:04:08 +00:00
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void DestructIndustry(Industry *i)
|
|
|
|
{
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-07-08 22:25:24 +00:00
|
|
|
for (tile = 0; tile != MapSize(); tile++) {
|
2006-03-24 08:00:45 +00:00
|
|
|
if (IsTileType(tile, MP_INDUSTRY) && GetIndustryIndex(tile) == i->index) {
|
2006-04-10 15:09:56 +00:00
|
|
|
ResetIndustryConstructionStage(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
MarkTileDirtyByTile(tile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Airplane which destroys an oil refinery
|
|
|
|
static void DisasterTick_2(Vehicle *v)
|
|
|
|
{
|
|
|
|
GetNewVehiclePosResult gp;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
v->tick_counter++;
|
2004-12-05 12:43:04 +00:00
|
|
|
v->u.disaster.image_override =
|
2006-08-26 16:34:03 +00:00
|
|
|
(v->current_order.dest.disaster == 1 && v->tick_counter & 4) ? SPR_F_15_FIRING : 0;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
GetNewVehiclePos(v, &gp);
|
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
|
|
|
|
|
|
|
|
if (gp.x < -160) {
|
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
if (v->current_order.dest.disaster == 2) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (!(v->tick_counter&3)) {
|
2005-01-06 22:31:58 +00:00
|
|
|
Industry *i = GetIndustry(v->dest_tile);
|
2006-04-03 05:32:11 +00:00
|
|
|
int x = TileX(i->xy) * TILE_SIZE;
|
|
|
|
int y = TileY(i->xy) * TILE_SIZE;
|
2004-08-09 17:04:08 +00:00
|
|
|
uint32 r = Random();
|
|
|
|
|
|
|
|
CreateEffectVehicleAbove(
|
2005-07-20 15:29:28 +00:00
|
|
|
GB(r, 0, 6) + x,
|
|
|
|
GB(r, 6, 6) + y,
|
|
|
|
GB(r, 12, 4),
|
2005-02-12 15:53:32 +00:00
|
|
|
EV_EXPLOSION_SMALL);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (++v->age >= 55)
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 3;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-08-26 16:34:03 +00:00
|
|
|
} else if (v->current_order.dest.disaster == 1) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (++v->age == 112) {
|
|
|
|
Industry *i;
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
|
2005-01-06 22:31:58 +00:00
|
|
|
i = GetIndustry(v->dest_tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
DestructIndustry(i);
|
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, i->town->index);
|
2004-08-09 17:04:08 +00:00
|
|
|
AddNewsItem(STR_B002_OIL_REFINERY_EXPLOSION, NEWS_FLAGS(NM_THIN,NF_VIEWPORT|NF_TILE,NT_ACCIDENT,0), i->xy, 0);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayTileFx(SND_12_EXPLOSION, i->xy);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-08-26 16:34:03 +00:00
|
|
|
} else if (v->current_order.dest.disaster == 0) {
|
2004-08-09 17:04:08 +00:00
|
|
|
int x,y;
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile;
|
2006-03-24 08:00:45 +00:00
|
|
|
uint ind;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
x = v->x_pos - 15 * TILE_SIZE;
|
2004-08-09 17:04:08 +00:00
|
|
|
y = v->y_pos;
|
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
if ( (uint)x > MapMaxX() * TILE_SIZE - 1)
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
|
|
|
|
2005-06-25 06:15:43 +00:00
|
|
|
tile = TileVirtXY(x, y);
|
2005-01-16 11:24:58 +00:00
|
|
|
if (!IsTileType(tile, MP_INDUSTRY))
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
|
|
|
|
2006-03-24 08:00:45 +00:00
|
|
|
ind = GetIndustryIndex(tile);
|
|
|
|
v->dest_tile = ind;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-06 22:31:58 +00:00
|
|
|
if (GetIndustry(ind)->type == IT_OIL_REFINERY) {
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helicopter which destroys a factory
|
|
|
|
static void DisasterTick_3(Vehicle *v)
|
|
|
|
{
|
|
|
|
GetNewVehiclePosResult gp;
|
|
|
|
|
|
|
|
v->tick_counter++;
|
2004-12-05 12:43:04 +00:00
|
|
|
v->u.disaster.image_override =
|
2006-08-26 16:34:03 +00:00
|
|
|
(v->current_order.dest.disaster == 1 && v->tick_counter & 4) ? SPR_AH_64A_FIRING : 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
GetNewVehiclePos(v, &gp);
|
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
|
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
if (gp.x > (int)MapSizeX() * TILE_SIZE + 9 * TILE_SIZE - 1) {
|
2004-08-09 17:04:08 +00:00
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
if (v->current_order.dest.disaster == 2) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (!(v->tick_counter&3)) {
|
2005-01-06 22:31:58 +00:00
|
|
|
Industry *i = GetIndustry(v->dest_tile);
|
2006-04-03 05:32:11 +00:00
|
|
|
int x = TileX(i->xy) * TILE_SIZE;
|
|
|
|
int y = TileY(i->xy) * TILE_SIZE;
|
2004-08-09 17:04:08 +00:00
|
|
|
uint32 r = Random();
|
|
|
|
|
|
|
|
CreateEffectVehicleAbove(
|
2005-07-20 15:29:28 +00:00
|
|
|
GB(r, 0, 6) + x,
|
|
|
|
GB(r, 6, 6) + y,
|
|
|
|
GB(r, 12, 4),
|
2005-02-12 15:53:32 +00:00
|
|
|
EV_EXPLOSION_SMALL);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (++v->age >= 55)
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 3;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-08-26 16:34:03 +00:00
|
|
|
} else if (v->current_order.dest.disaster == 1) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (++v->age == 112) {
|
|
|
|
Industry *i;
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
|
2005-01-06 22:31:58 +00:00
|
|
|
i = GetIndustry(v->dest_tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
DestructIndustry(i);
|
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, i->town->index);
|
2004-08-09 17:04:08 +00:00
|
|
|
AddNewsItem(STR_B003_FACTORY_DESTROYED_IN_SUSPICIOUS, NEWS_FLAGS(NM_THIN,NF_VIEWPORT|NF_TILE,NT_ACCIDENT,0), i->xy, 0);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayTileFx(SND_12_EXPLOSION, i->xy);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-08-26 16:34:03 +00:00
|
|
|
} else if (v->current_order.dest.disaster == 0) {
|
2004-08-09 17:04:08 +00:00
|
|
|
int x,y;
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile;
|
2006-03-24 08:00:45 +00:00
|
|
|
uint ind;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
x = v->x_pos - 15 * TILE_SIZE;
|
2004-08-09 17:04:08 +00:00
|
|
|
y = v->y_pos;
|
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
if ( (uint)x > MapMaxX() * TILE_SIZE - 1)
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
|
|
|
|
2005-06-25 06:15:43 +00:00
|
|
|
tile = TileVirtXY(x, y);
|
2005-01-16 11:24:58 +00:00
|
|
|
if (!IsTileType(tile, MP_INDUSTRY))
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
|
|
|
|
2006-03-24 08:00:45 +00:00
|
|
|
ind = GetIndustryIndex(tile);
|
|
|
|
v->dest_tile = ind;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-06 22:31:58 +00:00
|
|
|
if (GetIndustry(ind)->type == IT_FACTORY) {
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helicopter rotor blades
|
|
|
|
static void DisasterTick_3b(Vehicle *v)
|
|
|
|
{
|
|
|
|
if (++v->tick_counter & 1)
|
|
|
|
return;
|
|
|
|
|
2005-10-19 06:46:41 +00:00
|
|
|
if (++v->cur_image > SPR_ROTOR_MOVING_3) v->cur_image = SPR_ROTOR_MOVING_1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
VehiclePositionChanged(v);
|
|
|
|
BeginVehicleMove(v);
|
|
|
|
EndVehicleMove(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Big UFO which lands on a piece of rail.
|
|
|
|
// Will be shot down by a plane
|
|
|
|
static void DisasterTick_4(Vehicle *v)
|
|
|
|
{
|
|
|
|
GetNewVehiclePosResult gp;
|
|
|
|
byte z;
|
|
|
|
Vehicle *u,*w;
|
|
|
|
Town *t;
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile;
|
|
|
|
TileIndex tile_org;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
v->tick_counter++;
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
if (v->current_order.dest.disaster == 1) {
|
2006-04-23 19:35:36 +00:00
|
|
|
int x = TileX(v->dest_tile) * TILE_SIZE + TILE_SIZE / 2;
|
|
|
|
int y = TileY(v->dest_tile) * TILE_SIZE + TILE_SIZE / 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
if (abs(v->x_pos - x) + abs(v->y_pos - y) >= 8) {
|
|
|
|
v->direction = GetDirectionTowards(v, x, y);
|
|
|
|
|
|
|
|
GetNewVehiclePos(v, &gp);
|
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
z = GetSlopeZ(v->x_pos, v->y_pos);
|
|
|
|
if (z < v->z_pos) {
|
|
|
|
SetDisasterVehiclePos(v, v->x_pos, v->y_pos, v->z_pos - 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
FOR_ALL_VEHICLES(u) {
|
|
|
|
if (u->type == VEH_Train || u->type == VEH_Road) {
|
2006-04-03 05:32:11 +00:00
|
|
|
if (abs(u->x_pos - v->x_pos) + abs(u->y_pos - v->y_pos) <= 12 * TILE_SIZE) {
|
2004-08-09 17:04:08 +00:00
|
|
|
u->breakdown_ctr = 5;
|
|
|
|
u->breakdown_delay = 0xF0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t = ClosestTownFromTile(v->dest_tile, (uint)-1);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, t->index);
|
2004-08-09 17:04:08 +00:00
|
|
|
AddNewsItem(STR_B004_UFO_LANDS_NEAR,
|
|
|
|
NEWS_FLAGS(NM_THIN, NF_VIEWPORT|NF_TILE, NT_ACCIDENT, 0),
|
|
|
|
v->tile,
|
|
|
|
0);
|
|
|
|
|
|
|
|
u = ForceAllocateSpecialVehicle();
|
|
|
|
if (u == NULL) {
|
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
InitializeDisasterVehicle(u, -6 * TILE_SIZE, v->y_pos, 135, DIR_SW, 11);
|
2004-08-09 17:04:08 +00:00
|
|
|
u->u.disaster.unk2 = v->index;
|
|
|
|
|
|
|
|
w = ForceAllocateSpecialVehicle();
|
|
|
|
if (w == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
u->next = w;
|
2006-04-03 05:32:11 +00:00
|
|
|
InitializeDisasterVehicle(w, -6 * TILE_SIZE, v->y_pos, 0, DIR_SW, 12);
|
2006-07-26 08:32:20 +00:00
|
|
|
w->vehstatus |= VS_SHADOW;
|
2006-08-26 16:34:03 +00:00
|
|
|
} else if (v->current_order.dest.disaster < 1) {
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
int x = TileX(v->dest_tile) * TILE_SIZE;
|
|
|
|
int y = TileY(v->dest_tile) * TILE_SIZE;
|
|
|
|
if (abs(x - v->x_pos) + abs(y - v->y_pos) >= TILE_SIZE) {
|
2004-08-09 17:04:08 +00:00
|
|
|
v->direction = GetDirectionTowards(v, x, y);
|
|
|
|
GetNewVehiclePos(v, &gp);
|
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (++v->age < 6) {
|
2005-07-13 19:51:31 +00:00
|
|
|
v->dest_tile = RandomTile();
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-07-13 19:51:31 +00:00
|
|
|
tile_org = tile = RandomTile();
|
2004-08-09 17:04:08 +00:00
|
|
|
do {
|
2005-01-16 11:24:58 +00:00
|
|
|
if (IsTileType(tile, MP_RAILWAY) &&
|
2006-03-19 13:48:08 +00:00
|
|
|
IsPlainRailTile(tile) &&
|
|
|
|
IS_HUMAN_PLAYER(GetTileOwner(tile))) {
|
2005-06-04 11:56:32 +00:00
|
|
|
break;
|
2006-03-19 13:48:08 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
tile = TILE_MASK(tile+1);
|
|
|
|
} while (tile != tile_org);
|
|
|
|
v->dest_tile = tile;
|
|
|
|
v->age = 0;
|
2006-06-27 21:25:53 +00:00
|
|
|
} else {
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
2006-06-27 21:25:53 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// The plane which will shoot down the UFO
|
|
|
|
static void DisasterTick_4b(Vehicle *v)
|
|
|
|
{
|
|
|
|
GetNewVehiclePosResult gp;
|
|
|
|
Vehicle *u;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
v->tick_counter++;
|
|
|
|
|
|
|
|
GetNewVehiclePos(v, &gp);
|
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
|
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
if (gp.x > (int)MapSizeX() * TILE_SIZE + 9 * TILE_SIZE - 1) {
|
2004-08-09 17:04:08 +00:00
|
|
|
DeleteDisasterVeh(v);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-26 16:34:03 +00:00
|
|
|
if (v->current_order.dest.disaster == 0) {
|
2005-01-06 22:31:58 +00:00
|
|
|
u = GetVehicle(v->u.disaster.unk2);
|
2006-04-03 05:32:11 +00:00
|
|
|
if (abs(v->x_pos - u->x_pos) > TILE_SIZE)
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
2006-08-26 16:34:03 +00:00
|
|
|
v->current_order.dest.disaster = 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-02-12 15:53:32 +00:00
|
|
|
CreateEffectVehicleRel(u, 0, 7, 8, EV_EXPLOSION_LARGE);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayVehicleFx(SND_12_EXPLOSION, u);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DeleteDisasterVeh(u);
|
|
|
|
|
2006-02-01 07:36:15 +00:00
|
|
|
for (i = 0; i != 80; i++) {
|
2004-08-09 17:04:08 +00:00
|
|
|
uint32 r = Random();
|
|
|
|
CreateEffectVehicleAbove(
|
2005-07-20 15:29:28 +00:00
|
|
|
GB(r, 0, 6) + v->x_pos - 32,
|
|
|
|
GB(r, 5, 6) + v->y_pos - 32,
|
2004-08-09 17:04:08 +00:00
|
|
|
0,
|
2005-02-12 15:53:32 +00:00
|
|
|
EV_EXPLOSION_SMALL);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-06-25 16:44:57 +00:00
|
|
|
BEGIN_TILE_LOOP(tile, 6, 6, v->tile - TileDiffXY(3, 3))
|
2004-08-09 17:04:08 +00:00
|
|
|
tile = TILE_MASK(tile);
|
|
|
|
DisasterClearSquare(tile);
|
2005-06-25 16:44:57 +00:00
|
|
|
END_TILE_LOOP(tile, 6, 6, v->tile - TileDiffXY(3, 3))
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Submarine handler
|
|
|
|
static void DisasterTick_5_and_6(Vehicle *v)
|
|
|
|
{
|
|
|
|
uint32 r;
|
|
|
|
GetNewVehiclePosResult gp;
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
v->tick_counter++;
|
|
|
|
|
|
|
|
if (++v->age > 8880) {
|
|
|
|
VehiclePositionChanged(v);
|
|
|
|
BeginVehicleMove(v);
|
|
|
|
EndVehicleMove(v);
|
|
|
|
DeleteVehicle(v);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
if (!(v->tick_counter & 1)) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-08 08:28:48 +00:00
|
|
|
tile = v->tile + TileOffsByDir(DirToDiagDir(v->direction));
|
2004-08-09 17:04:08 +00:00
|
|
|
if (IsValidTile(tile) &&
|
2004-09-05 16:15:22 +00:00
|
|
|
(r=GetTileTrackStatus(tile,TRANSPORT_WATER),(byte)(r+(r >> 8)) == 0x3F) &&
|
2004-08-09 17:04:08 +00:00
|
|
|
!CHANCE16(1,90)) {
|
|
|
|
GetNewVehiclePos(v, &gp);
|
|
|
|
SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-08 08:16:31 +00:00
|
|
|
v->direction = ChangeDir(v->direction, GB(Random(), 0, 1) ? DIRDIFF_90RIGHT : DIRDIFF_90LEFT);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void DisasterTick_NULL(Vehicle *v) {}
|
|
|
|
typedef void DisasterVehicleTickProc(Vehicle *v);
|
|
|
|
|
|
|
|
static DisasterVehicleTickProc * const _disastervehicle_tick_procs[] = {
|
|
|
|
DisasterTick_Zeppeliner,DisasterTick_NULL,
|
|
|
|
DisasterTick_UFO,DisasterTick_NULL,
|
|
|
|
DisasterTick_2,DisasterTick_NULL,
|
|
|
|
DisasterTick_3,DisasterTick_NULL,DisasterTick_3b,
|
|
|
|
DisasterTick_4,DisasterTick_NULL,
|
|
|
|
DisasterTick_4b,DisasterTick_NULL,
|
|
|
|
DisasterTick_5_and_6,
|
|
|
|
DisasterTick_5_and_6,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void DisasterVehicle_Tick(Vehicle *v)
|
|
|
|
{
|
|
|
|
_disastervehicle_tick_procs[v->subtype](v);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void OnNewDay_DisasterVehicle(Vehicle *v)
|
|
|
|
{
|
|
|
|
// not used
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
typedef void DisasterInitProc(void);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
// Zeppeliner which crashes on a small airport
|
2005-01-22 20:23:18 +00:00
|
|
|
static void Disaster0_Init(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Vehicle *v = ForceAllocateSpecialVehicle(), *u;
|
|
|
|
Station *st;
|
|
|
|
int x;
|
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
if (v == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
/* Pick a random place, unless we find a small airport */
|
2006-04-23 19:35:36 +00:00
|
|
|
x = TileX(Random()) * TILE_SIZE + TILE_SIZE / 2;
|
2005-01-06 22:31:58 +00:00
|
|
|
|
|
|
|
FOR_ALL_STATIONS(st) {
|
2006-08-22 15:33:35 +00:00
|
|
|
if (st->airport_tile != 0 &&
|
2004-08-09 17:04:08 +00:00
|
|
|
st->airport_type <= 1 &&
|
|
|
|
IS_HUMAN_PLAYER(st->owner)) {
|
2006-04-03 05:32:11 +00:00
|
|
|
x = (TileX(st->xy) + 2) * TILE_SIZE;
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(v, x, 0, 135, DIR_SE, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
// Allocate shadow too?
|
|
|
|
u = ForceAllocateSpecialVehicle();
|
|
|
|
if (u != NULL) {
|
|
|
|
v->next = u;
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(u, x, 0, 0, DIR_SE, 1);
|
2006-07-26 08:32:20 +00:00
|
|
|
u->vehstatus |= VS_SHADOW;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void Disaster1_Init(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Vehicle *v = ForceAllocateSpecialVehicle(), *u;
|
|
|
|
int x;
|
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
if (v == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-23 19:35:36 +00:00
|
|
|
x = TileX(Random()) * TILE_SIZE + TILE_SIZE / 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(v, x, 0, 135, DIR_SE, 2);
|
2005-06-25 16:44:57 +00:00
|
|
|
v->dest_tile = TileXY(MapSizeX() / 2, MapSizeY() / 2);
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
|
|
|
|
// Allocate shadow too?
|
|
|
|
u = ForceAllocateSpecialVehicle();
|
|
|
|
if (u != NULL) {
|
|
|
|
v->next = u;
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(u, x, 0, 0, DIR_SE, 3);
|
2006-07-26 08:32:20 +00:00
|
|
|
u->vehstatus |= VS_SHADOW;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void Disaster2_Init(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Industry *i, *found;
|
|
|
|
Vehicle *v,*u;
|
|
|
|
int x,y;
|
|
|
|
|
2004-12-30 10:03:35 +00:00
|
|
|
found = NULL;
|
|
|
|
|
|
|
|
FOR_ALL_INDUSTRIES(i) {
|
2006-08-22 15:33:35 +00:00
|
|
|
if (i->type == IT_OIL_REFINERY &&
|
2006-06-27 21:25:53 +00:00
|
|
|
(found == NULL || CHANCE16(1, 2))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
found = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
if (found == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
v = ForceAllocateSpecialVehicle();
|
2006-06-27 21:25:53 +00:00
|
|
|
if (v == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
x = (MapSizeX() + 9) * TILE_SIZE - 1;
|
|
|
|
y = TileY(found->xy) * TILE_SIZE + 37;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(v, x, y, 135, DIR_NE, 4);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
u = ForceAllocateSpecialVehicle();
|
|
|
|
if (u != NULL) {
|
|
|
|
v->next = u;
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(u, x, y, 0, DIR_SE, 5);
|
2006-07-26 08:32:20 +00:00
|
|
|
u->vehstatus |= VS_SHADOW;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void Disaster3_Init(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Industry *i, *found;
|
|
|
|
Vehicle *v,*u,*w;
|
|
|
|
int x,y;
|
|
|
|
|
2004-12-30 10:03:35 +00:00
|
|
|
found = NULL;
|
|
|
|
|
|
|
|
FOR_ALL_INDUSTRIES(i) {
|
2006-08-22 15:33:35 +00:00
|
|
|
if (i->type == IT_FACTORY &&
|
2004-08-09 17:04:08 +00:00
|
|
|
(found==NULL || CHANCE16(1,2))) {
|
|
|
|
found = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
if (found == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
v = ForceAllocateSpecialVehicle();
|
2006-06-27 21:25:53 +00:00
|
|
|
if (v == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
x = -16 * TILE_SIZE;
|
|
|
|
y = TileY(found->xy) * TILE_SIZE + 37;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(v, x, y, 135, DIR_SW, 6);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
u = ForceAllocateSpecialVehicle();
|
|
|
|
if (u != NULL) {
|
|
|
|
v->next = u;
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(u, x, y, 0, DIR_SW, 7);
|
2006-07-26 08:32:20 +00:00
|
|
|
u->vehstatus |= VS_SHADOW;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
w = ForceAllocateSpecialVehicle();
|
|
|
|
if (w != NULL) {
|
|
|
|
u->next = w;
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(w, x, y, 140, DIR_SW, 8);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void Disaster4_Init(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Vehicle *v = ForceAllocateSpecialVehicle(), *u;
|
|
|
|
int x,y;
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (v == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-23 19:35:36 +00:00
|
|
|
x = TileX(Random()) * TILE_SIZE + TILE_SIZE / 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-03 05:32:11 +00:00
|
|
|
y = MapMaxX() * TILE_SIZE - 1;
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(v, x, y, 135, DIR_NW, 9);
|
2005-06-25 16:44:57 +00:00
|
|
|
v->dest_tile = TileXY(MapSizeX() / 2, MapSizeY() / 2);
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
|
|
|
|
// Allocate shadow too?
|
|
|
|
u = ForceAllocateSpecialVehicle();
|
|
|
|
if (u != NULL) {
|
|
|
|
v->next = u;
|
2006-03-08 06:55:33 +00:00
|
|
|
InitializeDisasterVehicle(u, x, y, 0, DIR_NW, 10);
|
2006-07-26 08:32:20 +00:00
|
|
|
u->vehstatus |= VS_SHADOW;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Submarine type 1
|
2005-01-22 20:23:18 +00:00
|
|
|
static void Disaster5_Init(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Vehicle *v = ForceAllocateSpecialVehicle();
|
|
|
|
int x,y;
|
2006-03-08 06:55:33 +00:00
|
|
|
Direction dir;
|
2004-08-09 17:04:08 +00:00
|
|
|
uint32 r;
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (v == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
r = Random();
|
2006-04-23 19:35:36 +00:00
|
|
|
x = TileX(r) * TILE_SIZE + TILE_SIZE / 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-08 06:55:33 +00:00
|
|
|
if (r & 0x80000000) {
|
2006-04-23 19:35:36 +00:00
|
|
|
y = MapMaxX() * TILE_SIZE - TILE_SIZE / 2 - 1;
|
2006-03-08 06:55:33 +00:00
|
|
|
dir = DIR_NW;
|
|
|
|
} else {
|
2006-04-23 19:35:36 +00:00
|
|
|
y = TILE_SIZE / 2;
|
2006-03-08 06:55:33 +00:00
|
|
|
dir = DIR_SE;
|
|
|
|
}
|
|
|
|
InitializeDisasterVehicle(v, x, y, 0, dir, 13);
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Submarine type 2
|
2005-01-22 20:23:18 +00:00
|
|
|
static void Disaster6_Init(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Vehicle *v = ForceAllocateSpecialVehicle();
|
|
|
|
int x,y;
|
2006-03-08 06:55:33 +00:00
|
|
|
Direction dir;
|
2004-08-09 17:04:08 +00:00
|
|
|
uint32 r;
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (v == NULL) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
r = Random();
|
2006-04-23 19:35:36 +00:00
|
|
|
x = TileX(r) * TILE_SIZE + TILE_SIZE / 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-08 06:55:33 +00:00
|
|
|
if (r & 0x80000000) {
|
2006-04-23 19:35:36 +00:00
|
|
|
y = MapMaxX() * TILE_SIZE - TILE_SIZE / 2 - 1;
|
2006-03-08 06:55:33 +00:00
|
|
|
dir = DIR_NW;
|
|
|
|
} else {
|
2006-04-23 19:35:36 +00:00
|
|
|
y = TILE_SIZE / 2;
|
2006-03-08 06:55:33 +00:00
|
|
|
dir = DIR_SE;
|
|
|
|
}
|
|
|
|
InitializeDisasterVehicle(v, x, y, 0, dir, 14);
|
2004-08-09 17:04:08 +00:00
|
|
|
v->age = 0;
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void Disaster7_Init(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-15 08:49:46 +00:00
|
|
|
int index = GB(Random(), 0, 4);
|
2005-11-15 11:46:49 +00:00
|
|
|
uint m;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-11-15 11:46:49 +00:00
|
|
|
for (m = 0; m < 15; m++) {
|
2006-02-06 09:18:04 +00:00
|
|
|
const Industry* i;
|
|
|
|
|
2004-12-30 10:03:35 +00:00
|
|
|
FOR_ALL_INDUSTRIES(i) {
|
2006-08-22 15:33:35 +00:00
|
|
|
if (i->type == IT_COAL_MINE && --index < 0) {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, i->town->index);
|
2004-09-10 19:02:27 +00:00
|
|
|
AddNewsItem(STR_B005_COAL_MINE_SUBSIDENCE_LEAVES,
|
2005-06-25 16:44:57 +00:00
|
|
|
NEWS_FLAGS(NM_THIN,NF_VIEWPORT|NF_TILE,NT_ACCIDENT,0), i->xy + TileDiffXY(1, 1), 0);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile = i->xy;
|
2005-11-14 08:09:57 +00:00
|
|
|
TileIndexDiff step = TileOffsByDir(GB(Random(), 0, 2));
|
2005-11-15 11:46:49 +00:00
|
|
|
uint n;
|
2005-06-24 12:38:35 +00:00
|
|
|
|
2005-11-17 23:05:59 +00:00
|
|
|
for (n = 0; n < 30; n++) {
|
2004-08-09 17:04:08 +00:00
|
|
|
DisasterClearSquare(tile);
|
|
|
|
tile = TILE_MASK(tile + step);
|
2005-11-15 11:46:49 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2005-11-15 11:46:49 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static DisasterInitProc * const _disaster_initprocs[] = {
|
|
|
|
Disaster0_Init,
|
|
|
|
Disaster1_Init,
|
|
|
|
Disaster2_Init,
|
|
|
|
Disaster3_Init,
|
|
|
|
Disaster4_Init,
|
|
|
|
Disaster5_Init,
|
|
|
|
Disaster6_Init,
|
|
|
|
Disaster7_Init,
|
|
|
|
};
|
|
|
|
|
2005-11-16 12:04:34 +00:00
|
|
|
static const struct {
|
2006-08-16 11:39:55 +00:00
|
|
|
Year min;
|
|
|
|
Year max;
|
2005-11-16 12:04:34 +00:00
|
|
|
} _dis_years[] = {
|
2006-08-16 11:39:55 +00:00
|
|
|
{ 1930, 1955 },
|
|
|
|
{ 1940, 1970 },
|
|
|
|
{ 1960, 1990 },
|
|
|
|
{ 1970, 2000 },
|
|
|
|
{ 2000, 2100 },
|
|
|
|
{ 1940, 1965 },
|
|
|
|
{ 1975, 2010 },
|
|
|
|
{ 1950, 1985 }
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void DoDisaster(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
byte buf[lengthof(_dis_years)];
|
|
|
|
uint i;
|
|
|
|
uint j;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
j = 0;
|
|
|
|
for (i = 0; i != lengthof(_dis_years); i++) {
|
2006-08-16 11:39:55 +00:00
|
|
|
if (_cur_year >= _dis_years[i].min && _cur_year < _dis_years[i].max) buf[j++] = i;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (j == 0) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 09:21:05 +00:00
|
|
|
_disaster_initprocs[buf[RandomRange(j)]]();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void ResetDisasterDelay(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-10-03 21:20:01 +00:00
|
|
|
_disaster_delay = GB(Random(), 0, 9) + 730;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void DisasterDailyLoop(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
if (--_disaster_delay != 0) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
ResetDisasterDelay();
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (_opt.diff.disasters != 0) DoDisaster();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void StartupDisasters(void)
|
|
|
|
{
|
2004-08-09 17:04:08 +00:00
|
|
|
ResetDisasterDelay();
|
|
|
|
}
|