2008-05-07 13:10:15 +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-07 13:10:15 +00:00
|
|
|
/** @file tilehighlight_type.h Types related to highlighting tiles. */
|
|
|
|
|
|
|
|
#ifndef TILEHIGHLIGHT_TYPE_H
|
|
|
|
#define TILEHIGHLIGHT_TYPE_H
|
|
|
|
|
|
|
|
#include "core/geometry_type.hpp"
|
|
|
|
#include "window_type.h"
|
|
|
|
#include "tile_type.h"
|
2010-01-15 16:41:15 +00:00
|
|
|
#include "viewport_type.h"
|
2008-05-07 13:10:15 +00:00
|
|
|
|
|
|
|
/** Highlighting draw styles */
|
|
|
|
enum HighLightStyle {
|
2010-09-06 14:14:09 +00:00
|
|
|
HT_NONE = 0x000, ///< default
|
|
|
|
HT_RECT = 0x010, ///< rectangle (stations, depots, ...)
|
|
|
|
HT_POINT = 0x020, ///< point (lower land, raise land, level land, ...)
|
|
|
|
HT_SPECIAL = 0x030, ///< special mode used for highlighting while dragging (and for tunnels/docks)
|
|
|
|
HT_DRAG = 0x040, ///< dragging items in the depot windows
|
2011-05-14 18:35:40 +00:00
|
|
|
HT_LINE = 0x008, ///< used for autorail highlighting (longer stretches), lower bits: direction
|
2010-09-06 14:14:09 +00:00
|
|
|
HT_RAIL = 0x080, ///< autorail (one piece), lower bits: direction
|
|
|
|
HT_VEHICLE = 0x100, ///< vehicle is accepted as target as well (bitmask)
|
2010-12-24 14:56:21 +00:00
|
|
|
HT_DIAGONAL = 0x200, ///< Also allow 'diagonal rectangles'. Only usable in combination with #HT_RECT or #HT_POINT.
|
|
|
|
HT_DRAG_MASK = 0x0F8, ///< Mask for the tile drag-type modes.
|
2008-05-07 13:10:15 +00:00
|
|
|
|
|
|
|
/* lower bits (used with HT_LINE and HT_RAIL):
|
2010-12-24 13:14:11 +00:00
|
|
|
* (see ASCII art in table/autorail.h for a visual interpretation) */
|
2011-12-19 17:48:04 +00:00
|
|
|
HT_DIR_X = 0, ///< X direction
|
|
|
|
HT_DIR_Y = 1, ///< Y direction
|
|
|
|
HT_DIR_HU = 2, ///< horizontal upper
|
|
|
|
HT_DIR_HL = 3, ///< horizontal lower
|
|
|
|
HT_DIR_VL = 4, ///< vertical left
|
|
|
|
HT_DIR_VR = 5, ///< vertical right
|
|
|
|
HT_DIR_END, ///< end marker
|
|
|
|
HT_DIR_MASK = 0x7, ///< masks the drag-direction
|
2008-05-07 13:10:15 +00:00
|
|
|
};
|
2010-03-23 22:25:43 +00:00
|
|
|
DECLARE_ENUM_AS_BIT_SET(HighLightStyle)
|
2008-05-07 13:10:15 +00:00
|
|
|
|
|
|
|
|
2010-12-12 23:17:44 +00:00
|
|
|
/** Metadata about the current highlighting. */
|
2008-05-07 13:10:15 +00:00
|
|
|
struct TileHighlightData {
|
2010-12-12 23:17:44 +00:00
|
|
|
Point pos; ///< Location, in tile "units", of the northern tile of the selected area.
|
|
|
|
Point size; ///< Size, in tile "units", of the white/red selection area.
|
|
|
|
Point offs; ///< Offset, in tile "units", for the blue coverage area from the selected area's northern tile.
|
|
|
|
Point outersize; ///< Size, in tile "units", of the blue coverage area excluding the side of the selected area.
|
2010-12-13 15:09:59 +00:00
|
|
|
bool diagonal; ///< Whether the dragged area is a 45 degrees rotated rectangle.
|
2008-05-07 13:10:15 +00:00
|
|
|
|
2010-12-12 23:17:44 +00:00
|
|
|
Point new_pos; ///< New value for \a pos; used to determine whether to redraw the selection.
|
|
|
|
Point new_size; ///< New value for \a size; used to determine whether to redraw the selection.
|
|
|
|
Point new_outersize; ///< New value for \a outersize; used to determine whether to redraw the selection.
|
|
|
|
byte dirty; ///< Whether the build station window needs to redraw due to the changed selection.
|
2008-05-07 13:10:15 +00:00
|
|
|
|
2010-12-12 23:17:44 +00:00
|
|
|
Point selstart; ///< The location where the dragging started.
|
|
|
|
Point selend; ///< The location where the drag currently ends.
|
|
|
|
byte sizelimit; ///< Whether the selection is limited in length, and what the maximum length is.
|
2008-05-07 13:10:15 +00:00
|
|
|
|
2010-12-12 23:17:44 +00:00
|
|
|
HighLightStyle drawstyle; ///< Lower bits 0-3 are reserved for detailed highlight information.
|
|
|
|
HighLightStyle next_drawstyle; ///< Queued, but not yet drawn style.
|
2008-05-07 13:10:15 +00:00
|
|
|
|
2010-12-12 23:17:44 +00:00
|
|
|
HighLightStyle place_mode; ///< Method which is used to place the selection.
|
|
|
|
WindowClass window_class; ///< The \c WindowClass of the window that is responsible for the selection mode.
|
|
|
|
WindowNumber window_number; ///< The \c WindowNumber of the window that is responsible for the selection mode.
|
2008-05-07 13:10:15 +00:00
|
|
|
|
2010-12-12 23:17:44 +00:00
|
|
|
bool make_square_red; ///< Whether to give a tile a red selection.
|
|
|
|
TileIndex redsq; ///< The tile that has to get a red selection.
|
2008-05-07 13:10:15 +00:00
|
|
|
|
2010-12-12 23:17:44 +00:00
|
|
|
ViewportPlaceMethod select_method; ///< The method which governs how tiles are selected.
|
|
|
|
ViewportDragDropSelectionProcess select_proc; ///< The procedure that has to be called when the selection is done.
|
2010-12-23 14:24:34 +00:00
|
|
|
|
2010-12-30 15:32:31 +00:00
|
|
|
void Reset();
|
|
|
|
|
2010-12-23 14:24:34 +00:00
|
|
|
bool IsDraggingDiagonal();
|
2010-12-30 13:16:31 +00:00
|
|
|
Window *GetCallbackWnd();
|
2008-05-07 13:10:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* TILEHIGHLIGHT_TYPE_H */
|