2009-10-20 18:38:38 +00:00
|
|
|
/* $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 viewport_gui.cpp Extra viewport window. */
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "landscape.h"
|
|
|
|
#include "window_gui.h"
|
|
|
|
#include "viewport_func.h"
|
|
|
|
#include "strings_func.h"
|
|
|
|
#include "zoom_func.h"
|
|
|
|
#include "window_func.h"
|
|
|
|
|
|
|
|
#include "table/strings.h"
|
|
|
|
#include "table/sprites.h"
|
|
|
|
|
|
|
|
/** Widget numbers of the extra viewport window. */
|
|
|
|
enum ExtraViewportWindowWidgets {
|
|
|
|
EVW_CAPTION,
|
|
|
|
EVW_VIEWPORT,
|
|
|
|
EVW_ZOOMIN,
|
|
|
|
EVW_ZOOMOUT,
|
|
|
|
EVW_MAIN_TO_VIEW,
|
|
|
|
EVW_VIEW_TO_MAIN,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Extra ViewPort Window Stuff */
|
|
|
|
static const NWidgetPart _nested_extra_view_port_widgets[] = {
|
|
|
|
NWidget(NWID_HORIZONTAL),
|
2009-11-24 18:05:55 +00:00
|
|
|
NWidget(WWT_CLOSEBOX, COLOUR_GREY),
|
2009-10-20 18:38:38 +00:00
|
|
|
NWidget(WWT_CAPTION, COLOUR_GREY, EVW_CAPTION), SetDataTip(STR_EXTRA_VIEW_PORT_TITLE, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
|
2009-12-21 16:24:29 +00:00
|
|
|
NWidget(WWT_SHADEBOX, COLOUR_GREY),
|
2009-11-24 18:05:55 +00:00
|
|
|
NWidget(WWT_STICKYBOX, COLOUR_GREY),
|
2009-10-20 18:38:38 +00:00
|
|
|
EndContainer(),
|
2009-11-24 21:13:36 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY),
|
2009-11-22 18:26:01 +00:00
|
|
|
NWidget(NWID_VIEWPORT, INVALID_COLOUR, EVW_VIEWPORT), SetPadding(2, 2, 2, 2), SetResize(1, 1), SetFill(1, 1),
|
2009-10-20 18:38:38 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_HORIZONTAL),
|
|
|
|
NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, EVW_ZOOMIN), SetDataTip(SPR_IMG_ZOOMIN, STR_TOOLBAR_TOOLTIP_ZOOM_THE_VIEW_IN),
|
|
|
|
NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, EVW_ZOOMOUT), SetDataTip(SPR_IMG_ZOOMOUT, STR_TOOLBAR_TOOLTIP_ZOOM_THE_VIEW_OUT),
|
|
|
|
NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
|
2009-11-22 18:26:01 +00:00
|
|
|
NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, EVW_MAIN_TO_VIEW), SetFill(1, 1), SetResize(1, 0),
|
2009-10-20 18:38:38 +00:00
|
|
|
SetDataTip(STR_EXTRA_VIEW_MOVE_MAIN_TO_VIEW, STR_EXTRA_VIEW_MOVE_MAIN_TO_VIEW_TT),
|
2009-11-22 18:26:01 +00:00
|
|
|
NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, EVW_VIEW_TO_MAIN), SetFill(1, 1), SetResize(1, 0),
|
2009-10-20 18:38:38 +00:00
|
|
|
SetDataTip(STR_EXTRA_VIEW_MOVE_VIEW_TO_MAIN, STR_EXTRA_VIEW_MOVE_VIEW_TO_MAIN_TT),
|
|
|
|
EndContainer(),
|
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_HORIZONTAL),
|
2009-11-24 21:13:36 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY), SetFill(1, 1), SetResize(1, 0), EndContainer(),
|
2009-11-24 18:05:55 +00:00
|
|
|
NWidget(WWT_RESIZEBOX, COLOUR_GREY),
|
2009-10-20 18:38:38 +00:00
|
|
|
EndContainer(),
|
|
|
|
};
|
|
|
|
|
|
|
|
class ExtraViewportWindow : public Window {
|
|
|
|
public:
|
|
|
|
ExtraViewportWindow(const WindowDesc *desc, int window_number, TileIndex tile) : Window()
|
|
|
|
{
|
|
|
|
this->InitNested(desc, window_number);
|
|
|
|
|
|
|
|
NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(EVW_VIEWPORT);
|
|
|
|
nvp->InitializeViewport(this, 0, ZOOM_LVL_NORMAL);
|
|
|
|
this->DisableWidget(EVW_ZOOMIN);
|
|
|
|
|
|
|
|
Point pt;
|
|
|
|
if (tile == INVALID_TILE) {
|
2010-10-17 13:54:05 +00:00
|
|
|
/* No tile? Use center of main viewport. */
|
2009-10-20 18:38:38 +00:00
|
|
|
const Window *w = FindWindowById(WC_MAIN_WINDOW, 0);
|
|
|
|
|
|
|
|
/* center on same place as main window (zoom is maximum, no adjustment needed) */
|
2010-01-05 14:26:15 +00:00
|
|
|
pt.x = w->viewport->scrollpos_x + w->viewport->virtual_width / 2;
|
2009-10-20 18:38:38 +00:00
|
|
|
pt.y = w->viewport->scrollpos_y + w->viewport->virtual_height / 2;
|
|
|
|
} else {
|
|
|
|
pt = RemapCoords(TileX(tile) * TILE_SIZE + TILE_SIZE / 2, TileY(tile) * TILE_SIZE + TILE_SIZE / 2, TileHeight(tile));
|
|
|
|
}
|
|
|
|
|
2010-01-05 14:26:15 +00:00
|
|
|
this->viewport->scrollpos_x = pt.x - this->viewport->virtual_width / 2;
|
|
|
|
this->viewport->scrollpos_y = pt.y - this->viewport->virtual_height / 2;
|
2009-10-20 18:38:38 +00:00
|
|
|
this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x;
|
|
|
|
this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SetStringParameters(int widget) const
|
|
|
|
{
|
|
|
|
switch (widget) {
|
|
|
|
case EVW_CAPTION:
|
|
|
|
/* set the number in the title bar */
|
|
|
|
SetDParam(0, this->window_number + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-30 18:34:48 +00:00
|
|
|
virtual void OnClick(Point pt, int widget, int click_count)
|
2009-10-20 18:38:38 +00:00
|
|
|
{
|
|
|
|
switch (widget) {
|
|
|
|
case EVW_ZOOMIN: DoZoomInOutWindow(ZOOM_IN, this); break;
|
|
|
|
case EVW_ZOOMOUT: DoZoomInOutWindow(ZOOM_OUT, this); break;
|
|
|
|
|
|
|
|
case EVW_MAIN_TO_VIEW: { // location button (move main view to same spot as this view) 'Paste Location'
|
|
|
|
Window *w = FindWindowById(WC_MAIN_WINDOW, 0);
|
|
|
|
int x = this->viewport->scrollpos_x; // Where is the main looking at
|
|
|
|
int y = this->viewport->scrollpos_y;
|
|
|
|
|
|
|
|
/* set this view to same location. Based on the center, adjusting for zoom */
|
|
|
|
w->viewport->dest_scrollpos_x = x - (w->viewport->virtual_width - this->viewport->virtual_width) / 2;
|
|
|
|
w->viewport->dest_scrollpos_y = y - (w->viewport->virtual_height - this->viewport->virtual_height) / 2;
|
|
|
|
w->viewport->follow_vehicle = INVALID_VEHICLE;
|
2010-08-01 18:53:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-10-20 18:38:38 +00:00
|
|
|
|
|
|
|
case EVW_VIEW_TO_MAIN: { // inverse location button (move this view to same spot as main view) 'Copy Location'
|
|
|
|
const Window *w = FindWindowById(WC_MAIN_WINDOW, 0);
|
|
|
|
int x = w->viewport->scrollpos_x;
|
|
|
|
int y = w->viewport->scrollpos_y;
|
|
|
|
|
|
|
|
this->viewport->dest_scrollpos_x = x + (w->viewport->virtual_width - this->viewport->virtual_width) / 2;
|
|
|
|
this->viewport->dest_scrollpos_y = y + (w->viewport->virtual_height - this->viewport->virtual_height) / 2;
|
2010-08-01 18:53:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-10-20 18:38:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-24 14:53:55 +00:00
|
|
|
virtual void OnResize()
|
2009-10-20 18:38:38 +00:00
|
|
|
{
|
|
|
|
if (this->viewport != NULL) {
|
|
|
|
NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(EVW_VIEWPORT);
|
|
|
|
nvp->UpdateViewportCoordinates(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void OnScroll(Point delta)
|
|
|
|
{
|
2011-01-18 21:09:13 +00:00
|
|
|
this->viewport->scrollpos_x += ScaleByZoom(delta.x, this->viewport->zoom);
|
|
|
|
this->viewport->scrollpos_y += ScaleByZoom(delta.y, this->viewport->zoom);
|
2009-10-20 18:38:38 +00:00
|
|
|
this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x;
|
|
|
|
this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void OnMouseWheel(int wheel)
|
|
|
|
{
|
2011-02-05 16:36:37 +00:00
|
|
|
if (_settings_client.gui.scrollwheel_scrolling == 0) {
|
|
|
|
ZoomInOrOutToCursorWindow(wheel < 0, this);
|
|
|
|
}
|
2009-10-20 18:38:38 +00:00
|
|
|
}
|
|
|
|
|
2011-03-13 21:31:29 +00:00
|
|
|
/**
|
|
|
|
* Some data on this window has become invalid.
|
|
|
|
* @param data Information about the changed data.
|
|
|
|
* @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
|
|
|
|
*/
|
|
|
|
virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
|
2009-10-20 18:38:38 +00:00
|
|
|
{
|
2011-03-13 21:31:29 +00:00
|
|
|
if (!gui_scope) return;
|
2009-10-20 18:38:38 +00:00
|
|
|
/* Only handle zoom message if intended for us (msg ZOOM_IN/ZOOM_OUT) */
|
|
|
|
HandleZoomMessage(this, this->viewport, EVW_ZOOMIN, EVW_ZOOMOUT);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _extra_view_port_desc(
|
2009-11-28 14:42:35 +00:00
|
|
|
WDP_AUTO, 300, 268,
|
2009-10-20 18:38:38 +00:00
|
|
|
WC_EXTRA_VIEW_PORT, WC_NONE,
|
2009-11-24 17:28:29 +00:00
|
|
|
WDF_UNCLICK_BUTTONS,
|
2009-11-15 10:26:01 +00:00
|
|
|
_nested_extra_view_port_widgets, lengthof(_nested_extra_view_port_widgets)
|
2009-10-20 18:38:38 +00:00
|
|
|
);
|
|
|
|
|
2010-10-17 13:54:05 +00:00
|
|
|
/**
|
|
|
|
* Show a new Extra Viewport window.
|
|
|
|
* @param tile Tile to center the view on. INVALID_TILE means to use the center of main viewport.
|
|
|
|
*/
|
2009-10-20 18:38:38 +00:00
|
|
|
void ShowExtraViewPortWindow(TileIndex tile)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
/* find next free window number for extra viewport */
|
|
|
|
while (FindWindowById(WC_EXTRA_VIEW_PORT, i) != NULL) i++;
|
|
|
|
|
|
|
|
new ExtraViewportWindow(&_extra_view_port_desc, i, tile);
|
|
|
|
}
|
2010-10-17 13:54:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a new Extra Viewport window.
|
|
|
|
* Center it on the tile under the cursor, if the cursor is inside a viewport.
|
|
|
|
* If that fails, center it on main viewport center.
|
|
|
|
*/
|
|
|
|
void ShowExtraViewPortWindowForTileUnderCursor()
|
|
|
|
{
|
|
|
|
/* Use tile under mouse as center for new viewport.
|
|
|
|
* Do this before creating the window, it might appear just below the mouse. */
|
|
|
|
Point pt = GetTileBelowCursor();
|
|
|
|
ShowExtraViewPortWindow(pt.x != -1 ? TileVirtXY(pt.x, pt.y) : INVALID_TILE);
|
|
|
|
}
|