src/disaster_cmd.cpp
author rubidium
Sun, 13 Jan 2008 14:37:30 +0000
changeset 8766 c86cfa3a7580
parent 8760 ce0891c412ce
child 8813 6d054db96ede
permissions -rw-r--r--
(svn r11834) -Codechange: only include settings_type.h if needed.
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
6443
b8f06d8eb7be (svn r8853) -Cleanup: doxygen changes. Correct forgotten c files to cpp files with the @file tag as well as a few general comments style
belugas
parents: 5951
diff changeset
     3
/** @file disaster_cmd.cpp
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
     4
 * All disaster/easter egg vehicles are handled here.
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
     5
 * The general flow of control for the disaster vehicles is as follows:
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
     6
 * <ol>
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
     7
 * <li>Initialize the disaster in a disaster specific way (eg start position,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
     8
 *     possible target, etc.) Disaster_XXX_Init() function
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
     9
 * <li>Add a subtype to a disaster, which is an index into the function array
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    10
 *     that handles the vehicle's ticks.
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    11
 * <li>Run the disaster vehicles each tick until their target has been reached,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    12
 *     this happens in the DisasterTick_XXX() functions. In here, a vehicle's
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    13
 *     state is kept by v->current_order.dest variable. Each achieved sub-target
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    14
 *     will increase this value, and the last one will remove the disaster itself
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    15
 * </ol>
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    16
 */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    17
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    18
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    19
#include "stdafx.h"
1891
92a3b0aa0946 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1359
diff changeset
    20
#include "openttd.h"
6949
72d11a1e1e60 (svn r9609) -Codechange: Move some function prototypes out of functions.h and into landscape.h, and add a few where they didn't exist.
maedhros
parents: 6886
diff changeset
    21
#include "landscape.h"
8615
6b91ca653bad (svn r11680) -Codechange: refactor more out of openttd.h and functions.h.
rubidium
parents: 8612
diff changeset
    22
3314
b8b234d4584f (svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
tron
parents: 3269
diff changeset
    23
#include "industry_map.h"
3315
1f65f8260092 (svn r4079) Add GetSation{Index,ByTile}() to get the station index resp. the station from a tile
tron
parents: 3314
diff changeset
    24
#include "station_map.h"
8612
6414fc21c2f3 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8610
diff changeset
    25
#include "command_func.h"
8615
6b91ca653bad (svn r11680) -Codechange: refactor more out of openttd.h and functions.h.
rubidium
parents: 8612
diff changeset
    26
#include "tile_cmd.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    27
#include "news.h"
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    28
#include "station.h"
2435
66742d77db13 (svn r2961) - Fix: [ 1219123 ] Fix for [ 1216203 ] UFO-broken waypoint (lucaspiller)
Darkvater
parents: 2360
diff changeset
    29
#include "waypoint.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    30
#include "town.h"
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    31
#include "industry.h"
8750
fdd6054e7bae (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8653
diff changeset
    32
#include "player_func.h"
3701
13911c5df3e7 (svn r4642) - Codechange: reorganise airport.h and airport_movement.h to avoid having 8 copies of the airport FTAs, and make the enums used available elsewhere.
peter1138
parents: 3645
diff changeset
    33
#include "airport.h"
2159
3b634157c3b2 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2140
diff changeset
    34
#include "variables.h"
8766
c86cfa3a7580 (svn r11834) -Codechange: only include settings_type.h if needed.
rubidium
parents: 8760
diff changeset
    35
#include "settings_type.h"
8610
17cc343a23dd (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 8604
diff changeset
    36
#include "strings_func.h"
8636
2b158acb649c (svn r11702) -Codechange: move all date related stuff to date*.
rubidium
parents: 8635
diff changeset
    37
#include "date_func.h"
8627
448ebf3a8291 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8617
diff changeset
    38
#include "functions.h"
8640
1e93b81e96d2 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8636
diff changeset
    39
#include "vehicle_func.h"
1e93b81e96d2 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8636
diff changeset
    40
#include "vehicle_base.h"
8653
a83f7a536919 (svn r11719) -Codechange: split sound.h in a header with types and one with functions.
rubidium
parents: 8640
diff changeset
    41
#include "sound_func.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    42
8760
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    43
#include "table/strings.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    44
#include "table/sprites.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    45
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    46
enum DisasterSubType {
5951
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    47
	ST_Zeppeliner,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    48
	ST_Zeppeliner_Shadow,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    49
	ST_Small_Ufo,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    50
	ST_Small_Ufo_Shadow,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    51
	ST_Airplane,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    52
	ST_Airplane_Shadow,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    53
	ST_Helicopter,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    54
	ST_Helicopter_Shadow,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    55
	ST_Helicopter_Rotors,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    56
	ST_Big_Ufo,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    57
	ST_Big_Ufo_Shadow,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    58
	ST_Big_Ufo_Destroyer,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    59
	ST_Big_Ufo_Destroyer_Shadow,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    60
	ST_Small_Submarine,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
    61
	ST_Big_Submarine,
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    62
};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    63
1048
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    64
static void DisasterClearSquare(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    65
{
8254
5de2bbd26163 (svn r11303) -Fix: EnsureNoVehicle and EnsureNoVehicleOnGround were both used to check whether there was no vehicle on the ground, except that the former didn't take care of aircraft shadows. So now we only use EnsureNoVehicleOnGround.
rubidium
parents: 7989
diff changeset
    66
	if (!EnsureNoVehicleOnGround(tile)) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    67
1214
33e07bbb7779 (svn r1718) Use the enum TileType as parameter/return type for [GS]etTileType() instead of plain int.
tron
parents: 1212
diff changeset
    68
	switch (GetTileType(tile)) {
1048
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    69
		case MP_RAILWAY:
4845
49105d3b5a9a (svn r6771) -Codechange: Replace two macros with functions. IS_HUMAN_PLAYER and
Darkvater
parents: 4559
diff changeset
    70
			if (IsHumanPlayer(GetTileOwner(tile)) && !IsRailWaypoint(tile)) {
3900
4984308f9125 (svn r4987) Feature: Merged YAPF into trunk. Thanks to devs for continuous support and users for testing.
KUDr
parents: 3701
diff changeset
    71
				PlayerID p = _current_player;
4984308f9125 (svn r4987) Feature: Merged YAPF into trunk. Thanks to devs for continuous support and users for testing.
KUDr
parents: 3701
diff changeset
    72
				_current_player = OWNER_WATER;
4984308f9125 (svn r4987) Feature: Merged YAPF into trunk. Thanks to devs for continuous support and users for testing.
KUDr
parents: 3701
diff changeset
    73
				DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR);
4984308f9125 (svn r4987) Feature: Merged YAPF into trunk. Thanks to devs for continuous support and users for testing.
KUDr
parents: 3701
diff changeset
    74
				_current_player = p;
4984308f9125 (svn r4987) Feature: Merged YAPF into trunk. Thanks to devs for continuous support and users for testing.
KUDr
parents: 3701
diff changeset
    75
			}
1048
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    76
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    77
1048
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    78
		case MP_HOUSE: {
2435
66742d77db13 (svn r2961) - Fix: [ 1219123 ] Fix for [ 1216203 ] UFO-broken waypoint (lucaspiller)
Darkvater
parents: 2360
diff changeset
    79
			PlayerID p = _current_player;
1048
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    80
			_current_player = OWNER_NONE;
3491
4c8427796c64 (svn r4342) Change the first two parameters of commands - virtual pixel coordinates of the tile to operate on - to a TileIndex
tron
parents: 3421
diff changeset
    81
			DoCommand(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR);
1048
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    82
			_current_player = p;
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    83
			break;
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    84
		}
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    85
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    86
		case MP_TREES:
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    87
		case MP_CLEAR:
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    88
			DoClearSquare(tile);
1048
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    89
			break;
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    90
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    91
		default:
edfc783f241d (svn r1549) Clean up some functions:
tron
parents: 1044
diff changeset
    92
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    93
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    94
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    95
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    96
static const SpriteID _disaster_images_1[] = {SPR_BLIMP, SPR_BLIMP, SPR_BLIMP, SPR_BLIMP, SPR_BLIMP, SPR_BLIMP, SPR_BLIMP, SPR_BLIMP};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    97
static const SpriteID _disaster_images_2[] = {SPR_UFO_SMALL_SCOUT, SPR_UFO_SMALL_SCOUT, SPR_UFO_SMALL_SCOUT, SPR_UFO_SMALL_SCOUT, SPR_UFO_SMALL_SCOUT, SPR_UFO_SMALL_SCOUT, SPR_UFO_SMALL_SCOUT, SPR_UFO_SMALL_SCOUT};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    98
static const SpriteID _disaster_images_3[] = {SPR_F_15, SPR_F_15, SPR_F_15, SPR_F_15, SPR_F_15, SPR_F_15, SPR_F_15, SPR_F_15};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
    99
static const SpriteID _disaster_images_4[] = {SPR_SUB_SMALL_NE, SPR_SUB_SMALL_NE, SPR_SUB_SMALL_SE, SPR_SUB_SMALL_SE, SPR_SUB_SMALL_SW, SPR_SUB_SMALL_SW, SPR_SUB_SMALL_NW, SPR_SUB_SMALL_NW};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   100
static const SpriteID _disaster_images_5[] = {SPR_SUB_LARGE_NE, SPR_SUB_LARGE_NE, SPR_SUB_LARGE_SE, SPR_SUB_LARGE_SE, SPR_SUB_LARGE_SW, SPR_SUB_LARGE_SW, SPR_SUB_LARGE_NW, SPR_SUB_LARGE_NW};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   101
static const SpriteID _disaster_images_6[] = {SPR_UFO_HARVESTER, SPR_UFO_HARVESTER, SPR_UFO_HARVESTER, SPR_UFO_HARVESTER, SPR_UFO_HARVESTER, SPR_UFO_HARVESTER, SPR_UFO_HARVESTER, SPR_UFO_HARVESTER};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   102
static const SpriteID _disaster_images_7[] = {SPR_XCOM_SKYRANGER, SPR_XCOM_SKYRANGER, SPR_XCOM_SKYRANGER, SPR_XCOM_SKYRANGER, SPR_XCOM_SKYRANGER, SPR_XCOM_SKYRANGER, SPR_XCOM_SKYRANGER, SPR_XCOM_SKYRANGER};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   103
static const SpriteID _disaster_images_8[] = {SPR_AH_64A, SPR_AH_64A, SPR_AH_64A, SPR_AH_64A, SPR_AH_64A, SPR_AH_64A, SPR_AH_64A, SPR_AH_64A};
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   104
static const SpriteID _disaster_images_9[] = {SPR_ROTOR_MOVING_1, SPR_ROTOR_MOVING_1, SPR_ROTOR_MOVING_1, SPR_ROTOR_MOVING_1, SPR_ROTOR_MOVING_1, SPR_ROTOR_MOVING_1, SPR_ROTOR_MOVING_1, SPR_ROTOR_MOVING_1};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   105
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   106
static const SpriteID * const _disaster_images[] = {
6451
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
   107
	_disaster_images_1, _disaster_images_1,                     ///< zeppeliner and zeppeliner shadow
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
   108
	_disaster_images_2, _disaster_images_2,                     ///< small ufo and small ufo shadow
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
   109
	_disaster_images_3, _disaster_images_3,                     ///< combat aircraft and shadow
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
   110
	_disaster_images_8, _disaster_images_8, _disaster_images_9, ///< combat helicopter, shadow and rotor
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
   111
	_disaster_images_6, _disaster_images_6,                     ///< big ufo and shadow
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
   112
	_disaster_images_7, _disaster_images_7,                     ///< skyranger and shadow
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
   113
	_disaster_images_4, _disaster_images_5,                     ///< small and big submarine sprites
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   114
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   115
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   116
static void DisasterVehicleUpdateImage(Vehicle *v)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   117
{
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   118
	SpriteID img = v->u.disaster.image_override;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   119
	if (img == 0) img = _disaster_images[v->subtype][v->direction];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   120
	v->cur_image = img;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   121
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   122
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6573
diff changeset
   123
/** Initialize a disaster vehicle. These vehicles are of type VEH_DISASTER, are unclickable
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   124
 * and owned by nobody */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   125
static void InitializeDisasterVehicle(Vehicle *v, int x, int y, byte z, Direction direction, byte subtype)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   126
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   127
	v->x_pos = x;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   128
	v->y_pos = y;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   129
	v->z_pos = z;
1980
9ea0c89fbb58 (svn r2486) Turn TILE_FROM_XY into an inline function and rename it to TileVirtXY
tron
parents: 1977
diff changeset
   130
	v->tile = TileVirtXY(x, y);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   131
	v->direction = direction;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   132
	v->subtype = subtype;
7054
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
   133
	v->UpdateDeltaXY(INVALID_DIR);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   134
	v->owner = OWNER_NONE;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   135
	v->vehstatus = VS_UNCLICKABLE;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   136
	v->u.disaster.image_override = 0;
6589
addf4b6946d0 (svn r9072) -Codechange: [Orders] added methods to orders to free them and check if they are in use
bjarni
parents: 6585
diff changeset
   137
	v->current_order.Free();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   138
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   139
	DisasterVehicleUpdateImage(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   140
	VehiclePositionChanged(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   141
	BeginVehicleMove(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   142
	EndVehicleMove(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   143
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   144
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   145
static void DeleteDisasterVeh(Vehicle *v)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   146
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   147
	DeleteVehicleChain(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   148
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   149
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   150
static void SetDisasterVehiclePos(Vehicle *v, int x, int y, byte z)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   151
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   152
	Vehicle *u;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   153
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   154
	BeginVehicleMove(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   155
	v->x_pos = x;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   156
	v->y_pos = y;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   157
	v->z_pos = z;
1980
9ea0c89fbb58 (svn r2486) Turn TILE_FROM_XY into an inline function and rename it to TileVirtXY
tron
parents: 1977
diff changeset
   158
	v->tile = TileVirtXY(x, y);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   159
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   160
	DisasterVehicleUpdateImage(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   161
	VehiclePositionChanged(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   162
	EndVehicleMove(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   163
7988
6075538f6111 (svn r11003) -Codechange: replace Vehicle->next to Vehicle->Next() and Vehicle->SetNext() so we can trap instances that change a next pointer and (in the future) update the first/previous pointers based on that.
rubidium
parents: 7894
diff changeset
   164
	if ((u = v->Next()) != NULL) {
8418
b49fc6be1ab9 (svn r11475) -Codechange: rename clamp and clampu to Clamp and ClampU to fit with the coding style
skidd13
parents: 8254
diff changeset
   165
		int safe_x = Clamp(x, 0, MapMaxX() * TILE_SIZE);
b49fc6be1ab9 (svn r11475) -Codechange: rename clamp and clampu to Clamp and ClampU to fit with the coding style
skidd13
parents: 8254
diff changeset
   166
		int safe_y = Clamp(y - 1, 0, MapMaxY() * TILE_SIZE);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   167
		BeginVehicleMove(u);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   168
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   169
		u->x_pos = x;
5852
cb3f71b16e1a (svn r8055) -Codechange: Replace the different max, dmax, maxu whatever macros by a simple template function max(), that requires two arguments of the same type. While I'm at it change a variable called "max" to "maxval" in a function that calls max().
celestar
parents: 5838
diff changeset
   170
		u->y_pos = y - 1 - (max(z - GetSlopeZ(safe_x, safe_y), 0U) >> 3);
8418
b49fc6be1ab9 (svn r11475) -Codechange: rename clamp and clampu to Clamp and ClampU to fit with the coding style
skidd13
parents: 8254
diff changeset
   171
		safe_y = Clamp(u->y_pos, 0, MapMaxY() * TILE_SIZE);
4249
9eedb1473740 (svn r5841) -Fix r5794: use the height of the edge of the map for shadows of disasters that are outside the map
rubidium
parents: 4175
diff changeset
   172
		u->z_pos = GetSlopeZ(safe_x, safe_y);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   173
		u->direction = v->direction;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   174
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   175
		DisasterVehicleUpdateImage(u);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   176
		VehiclePositionChanged(u);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   177
		EndVehicleMove(u);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   178
7988
6075538f6111 (svn r11003) -Codechange: replace Vehicle->next to Vehicle->Next() and Vehicle->SetNext() so we can trap instances that change a next pointer and (in the future) update the first/previous pointers based on that.
rubidium
parents: 7894
diff changeset
   179
		if ((u = u->Next()) != NULL) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   180
			BeginVehicleMove(u);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   181
			u->x_pos = x;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   182
			u->y_pos = y;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   183
			u->z_pos = z + 5;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   184
			VehiclePositionChanged(u);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   185
			EndVehicleMove(u);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   186
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   187
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   188
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   189
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   190
/**
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   191
 * Zeppeliner handling, v->current_order.dest states:
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   192
 * 0: Zeppeliner initialization has found a small airport, go there and crash
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   193
 * 1: Create crash and animate falling down for extra dramatic effect
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   194
 * 2: Create more smoke and leave debris on ground
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   195
 * 2: Clear the runway after some time and remove crashed zeppeliner
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   196
 * If not airport was found, only state 0 is reached until zeppeliner leaves map
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   197
 */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   198
static void DisasterTick_Zeppeliner(Vehicle *v)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   199
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   200
	Station *st;
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   201
	int x, y;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   202
	byte z;
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   203
	TileIndex tile;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   204
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   205
	v->tick_counter++;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   206
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   207
	if (v->current_order.dest < 2) {
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8418
diff changeset
   208
		if (HasBit(v->tick_counter, 0)) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   209
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   210
		GetNewVehiclePosResult gp = GetNewVehiclePos(v);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   211
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   212
		SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   213
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   214
		if (v->current_order.dest == 1) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   215
			if (++v->age == 38) {
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   216
				v->current_order.dest = 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   217
				v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   218
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   219
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   220
			if (GB(v->tick_counter, 0, 3) == 0) CreateEffectVehicleRel(v, 0, -17, 2, EV_SMOKE);
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   221
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   222
		} else if (v->current_order.dest == 0) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   223
			tile = v->tile;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   224
1212
e9fbf66a8af2 (svn r1716) Prevent zeppelins from accessing non-existent tiles when leaving the map
tron
parents: 1209
diff changeset
   225
			if (IsValidTile(tile) &&
e9fbf66a8af2 (svn r1716) Prevent zeppelins from accessing non-existent tiles when leaving the map
tron
parents: 1209
diff changeset
   226
					IsTileType(tile, MP_STATION) &&
3338
2c60ed0dcce3 (svn r4120) Use the new station functions where appropriate
tron
parents: 3315
diff changeset
   227
					IsAirport(tile) &&
4845
49105d3b5a9a (svn r6771) -Codechange: Replace two macros with functions. IS_HUMAN_PLAYER and
Darkvater
parents: 4559
diff changeset
   228
					IsHumanPlayer(GetTileOwner(tile))) {
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   229
				v->current_order.dest = 1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   230
				v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   231
3315
1f65f8260092 (svn r4079) Add GetSation{Index,ByTile}() to get the station index resp. the station from a tile
tron
parents: 3314
diff changeset
   232
				SetDParam(0, GetStationIndex(tile));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   233
				AddNewsItem(STR_B000_ZEPPELIN_DISASTER_AT,
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   234
					NEWS_FLAGS(NM_THIN, NF_VIEWPORT | NF_VEHICLE, NT_ACCIDENT, 0),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   235
					v->index,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   236
					0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   237
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   238
		}
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   239
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   240
		if (v->y_pos >= ((int)MapSizeY() + 9) * TILE_SIZE - 1) DeleteDisasterVeh(v);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   241
		return;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   242
	}
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   243
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   244
	if (v->current_order.dest > 2) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   245
		if (++v->age <= 13320) return;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   246
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   247
		tile = v->tile;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   248
1212
e9fbf66a8af2 (svn r1716) Prevent zeppelins from accessing non-existent tiles when leaving the map
tron
parents: 1209
diff changeset
   249
		if (IsValidTile(tile) &&
e9fbf66a8af2 (svn r1716) Prevent zeppelins from accessing non-existent tiles when leaving the map
tron
parents: 1209
diff changeset
   250
				IsTileType(tile, MP_STATION) &&
3338
2c60ed0dcce3 (svn r4120) Use the new station functions where appropriate
tron
parents: 3315
diff changeset
   251
				IsAirport(tile) &&
4845
49105d3b5a9a (svn r6771) -Codechange: Replace two macros with functions. IS_HUMAN_PLAYER and
Darkvater
parents: 4559
diff changeset
   252
				IsHumanPlayer(GetTileOwner(tile))) {
3315
1f65f8260092 (svn r4079) Add GetSation{Index,ByTile}() to get the station index resp. the station from a tile
tron
parents: 3314
diff changeset
   253
			st = GetStationByTile(tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   254
			CLRBITS(st->airport_flags, RUNWAY_IN_block);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   255
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   256
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
		SetDisasterVehiclePos(v, v->x_pos, v->y_pos, v->z_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   258
		DeleteDisasterVeh(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
		return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   261
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   262
	x = v->x_pos;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   263
	y = v->y_pos;
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   264
	z = GetSlopeZ(x, y);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   265
	if (z < v->z_pos) z = v->z_pos - 1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   266
	SetDisasterVehiclePos(v, x, y, z);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   267
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   268
	if (++v->age == 1) {
1359
8ba976aed634 (svn r1863) Give the effect vehicle type enums more descriptive names and use the enum as parameter type for CreateEffectVehicle*()
tron
parents: 1214
diff changeset
   269
		CreateEffectVehicleRel(v, 0, 7, 8, EV_EXPLOSION_LARGE);
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 534
diff changeset
   270
		SndPlayVehicleFx(SND_12_EXPLOSION, v);
2535
ed8b9592dc64 (svn r3064) Replace some numbers by sprite names
tron
parents: 2484
diff changeset
   271
		v->u.disaster.image_override = SPR_BLIMP_CRASHING;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   272
	} else if (v->age == 70) {
2535
ed8b9592dc64 (svn r3064) Replace some numbers by sprite names
tron
parents: 2484
diff changeset
   273
		v->u.disaster.image_override = SPR_BLIMP_CRASHED;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   274
	} else if (v->age <= 300) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   275
		if (GB(v->tick_counter, 0, 3) == 0) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   276
			uint32 r = Random();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   277
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   278
			CreateEffectVehicleRel(v,
2140
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   279
				GB(r, 0, 4) - 7,
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   280
				GB(r, 4, 4) - 7,
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   281
				GB(r, 8, 3) + 5,
1359
8ba976aed634 (svn r1863) Give the effect vehicle type enums more descriptive names and use the enum as parameter type for CreateEffectVehicle*()
tron
parents: 1214
diff changeset
   282
				EV_EXPLOSION_SMALL);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   283
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   284
	} else if (v->age == 350) {
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   285
		v->current_order.dest = 3;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   286
		v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   287
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   288
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   289
	tile = v->tile;
1212
e9fbf66a8af2 (svn r1716) Prevent zeppelins from accessing non-existent tiles when leaving the map
tron
parents: 1209
diff changeset
   290
	if (IsValidTile(tile) &&
e9fbf66a8af2 (svn r1716) Prevent zeppelins from accessing non-existent tiles when leaving the map
tron
parents: 1209
diff changeset
   291
			IsTileType(tile, MP_STATION) &&
3338
2c60ed0dcce3 (svn r4120) Use the new station functions where appropriate
tron
parents: 3315
diff changeset
   292
			IsAirport(tile) &&
4845
49105d3b5a9a (svn r6771) -Codechange: Replace two macros with functions. IS_HUMAN_PLAYER and
Darkvater
parents: 4559
diff changeset
   293
			IsHumanPlayer(GetTileOwner(tile))) {
3315
1f65f8260092 (svn r4079) Add GetSation{Index,ByTile}() to get the station index resp. the station from a tile
tron
parents: 3314
diff changeset
   294
		st = GetStationByTile(tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   295
		SETBITS(st->airport_flags, RUNWAY_IN_block);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   296
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   297
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   298
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   299
/**
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   300
 * (Small) Ufo handling, v->current_order.dest states:
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   301
 * 0: Fly around to the middle of the map, then randomly, after a while target a road vehicle
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   302
 * 1: Home in on a road vehicle and crash it >:)
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   303
 * If not road vehicle was found, only state 0 is used and Ufo disappears after a while
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   304
 */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   305
static void DisasterTick_Ufo(Vehicle *v)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   306
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   307
	Vehicle *u;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   308
	uint dist;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   309
	byte z;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   310
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8418
diff changeset
   311
	v->u.disaster.image_override = (HasBit(++v->tick_counter, 3)) ? SPR_UFO_SMALL_SCOUT_DARKER : SPR_UFO_SMALL_SCOUT;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   312
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   313
	if (v->current_order.dest == 0) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   314
		/* Fly around randomly */
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   315
		int x = TileX(v->dest_tile) * TILE_SIZE;
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   316
		int y = TileY(v->dest_tile) * TILE_SIZE;
8466
9ce95e16f9f9 (svn r11526) -Codechange: Rename the function delta fitting to the naming style
skidd13
parents: 8463
diff changeset
   317
		if (Delta(x, v->x_pos) + Delta(y, v->y_pos) >= TILE_SIZE) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   318
			v->direction = GetDirectionTowards(v, x, y);
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   319
			GetNewVehiclePosResult gp = GetNewVehiclePos(v);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   320
			SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   321
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   322
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   323
		if (++v->age < 6) {
2051
44b6b091beb3 (svn r2560) Fix: various minor code changes.
ludde
parents: 2049
diff changeset
   324
			v->dest_tile = RandomTile();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   325
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   326
		}
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   327
		v->current_order.dest = 1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   328
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   329
		FOR_ALL_VEHICLES(u) {
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6573
diff changeset
   330
			if (u->type == VEH_ROAD && IsHumanPlayer(u->owner)) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   331
				v->dest_tile = u->index;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   332
				v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   333
				return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   334
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   335
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   336
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   337
		DeleteDisasterVeh(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   338
	} else {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   339
		/* Target a vehicle */
919
b0d6c7642f99 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 909
diff changeset
   340
		u = GetVehicle(v->dest_tile);
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6573
diff changeset
   341
		if (u->type != VEH_ROAD) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   342
			DeleteDisasterVeh(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   343
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   344
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   345
8466
9ce95e16f9f9 (svn r11526) -Codechange: Rename the function delta fitting to the naming style
skidd13
parents: 8463
diff changeset
   346
		dist = Delta(v->x_pos, u->x_pos) + Delta(v->y_pos, u->y_pos);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   347
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   348
		if (dist < TILE_SIZE && !(u->vehstatus & VS_HIDDEN) && u->breakdown_ctr == 0) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   349
			u->breakdown_ctr = 3;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   350
			u->breakdown_delay = 140;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   351
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   352
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   353
		v->direction = GetDirectionTowards(v, u->x_pos, u->y_pos);
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   354
		GetNewVehiclePosResult gp = GetNewVehiclePos(v);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   355
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   356
		z = v->z_pos;
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   357
		if (dist <= TILE_SIZE && z > u->z_pos) z--;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   358
		SetDisasterVehiclePos(v, gp.x, gp.y, z);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   359
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   360
		if (z <= u->z_pos && (u->vehstatus & VS_HIDDEN) == 0) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   361
			v->age++;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   362
			if (u->u.road.crashed_ctr == 0) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   363
				u->u.road.crashed_ctr++;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   364
				u->vehstatus |= VS_CRASHED;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   365
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   366
				AddNewsItem(STR_B001_ROAD_VEHICLE_DESTROYED,
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   367
					NEWS_FLAGS(NM_THIN, NF_VIEWPORT | NF_VEHICLE, NT_ACCIDENT, 0),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   368
					u->index,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   369
					0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   370
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   371
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   372
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   373
		/* Destroy? */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   374
		if (v->age > 50) {
1359
8ba976aed634 (svn r1863) Give the effect vehicle type enums more descriptive names and use the enum as parameter type for CreateEffectVehicle*()
tron
parents: 1214
diff changeset
   375
			CreateEffectVehicleRel(v, 0, 7, 8, EV_EXPLOSION_LARGE);
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 534
diff changeset
   376
			SndPlayVehicleFx(SND_12_EXPLOSION, v);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   377
			DeleteDisasterVeh(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   378
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   379
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   380
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   381
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   382
static void DestructIndustry(Industry *i)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   383
{
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   384
	TileIndex tile;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   385
2026
02dfa0aa2c2f (svn r2535) Tabs
tron
parents: 1999
diff changeset
   386
	for (tile = 0; tile != MapSize(); tile++) {
3314
b8b234d4584f (svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
tron
parents: 3269
diff changeset
   387
		if (IsTileType(tile, MP_INDUSTRY) && GetIndustryIndex(tile) == i->index) {
3495
f7d3ae07f4aa (svn r4346) CodeChange : Add and Use Accessors to Industry's Stage and Counter construction. Removed last direct map access from Disaster_cmd.c as well. Based on work from Rubidium in tfc_newmap
belugas
parents: 3491
diff changeset
   388
			ResetIndustryConstructionStage(tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   389
			MarkTileDirtyByTile(tile);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   390
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   391
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   392
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   393
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   394
/**
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   395
 * Airplane handling, v->current_order.dest states:
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   396
 * 0: Fly towards the targetted oil refinery
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   397
 * 1: If within 15 tiles, fire away rockets and destroy industry
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   398
 * 2: Refinery explosions
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   399
 * 3: Fly out of the map
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   400
 * If the industry was removed in the meantime just fly to the end of the map
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   401
 */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   402
static void DisasterTick_Airplane(Vehicle *v)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   403
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   404
	v->tick_counter++;
555
eec6c0294435 (svn r955) Replace uint16 for orders with struct Order
tron
parents: 541
diff changeset
   405
	v->u.disaster.image_override =
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8418
diff changeset
   406
		(v->current_order.dest == 1 && HasBit(v->tick_counter, 2)) ? SPR_F_15_FIRING : 0;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   407
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   408
	GetNewVehiclePosResult gp = GetNewVehiclePos(v);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   409
	SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   410
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   411
	if (gp.x < (-10 * TILE_SIZE)) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   412
		DeleteDisasterVeh(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   413
		return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   414
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   415
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   416
	if (v->current_order.dest == 2) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   417
		if (GB(v->tick_counter, 0, 2) == 0) {
919
b0d6c7642f99 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 909
diff changeset
   418
			Industry *i = GetIndustry(v->dest_tile);
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   419
			int x = TileX(i->xy) * TILE_SIZE;
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   420
			int y = TileY(i->xy) * TILE_SIZE;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   421
			uint32 r = Random();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   422
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   423
			CreateEffectVehicleAbove(
2140
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   424
				GB(r,  0, 6) + x,
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   425
				GB(r,  6, 6) + y,
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   426
				GB(r, 12, 4),
1359
8ba976aed634 (svn r1863) Give the effect vehicle type enums more descriptive names and use the enum as parameter type for CreateEffectVehicle*()
tron
parents: 1214
diff changeset
   427
				EV_EXPLOSION_SMALL);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   428
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   429
			if (++v->age >= 55) v->current_order.dest = 3;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   430
		}
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   431
	} else if (v->current_order.dest == 1) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   432
		if (++v->age == 112) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   433
			Industry *i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   434
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   435
			v->current_order.dest = 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   436
			v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   437
919
b0d6c7642f99 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 909
diff changeset
   438
			i = GetIndustry(v->dest_tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   439
			DestructIndustry(i);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   440
534
17ab2f22ff74 (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   441
			SetDParam(0, i->town->index);
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   442
			AddNewsItem(STR_B002_OIL_REFINERY_EXPLOSION, NEWS_FLAGS(NM_THIN, NF_VIEWPORT | NF_TILE, NT_ACCIDENT, 0), i->xy, 0);
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 534
diff changeset
   443
			SndPlayTileFx(SND_12_EXPLOSION, i->xy);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   444
		}
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   445
	} else if (v->current_order.dest == 0) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   446
		int x, y;
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   447
		TileIndex tile;
3314
b8b234d4584f (svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
tron
parents: 3269
diff changeset
   448
		uint ind;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   449
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   450
		x = v->x_pos - (15 * TILE_SIZE);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   451
		y = v->y_pos;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   452
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   453
		if ( (uint)x > MapMaxX() * TILE_SIZE - 1) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   454
1980
9ea0c89fbb58 (svn r2486) Turn TILE_FROM_XY into an inline function and rename it to TileVirtXY
tron
parents: 1977
diff changeset
   455
		tile = TileVirtXY(x, y);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   456
		if (!IsTileType(tile, MP_INDUSTRY)) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   457
3314
b8b234d4584f (svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
tron
parents: 3269
diff changeset
   458
		ind = GetIndustryIndex(tile);
b8b234d4584f (svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
tron
parents: 3269
diff changeset
   459
		v->dest_tile = ind;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   460
6886
742e1d75f442 (svn r9520) -Codechange: Add the notion of Industry behaviour. It means what an industry can do (plant fields, cut trees, do not change production), what can be done to it (disasters like mine subsidence, jet/chopper attack), when it can be built etc...
belugas
parents: 6589
diff changeset
   461
		if (GetIndustrySpec(GetIndustry(ind)->type)->behaviour & INDUSTRYBEH_AIRPLANE_ATTACKS) {
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   462
			v->current_order.dest = 1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   463
			v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   464
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   465
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   466
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   467
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   468
/**
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   469
 * Helicopter handling, v->current_order.dest states:
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   470
 * 0: Fly towards the targetted factory
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   471
 * 1: If within 15 tiles, fire away rockets and destroy industry
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   472
 * 2: Factory explosions
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   473
 * 3: Fly out of the map
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   474
 */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   475
static void DisasterTick_Helicopter(Vehicle *v)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   476
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   477
	v->tick_counter++;
555
eec6c0294435 (svn r955) Replace uint16 for orders with struct Order
tron
parents: 541
diff changeset
   478
	v->u.disaster.image_override =
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8418
diff changeset
   479
		(v->current_order.dest == 1 && HasBit(v->tick_counter, 2)) ? SPR_AH_64A_FIRING : 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   480
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   481
	GetNewVehiclePosResult gp = GetNewVehiclePos(v);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   482
	SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   483
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   484
	if (gp.x > (int)MapSizeX() * TILE_SIZE + 9 * TILE_SIZE - 1) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   485
		DeleteDisasterVeh(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   486
		return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   487
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   488
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   489
	if (v->current_order.dest == 2) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   490
		if (GB(v->tick_counter, 0, 2) == 0) {
919
b0d6c7642f99 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 909
diff changeset
   491
			Industry *i = GetIndustry(v->dest_tile);
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   492
			int x = TileX(i->xy) * TILE_SIZE;
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   493
			int y = TileY(i->xy) * TILE_SIZE;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   494
			uint32 r = Random();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   495
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   496
			CreateEffectVehicleAbove(
2140
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   497
				GB(r,  0, 6) + x,
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   498
				GB(r,  6, 6) + y,
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   499
				GB(r, 12, 4),
1359
8ba976aed634 (svn r1863) Give the effect vehicle type enums more descriptive names and use the enum as parameter type for CreateEffectVehicle*()
tron
parents: 1214
diff changeset
   500
				EV_EXPLOSION_SMALL);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   501
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   502
			if (++v->age >= 55) v->current_order.dest = 3;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   503
		}
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   504
	} else if (v->current_order.dest == 1) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   505
		if (++v->age == 112) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   506
			Industry *i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   507
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   508
			v->current_order.dest = 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   509
			v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   510
919
b0d6c7642f99 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 909
diff changeset
   511
			i = GetIndustry(v->dest_tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   512
			DestructIndustry(i);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   513
534
17ab2f22ff74 (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   514
			SetDParam(0, i->town->index);
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   515
			AddNewsItem(STR_B003_FACTORY_DESTROYED_IN_SUSPICIOUS, NEWS_FLAGS(NM_THIN, NF_VIEWPORT | NF_TILE, NT_ACCIDENT, 0), i->xy, 0);
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 534
diff changeset
   516
			SndPlayTileFx(SND_12_EXPLOSION, i->xy);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   517
		}
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   518
	} else if (v->current_order.dest == 0) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   519
		int x, y;
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   520
		TileIndex tile;
3314
b8b234d4584f (svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
tron
parents: 3269
diff changeset
   521
		uint ind;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   522
5931
1d832a07c2d6 (svn r8140) -Fix [FS#54]: Combat helicopter flies past factory before it shoots. Chopper comes from the north-east, so it looks in +15 direction (forward), not -15 direction. Probably bad copy-paste from airplane-destroys-oil-refinery disaster.
Darkvater
parents: 5852
diff changeset
   523
		x = v->x_pos + (15 * TILE_SIZE);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   524
		y = v->y_pos;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   525
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   526
		if ( (uint)x > MapMaxX() * TILE_SIZE - 1) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   527
1980
9ea0c89fbb58 (svn r2486) Turn TILE_FROM_XY into an inline function and rename it to TileVirtXY
tron
parents: 1977
diff changeset
   528
		tile = TileVirtXY(x, y);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   529
		if (!IsTileType(tile, MP_INDUSTRY)) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   530
3314
b8b234d4584f (svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
tron
parents: 3269
diff changeset
   531
		ind = GetIndustryIndex(tile);
b8b234d4584f (svn r4077) Add GetIndustry{Index,ByTile}() to get the industry index resp. the industry from a tile
tron
parents: 3269
diff changeset
   532
		v->dest_tile = ind;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   533
6886
742e1d75f442 (svn r9520) -Codechange: Add the notion of Industry behaviour. It means what an industry can do (plant fields, cut trees, do not change production), what can be done to it (disasters like mine subsidence, jet/chopper attack), when it can be built etc...
belugas
parents: 6589
diff changeset
   534
		if (GetIndustrySpec(GetIndustry(ind)->type)->behaviour & INDUSTRYBEH_CHOPPER_ATTACKS) {
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   535
			v->current_order.dest = 1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   536
			v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   537
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   538
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   539
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   540
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   541
/** Helicopter rotor blades; keep these spinning */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   542
static void DisasterTick_Helicopter_Rotors(Vehicle *v)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   543
{
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   544
	v->tick_counter++;
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8418
diff changeset
   545
	if (HasBit(v->tick_counter, 0)) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   546
2535
ed8b9592dc64 (svn r3064) Replace some numbers by sprite names
tron
parents: 2484
diff changeset
   547
	if (++v->cur_image > SPR_ROTOR_MOVING_3) v->cur_image = SPR_ROTOR_MOVING_1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   548
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   549
	VehiclePositionChanged(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   550
	BeginVehicleMove(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   551
	EndVehicleMove(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   552
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   553
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   554
/**
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   555
 * (Big) Ufo handling, v->current_order.dest states:
5951
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
   556
 * 0: Fly around to the middle of the map, then randomly for a while and home in on a piece of rail
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
   557
 * 1: Land there and breakdown all trains in a radius of 12 tiles; and now we wait...
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   558
 *    because as soon as the Ufo lands, a fighter jet, a Skyranger, is called to clear up the mess
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   559
 */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   560
static void DisasterTick_Big_Ufo(Vehicle *v)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   561
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   562
	byte z;
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   563
	Vehicle *u, *w;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   564
	Town *t;
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   565
	TileIndex tile;
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   566
	TileIndex tile_org;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   567
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   568
	v->tick_counter++;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   569
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   570
	if (v->current_order.dest == 1) {
3645
86af43f87885 (svn r4554) Replace magic numbers by TILE_{HEIGHT,SIZE}
tron
parents: 3495
diff changeset
   571
		int x = TileX(v->dest_tile) * TILE_SIZE + TILE_SIZE / 2;
86af43f87885 (svn r4554) Replace magic numbers by TILE_{HEIGHT,SIZE}
tron
parents: 3495
diff changeset
   572
		int y = TileY(v->dest_tile) * TILE_SIZE + TILE_SIZE / 2;
8466
9ce95e16f9f9 (svn r11526) -Codechange: Rename the function delta fitting to the naming style
skidd13
parents: 8463
diff changeset
   573
		if (Delta(v->x_pos, x) + Delta(v->y_pos, y) >= 8) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   574
			v->direction = GetDirectionTowards(v, x, y);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   575
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   576
			GetNewVehiclePosResult gp = GetNewVehiclePos(v);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   577
			SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   578
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   579
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   580
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   581
		z = GetSlopeZ(v->x_pos, v->y_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   582
		if (z < v->z_pos) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   583
			SetDisasterVehiclePos(v, v->x_pos, v->y_pos, v->z_pos - 1);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   584
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   585
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   586
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   587
		v->current_order.dest = 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   588
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   589
		FOR_ALL_VEHICLES(u) {
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6573
diff changeset
   590
			if (u->type == VEH_TRAIN || u->type == VEH_ROAD) {
8466
9ce95e16f9f9 (svn r11526) -Codechange: Rename the function delta fitting to the naming style
skidd13
parents: 8463
diff changeset
   591
				if (Delta(u->x_pos, v->x_pos) + Delta(u->y_pos, v->y_pos) <= 12 * TILE_SIZE) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   592
					u->breakdown_ctr = 5;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   593
					u->breakdown_delay = 0xF0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   594
				}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   595
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   596
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   597
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   598
		t = ClosestTownFromTile(v->dest_tile, (uint)-1);
534
17ab2f22ff74 (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   599
		SetDParam(0, t->index);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   600
		AddNewsItem(STR_B004_UFO_LANDS_NEAR,
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   601
			NEWS_FLAGS(NM_THIN, NF_VIEWPORT | NF_TILE, NT_ACCIDENT, 0),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   602
			v->tile,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   603
			0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   604
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   605
		u = new DisasterVehicle();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   606
		if (u == NULL) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   607
			DeleteDisasterVeh(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   608
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   609
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   610
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   611
		InitializeDisasterVehicle(u, -6 * TILE_SIZE, v->y_pos, 135, DIR_SW, ST_Big_Ufo_Destroyer);
7830
210381b46ae6 (svn r10697) -Codechange: give a more sensible names to some of the unkX variables.
rubidium
parents: 7813
diff changeset
   612
		u->u.disaster.big_ufo_destroyer_target = v->index;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   613
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   614
		w = new DisasterVehicle();
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   615
		if (w == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   616
7989
116c8f9769af (svn r11004) -Codechange: some reworks of the saveload mechanism to be able to save and load private and protected variables in the vehicle struct.
rubidium
parents: 7988
diff changeset
   617
		u->SetNext(w);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   618
		InitializeDisasterVehicle(w, -6 * TILE_SIZE, v->y_pos, 0, DIR_SW, ST_Big_Ufo_Destroyer_Shadow);
4175
c0bcc65f36d4 (svn r5613) Rename VS_DISASTER to VS_SHADOW, because this is what this flag actually means
tron
parents: 4077
diff changeset
   619
		w->vehstatus |= VS_SHADOW;
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   620
	} else if (v->current_order.dest == 0) {
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   621
		int x = TileX(v->dest_tile) * TILE_SIZE;
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   622
		int y = TileY(v->dest_tile) * TILE_SIZE;
8466
9ce95e16f9f9 (svn r11526) -Codechange: Rename the function delta fitting to the naming style
skidd13
parents: 8463
diff changeset
   623
		if (Delta(x, v->x_pos) + Delta(y, v->y_pos) >= TILE_SIZE) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   624
			v->direction = GetDirectionTowards(v, x, y);
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   625
			GetNewVehiclePosResult gp = GetNewVehiclePos(v);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   626
			SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   627
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   628
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   629
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   630
		if (++v->age < 6) {
2051
44b6b091beb3 (svn r2560) Fix: various minor code changes.
ludde
parents: 2049
diff changeset
   631
			v->dest_tile = RandomTile();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   632
			return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   633
		}
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   634
		v->current_order.dest = 1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   635
2051
44b6b091beb3 (svn r2560) Fix: various minor code changes.
ludde
parents: 2049
diff changeset
   636
		tile_org = tile = RandomTile();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   637
		do {
1035
0a170deb6e33 (svn r1536) Move GET_TILEHEIGHT, GET_TILETYPE and IS_TILETYPE to map.h, turn them into inline functions and add some asserts
tron
parents: 926
diff changeset
   638
			if (IsTileType(tile, MP_RAILWAY) &&
3269
95e7bffcb3c5 (svn r3981) More work for the rail accessing functions and enums
tron
parents: 3161
diff changeset
   639
					IsPlainRailTile(tile) &&
4845
49105d3b5a9a (svn r6771) -Codechange: Replace two macros with functions. IS_HUMAN_PLAYER and
Darkvater
parents: 4559
diff changeset
   640
					IsHumanPlayer(GetTileOwner(tile))) {
1901
fb05044cf5c3 (svn r2407) Use {Get,Is}TileOwner to get/check the owner of a tile and fix some bogus reads of _map_owner
tron
parents: 1891
diff changeset
   641
				break;
3269
95e7bffcb3c5 (svn r3981) More work for the rail accessing functions and enums
tron
parents: 3161
diff changeset
   642
			}
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   643
			tile = TILE_MASK(tile + 1);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   644
		} while (tile != tile_org);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   645
		v->dest_tile = tile;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   646
		v->age = 0;
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   647
	} else {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   648
		return;
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   649
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   650
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   651
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   652
/**
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   653
 * Skyranger destroying (Big) Ufo handling, v->current_order.dest states:
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   654
 * 0: Home in on landed Ufo and shoot it down
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   655
 */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   656
static void DisasterTick_Big_Ufo_Destroyer(Vehicle *v)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   657
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   658
	Vehicle *u;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   659
	int i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   660
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   661
	v->tick_counter++;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   662
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   663
	GetNewVehiclePosResult gp = GetNewVehiclePos(v);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   664
	SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   665
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   666
	if (gp.x > (int)MapSizeX() * TILE_SIZE + 9 * TILE_SIZE - 1) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   667
		DeleteDisasterVeh(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   668
		return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   669
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   670
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   671
	if (v->current_order.dest == 0) {
7830
210381b46ae6 (svn r10697) -Codechange: give a more sensible names to some of the unkX variables.
rubidium
parents: 7813
diff changeset
   672
		u = GetVehicle(v->u.disaster.big_ufo_destroyer_target);
8466
9ce95e16f9f9 (svn r11526) -Codechange: Rename the function delta fitting to the naming style
skidd13
parents: 8463
diff changeset
   673
		if (Delta(v->x_pos, u->x_pos) > TILE_SIZE) return;
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   674
		v->current_order.dest = 1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   675
1359
8ba976aed634 (svn r1863) Give the effect vehicle type enums more descriptive names and use the enum as parameter type for CreateEffectVehicle*()
tron
parents: 1214
diff changeset
   676
		CreateEffectVehicleRel(u, 0, 7, 8, EV_EXPLOSION_LARGE);
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 534
diff changeset
   677
		SndPlayVehicleFx(SND_12_EXPLOSION, u);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   678
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   679
		DeleteDisasterVeh(u);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   680
2952
6a26eeda9679 (svn r3511) More whitespace ([FS#46] by Rubidium)
tron
parents: 2951
diff changeset
   681
		for (i = 0; i != 80; i++) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   682
			uint32 r = Random();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   683
			CreateEffectVehicleAbove(
2140
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   684
				GB(r, 0, 6) + v->x_pos - 32,
d708eb80ab8b (svn r2650) Convert many explicit shifts+ands to extract bits to invocations of GB - should be a bit nicer to read
tron
parents: 2051
diff changeset
   685
				GB(r, 5, 6) + v->y_pos - 32,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   686
				0,
1359
8ba976aed634 (svn r1863) Give the effect vehicle type enums more descriptive names and use the enum as parameter type for CreateEffectVehicle*()
tron
parents: 1214
diff changeset
   687
				EV_EXPLOSION_SMALL);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   688
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   689
1981
de031d2aed47 (svn r2487) Replace TILE_XY by TileXY/TileDiffXY
tron
parents: 1980
diff changeset
   690
		BEGIN_TILE_LOOP(tile, 6, 6, v->tile - TileDiffXY(3, 3))
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   691
			tile = TILE_MASK(tile);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   692
			DisasterClearSquare(tile);
1981
de031d2aed47 (svn r2487) Replace TILE_XY by TileXY/TileDiffXY
tron
parents: 1980
diff changeset
   693
		END_TILE_LOOP(tile, 6, 6, v->tile - TileDiffXY(3, 3))
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   694
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   695
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   696
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   697
/**
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   698
 * Submarine, v->current_order.dest states:
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   699
 * Unused, just float around aimlessly and pop up at different places, turning around
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   700
 */
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   701
static void DisasterTick_Submarine(Vehicle *v)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   702
{
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   703
	TileIndex tile;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   704
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   705
	v->tick_counter++;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   706
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   707
	if (++v->age > 8880) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   708
		VehiclePositionChanged(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   709
		BeginVehicleMove(v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   710
		EndVehicleMove(v);
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   711
		delete v;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   712
		return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   713
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   714
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8418
diff changeset
   715
	if (!HasBit(v->tick_counter, 0)) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   716
4559
c853d2440065 (svn r6406) -Codechange: Rename TileOffsByDir to TileOffsByDiagDir because it accepts
Darkvater
parents: 4527
diff changeset
   717
	tile = v->tile + TileOffsByDiagDir(DirToDiagDir(v->direction));
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   718
	if (IsValidTile(tile)) {
7179
3e123c2b7c93 (svn r9914) -Codechange: prepare GTTS and the pathfinders to handle multiple road types on a single tile.
rubidium
parents: 7054
diff changeset
   719
		TrackdirBits r = (TrackdirBits)GetTileTrackStatus(tile, TRANSPORT_WATER, 0);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   720
8463
3920ac0ab803 (svn r11523) -Codechange: Move the CHANCE macros to core/random_func.cpp cause they depend on Random()
skidd13
parents: 8424
diff changeset
   721
		if (TrackdirBitsToTrackBits(r) == TRACK_BIT_ALL && !Chance16(1, 90)) {
6479
b228a94a1832 (svn r8897) -Fix
tron
parents: 6451
diff changeset
   722
			GetNewVehiclePosResult gp = GetNewVehiclePos(v);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   723
			SetDisasterVehiclePos(v, gp.x, gp.y, v->z_pos);
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   724
			return;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   725
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   726
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   727
3160
9201d3f304e0 (svn r3786) More work for DirDiff
tron
parents: 3157
diff changeset
   728
	v->direction = ChangeDir(v->direction, GB(Random(), 0, 1) ? DIRDIFF_90RIGHT : DIRDIFF_90LEFT);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   729
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   730
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   731
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   732
static void DisasterTick_NULL(Vehicle *v) {}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   733
typedef void DisasterVehicleTickProc(Vehicle *v);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   734
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   735
static DisasterVehicleTickProc * const _disastervehicle_tick_procs[] = {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   736
	DisasterTick_Zeppeliner, DisasterTick_NULL,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   737
	DisasterTick_Ufo,        DisasterTick_NULL,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   738
	DisasterTick_Airplane,   DisasterTick_NULL,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   739
	DisasterTick_Helicopter, DisasterTick_NULL, DisasterTick_Helicopter_Rotors,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   740
	DisasterTick_Big_Ufo,    DisasterTick_NULL, DisasterTick_Big_Ufo_Destroyer,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   741
	DisasterTick_NULL,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   742
	DisasterTick_Submarine,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   743
	DisasterTick_Submarine,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   744
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   745
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   746
7631
e810ef25497e (svn r10409) -Codechange: replace (Aircraft|RoadVeh|Ship|Train)_Tick with a Tick method in the Vehicle class.
rubidium
parents: 7179
diff changeset
   747
void DisasterVehicle::Tick()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   748
{
7631
e810ef25497e (svn r10409) -Codechange: replace (Aircraft|RoadVeh|Ship|Train)_Tick with a Tick method in the Vehicle class.
rubidium
parents: 7179
diff changeset
   749
	_disastervehicle_tick_procs[this->subtype](this);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   750
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   751
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   752
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   753
void OnNewDay_DisasterVehicle(Vehicle *v)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   754
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   755
	// not used
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   756
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   757
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   758
typedef void DisasterInitProc();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   759
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   760
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   761
/** Zeppeliner which crashes on a small airport if one found,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   762
 * otherwise crashes on a random tile */
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   763
static void Disaster_Zeppeliner_Init()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   764
{
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   765
	Vehicle *v = new DisasterVehicle(), *u;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   766
	Station *st;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   767
	int x;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   768
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   769
	if (v == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   770
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   771
	/* Pick a random place, unless we find a small airport */
3645
86af43f87885 (svn r4554) Replace magic numbers by TILE_{HEIGHT,SIZE}
tron
parents: 3495
diff changeset
   772
	x = TileX(Random()) * TILE_SIZE + TILE_SIZE / 2;
919
b0d6c7642f99 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 909
diff changeset
   773
b0d6c7642f99 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 909
diff changeset
   774
	FOR_ALL_STATIONS(st) {
4346
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4344
diff changeset
   775
		if (st->airport_tile != 0 &&
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   776
				st->airport_type <= 1 &&
4845
49105d3b5a9a (svn r6771) -Codechange: Replace two macros with functions. IS_HUMAN_PLAYER and
Darkvater
parents: 4559
diff changeset
   777
				IsHumanPlayer(st->owner)) {
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   778
			x = (TileX(st->xy) + 2) * TILE_SIZE;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   779
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   780
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   781
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   782
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   783
	InitializeDisasterVehicle(v, x, 0, 135, DIR_SE, ST_Zeppeliner);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   784
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   785
	/* Allocate shadow too? */
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   786
	u = new DisasterVehicle();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   787
	if (u != NULL) {
7989
116c8f9769af (svn r11004) -Codechange: some reworks of the saveload mechanism to be able to save and load private and protected variables in the vehicle struct.
rubidium
parents: 7988
diff changeset
   788
		v->SetNext(u);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   789
		InitializeDisasterVehicle(u, x, 0, 0, DIR_SE, ST_Zeppeliner_Shadow);
4175
c0bcc65f36d4 (svn r5613) Rename VS_DISASTER to VS_SHADOW, because this is what this flag actually means
tron
parents: 4077
diff changeset
   790
		u->vehstatus |= VS_SHADOW;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   791
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   792
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   793
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   794
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   795
/** Ufo which flies around aimlessly from the middle of the map a bit
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   796
 * until it locates a road vehicle which it targets and then destroys */
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   797
static void Disaster_Small_Ufo_Init()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   798
{
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   799
	Vehicle *v = new DisasterVehicle(), *u;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   800
	int x;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   801
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   802
	if (v == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   803
3645
86af43f87885 (svn r4554) Replace magic numbers by TILE_{HEIGHT,SIZE}
tron
parents: 3495
diff changeset
   804
	x = TileX(Random()) * TILE_SIZE + TILE_SIZE / 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   805
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   806
	InitializeDisasterVehicle(v, x, 0, 135, DIR_SE, ST_Small_Ufo);
1981
de031d2aed47 (svn r2487) Replace TILE_XY by TileXY/TileDiffXY
tron
parents: 1980
diff changeset
   807
	v->dest_tile = TileXY(MapSizeX() / 2, MapSizeY() / 2);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   808
	v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   809
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   810
	/* Allocate shadow too? */
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   811
	u = new DisasterVehicle();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   812
	if (u != NULL) {
7989
116c8f9769af (svn r11004) -Codechange: some reworks of the saveload mechanism to be able to save and load private and protected variables in the vehicle struct.
rubidium
parents: 7988
diff changeset
   813
		v->SetNext(u);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   814
		InitializeDisasterVehicle(u, x, 0, 0, DIR_SE, ST_Small_Ufo_Shadow);
4175
c0bcc65f36d4 (svn r5613) Rename VS_DISASTER to VS_SHADOW, because this is what this flag actually means
tron
parents: 4077
diff changeset
   815
		u->vehstatus |= VS_SHADOW;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   816
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   817
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   818
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   819
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   820
/* Combat airplane which destroys an oil refinery */
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   821
static void Disaster_Airplane_Init()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   822
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   823
	Industry *i, *found;
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   824
	Vehicle *v, *u;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   825
	int x, y;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   826
830
8114845804c9 (svn r1301) -Codechange: _industries finally has FOR_ALL_INDUSTRIES too
truelight
parents: 679
diff changeset
   827
	found = NULL;
8114845804c9 (svn r1301) -Codechange: _industries finally has FOR_ALL_INDUSTRIES too
truelight
parents: 679
diff changeset
   828
8114845804c9 (svn r1301) -Codechange: _industries finally has FOR_ALL_INDUSTRIES too
truelight
parents: 679
diff changeset
   829
	FOR_ALL_INDUSTRIES(i) {
6886
742e1d75f442 (svn r9520) -Codechange: Add the notion of Industry behaviour. It means what an industry can do (plant fields, cut trees, do not change production), what can be done to it (disasters like mine subsidence, jet/chopper attack), when it can be built etc...
belugas
parents: 6589
diff changeset
   830
		if ((GetIndustrySpec(i->type)->behaviour & INDUSTRYBEH_AIRPLANE_ATTACKS) &&
8463
3920ac0ab803 (svn r11523) -Codechange: Move the CHANCE macros to core/random_func.cpp cause they depend on Random()
skidd13
parents: 8424
diff changeset
   831
				(found == NULL || Chance16(1, 2))) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   832
			found = i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   833
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   834
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   835
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   836
	if (found == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   837
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   838
	v = new DisasterVehicle();
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   839
	if (v == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   840
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   841
	/* Start from the bottom (south side) of the map */
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   842
	x = (MapSizeX() + 9) * TILE_SIZE - 1;
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   843
	y = TileY(found->xy) * TILE_SIZE + 37;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   844
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   845
	InitializeDisasterVehicle(v, x, y, 135, DIR_NE, ST_Airplane);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   846
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   847
	u = new DisasterVehicle();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   848
	if (u != NULL) {
7989
116c8f9769af (svn r11004) -Codechange: some reworks of the saveload mechanism to be able to save and load private and protected variables in the vehicle struct.
rubidium
parents: 7988
diff changeset
   849
		v->SetNext(u);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   850
		InitializeDisasterVehicle(u, x, y, 0, DIR_SE, ST_Airplane_Shadow);
4175
c0bcc65f36d4 (svn r5613) Rename VS_DISASTER to VS_SHADOW, because this is what this flag actually means
tron
parents: 4077
diff changeset
   851
		u->vehstatus |= VS_SHADOW;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   852
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   853
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   854
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   855
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   856
/** Combat helicopter that destroys a factory */
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   857
static void Disaster_Helicopter_Init()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   858
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   859
	Industry *i, *found;
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   860
	Vehicle *v, *u, *w;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   861
	int x, y;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   862
830
8114845804c9 (svn r1301) -Codechange: _industries finally has FOR_ALL_INDUSTRIES too
truelight
parents: 679
diff changeset
   863
	found = NULL;
8114845804c9 (svn r1301) -Codechange: _industries finally has FOR_ALL_INDUSTRIES too
truelight
parents: 679
diff changeset
   864
8114845804c9 (svn r1301) -Codechange: _industries finally has FOR_ALL_INDUSTRIES too
truelight
parents: 679
diff changeset
   865
	FOR_ALL_INDUSTRIES(i) {
6886
742e1d75f442 (svn r9520) -Codechange: Add the notion of Industry behaviour. It means what an industry can do (plant fields, cut trees, do not change production), what can be done to it (disasters like mine subsidence, jet/chopper attack), when it can be built etc...
belugas
parents: 6589
diff changeset
   866
		if ((GetIndustrySpec(i->type)->behaviour & INDUSTRYBEH_CHOPPER_ATTACKS) &&
8463
3920ac0ab803 (svn r11523) -Codechange: Move the CHANCE macros to core/random_func.cpp cause they depend on Random()
skidd13
parents: 8424
diff changeset
   867
				(found == NULL || Chance16(1, 2))) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   868
			found = i;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   869
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   870
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   871
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   872
	if (found == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   873
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   874
	v = new DisasterVehicle();
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 3900
diff changeset
   875
	if (v == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   876
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   877
	x = -16 * TILE_SIZE;
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   878
	y = TileY(found->xy) * TILE_SIZE + 37;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   879
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   880
	InitializeDisasterVehicle(v, x, y, 135, DIR_SW, ST_Helicopter);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   881
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   882
	u = new DisasterVehicle();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   883
	if (u != NULL) {
7989
116c8f9769af (svn r11004) -Codechange: some reworks of the saveload mechanism to be able to save and load private and protected variables in the vehicle struct.
rubidium
parents: 7988
diff changeset
   884
		v->SetNext(u);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   885
		InitializeDisasterVehicle(u, x, y, 0, DIR_SW, ST_Helicopter_Shadow);
4175
c0bcc65f36d4 (svn r5613) Rename VS_DISASTER to VS_SHADOW, because this is what this flag actually means
tron
parents: 4077
diff changeset
   886
		u->vehstatus |= VS_SHADOW;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   887
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   888
		w = new DisasterVehicle();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   889
		if (w != NULL) {
7989
116c8f9769af (svn r11004) -Codechange: some reworks of the saveload mechanism to be able to save and load private and protected variables in the vehicle struct.
rubidium
parents: 7988
diff changeset
   890
			u->SetNext(w);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   891
			InitializeDisasterVehicle(w, x, y, 140, DIR_SW, ST_Helicopter_Rotors);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   892
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   893
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   894
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   895
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   896
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   897
/* Big Ufo which lands on a piece of rail and will consequently be shot
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   898
 * down by a combat airplane, destroying the surroundings */
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   899
static void Disaster_Big_Ufo_Init()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   900
{
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   901
	Vehicle *v = new DisasterVehicle(), *u;
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   902
	int x, y;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   903
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
   904
	if (v == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   905
3645
86af43f87885 (svn r4554) Replace magic numbers by TILE_{HEIGHT,SIZE}
tron
parents: 3495
diff changeset
   906
	x = TileX(Random()) * TILE_SIZE + TILE_SIZE / 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   907
3421
8ab76c47c72c (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE
celestar
parents: 3338
diff changeset
   908
	y = MapMaxX() * TILE_SIZE - 1;
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   909
	InitializeDisasterVehicle(v, x, y, 135, DIR_NW, ST_Big_Ufo);
1981
de031d2aed47 (svn r2487) Replace TILE_XY by TileXY/TileDiffXY
tron
parents: 1980
diff changeset
   910
	v->dest_tile = TileXY(MapSizeX() / 2, MapSizeY() / 2);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   911
	v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   912
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   913
	/* Allocate shadow too? */
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   914
	u = new DisasterVehicle();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   915
	if (u != NULL) {
7989
116c8f9769af (svn r11004) -Codechange: some reworks of the saveload mechanism to be able to save and load private and protected variables in the vehicle struct.
rubidium
parents: 7988
diff changeset
   916
		v->SetNext(u);
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   917
		InitializeDisasterVehicle(u, x, y, 0, DIR_NW, ST_Big_Ufo_Shadow);
4175
c0bcc65f36d4 (svn r5613) Rename VS_DISASTER to VS_SHADOW, because this is what this flag actually means
tron
parents: 4077
diff changeset
   918
		u->vehstatus |= VS_SHADOW;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   919
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   920
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   921
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   922
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   923
/* Curious submarine #1, just floats around */
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   924
static void Disaster_Small_Submarine_Init()
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   925
{
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   926
	Vehicle *v = new DisasterVehicle();
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   927
	int x, y;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   928
	Direction dir;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   929
	uint32 r;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   930
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   931
	if (v == NULL) return;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   932
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   933
	r = Random();
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   934
	x = TileX(r) * TILE_SIZE + TILE_SIZE / 2;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   935
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8418
diff changeset
   936
	if (HasBit(r, 31)) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   937
		y = MapMaxX() * TILE_SIZE - TILE_SIZE / 2 - 1;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   938
		dir = DIR_NW;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   939
	} else {
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   940
		y = TILE_SIZE / 2;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   941
		dir = DIR_SE;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   942
	}
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   943
	InitializeDisasterVehicle(v, x, y, 0, dir, ST_Small_Submarine);
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   944
	v->age = 0;
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   945
}
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   947
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   948
/* Curious submarine #2, just floats around */
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   949
static void Disaster_Big_Submarine_Init()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   950
{
7894
dbe6e9295ec5 (svn r10770) -Codechange: use the pool item class as super class for the vehicle struct.
rubidium
parents: 7830
diff changeset
   951
	Vehicle *v = new DisasterVehicle();
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   952
	int x, y;
3157
40de8616c04c (svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 2989
diff changeset
   953
	Direction dir;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   954
	uint32 r;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   955
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
   956
	if (v == NULL) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   957
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   958
	r = Random();
3645
86af43f87885 (svn r4554) Replace magic numbers by TILE_{HEIGHT,SIZE}
tron
parents: 3495
diff changeset
   959
	x = TileX(r) * TILE_SIZE + TILE_SIZE / 2;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   960
8424
4a488a90ccab (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 8418
diff changeset
   961
	if (HasBit(r, 31)) {
3645
86af43f87885 (svn r4554) Replace magic numbers by TILE_{HEIGHT,SIZE}
tron
parents: 3495
diff changeset
   962
		y = MapMaxX() * TILE_SIZE - TILE_SIZE / 2 - 1;
3157
40de8616c04c (svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 2989
diff changeset
   963
		dir = DIR_NW;
40de8616c04c (svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 2989
diff changeset
   964
	} else {
3645
86af43f87885 (svn r4554) Replace magic numbers by TILE_{HEIGHT,SIZE}
tron
parents: 3495
diff changeset
   965
		y = TILE_SIZE / 2;
3157
40de8616c04c (svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 2989
diff changeset
   966
		dir = DIR_SE;
40de8616c04c (svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 2989
diff changeset
   967
	}
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   968
	InitializeDisasterVehicle(v, x, y, 0, dir, ST_Big_Submarine);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   969
	v->age = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   970
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   971
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   972
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   973
/** Coal mine catastrophe, destroys a stretch of 30 tiles of
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   974
 * land in a certain direction */
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
   975
static void Disaster_CoalMine_Init()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   976
{
2642
cb99ff2e49a7 (svn r3184) GB/SB
tron
parents: 2639
diff changeset
   977
	int index = GB(Random(), 0, 4);
2648
72973ab76048 (svn r3190) Turn some loops into canonical for loop form
tron
parents: 2642
diff changeset
   978
	uint m;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   979
2648
72973ab76048 (svn r3190) Turn some loops into canonical for loop form
tron
parents: 2642
diff changeset
   980
	for (m = 0; m < 15; m++) {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
   981
		const Industry *i;
2989
99c95a3ebcaa (svn r3564) Several smaller changes:
tron
parents: 2952
diff changeset
   982
830
8114845804c9 (svn r1301) -Codechange: _industries finally has FOR_ALL_INDUSTRIES too
truelight
parents: 679
diff changeset
   983
		FOR_ALL_INDUSTRIES(i) {
6886
742e1d75f442 (svn r9520) -Codechange: Add the notion of Industry behaviour. It means what an industry can do (plant fields, cut trees, do not change production), what can be done to it (disasters like mine subsidence, jet/chopper attack), when it can be built etc...
belugas
parents: 6589
diff changeset
   984
			if ((GetIndustrySpec(i->type)->behaviour & INDUSTRYBEH_CAN_SUBSIDENCE) && --index < 0) {
534
17ab2f22ff74 (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   985
				SetDParam(0, i->town->index);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   986
				AddNewsItem(STR_B005_COAL_MINE_SUBSIDENCE_LEAVES,
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6949
diff changeset
   987
					NEWS_FLAGS(NM_THIN, NF_VIEWPORT | NF_TILE, NT_ACCIDENT, 0), i->xy + TileDiffXY(1, 1), 0);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 159
diff changeset
   988
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   989
				{
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   990
					TileIndex tile = i->xy;
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7762
diff changeset
   991
					TileIndexDiff step = TileOffsByDiagDir((DiagDirection)GB(Random(), 0, 2));
2648
72973ab76048 (svn r3190) Turn some loops into canonical for loop form
tron
parents: 2642
diff changeset
   992
					uint n;
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1901
diff changeset
   993
2674
1d68ffc9f406 (svn r3216) - Fix (regression): endless loop introduced in revision 3190
Darkvater
parents: 2668
diff changeset
   994
					for (n = 0; n < 30; n++) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   995
						DisasterClearSquare(tile);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   996
						tile = TILE_MASK(tile + step);
2648
72973ab76048 (svn r3190) Turn some loops into canonical for loop form
tron
parents: 2642
diff changeset
   997
					}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   998
				}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   999
				return;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1000
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1001
		}
2648
72973ab76048 (svn r3190) Turn some loops into canonical for loop form
tron
parents: 2642
diff changeset
  1002
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1003
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1004
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1005
static DisasterInitProc * const _disaster_initprocs[] = {
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
  1006
	Disaster_Zeppeliner_Init,
5951
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
  1007
	Disaster_Small_Ufo_Init,
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
  1008
	Disaster_Airplane_Init,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
  1009
	Disaster_Helicopter_Init,
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
  1010
	Disaster_Big_Ufo_Init,
5951
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
  1011
	Disaster_Small_Submarine_Init,
9dfa5b0116e4 (svn r8164) -Codechange (r8159): Fix up some comments/doxygen for disasters and rename Submarine1/2 to small/big
Darkvater
parents: 5946
diff changeset
  1012
	Disaster_Big_Submarine_Init,
5946
ca8d7faa51e5 (svn r8159) -Cleanup: Sprinkle some coding-style and comments on the disaster code.
Darkvater
parents: 5945
diff changeset
  1013
	Disaster_CoalMine_Init,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1014
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1015
2655
807e49a44ace (svn r3197) Use a better bias so you can directly see the date range a disaster can happen in
tron
parents: 2648
diff changeset
  1016
static const struct {
4293
2c24234a7aec (svn r5926) -Codechange: make _cur_year contain the full year, instead of the offset since 1920
rubidium
parents: 4286
diff changeset
  1017
	Year min;
2c24234a7aec (svn r5926) -Codechange: make _cur_year contain the full year, instead of the offset since 1920
rubidium
parents: 4286
diff changeset
  1018
	Year max;
2655
807e49a44ace (svn r3197) Use a better bias so you can directly see the date range a disaster can happen in
tron
parents: 2648
diff changeset
  1019
} _dis_years[] = {
6451
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
  1020
	{ 1930, 1955 }, ///< zeppeliner
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
  1021
	{ 1940, 1970 }, ///< ufo (small)
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
  1022
	{ 1960, 1990 }, ///< airplane
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
  1023
	{ 1970, 2000 }, ///< helicopter
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
  1024
	{ 2000, 2100 }, ///< ufo (big)
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
  1025
	{ 1940, 1965 }, ///< submarine (small)
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
  1026
	{ 1975, 2010 }, ///< submarine (big)
7baba06b4b85 (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style.
belugas
parents: 6443
diff changeset
  1027
	{ 1950, 1985 }  ///< coalmine
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1028
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1029
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1030
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
  1031
static void DoDisaster()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1032
{
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
  1033
	byte buf[lengthof(_dis_years)];
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
  1034
	uint i;
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
  1035
	uint j;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1036
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
  1037
	j = 0;
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
  1038
	for (i = 0; i != lengthof(_dis_years); i++) {
4293
2c24234a7aec (svn r5926) -Codechange: make _cur_year contain the full year, instead of the offset since 1920
rubidium
parents: 4286
diff changeset
  1039
		if (_cur_year >= _dis_years[i].min && _cur_year < _dis_years[i].max) buf[j++] = i;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1040
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1041
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
  1042
	if (j == 0) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1043
2637
8807e6a63f89 (svn r3179) - RandomRange() and RandomTile() instead of home brewed versions
tron
parents: 2635
diff changeset
  1044
	_disaster_initprocs[buf[RandomRange(j)]]();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1045
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1046
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1047
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
  1048
static void ResetDisasterDelay()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1049
{
2484
8e0c88a833fb (svn r3010) Get rid of quite some dubious casts, either by using GB(), proper types or just removing them
tron
parents: 2435
diff changeset
  1050
	_disaster_delay = GB(Random(), 0, 9) + 730;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1051
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1052
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
  1053
void DisasterDailyLoop()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1054
{
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
  1055
	if (--_disaster_delay != 0) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1056
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1057
	ResetDisasterDelay();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1058
2639
8a7342eb3a78 (svn r3181) -Bracing
tron
parents: 2637
diff changeset
  1059
	if (_opt.diff.disasters != 0) DoDisaster();
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1060
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1061
6573
7624f942237f (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6479
diff changeset
  1062
void StartupDisasters()
1093
e8d26c7dc42f (svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents: 1048
diff changeset
  1063
{
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1064
	ResetDisasterDelay();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1065
}
7054
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1066
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1067
void DisasterVehicle::UpdateDeltaXY(Direction direction)
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1068
{
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1069
	this->x_offs        = -1;
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1070
	this->y_offs        = -1;
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1071
	this->sprite_width  =  2;
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1072
	this->sprite_height =  2;
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1073
	this->z_height      =  5;
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7048
diff changeset
  1074
}