2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-12-15 22:18:54 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "debug.h"
|
2005-01-29 19:45:14 +00:00
|
|
|
#include "functions.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "macros.h"
|
2004-12-15 22:18:54 +00:00
|
|
|
#include "map.h"
|
|
|
|
|
2005-10-02 22:39:56 +00:00
|
|
|
#if defined(_MSC_VER) && _MSC_VER >= 1400 /* VStudio 2005 is stupid! */
|
|
|
|
/* Why the hell is that not in all MSVC headers?? */
|
|
|
|
_CRTIMP void __cdecl _assert(void *, void *, unsigned);
|
|
|
|
#endif
|
|
|
|
|
2005-01-29 19:45:14 +00:00
|
|
|
uint _map_log_x;
|
2005-07-13 19:51:31 +00:00
|
|
|
uint _map_size_x;
|
|
|
|
uint _map_size_y;
|
|
|
|
uint _map_tile_mask;
|
|
|
|
uint _map_size;
|
2005-01-07 17:40:23 +00:00
|
|
|
|
2005-07-13 18:04:01 +00:00
|
|
|
Tile* _m = NULL;
|
2004-12-16 12:30:13 +00:00
|
|
|
|
2005-01-03 18:59:58 +00:00
|
|
|
|
2005-07-13 19:51:31 +00:00
|
|
|
void AllocateMap(uint size_x, uint size_y)
|
2005-01-29 19:45:14 +00:00
|
|
|
{
|
2005-07-13 19:51:31 +00:00
|
|
|
// Make sure that the map size is within the limits and that
|
|
|
|
// the x axis size is a power of 2.
|
|
|
|
if (size_x < 64 || size_x > 2048 ||
|
|
|
|
size_y < 64 || size_y > 2048 ||
|
|
|
|
(size_x&(size_x-1)) != 0 ||
|
|
|
|
(size_y&(size_y-1)) != 0)
|
2005-01-31 06:46:53 +00:00
|
|
|
error("Invalid map size");
|
2005-01-29 19:45:14 +00:00
|
|
|
|
2005-07-13 19:51:31 +00:00
|
|
|
DEBUG(map, 1)("Allocating map of size %dx%d", size_x, size_y);
|
2005-01-29 19:45:14 +00:00
|
|
|
|
2005-07-13 19:51:31 +00:00
|
|
|
_map_log_x = FindFirstBit(size_x);
|
|
|
|
_map_size_x = size_x;
|
|
|
|
_map_size_y = size_y;
|
|
|
|
_map_size = size_x * size_y;
|
|
|
|
_map_tile_mask = _map_size - 1;
|
2005-01-29 19:45:14 +00:00
|
|
|
|
2005-07-13 18:04:01 +00:00
|
|
|
free(_m);
|
2005-07-13 19:51:31 +00:00
|
|
|
_m = malloc(_map_size * sizeof(*_m));
|
2005-01-29 19:45:14 +00:00
|
|
|
|
|
|
|
// XXX TODO handle memory shortage more gracefully
|
2005-07-13 18:04:01 +00:00
|
|
|
if (_m == NULL) error("Failed to allocate memory for the map");
|
2005-01-29 19:45:14 +00:00
|
|
|
}
|
2005-01-05 13:32:03 +00:00
|
|
|
|
2005-01-09 17:55:11 +00:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
TileIndex TileAdd(TileIndex tile, TileIndexDiff add,
|
|
|
|
const char *exp, const char *file, int line)
|
|
|
|
{
|
|
|
|
int dx;
|
|
|
|
int dy;
|
|
|
|
uint x;
|
|
|
|
uint y;
|
|
|
|
|
|
|
|
dx = add & MapMaxX();
|
2005-01-09 18:59:16 +00:00
|
|
|
if (dx >= (int)MapSizeX() / 2) dx -= MapSizeX();
|
2005-01-09 17:55:11 +00:00
|
|
|
dy = (add - dx) / (int)MapSizeX();
|
|
|
|
|
|
|
|
x = TileX(tile) + dx;
|
|
|
|
y = TileY(tile) + dy;
|
|
|
|
|
|
|
|
if (x >= MapSizeX() || y >= MapSizeY()) {
|
|
|
|
char buf[512];
|
|
|
|
|
|
|
|
sprintf(buf, "TILE_ADD(%s) when adding 0x%.4X and 0x%.4X failed",
|
|
|
|
exp, tile, add);
|
|
|
|
#if !defined(_MSC_VER)
|
|
|
|
fprintf(stderr, "%s:%d %s\n", file, line, buf);
|
|
|
|
#else
|
|
|
|
_assert(buf, (char*)file, line);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-06-25 16:44:57 +00:00
|
|
|
assert(TileXY(x,y) == TILE_MASK(tile + add));
|
2005-01-09 17:55:11 +00:00
|
|
|
|
2005-06-25 16:44:57 +00:00
|
|
|
return TileXY(x,y);
|
2005-01-09 17:55:11 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-01-28 15:31:04 +00:00
|
|
|
uint ScaleByMapSize(uint n)
|
|
|
|
{
|
2005-07-13 19:51:31 +00:00
|
|
|
// First shift by 12 to prevent integer overflow for large values of n.
|
|
|
|
// >>12 is safe since the min mapsize is 64x64
|
|
|
|
// Add (1<<4)-1 to round upwards.
|
|
|
|
return (n * (MapSize() >> 12) + (1<<4) - 1) >> 4;
|
2005-01-28 15:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-13 19:51:31 +00:00
|
|
|
// Scale relative to the circumference of the map
|
2005-01-28 15:31:04 +00:00
|
|
|
uint ScaleByMapSize1D(uint n)
|
|
|
|
{
|
2005-07-13 19:51:31 +00:00
|
|
|
// Normal circumference for the X+Y is 256+256 = 1<<9
|
|
|
|
// Note, not actually taking the full circumference into account,
|
|
|
|
// just half of it.
|
|
|
|
// (1<<9) - 1 is there to scale upwards.
|
|
|
|
return (n * (MapSizeX() + MapSizeY()) + (1<<9) - 1) >> 9;
|
2005-01-28 15:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-31 11:23:10 +00:00
|
|
|
// This function checks if we add addx/addy to tile, if we
|
|
|
|
// do wrap around the edges. For example, tile = (10,2) and
|
|
|
|
// addx = +3 and addy = -4. This function will now return
|
|
|
|
// INVALID_TILE, because the y is wrapped. This is needed in
|
|
|
|
// for example, farmland. When the tile is not wrapped,
|
2005-06-25 16:44:57 +00:00
|
|
|
// the result will be tile + TileDiffXY(addx, addy)
|
2005-01-31 11:23:10 +00:00
|
|
|
uint TileAddWrap(TileIndex tile, int addx, int addy)
|
|
|
|
{
|
2005-10-22 06:39:32 +00:00
|
|
|
uint x = TileX(tile) + addx;
|
|
|
|
uint y = TileY(tile) + addy;
|
2005-01-31 11:23:10 +00:00
|
|
|
|
|
|
|
// Are we about to wrap?
|
2005-06-25 16:44:57 +00:00
|
|
|
if (x < MapMaxX() && y < MapMaxY())
|
|
|
|
return tile + TileDiffXY(addx, addy);
|
2005-01-31 11:23:10 +00:00
|
|
|
|
|
|
|
return INVALID_TILE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TileIndexDiffC _tileoffs_by_dir[] = {
|
|
|
|
{-1, 0},
|
|
|
|
{ 0, 1},
|
|
|
|
{ 1, 0},
|
|
|
|
{ 0, -1}
|
|
|
|
};
|
|
|
|
|
2005-01-31 07:23:15 +00:00
|
|
|
uint DistanceManhattan(TileIndex t0, TileIndex t1)
|
|
|
|
{
|
2005-04-11 19:14:48 +00:00
|
|
|
const uint dx = abs(TileX(t0) - TileX(t1));
|
|
|
|
const uint dy = abs(TileY(t0) - TileY(t1));
|
|
|
|
return dx + dy;
|
2005-01-31 07:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint DistanceSquare(TileIndex t0, TileIndex t1)
|
|
|
|
{
|
2005-04-11 19:14:48 +00:00
|
|
|
const int dx = TileX(t0) - TileX(t1);
|
|
|
|
const int dy = TileY(t0) - TileY(t1);
|
|
|
|
return dx * dx + dy * dy;
|
2005-01-31 07:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint DistanceMax(TileIndex t0, TileIndex t1)
|
|
|
|
{
|
2005-04-11 19:14:48 +00:00
|
|
|
const uint dx = abs(TileX(t0) - TileX(t1));
|
|
|
|
const uint dy = abs(TileY(t0) - TileY(t1));
|
|
|
|
return dx > dy ? dx : dy;
|
2005-01-31 07:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint DistanceMaxPlusManhattan(TileIndex t0, TileIndex t1)
|
|
|
|
{
|
2005-04-11 19:14:48 +00:00
|
|
|
const uint dx = abs(TileX(t0) - TileX(t1));
|
|
|
|
const uint dy = abs(TileY(t0) - TileY(t1));
|
|
|
|
return dx > dy ? 2 * dx + dy : 2 * dy + dx;
|
2005-01-31 07:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint DistanceFromEdge(TileIndex tile)
|
|
|
|
{
|
|
|
|
const uint xl = TileX(tile);
|
|
|
|
const uint yl = TileY(tile);
|
|
|
|
const uint xh = MapSizeX() - 1 - xl;
|
|
|
|
const uint yh = MapSizeY() - 1 - yl;
|
|
|
|
const uint minl = xl < yl ? xl : yl;
|
|
|
|
const uint minh = xh < yh ? xh : yh;
|
|
|
|
return minl < minh ? minl : minh;
|
|
|
|
}
|