Files
@ r14217:40beee5d2e82
Branch filter:
Location: cpp/openttd-patchpack/source/src/tilehighlight_func.h - annotation
r14217:40beee5d2e82
1.7 KiB
text/x-c
(svn r18778) -Fix [FS#3483]: [YAPP] Remove a special check for two-sided signals when reserving a path as this causes trains to get stuck in front of them.
r9127:933c13888121 r9127:933c13888121 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9293:381d58467a0b r9127:933c13888121 r11697:53072e575f0b r11697:53072e575f0b r11697:53072e575f0b r9148:4c9b8a45d519 r9127:933c13888121 r9147:6e8812a42759 r9147:6e8812a42759 r9147:6e8812a42759 r9147:6e8812a42759 r9147:6e8812a42759 r10732:aa461adb8898 r10732:aa461adb8898 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 r9127:933c13888121 | /* $Id$ */
/*
* 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/>.
*/
/** @file tilehighlight_func.h Functions related to tile highlights. */
#ifndef TILEHIGHLIGHT_FUNC_H
#define TILEHIGHLIGHT_FUNC_H
#include "gfx_type.h"
#include "window_type.h"
#include "viewport_type.h"
#include "tilehighlight_type.h"
typedef void PlaceProc(TileIndex tile);
void PlaceProc_DemolishArea(TileIndex tile);
bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_tile, TileIndex end_tile);
bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, HighLightStyle mode, PlaceProc *placeproc);
void SetObjectToPlaceWnd(CursorID icon, SpriteID pal, HighLightStyle mode, Window *w);
void SetObjectToPlace(CursorID icon, SpriteID pal, HighLightStyle mode, WindowClass window_class, WindowNumber window_num);
void ResetObjectToPlace();
void VpSelectTilesWithMethod(int x, int y, ViewportPlaceMethod method);
void VpStartPlaceSizing(TileIndex tile, ViewportPlaceMethod method, ViewportDragDropSelectionProcess process);
void VpSetPresizeRange(TileIndex from, TileIndex to);
void VpSetPlaceSizingLimit(int limit);
void UpdateTileSelection();
extern PlaceProc *_place_proc;
extern TileHighlightData _thd;
#endif /* TILEHIGHLIGHT_FUNC_H */
|