| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 
 | /**
 * @file
 * @brief grid pathfinding and routing
 */
/*
All original material Copyright (C) 2002-2013 UFO: Alien Invasion.
Copyright (C) 1997-2001 Id Software, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/
#pragma once
/*==============================================================
GLOBAL TYPES
==============================================================*/
#if defined(COMPILE_MAP)
  #define RT_COMPLETEBOXTRACE_SIZE(mapTiles,b,list)			TR_SingleTileBoxTrace((mapTiles), Line(),(b),TRACING_ALL_VISIBLE_LEVELS, MASK_ALL, 0)
  #define RT_COMPLETEBOXTRACE_PASSAGE(mapTiles,line,b,list)	TR_SingleTileBoxTrace((mapTiles), (line),(b),TRACING_ALL_VISIBLE_LEVELS, MASK_IMPASSABLE, MASK_PASSABLE)
#elif defined(COMPILE_UFO)
  #define RT_COMPLETEBOXTRACE_SIZE(mapTiles,b,list)			CM_EntCompleteBoxTrace((mapTiles), Line(),(b),TRACING_ALL_VISIBLE_LEVELS, MASK_ALL, 0, (list))
  #define RT_COMPLETEBOXTRACE_PASSAGE(mapTiles,line,b,list)	CM_EntCompleteBoxTrace((mapTiles), (line),(b),TRACING_ALL_VISIBLE_LEVELS, MASK_IMPASSABLE, MASK_PASSABLE, (list))
#else
  #error Either COMPILE_MAP or COMPILE_UFO must be defined in order for tracing.c to work.
#endif
/* Decide whether we are doing uni- or bidirectional conclusions from our traces.
 * This constant is used in both a boolean and an integer way,
 * so it must only be set to 0 or 1 ! */
#define RT_IS_BIDIRECTIONAL 0
/*==============================================================
MACROS
==============================================================*/
/**
 * @brief Some macros to access routing table values as described above.
 * @note P/N = positive/negative; X/Y =direction
 */
/* route - Used by Grid_* only  */
/** @note IMPORTANT: actorSize is 1 or greater!!! */
#define RT_CONN_PX(r, actorSize, x, y, z)		(r.getConn(actorSize, x, y, z, 0))
#define RT_CONN_NX(r, actorSize, x, y, z)		(r.getConn(actorSize, x, y, z, 1))
#define RT_CONN_PY(r, actorSize, x, y, z)		(r.getConn(actorSize, x, y, z, 2))
#define RT_CONN_NY(r, actorSize, x, y, z)		(r.getConn(actorSize, x, y, z, 3))
#define RT_CONN_PX_PY(r, actorSize, x, y, z)	(r.getConn(actorSize, x, y, z, 4))
#define RT_CONN_PX_NY(r, actorSize, x, y, z)	(r.getConn(actorSize, x, y, z, 7))
#define RT_CONN_NX_PY(r, actorSize, x, y, z)	(r.getConn(actorSize, x, y, z, 6))
#define RT_CONN_NX_NY(r, actorSize, x, y, z)	(r.getConn(actorSize, x, y, z, 5))
#define RT_STEPUP_PX(r, actorSize, x, y, z)		(r.getStepup(actorSize, x, y, z, 0))
#define RT_STEPUP_NX(r, actorSize, x, y, z)		(r.getStepup(actorSize, x, y, z, 1))
#define RT_STEPUP_PY(r, actorSize, x, y, z)		(r.getStepup(actorSize, x, y, z, 2))
#define RT_STEPUP_NY(r, actorSize, x, y, z)		(r.getStepup(actorSize, x, y, z, 3))
#define RT_STEPUP_PX_PY(r, actorSize, x, y, z)	(r.getStepup(actorSize, x, y, z, 4))
#define RT_STEPUP_PX_NY(r, actorSize, x, y, z)	(r.getStepup(actorSize, x, y, z, 7))
#define RT_STEPUP_NX_PY(r, actorSize, x, y, z)	(r.getStepup(actorSize, x, y, z, 6))
#define RT_STEPUP_NX_NY(r, actorSize, x, y, z)	(r.getStepup(actorSize, x, y, z, 5))
/** @brief  These macros are meant to correctly convert from model units to QUANT units and back. */
/* Surfaces used as floors are rounded up. */
#define ModelFloorToQuant(x)	(ceil((x) / QUANT))
/* Surfaces used as ceilings are rounded down. */
#define ModelCeilingToQuant(x)	(floor((x) / QUANT))
/* Going from QUANT units back to model units returns the approximation of the QUANT unit. */
#define QuantToModel(x)			((x) * QUANT)
/**
 * @brief SizedPosToVect locates the center of an actor based on size and position.
 */
#define SizedPosToVec(p, actorSize, v) { \
	assert(actorSize > ACTOR_SIZE_INVALID); \
	assert(actorSize <= ACTOR_MAX_SIZE); \
	v[0] = ((int)p[0] - 128) * UNIT_SIZE   + (UNIT_SIZE * actorSize)  / 2; \
	v[1] = ((int)p[1] - 128) * UNIT_SIZE   + (UNIT_SIZE * actorSize)  / 2; \
	v[2] =  (int)p[2]        * UNIT_HEIGHT + UNIT_HEIGHT / 2;  \
}
/*
===============================================================================
SHARED EXTERNS (cmodel.c and ufo2map/routing.c)
===============================================================================
*/
extern bool debugTrace;
/*
===============================================================================
GAME RELATED TRACING
===============================================================================
*/
int RT_CheckCell(mapTiles_t* mapTiles, Routing &routing, const int actorSize, const int x, const int y, const int z, const char** list);
void RT_UpdateConnectionColumn(mapTiles_t* mapTiles, Routing &routing, const int actorSize, const int x, const int y, const int dir, const char** list);
bool RT_AllCellsBelowAreFilled(const Routing &routing, const int actorSize, const pos3_t pos);
void RT_GetMapSize(mapTiles_t* mapTiles, vec3_t map_min, vec3_t map_max);
bool RT_CanActorStandHere(const Routing &routing, const int actorSize, const pos3_t pos);
/*
==========================================================
DEBUGGING CODE
==========================================================
*/
#ifdef DEBUG
void RT_DumpWholeMap(mapTiles_t* mapTiles, const Routing &routing);
int RT_DebugSpecial(mapTiles_t* mapTiles, Routing &routing, const int actorSize, const int x, const int y, const int dir, const char** list);
void RT_DebugPathDisplay (Routing &routing, const int actorSize, int x, int y, int z);
#endif
void RT_WriteCSVFiles(const Routing &routing, const char* baseFilename, const ipos3_t mins, const ipos3_t maxs);
 |