2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file landscape.cpp Functions related to the landscape (slopes etc.). */
|
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/** @defgroup SnowLineGroup Snowline functions and data structures */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
#include "heightmap.h"
|
2006-03-05 10:19:33 +00:00
|
|
|
#include "clear_map.h"
|
2005-02-10 05:43:30 +00:00
|
|
|
#include "spritecache.h"
|
2008-01-09 09:57:48 +00:00
|
|
|
#include "viewport_func.h"
|
2007-12-21 21:50:46 +00:00
|
|
|
#include "command_func.h"
|
2007-03-20 13:47:00 +00:00
|
|
|
#include "landscape.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "variables.h"
|
2006-03-05 10:19:33 +00:00
|
|
|
#include "void_map.h"
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
#include "tgp.h"
|
|
|
|
#include "genworld.h"
|
2007-12-28 03:14:55 +00:00
|
|
|
#include "fios.h"
|
2007-12-25 11:26:07 +00:00
|
|
|
#include "functions.h"
|
2007-12-26 13:50:40 +00:00
|
|
|
#include "date_func.h"
|
2008-01-22 17:48:08 +00:00
|
|
|
#include "water.h"
|
2008-04-20 11:12:07 +00:00
|
|
|
#include "effectvehicle_func.h"
|
2008-05-07 09:07:19 +00:00
|
|
|
#include "landscape_type.h"
|
2009-07-01 14:51:05 +00:00
|
|
|
#include "animated_tile_func.h"
|
2010-01-15 16:41:15 +00:00
|
|
|
#include "core/random_func.hpp"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "table/sprites.h"
|
|
|
|
|
2004-09-08 17:44:29 +00:00
|
|
|
extern const TileTypeProcs
|
2004-08-09 17:04:08 +00:00
|
|
|
_tile_type_clear_procs,
|
|
|
|
_tile_type_rail_procs,
|
|
|
|
_tile_type_road_procs,
|
|
|
|
_tile_type_town_procs,
|
|
|
|
_tile_type_trees_procs,
|
|
|
|
_tile_type_station_procs,
|
|
|
|
_tile_type_water_procs,
|
|
|
|
_tile_type_dummy_procs,
|
|
|
|
_tile_type_industry_procs,
|
|
|
|
_tile_type_tunnelbridge_procs,
|
|
|
|
_tile_type_unmovable_procs;
|
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/** Tile callback functions for each type of tile.
|
|
|
|
* @ingroup TileCallbackGroup
|
|
|
|
* @see TileType */
|
2004-08-09 17:04:08 +00:00
|
|
|
const TileTypeProcs * const _tile_type_procs[16] = {
|
2008-10-19 15:39:12 +00:00
|
|
|
&_tile_type_clear_procs, ///< Callback functions for MP_CLEAR tiles
|
|
|
|
&_tile_type_rail_procs, ///< Callback functions for MP_RAILWAY tiles
|
|
|
|
&_tile_type_road_procs, ///< Callback functions for MP_ROAD tiles
|
|
|
|
&_tile_type_town_procs, ///< Callback functions for MP_HOUSE tiles
|
|
|
|
&_tile_type_trees_procs, ///< Callback functions for MP_TREES tiles
|
|
|
|
&_tile_type_station_procs, ///< Callback functions for MP_STATION tiles
|
|
|
|
&_tile_type_water_procs, ///< Callback functions for MP_WATER tiles
|
|
|
|
&_tile_type_dummy_procs, ///< Callback functions for MP_VOID tiles
|
|
|
|
&_tile_type_industry_procs, ///< Callback functions for MP_INDUSTRY tiles
|
|
|
|
&_tile_type_tunnelbridge_procs, ///< Callback functions for MP_TUNNELBRIDGE tiles
|
|
|
|
&_tile_type_unmovable_procs, ///< Callback functions for MP_UNMOVABLE tiles
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* landscape slope => sprite */
|
|
|
|
const byte _tileh_to_sprite[32] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 17, 0, 15, 18, 0,
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/**
|
|
|
|
* Description of the snow line throughout the year.
|
|
|
|
*
|
|
|
|
* If it is \c NULL, a static snowline height is used, as set by \c _settings_game.game_creation.snow_line.
|
|
|
|
* Otherwise it points to a table loaded from a newGRF file, that describes the variable snowline
|
|
|
|
* @ingroup SnowLineGroup
|
|
|
|
* @see GetSnowLine() GameCreationSettings */
|
2009-11-09 09:59:35 +00:00
|
|
|
static SnowLine *_snow_line = NULL;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-07-26 16:51:10 +00:00
|
|
|
/**
|
2008-10-13 03:26:48 +00:00
|
|
|
* Applies a foundation to a slope.
|
2007-07-26 16:51:10 +00:00
|
|
|
*
|
|
|
|
* @pre Foundation and slope must be valid combined.
|
|
|
|
* @param f The #Foundation.
|
|
|
|
* @param s The #Slope to modify.
|
|
|
|
* @return Increment to the tile Z coordinate.
|
|
|
|
*/
|
|
|
|
uint ApplyFoundationToSlope(Foundation f, Slope *s)
|
|
|
|
{
|
|
|
|
if (!IsFoundation(f)) return 0;
|
|
|
|
|
|
|
|
if (IsLeveledFoundation(f)) {
|
2008-06-12 21:36:56 +00:00
|
|
|
uint dz = TILE_HEIGHT + (IsSteepSlope(*s) ? TILE_HEIGHT : 0);
|
2007-07-26 16:51:10 +00:00
|
|
|
*s = SLOPE_FLAT;
|
2008-06-12 21:36:56 +00:00
|
|
|
return dz;
|
2007-07-26 16:51:10 +00:00
|
|
|
}
|
|
|
|
|
2007-10-20 21:04:14 +00:00
|
|
|
if (f != FOUNDATION_STEEP_BOTH && IsNonContinuousFoundation(f)) {
|
|
|
|
*s = HalftileSlope(*s, GetHalftileFoundationCorner(f));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsSpecialRailFoundation(f)) {
|
|
|
|
*s = SlopeWithThreeCornersRaised(OppositeCorner(GetRailFoundationCorner(f)));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-26 16:51:10 +00:00
|
|
|
uint dz = IsSteepSlope(*s) ? TILE_HEIGHT : 0;
|
2007-10-05 19:36:13 +00:00
|
|
|
Corner highest_corner = GetHighestSlopeCorner(*s);
|
2007-07-26 16:51:10 +00:00
|
|
|
|
|
|
|
switch (f) {
|
|
|
|
case FOUNDATION_INCLINED_X:
|
2007-10-05 19:36:13 +00:00
|
|
|
*s = (((highest_corner == CORNER_W) || (highest_corner == CORNER_S)) ? SLOPE_SW : SLOPE_NE);
|
2007-07-26 16:51:10 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FOUNDATION_INCLINED_Y:
|
2007-10-05 19:36:13 +00:00
|
|
|
*s = (((highest_corner == CORNER_S) || (highest_corner == CORNER_E)) ? SLOPE_SE : SLOPE_NW);
|
2007-07-26 16:51:10 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case FOUNDATION_STEEP_LOWER:
|
2007-10-05 19:36:13 +00:00
|
|
|
*s = SlopeWithOneCornerRaised(highest_corner);
|
2007-07-26 16:51:10 +00:00
|
|
|
break;
|
|
|
|
|
2007-10-20 21:04:14 +00:00
|
|
|
case FOUNDATION_STEEP_BOTH:
|
|
|
|
*s = HalftileSlope(SlopeWithOneCornerRaised(highest_corner), highest_corner);
|
2007-07-26 16:51:10 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: NOT_REACHED();
|
|
|
|
}
|
|
|
|
return dz;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
/**
|
|
|
|
* Determines height at given coordinate of a slope
|
|
|
|
* @param x x coordinate
|
|
|
|
* @param y y coordinate
|
|
|
|
* @param corners slope to examine
|
|
|
|
* @return height of given point of given slope
|
|
|
|
*/
|
2006-04-23 13:48:16 +00:00
|
|
|
uint GetPartialZ(int x, int y, Slope corners)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-10-20 16:50:48 +00:00
|
|
|
if (IsHalftileSlope(corners)) {
|
|
|
|
switch (GetHalftileSlopeCorner(corners)) {
|
|
|
|
case CORNER_W:
|
|
|
|
if (x - y >= 0) return GetSlopeMaxZ(corners);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CORNER_S:
|
|
|
|
if (x - (y ^ 0xF) >= 0) return GetSlopeMaxZ(corners);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CORNER_E:
|
|
|
|
if (y - x >= 0) return GetSlopeMaxZ(corners);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CORNER_N:
|
|
|
|
if ((y ^ 0xF) - x >= 0) return GetSlopeMaxZ(corners);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: NOT_REACHED();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
int z = 0;
|
|
|
|
|
2008-01-25 15:47:58 +00:00
|
|
|
switch (RemoveHalftileSlope(corners)) {
|
2008-04-04 16:32:27 +00:00
|
|
|
case SLOPE_W:
|
|
|
|
if (x - y >= 0) {
|
|
|
|
z = (x - y) >> 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_S:
|
|
|
|
y ^= 0xF;
|
|
|
|
if ((x - y) >= 0) {
|
|
|
|
z = (x - y) >> 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_SW:
|
|
|
|
z = (x >> 1) + 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_E:
|
|
|
|
if (y - x >= 0) {
|
|
|
|
z = (y - x) >> 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_EW:
|
|
|
|
case SLOPE_NS:
|
|
|
|
case SLOPE_ELEVATED:
|
|
|
|
z = 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_SE:
|
|
|
|
z = (y >> 1) + 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_WSE:
|
|
|
|
z = 8;
|
|
|
|
y ^= 0xF;
|
|
|
|
if (x - y < 0) {
|
|
|
|
z += (x - y) >> 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_N:
|
|
|
|
y ^= 0xF;
|
|
|
|
if (y - x >= 0) {
|
|
|
|
z = (y - x) >> 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_NW:
|
|
|
|
z = (y ^ 0xF) >> 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_NWS:
|
|
|
|
z = 8;
|
|
|
|
if (x - y < 0) {
|
|
|
|
z += (x - y) >> 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_NE:
|
|
|
|
z = (x ^ 0xF) >> 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_ENW:
|
|
|
|
z = 8;
|
|
|
|
y ^= 0xF;
|
|
|
|
if (y - x < 0) {
|
|
|
|
z += (y - x) >> 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_SEN:
|
|
|
|
z = 8;
|
|
|
|
if (y - x < 0) {
|
|
|
|
z += (y - x) >> 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_STEEP_S:
|
|
|
|
z = 1 + ((x + y) >> 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_STEEP_W:
|
|
|
|
z = 1 + ((x + (y ^ 0xF)) >> 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_STEEP_N:
|
|
|
|
z = 1 + (((x ^ 0xF) + (y ^ 0xF)) >> 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLOPE_STEEP_E:
|
|
|
|
z = 1 + (((x ^ 0xF) + y) >> 1);
|
|
|
|
break;
|
2006-04-23 13:48:16 +00:00
|
|
|
|
|
|
|
default: break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return z;
|
|
|
|
}
|
|
|
|
|
2006-02-01 06:32:03 +00:00
|
|
|
uint GetSlopeZ(int x, int y)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-08-06 16:32:49 +00:00
|
|
|
TileIndex tile = TileVirtXY(x, y);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-08-06 16:32:49 +00:00
|
|
|
return _tile_type_procs[GetTileType(tile)]->get_slope_z_proc(tile, x, y);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-20 21:04:14 +00:00
|
|
|
/**
|
|
|
|
* Determine the Z height of a corner relative to TileZ.
|
|
|
|
*
|
|
|
|
* @pre The slope must not be a halftile slope.
|
|
|
|
*
|
|
|
|
* @param tileh The slope.
|
|
|
|
* @param corner The corner.
|
|
|
|
* @return Z position of corner relative to TileZ.
|
|
|
|
*/
|
|
|
|
int GetSlopeZInCorner(Slope tileh, Corner corner)
|
|
|
|
{
|
|
|
|
assert(!IsHalftileSlope(tileh));
|
2008-01-25 15:47:58 +00:00
|
|
|
return ((tileh & SlopeWithOneCornerRaised(corner)) != 0 ? TILE_HEIGHT : 0) + (tileh == SteepSlope(corner) ? TILE_HEIGHT : 0);
|
2007-10-20 21:04:14 +00:00
|
|
|
}
|
|
|
|
|
2007-10-14 20:16:44 +00:00
|
|
|
/**
|
|
|
|
* Determine the Z height of the corners of a specific tile edge
|
|
|
|
*
|
2010-04-12 14:12:47 +00:00
|
|
|
* @note If a tile has a non-continuous halftile foundation, a corner can have different heights wrt. its edges.
|
2007-10-20 16:50:48 +00:00
|
|
|
*
|
2007-10-14 20:16:44 +00:00
|
|
|
* @pre z1 and z2 must be initialized (typ. with TileZ). The corner heights just get added.
|
|
|
|
*
|
|
|
|
* @param tileh The slope of the tile.
|
|
|
|
* @param edge The edge of interest.
|
|
|
|
* @param z1 Gets incremented by the height of the first corner of the edge. (near corner wrt. the camera)
|
|
|
|
* @param z2 Gets incremented by the height of the second corner of the edge. (far corner wrt. the camera)
|
|
|
|
*/
|
|
|
|
void GetSlopeZOnEdge(Slope tileh, DiagDirection edge, int *z1, int *z2)
|
|
|
|
{
|
|
|
|
static const Slope corners[4][4] = {
|
|
|
|
/* corner | steep slope
|
|
|
|
* z1 z2 | z1 z2 */
|
|
|
|
{SLOPE_E, SLOPE_N, SLOPE_STEEP_E, SLOPE_STEEP_N}, // DIAGDIR_NE, z1 = E, z2 = N
|
|
|
|
{SLOPE_S, SLOPE_E, SLOPE_STEEP_S, SLOPE_STEEP_E}, // DIAGDIR_SE, z1 = S, z2 = E
|
|
|
|
{SLOPE_S, SLOPE_W, SLOPE_STEEP_S, SLOPE_STEEP_W}, // DIAGDIR_SW, z1 = S, z2 = W
|
|
|
|
{SLOPE_W, SLOPE_N, SLOPE_STEEP_W, SLOPE_STEEP_N}, // DIAGDIR_NW, z1 = W, z2 = N
|
|
|
|
};
|
|
|
|
|
2007-10-20 16:50:48 +00:00
|
|
|
int halftile_test = (IsHalftileSlope(tileh) ? SlopeWithOneCornerRaised(GetHalftileSlopeCorner(tileh)) : 0);
|
|
|
|
if (halftile_test == corners[edge][0]) *z2 += TILE_HEIGHT; // The slope is non-continuous in z2. z2 is on the upper side.
|
|
|
|
if (halftile_test == corners[edge][1]) *z1 += TILE_HEIGHT; // The slope is non-continuous in z1. z1 is on the upper side.
|
|
|
|
|
2007-10-14 20:16:44 +00:00
|
|
|
if ((tileh & corners[edge][0]) != 0) *z1 += TILE_HEIGHT; // z1 is raised
|
|
|
|
if ((tileh & corners[edge][1]) != 0) *z2 += TILE_HEIGHT; // z2 is raised
|
2008-01-25 15:47:58 +00:00
|
|
|
if (RemoveHalftileSlope(tileh) == corners[edge][2]) *z1 += TILE_HEIGHT; // z1 is highest corner of a steep slope
|
|
|
|
if (RemoveHalftileSlope(tileh) == corners[edge][3]) *z2 += TILE_HEIGHT; // z2 is highest corner of a steep slope
|
2007-10-14 20:16:44 +00:00
|
|
|
}
|
2006-06-24 22:19:28 +00:00
|
|
|
|
2008-01-25 15:47:58 +00:00
|
|
|
/**
|
|
|
|
* Get slope of a tile on top of a (possible) foundation
|
|
|
|
* If a tile does not have a foundation, the function returns the same as GetTileSlope.
|
|
|
|
*
|
|
|
|
* @param tile The tile of interest.
|
|
|
|
* @param z returns the z of the foundation slope. (Can be NULL, if not needed)
|
|
|
|
* @return The slope on top of the foundation.
|
|
|
|
*/
|
2009-01-10 00:31:47 +00:00
|
|
|
Slope GetFoundationSlope(TileIndex tile, uint *z)
|
2004-08-13 11:28:59 +00:00
|
|
|
{
|
2006-06-24 22:19:28 +00:00
|
|
|
Slope tileh = GetTileSlope(tile, z);
|
2007-07-26 16:51:10 +00:00
|
|
|
Foundation f = _tile_type_procs[GetTileType(tile)]->get_foundation_proc(tile, tileh);
|
2008-01-22 17:48:08 +00:00
|
|
|
uint z_inc = ApplyFoundationToSlope(f, &tileh);
|
|
|
|
if (z != NULL) *z += z_inc;
|
2007-07-26 16:51:10 +00:00
|
|
|
return tileh;
|
2006-06-24 22:19:28 +00:00
|
|
|
}
|
2004-08-13 18:27:33 +00:00
|
|
|
|
2006-06-24 22:19:28 +00:00
|
|
|
|
2010-01-03 22:44:57 +00:00
|
|
|
bool HasFoundationNW(TileIndex tile, Slope slope_here, uint z_here)
|
2006-06-24 22:19:28 +00:00
|
|
|
{
|
|
|
|
uint z;
|
2007-10-14 20:16:44 +00:00
|
|
|
|
|
|
|
int z_W_here = z_here;
|
|
|
|
int z_N_here = z_here;
|
|
|
|
GetSlopeZOnEdge(slope_here, DIAGDIR_NW, &z_W_here, &z_N_here);
|
|
|
|
|
2006-06-24 22:19:28 +00:00
|
|
|
Slope slope = GetFoundationSlope(TILE_ADDXY(tile, 0, -1), &z);
|
2007-10-14 20:16:44 +00:00
|
|
|
int z_W = z;
|
|
|
|
int z_N = z;
|
|
|
|
GetSlopeZOnEdge(slope, DIAGDIR_SE, &z_W, &z_N);
|
2006-06-24 22:19:28 +00:00
|
|
|
|
2007-10-14 20:16:44 +00:00
|
|
|
return (z_N_here > z_N) || (z_W_here > z_W);
|
2004-08-13 11:28:59 +00:00
|
|
|
}
|
|
|
|
|
2006-06-24 22:19:28 +00:00
|
|
|
|
2010-01-03 22:44:57 +00:00
|
|
|
bool HasFoundationNE(TileIndex tile, Slope slope_here, uint z_here)
|
2006-06-24 22:19:28 +00:00
|
|
|
{
|
|
|
|
uint z;
|
2007-10-14 20:16:44 +00:00
|
|
|
|
|
|
|
int z_E_here = z_here;
|
|
|
|
int z_N_here = z_here;
|
|
|
|
GetSlopeZOnEdge(slope_here, DIAGDIR_NE, &z_E_here, &z_N_here);
|
|
|
|
|
2006-06-24 22:19:28 +00:00
|
|
|
Slope slope = GetFoundationSlope(TILE_ADDXY(tile, -1, 0), &z);
|
2007-10-14 20:16:44 +00:00
|
|
|
int z_E = z;
|
|
|
|
int z_N = z;
|
|
|
|
GetSlopeZOnEdge(slope, DIAGDIR_SW, &z_E, &z_N);
|
2006-06-24 22:19:28 +00:00
|
|
|
|
2007-10-14 20:16:44 +00:00
|
|
|
return (z_N_here > z_N) || (z_E_here > z_E);
|
2006-06-24 22:19:28 +00:00
|
|
|
}
|
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/**
|
|
|
|
* Draw foundation \a f at tile \a ti. Updates \a ti.
|
|
|
|
* @param ti Tile to draw foundation on
|
|
|
|
* @param f Foundation to draw
|
|
|
|
*/
|
2007-07-26 16:51:10 +00:00
|
|
|
void DrawFoundation(TileInfo *ti, Foundation f)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-07-26 16:51:10 +00:00
|
|
|
if (!IsFoundation(f)) return;
|
|
|
|
|
2007-10-20 21:04:14 +00:00
|
|
|
/* Two part foundations must be drawn separately */
|
|
|
|
assert(f != FOUNDATION_STEEP_BOTH);
|
|
|
|
|
2007-10-20 20:06:55 +00:00
|
|
|
uint sprite_block = 0;
|
2006-06-24 22:19:28 +00:00
|
|
|
uint z;
|
2007-07-26 16:51:10 +00:00
|
|
|
Slope slope = GetFoundationSlope(ti->tile, &z);
|
2004-08-13 18:27:33 +00:00
|
|
|
|
2007-10-20 20:06:55 +00:00
|
|
|
/* Select the needed block of foundations sprites
|
|
|
|
* Block 0: Walls at NW and NE edge
|
|
|
|
* Block 1: Wall at NE edge
|
|
|
|
* Block 2: Wall at NW edge
|
|
|
|
* Block 3: No walls at NW or NE edge
|
|
|
|
*/
|
|
|
|
if (!HasFoundationNW(ti->tile, slope, z)) sprite_block += 1;
|
|
|
|
if (!HasFoundationNE(ti->tile, slope, z)) sprite_block += 2;
|
2004-08-13 11:28:59 +00:00
|
|
|
|
2007-10-20 20:06:55 +00:00
|
|
|
/* Use the original slope sprites if NW and NE borders should be visible */
|
|
|
|
SpriteID leveled_base = (sprite_block == 0 ? (int)SPR_FOUNDATION_BASE : (SPR_SLOPES_VIRTUAL_BASE + sprite_block * SPR_TRKFOUND_BLOCK_SIZE));
|
|
|
|
SpriteID inclined_base = SPR_SLOPES_VIRTUAL_BASE + SPR_SLOPES_INCLINED_OFFSET + sprite_block * SPR_TRKFOUND_BLOCK_SIZE;
|
2007-10-20 21:04:14 +00:00
|
|
|
SpriteID halftile_base = SPR_HALFTILE_FOUNDATION_BASE + sprite_block * SPR_HALFTILE_BLOCK_SIZE;
|
2004-08-13 11:28:59 +00:00
|
|
|
|
2007-10-20 20:06:55 +00:00
|
|
|
if (IsSteepSlope(ti->tileh)) {
|
2007-10-20 21:04:14 +00:00
|
|
|
if (!IsNonContinuousFoundation(f)) {
|
|
|
|
/* Lower part of foundation */
|
|
|
|
AddSortableSpriteToDraw(
|
|
|
|
leveled_base + (ti->tileh & ~SLOPE_STEEP), PAL_NONE, ti->x, ti->y, 16, 16, 7, ti->z
|
|
|
|
);
|
|
|
|
}
|
2007-07-26 16:51:10 +00:00
|
|
|
|
2007-10-05 19:36:13 +00:00
|
|
|
Corner highest_corner = GetHighestSlopeCorner(ti->tileh);
|
2007-07-26 16:51:10 +00:00
|
|
|
ti->z += ApplyFoundationToSlope(f, &ti->tileh);
|
|
|
|
|
|
|
|
if (IsInclinedFoundation(f)) {
|
|
|
|
/* inclined foundation */
|
|
|
|
byte inclined = highest_corner * 2 + (f == FOUNDATION_INCLINED_Y ? 1 : 0);
|
|
|
|
|
2008-10-25 18:58:24 +00:00
|
|
|
AddSortableSpriteToDraw(inclined_base + inclined, PAL_NONE, ti->x, ti->y,
|
|
|
|
f == FOUNDATION_INCLINED_X ? 16 : 1,
|
|
|
|
f == FOUNDATION_INCLINED_Y ? 16 : 1,
|
2008-11-02 11:23:44 +00:00
|
|
|
TILE_HEIGHT, ti->z
|
2008-10-25 18:58:24 +00:00
|
|
|
);
|
2006-08-12 12:56:45 +00:00
|
|
|
OffsetGroundSprite(31, 9);
|
2008-06-12 21:36:56 +00:00
|
|
|
} else if (IsLeveledFoundation(f)) {
|
|
|
|
AddSortableSpriteToDraw(leveled_base + SlopeWithOneCornerRaised(highest_corner), PAL_NONE, ti->x, ti->y, 16, 16, 7, ti->z - TILE_HEIGHT);
|
|
|
|
OffsetGroundSprite(31, 1);
|
2007-10-20 21:04:14 +00:00
|
|
|
} else if (f == FOUNDATION_STEEP_LOWER) {
|
2007-03-03 04:04:22 +00:00
|
|
|
/* one corner raised */
|
2006-08-12 12:56:45 +00:00
|
|
|
OffsetGroundSprite(31, 1);
|
2007-10-20 21:04:14 +00:00
|
|
|
} else {
|
|
|
|
/* halftile foundation */
|
|
|
|
int x_bb = (((highest_corner == CORNER_W) || (highest_corner == CORNER_S)) ? 8 : 0);
|
|
|
|
int y_bb = (((highest_corner == CORNER_S) || (highest_corner == CORNER_E)) ? 8 : 0);
|
|
|
|
|
|
|
|
AddSortableSpriteToDraw(halftile_base + highest_corner, PAL_NONE, ti->x + x_bb, ti->y + y_bb, 8, 8, 7, ti->z + TILE_HEIGHT);
|
|
|
|
OffsetGroundSprite(31, 9);
|
2006-08-12 12:56:45 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2007-07-26 16:51:10 +00:00
|
|
|
if (IsLeveledFoundation(f)) {
|
2007-10-20 20:06:55 +00:00
|
|
|
/* leveled foundation */
|
|
|
|
AddSortableSpriteToDraw(leveled_base + ti->tileh, PAL_NONE, ti->x, ti->y, 16, 16, 7, ti->z);
|
2006-08-12 12:56:45 +00:00
|
|
|
OffsetGroundSprite(31, 1);
|
2007-10-20 21:04:14 +00:00
|
|
|
} else if (IsNonContinuousFoundation(f)) {
|
|
|
|
/* halftile foundation */
|
|
|
|
Corner halftile_corner = GetHalftileFoundationCorner(f);
|
|
|
|
int x_bb = (((halftile_corner == CORNER_W) || (halftile_corner == CORNER_S)) ? 8 : 0);
|
|
|
|
int y_bb = (((halftile_corner == CORNER_S) || (halftile_corner == CORNER_E)) ? 8 : 0);
|
|
|
|
|
|
|
|
AddSortableSpriteToDraw(halftile_base + halftile_corner, PAL_NONE, ti->x + x_bb, ti->y + y_bb, 8, 8, 7, ti->z);
|
|
|
|
OffsetGroundSprite(31, 9);
|
|
|
|
} else if (IsSpecialRailFoundation(f)) {
|
|
|
|
/* anti-zig-zag foundation */
|
|
|
|
SpriteID spr;
|
|
|
|
if (ti->tileh == SLOPE_NS || ti->tileh == SLOPE_EW) {
|
|
|
|
/* half of leveled foundation under track corner */
|
|
|
|
spr = leveled_base + SlopeWithThreeCornersRaised(GetRailFoundationCorner(f));
|
|
|
|
} else {
|
|
|
|
/* tile-slope = sloped along X/Y, foundation-slope = three corners raised */
|
|
|
|
spr = inclined_base + 2 * GetRailFoundationCorner(f) + ((ti->tileh == SLOPE_SW || ti->tileh == SLOPE_NE) ? 1 : 0);
|
|
|
|
}
|
|
|
|
AddSortableSpriteToDraw(spr, PAL_NONE, ti->x, ti->y, 16, 16, 7, ti->z);
|
|
|
|
OffsetGroundSprite(31, 9);
|
2006-08-12 12:56:45 +00:00
|
|
|
} else {
|
2007-03-03 04:04:22 +00:00
|
|
|
/* inclined foundation */
|
2007-07-26 16:51:10 +00:00
|
|
|
byte inclined = GetHighestSlopeCorner(ti->tileh) * 2 + (f == FOUNDATION_INCLINED_Y ? 1 : 0);
|
|
|
|
|
2008-10-25 18:58:24 +00:00
|
|
|
AddSortableSpriteToDraw(inclined_base + inclined, PAL_NONE, ti->x, ti->y,
|
|
|
|
f == FOUNDATION_INCLINED_X ? 16 : 1,
|
|
|
|
f == FOUNDATION_INCLINED_Y ? 16 : 1,
|
2008-11-02 11:23:44 +00:00
|
|
|
TILE_HEIGHT, ti->z
|
2008-10-25 18:58:24 +00:00
|
|
|
);
|
2006-08-12 12:56:45 +00:00
|
|
|
OffsetGroundSprite(31, 9);
|
2006-08-10 14:44:32 +00:00
|
|
|
}
|
2007-07-26 16:51:10 +00:00
|
|
|
ti->z += ApplyFoundationToSlope(f, &ti->tileh);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-27 18:15:27 +00:00
|
|
|
void DoClearSquare(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2009-07-01 14:51:05 +00:00
|
|
|
/* If the tile can have animation and we clear it, delete it from the animated tile list. */
|
|
|
|
if (_tile_type_procs[GetTileType(tile)]->animate_tile_proc != NULL) DeleteAnimatedTile(tile);
|
|
|
|
|
2006-04-04 21:35:13 +00:00
|
|
|
MakeClear(tile, CLEAR_GRASS, _generating_world ? 3 : 0);
|
2006-02-01 15:31:21 +00:00
|
|
|
MarkTileDirtyByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2008-02-20 17:49:50 +00:00
|
|
|
/** Returns information about trackdirs and signal states.
|
2008-02-18 16:11:31 +00:00
|
|
|
* If there is any trackbit at 'side', return all trackdirbits.
|
2008-02-20 17:49:50 +00:00
|
|
|
* For TRANSPORT_ROAD, return no trackbits if there is no roadbit (of given subtype) at given side.
|
2008-02-18 16:11:31 +00:00
|
|
|
* @param tile tile to get info about
|
|
|
|
* @param mode transport type
|
|
|
|
* @param sub_mode for TRANSPORT_ROAD, roadtypes to check
|
|
|
|
* @param side side we are entering from, INVALID_DIAGDIR to return all trackbits
|
|
|
|
* @return trackdirbits and other info depending on 'mode'
|
|
|
|
*/
|
2008-02-20 17:49:50 +00:00
|
|
|
TrackStatus GetTileTrackStatus(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-02-18 16:11:31 +00:00
|
|
|
return _tile_type_procs[GetTileType(tile)]->get_tile_track_status_proc(tile, mode, sub_mode, side);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2008-10-13 03:26:48 +00:00
|
|
|
/**
|
|
|
|
* Change the owner of a tile
|
|
|
|
* @param tile Tile to change
|
|
|
|
* @param old_owner Current owner of the tile
|
|
|
|
* @param new_owner New owner of the tile
|
|
|
|
*/
|
2008-09-30 20:39:50 +00:00
|
|
|
void ChangeTileOwner(TileIndex tile, Owner old_owner, Owner new_owner)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-09-30 20:39:50 +00:00
|
|
|
_tile_type_procs[GetTileType(tile)]->change_tile_owner_proc(tile, old_owner, new_owner);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-03-27 18:15:27 +00:00
|
|
|
void GetTileDesc(TileIndex tile, TileDesc *td)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-01-29 15:12:40 +00:00
|
|
|
_tile_type_procs[GetTileType(tile)]->get_tile_desc_proc(tile, td);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-03-20 13:47:00 +00:00
|
|
|
/**
|
|
|
|
* Has a snow line table already been loaded.
|
|
|
|
* @return true if the table has been loaded already.
|
2008-10-19 15:39:12 +00:00
|
|
|
* @ingroup SnowLineGroup
|
2007-03-20 13:47:00 +00:00
|
|
|
*/
|
2009-05-21 22:43:25 +00:00
|
|
|
bool IsSnowLineSet()
|
2007-03-20 13:47:00 +00:00
|
|
|
{
|
|
|
|
return _snow_line != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a variable snow line, as loaded from a newgrf file.
|
|
|
|
* @param table the 12 * 32 byte table containing the snowline for each day
|
2008-10-19 15:39:12 +00:00
|
|
|
* @ingroup SnowLineGroup
|
2007-03-20 13:47:00 +00:00
|
|
|
*/
|
|
|
|
void SetSnowLine(byte table[SNOW_LINE_MONTHS][SNOW_LINE_DAYS])
|
|
|
|
{
|
|
|
|
_snow_line = CallocT<SnowLine>(1);
|
2009-02-23 20:03:38 +00:00
|
|
|
_snow_line->lowest_value = 0xFF;
|
2007-03-20 13:47:00 +00:00
|
|
|
memcpy(_snow_line->table, table, sizeof(_snow_line->table));
|
|
|
|
|
|
|
|
for (uint i = 0; i < SNOW_LINE_MONTHS; i++) {
|
|
|
|
for (uint j = 0; j < SNOW_LINE_DAYS; j++) {
|
|
|
|
_snow_line->highest_value = max(_snow_line->highest_value, table[i][j]);
|
2009-02-23 20:03:38 +00:00
|
|
|
_snow_line->lowest_value = min(_snow_line->lowest_value, table[i][j]);
|
2007-03-20 13:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current snow line, either variable or static.
|
|
|
|
* @return the snow line height.
|
2008-10-19 15:39:12 +00:00
|
|
|
* @ingroup SnowLineGroup
|
2007-03-20 13:47:00 +00:00
|
|
|
*/
|
2009-05-21 22:43:25 +00:00
|
|
|
byte GetSnowLine()
|
2007-03-20 13:47:00 +00:00
|
|
|
{
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_snow_line == NULL) return _settings_game.game_creation.snow_line;
|
2007-03-20 13:47:00 +00:00
|
|
|
|
|
|
|
YearMonthDay ymd;
|
|
|
|
ConvertDateToYMD(_date, &ymd);
|
|
|
|
return _snow_line->table[ymd.month][ymd.day];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the highest possible snow line height, either variable or static.
|
|
|
|
* @return the highest snow line height.
|
2008-10-19 15:39:12 +00:00
|
|
|
* @ingroup SnowLineGroup
|
2007-03-20 13:47:00 +00:00
|
|
|
*/
|
2009-05-21 22:43:25 +00:00
|
|
|
byte HighestSnowLine()
|
2007-03-20 13:47:00 +00:00
|
|
|
{
|
2008-05-29 15:13:28 +00:00
|
|
|
return _snow_line == NULL ? _settings_game.game_creation.snow_line : _snow_line->highest_value;
|
2007-03-20 13:47:00 +00:00
|
|
|
}
|
|
|
|
|
2009-02-23 20:03:38 +00:00
|
|
|
/**
|
|
|
|
* Get the lowest possible snow line height, either variable or static.
|
|
|
|
* @return the lowest snow line height.
|
|
|
|
* @ingroup SnowLineGroup
|
|
|
|
*/
|
2009-05-21 22:43:25 +00:00
|
|
|
byte LowestSnowLine()
|
2009-02-23 20:03:38 +00:00
|
|
|
{
|
|
|
|
return _snow_line == NULL ? _settings_game.game_creation.snow_line : _snow_line->lowest_value;
|
|
|
|
}
|
|
|
|
|
2007-03-20 13:47:00 +00:00
|
|
|
/**
|
|
|
|
* Clear the variable snow line table and free the memory.
|
2008-10-19 15:39:12 +00:00
|
|
|
* @ingroup SnowLineGroup
|
2007-03-20 13:47:00 +00:00
|
|
|
*/
|
2009-05-21 22:43:25 +00:00
|
|
|
void ClearSnowLine()
|
2007-03-20 13:47:00 +00:00
|
|
|
{
|
|
|
|
free(_snow_line);
|
|
|
|
_snow_line = NULL;
|
|
|
|
}
|
|
|
|
|
2005-05-07 10:26:12 +00:00
|
|
|
/** Clear a piece of landscape
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param tile tile to clear
|
2007-03-03 04:04:22 +00:00
|
|
|
* @param flags of operation to conduct
|
2005-05-07 10:26:12 +00:00
|
|
|
* @param p1 unused
|
|
|
|
* @param p2 unused
|
2009-09-18 14:23:58 +00:00
|
|
|
* @param text unused
|
|
|
|
* @return the cost of this operation or an error
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdLandscapeClear(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-01-29 15:12:40 +00:00
|
|
|
return _tile_type_procs[GetTileType(tile)]->clear_tile_proc(tile, flags);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-05-12 00:11:37 +00:00
|
|
|
/** Clear a big piece of landscape
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param tile end tile of area dragging
|
2005-05-12 00:11:37 +00:00
|
|
|
* @param p1 start tile of area dragging
|
2007-03-03 04:04:22 +00:00
|
|
|
* @param flags of operation to conduct
|
2005-05-12 00:11:37 +00:00
|
|
|
* @param p2 unused
|
2009-09-18 14:23:58 +00:00
|
|
|
* @param text unused
|
|
|
|
* @return the cost of this operation or an error
|
2005-05-12 00:11:37 +00:00
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdClearArea(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-01-30 17:18:45 +00:00
|
|
|
if (p1 >= MapSize()) return CMD_ERROR;
|
2005-05-12 00:11:37 +00:00
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* make sure sx,sy are smaller than ex,ey */
|
2008-04-04 16:32:27 +00:00
|
|
|
int ex = TileX(tile);
|
|
|
|
int ey = TileY(tile);
|
|
|
|
int sx = TileX(p1);
|
|
|
|
int sy = TileY(p1);
|
2007-02-22 08:43:02 +00:00
|
|
|
if (ex < sx) Swap(ex, sx);
|
|
|
|
if (ey < sy) Swap(ey, sy);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
Money money = GetAvailableMoneyForCommand();
|
|
|
|
CommandCost cost(EXPENSES_CONSTRUCTION);
|
2010-03-20 17:19:16 +00:00
|
|
|
CommandCost last_error = CMD_ERROR;
|
|
|
|
bool had_success = false;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (int x = sx; x <= ex; ++x) {
|
|
|
|
for (int y = sy; y <= ey; ++y) {
|
|
|
|
CommandCost ret = DoCommand(TileXY(x, y), 0, 0, flags & ~DC_EXEC, CMD_LANDSCAPE_CLEAR);
|
2010-03-20 17:19:16 +00:00
|
|
|
if (ret.Failed()) {
|
|
|
|
last_error = ret;
|
|
|
|
continue;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2010-03-20 17:19:16 +00:00
|
|
|
had_success = true;
|
2004-08-09 17:04:08 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-04-04 16:32:27 +00:00
|
|
|
money -= ret.GetCost();
|
|
|
|
if (ret.GetCost() > 0 && money < 0) {
|
2007-06-18 19:53:50 +00:00
|
|
|
_additional_cash_required = ret.GetCost();
|
|
|
|
return cost;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-04-10 12:36:04 +00:00
|
|
|
DoCommand(TileXY(x, y), 0, 0, flags, CMD_LANDSCAPE_CLEAR);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* draw explosion animation... */
|
2005-05-12 00:11:37 +00:00
|
|
|
if ((x == sx || x == ex) && (y == sy || y == ey)) {
|
2007-03-03 04:04:22 +00:00
|
|
|
/* big explosion in each corner, or small explosion for single tiles */
|
2006-04-23 19:35:36 +00:00
|
|
|
CreateEffectVehicleAbove(x * TILE_SIZE + TILE_SIZE / 2, y * TILE_SIZE + TILE_SIZE / 2, 2,
|
2005-02-12 15:53:32 +00:00
|
|
|
sy == ey && sx == ex ? EV_EXPLOSION_SMALL : EV_EXPLOSION_LARGE
|
|
|
|
);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(ret);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-20 17:19:16 +00:00
|
|
|
return had_success ? cost : last_error;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-18 10:16:51 +00:00
|
|
|
TileIndex _cur_tileloop_tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
#define TILELOOP_BITS 4
|
|
|
|
#define TILELOOP_SIZE (1 << TILELOOP_BITS)
|
2007-04-18 22:10:36 +00:00
|
|
|
#define TILELOOP_ASSERTMASK ((TILELOOP_SIZE - 1) + ((TILELOOP_SIZE - 1) << MapLogX()))
|
2005-01-07 17:40:23 +00:00
|
|
|
#define TILELOOP_CHKMASK (((1 << (MapLogX() - TILELOOP_BITS))-1) << TILELOOP_BITS)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void RunTileLoop()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-04-04 16:32:27 +00:00
|
|
|
TileIndex tile = _cur_tileloop_tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
assert((tile & ~TILELOOP_ASSERTMASK) == 0);
|
|
|
|
uint count = (MapSizeX() / TILELOOP_SIZE) * (MapSizeY() / TILELOOP_SIZE);
|
2004-08-09 17:04:08 +00:00
|
|
|
do {
|
2005-01-29 15:12:40 +00:00
|
|
|
_tile_type_procs[GetTileType(tile)]->tile_loop_proc(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-07 17:02:43 +00:00
|
|
|
if (TileX(tile) < MapSizeX() - TILELOOP_SIZE) {
|
2007-03-03 04:04:22 +00:00
|
|
|
tile += TILELOOP_SIZE; // no overflow
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2009-03-15 00:32:18 +00:00
|
|
|
tile = TILE_MASK(tile - TILELOOP_SIZE * (MapSizeX() / TILELOOP_SIZE - 1) + TileDiffXY(0, TILELOOP_SIZE)); // x would overflow, also increase y
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2008-04-04 16:32:27 +00:00
|
|
|
} while (--count != 0);
|
|
|
|
assert((tile & ~TILELOOP_ASSERTMASK) == 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
tile += 9;
|
2008-04-04 16:32:27 +00:00
|
|
|
if (tile & TILELOOP_CHKMASK) {
|
2005-01-03 18:59:58 +00:00
|
|
|
tile = (tile + MapSizeX()) & TILELOOP_ASSERTMASK;
|
2008-04-04 16:32:27 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
_cur_tileloop_tile = tile;
|
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void InitializeLandscape()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-02-24 20:35:37 +00:00
|
|
|
uint maxx = MapMaxX();
|
|
|
|
uint maxy = MapMaxY();
|
|
|
|
uint sizex = MapSizeX();
|
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
uint y;
|
2009-01-21 02:31:55 +00:00
|
|
|
for (y = _settings_game.construction.freeform_edges ? 1 : 0; y < maxy; y++) {
|
2008-04-04 16:32:27 +00:00
|
|
|
uint x;
|
2009-01-21 02:31:55 +00:00
|
|
|
for (x = _settings_game.construction.freeform_edges ? 1 : 0; x < maxx; x++) {
|
2006-04-04 21:35:13 +00:00
|
|
|
MakeClear(sizex * y + x, CLEAR_GRASS, 3);
|
2006-02-24 20:35:37 +00:00
|
|
|
SetTileHeight(sizex * y + x, 0);
|
2008-01-30 17:22:06 +00:00
|
|
|
SetTropicZone(sizex * y + x, TROPICZONE_NORMAL);
|
2006-12-27 12:38:02 +00:00
|
|
|
ClearBridgeMiddle(sizex * y + x);
|
2006-02-24 20:35:37 +00:00
|
|
|
}
|
|
|
|
MakeVoid(sizex * y + x);
|
2005-07-13 18:04:01 +00:00
|
|
|
}
|
2008-04-04 16:32:27 +00:00
|
|
|
for (uint x = 0; x < sizex; x++) MakeVoid(sizex * y + x);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
static const byte _genterrain_tbl_1[5] = { 10, 22, 33, 37, 4 };
|
|
|
|
static const byte _genterrain_tbl_2[5] = { 0, 0, 0, 0, 33 };
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
static void GenerateTerrain(int type, uint flag)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-04-04 16:32:27 +00:00
|
|
|
uint32 r = Random();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-09-02 15:20:38 +00:00
|
|
|
const Sprite *templ = GetSprite((((r >> 24) * _genterrain_tbl_1[type]) >> 8) + _genterrain_tbl_2[type] + 4845, ST_MAPGEN);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
uint x = r & MapMaxX();
|
|
|
|
uint y = (r >> MapLogX()) & MapMaxY();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-02-01 06:32:03 +00:00
|
|
|
if (x < 2 || y < 2) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
DiagDirection direction = (DiagDirection)GB(r, 22, 2);
|
|
|
|
uint w = templ->width;
|
|
|
|
uint h = templ->height;
|
|
|
|
|
|
|
|
if (DiagDirToAxis(direction) == AXIS_Y) Swap(w, h);
|
|
|
|
|
|
|
|
const byte *p = templ->data;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
if ((flag & 4) != 0) {
|
2005-02-03 18:20:43 +00:00
|
|
|
uint xw = x * MapSizeY();
|
|
|
|
uint yw = y * MapSizeX();
|
|
|
|
uint bias = (MapSizeX() + MapSizeY()) * 16;
|
|
|
|
|
|
|
|
switch (flag & 3) {
|
2008-04-04 16:32:27 +00:00
|
|
|
default: NOT_REACHED();
|
2005-02-03 18:20:43 +00:00
|
|
|
case 0:
|
|
|
|
if (xw + yw > MapSize() - bias) return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
if (yw < xw + bias) return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
if (xw + yw < MapSize() + bias) return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
if (xw < yw + bias) return;
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-01 06:32:03 +00:00
|
|
|
if (x + w >= MapMaxX() - 1) return;
|
|
|
|
if (y + h >= MapMaxY() - 1) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
Tile *tile = &_m[TileXY(x, y)];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-02-03 20:52:12 +00:00
|
|
|
switch (direction) {
|
2008-04-04 16:32:27 +00:00
|
|
|
default: NOT_REACHED();
|
|
|
|
case DIAGDIR_NE:
|
2004-08-09 17:04:08 +00:00
|
|
|
do {
|
2008-04-04 16:32:27 +00:00
|
|
|
Tile *tile_cur = tile;
|
2005-02-03 20:52:12 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (uint w_cur = w; w_cur != 0; --w_cur) {
|
2009-03-12 14:21:18 +00:00
|
|
|
if (GB(*p, 0, 4) >= tile_cur->type_height) tile_cur->type_height = GB(*p, 0, 4);
|
2005-02-03 20:52:12 +00:00
|
|
|
p++;
|
|
|
|
tile_cur++;
|
|
|
|
}
|
2005-06-25 16:44:57 +00:00
|
|
|
tile += TileDiffXY(0, 1);
|
2005-02-03 20:52:12 +00:00
|
|
|
} while (--h != 0);
|
|
|
|
break;
|
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
case DIAGDIR_SE:
|
2004-08-09 17:04:08 +00:00
|
|
|
do {
|
2008-04-04 16:32:27 +00:00
|
|
|
Tile *tile_cur = tile;
|
2005-02-03 20:52:12 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (uint h_cur = h; h_cur != 0; --h_cur) {
|
2009-03-12 14:21:18 +00:00
|
|
|
if (GB(*p, 0, 4) >= tile_cur->type_height) tile_cur->type_height = GB(*p, 0, 4);
|
2005-02-03 20:52:12 +00:00
|
|
|
p++;
|
2005-06-25 16:44:57 +00:00
|
|
|
tile_cur += TileDiffXY(0, 1);
|
2005-02-03 20:52:12 +00:00
|
|
|
}
|
2008-04-04 16:32:27 +00:00
|
|
|
tile += TileDiffXY(1, 0);
|
2005-02-03 20:52:12 +00:00
|
|
|
} while (--w != 0);
|
|
|
|
break;
|
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
case DIAGDIR_SW:
|
2005-06-25 16:44:57 +00:00
|
|
|
tile += TileDiffXY(w - 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
do {
|
2008-04-04 16:32:27 +00:00
|
|
|
Tile *tile_cur = tile;
|
2005-02-03 20:52:12 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (uint w_cur = w; w_cur != 0; --w_cur) {
|
2009-03-12 14:21:18 +00:00
|
|
|
if (GB(*p, 0, 4) >= tile_cur->type_height) tile_cur->type_height = GB(*p, 0, 4);
|
2005-02-03 20:52:12 +00:00
|
|
|
p++;
|
|
|
|
tile_cur--;
|
|
|
|
}
|
2005-06-25 16:44:57 +00:00
|
|
|
tile += TileDiffXY(0, 1);
|
2005-02-03 20:52:12 +00:00
|
|
|
} while (--h != 0);
|
|
|
|
break;
|
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
case DIAGDIR_NW:
|
2005-06-25 16:44:57 +00:00
|
|
|
tile += TileDiffXY(0, h - 1);
|
2004-08-09 17:04:08 +00:00
|
|
|
do {
|
2008-04-04 16:32:27 +00:00
|
|
|
Tile *tile_cur = tile;
|
2005-02-03 20:52:12 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (uint h_cur = h; h_cur != 0; --h_cur) {
|
2009-03-12 14:21:18 +00:00
|
|
|
if (GB(*p, 0, 4) >= tile_cur->type_height) tile_cur->type_height = GB(*p, 0, 4);
|
2005-02-03 20:52:12 +00:00
|
|
|
p++;
|
2005-06-25 16:44:57 +00:00
|
|
|
tile_cur -= TileDiffXY(0, 1);
|
2005-02-04 07:52:12 +00:00
|
|
|
}
|
2008-04-04 16:32:27 +00:00
|
|
|
tile += TileDiffXY(1, 0);
|
2005-02-03 20:52:12 +00:00
|
|
|
} while (--w != 0);
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#include "table/genland.h"
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
static void CreateDesertOrRainForest()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
TileIndex update_freq = MapSize() / 4;
|
2005-01-06 11:39:00 +00:00
|
|
|
const TileIndexDiffC *data;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (TileIndex tile = 0; tile != MapSize(); ++tile) {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
if ((tile % update_freq) == 0) IncreaseGeneratingWorldProgress(GWP_LANDSCAPE);
|
|
|
|
|
2005-01-06 11:39:00 +00:00
|
|
|
for (data = _make_desert_or_rainforest_data;
|
|
|
|
data != endof(_make_desert_or_rainforest_data); ++data) {
|
2009-02-25 21:29:50 +00:00
|
|
|
TileIndex t = AddTileIndexDiffCWrap(tile, *data);
|
|
|
|
if (t != INVALID_TILE && (TileHeight(t) >= 4 || IsTileType(t, MP_WATER))) break;
|
2005-01-06 11:39:00 +00:00
|
|
|
}
|
|
|
|
if (data == endof(_make_desert_or_rainforest_data))
|
2006-03-30 19:16:44 +00:00
|
|
|
SetTropicZone(tile, TROPICZONE_DESERT);
|
2005-01-06 11:39:00 +00:00
|
|
|
}
|
2004-09-08 17:44:29 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (uint i = 0; i != 256; i++) {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
if ((i % 64) == 0) IncreaseGeneratingWorldProgress(GWP_LANDSCAPE);
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
RunTileLoop();
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (TileIndex tile = 0; tile != MapSize(); ++tile) {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
if ((tile % update_freq) == 0) IncreaseGeneratingWorldProgress(GWP_LANDSCAPE);
|
|
|
|
|
2005-01-06 11:39:00 +00:00
|
|
|
for (data = _make_desert_or_rainforest_data;
|
|
|
|
data != endof(_make_desert_or_rainforest_data); ++data) {
|
2009-02-25 21:29:50 +00:00
|
|
|
TileIndex t = AddTileIndexDiffCWrap(tile, *data);
|
|
|
|
if (t != INVALID_TILE && IsTileType(t, MP_CLEAR) && IsClearGround(t, CLEAR_DESERT)) break;
|
2005-01-06 11:39:00 +00:00
|
|
|
}
|
|
|
|
if (data == endof(_make_desert_or_rainforest_data))
|
2006-03-30 19:16:44 +00:00
|
|
|
SetTropicZone(tile, TROPICZONE_RAINFOREST);
|
2005-01-06 11:39:00 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
void GenerateLandscape(byte mode)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2010-01-17 21:40:35 +00:00
|
|
|
/** Number of steps of landscape generation */
|
|
|
|
enum GenLandscapeSteps {
|
|
|
|
GLS_HEIGHTMAP = 3, ///< Loading a heightmap
|
|
|
|
GLS_TERRAGENESIS = 5, ///< Terragenesis generator
|
|
|
|
GLS_ORIGINAL = 2, ///< Original generator
|
|
|
|
GLS_TROPIC = 12, ///< Extra steps needed for tropic landscape
|
|
|
|
GLS_OTHER = 0, ///< Extra steps for other landscapes
|
|
|
|
};
|
|
|
|
uint steps = (_settings_game.game_creation.landscape == LT_TROPIC) ? GLS_TROPIC : GLS_OTHER;
|
2004-09-08 17:44:29 +00:00
|
|
|
|
2010-01-17 22:59:24 +00:00
|
|
|
if (mode == GWM_HEIGHTMAP) {
|
2010-01-17 21:40:35 +00:00
|
|
|
SetGeneratingWorldProgress(GWP_LANDSCAPE, steps + GLS_HEIGHTMAP);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
LoadHeightmap(_file_to_saveload.name);
|
|
|
|
IncreaseGeneratingWorldProgress(GWP_LANDSCAPE);
|
2008-05-29 15:13:28 +00:00
|
|
|
} else if (_settings_game.game_creation.land_generator == LG_TERRAGENESIS) {
|
2010-01-17 21:40:35 +00:00
|
|
|
SetGeneratingWorldProgress(GWP_LANDSCAPE, steps + GLS_TERRAGENESIS);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
GenerateTerrainPerlin();
|
|
|
|
} else {
|
2010-01-17 21:40:35 +00:00
|
|
|
SetGeneratingWorldProgress(GWP_LANDSCAPE, steps + GLS_ORIGINAL);
|
2009-02-17 20:33:13 +00:00
|
|
|
if (_settings_game.construction.freeform_edges) {
|
|
|
|
for (uint x = 0; x < MapSizeX(); x++) MakeVoid(TileXY(x, 0));
|
|
|
|
for (uint y = 0; y < MapSizeY(); y++) MakeVoid(TileXY(0, y));
|
|
|
|
}
|
2008-05-29 15:13:28 +00:00
|
|
|
switch (_settings_game.game_creation.landscape) {
|
2008-04-04 16:32:27 +00:00
|
|
|
case LT_ARCTIC: {
|
|
|
|
uint32 r = Random();
|
|
|
|
|
|
|
|
for (uint i = ScaleByMapSize(GB(r, 0, 7) + 950); i != 0; --i) {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
GenerateTerrain(2, 0);
|
|
|
|
}
|
2006-02-13 21:15:00 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
uint flag = GB(r, 7, 2) | 4;
|
|
|
|
for (uint i = ScaleByMapSize(GB(r, 9, 7) + 450); i != 0; --i) {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
GenerateTerrain(4, flag);
|
|
|
|
}
|
2008-04-04 16:32:27 +00:00
|
|
|
} break;
|
2004-09-08 17:44:29 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
case LT_TROPIC: {
|
|
|
|
uint32 r = Random();
|
|
|
|
|
|
|
|
for (uint i = ScaleByMapSize(GB(r, 0, 7) + 170); i != 0; --i) {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
GenerateTerrain(0, 0);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
uint flag = GB(r, 7, 2) | 4;
|
|
|
|
for (uint i = ScaleByMapSize(GB(r, 9, 8) + 1700); i != 0; --i) {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
GenerateTerrain(0, flag);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
flag ^= 2;
|
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
for (uint i = ScaleByMapSize(GB(r, 17, 7) + 410); i != 0; --i) {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
GenerateTerrain(3, flag);
|
|
|
|
}
|
2008-04-04 16:32:27 +00:00
|
|
|
} break;
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
|
2008-04-04 16:32:27 +00:00
|
|
|
default: {
|
|
|
|
uint32 r = Random();
|
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
uint i = ScaleByMapSize(GB(r, 0, 7) + (3 - _settings_game.difficulty.quantity_sea_lakes) * 256 + 100);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
for (; i != 0; --i) {
|
2008-05-29 15:13:28 +00:00
|
|
|
GenerateTerrain(_settings_game.difficulty.terrain_type, 0);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
}
|
2008-04-04 16:32:27 +00:00
|
|
|
} break;
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2010-01-17 20:28:08 +00:00
|
|
|
/* Do not call IncreaseGeneratingWorldProgress() before FixSlopes(),
|
|
|
|
* it allows screen redraw. Drawing of broken slopes crashes the game */
|
2009-03-30 08:59:26 +00:00
|
|
|
FixSlopes();
|
2010-01-17 20:28:08 +00:00
|
|
|
IncreaseGeneratingWorldProgress(GWP_LANDSCAPE);
|
2004-08-09 17:04:08 +00:00
|
|
|
ConvertGroundTilesIntoWaterTiles();
|
2010-01-17 20:28:08 +00:00
|
|
|
IncreaseGeneratingWorldProgress(GWP_LANDSCAPE);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_settings_game.game_creation.landscape == LT_TROPIC) CreateDesertOrRainForest();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void OnTick_Town();
|
|
|
|
void OnTick_Trees();
|
|
|
|
void OnTick_Station();
|
|
|
|
void OnTick_Industry();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
void OnTick_Companies();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void CallLandscapeTick()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
OnTick_Town();
|
|
|
|
OnTick_Trees();
|
|
|
|
OnTick_Station();
|
|
|
|
OnTick_Industry();
|
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
OnTick_Companies();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|