2007-05-15 14:08:39 +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-06 15:11:33 +00:00
|
|
|
/** @file zoom_func.h Functions related to zooming. */
|
2007-05-15 14:08:39 +00:00
|
|
|
|
2007-12-23 10:56:02 +00:00
|
|
|
#ifndef ZOOM_FUNC_H
|
|
|
|
#define ZOOM_FUNC_H
|
2007-05-15 14:08:39 +00:00
|
|
|
|
2007-12-23 10:56:02 +00:00
|
|
|
#include "zoom_type.h"
|
2007-05-15 14:08:39 +00:00
|
|
|
|
2007-11-18 13:13:59 +00:00
|
|
|
/**
|
|
|
|
* Scale by zoom level, usually shift left (when zoom > ZOOM_LVL_NORMAL)
|
|
|
|
* When shifting right, value is rounded up
|
|
|
|
* @param value value to shift
|
|
|
|
* @param zoom zoom level to shift to
|
|
|
|
* @return shifted value
|
|
|
|
*/
|
2007-05-15 16:08:46 +00:00
|
|
|
static inline int ScaleByZoom(int value, ZoomLevel zoom)
|
|
|
|
{
|
2014-01-02 11:05:42 +00:00
|
|
|
assert(zoom >= 0);
|
|
|
|
return value << zoom;
|
2007-05-15 16:08:46 +00:00
|
|
|
}
|
|
|
|
|
2007-11-18 13:13:59 +00:00
|
|
|
/**
|
|
|
|
* Scale by zoom level, usually shift right (when zoom > ZOOM_LVL_NORMAL)
|
|
|
|
* When shifting right, value is rounded up
|
|
|
|
* @param value value to shift
|
|
|
|
* @param zoom zoom level to shift to
|
|
|
|
* @return shifted value
|
|
|
|
*/
|
2007-05-15 16:08:46 +00:00
|
|
|
static inline int UnScaleByZoom(int value, ZoomLevel zoom)
|
|
|
|
{
|
2014-01-02 11:05:42 +00:00
|
|
|
assert(zoom >= 0);
|
|
|
|
return (value + (1 << zoom) - 1) >> zoom;
|
2007-05-15 16:08:46 +00:00
|
|
|
}
|
|
|
|
|
2007-11-18 13:13:59 +00:00
|
|
|
/**
|
|
|
|
* Scale by zoom level, usually shift left (when zoom > ZOOM_LVL_NORMAL)
|
|
|
|
* @param value value to shift
|
|
|
|
* @param zoom zoom level to shift to
|
|
|
|
* @return shifted value
|
|
|
|
*/
|
|
|
|
static inline int ScaleByZoomLower(int value, ZoomLevel zoom)
|
|
|
|
{
|
2014-01-02 11:05:42 +00:00
|
|
|
assert(zoom >= 0);
|
|
|
|
return value << zoom;
|
2007-11-18 13:13:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scale by zoom level, usually shift right (when zoom > ZOOM_LVL_NORMAL)
|
|
|
|
* @param value value to shift
|
|
|
|
* @param zoom zoom level to shift to
|
|
|
|
* @return shifted value
|
|
|
|
*/
|
|
|
|
static inline int UnScaleByZoomLower(int value, ZoomLevel zoom)
|
|
|
|
{
|
2014-01-02 11:05:42 +00:00
|
|
|
assert(zoom >= 0);
|
|
|
|
return value >> zoom;
|
2007-11-18 13:13:59 +00:00
|
|
|
}
|
|
|
|
|
2015-02-01 20:54:24 +00:00
|
|
|
/**
|
|
|
|
* Short-hand to apply GUI zoom level.
|
|
|
|
* @param value Pixel amount at #ZOOM_LVL_BEGIN (full zoom in).
|
2015-10-29 19:23:21 +00:00
|
|
|
* @return Pixel amount at #ZOOM_LVL_GUI (current interface size).
|
2015-02-01 20:54:24 +00:00
|
|
|
*/
|
|
|
|
static inline int UnScaleGUI(int value)
|
|
|
|
{
|
|
|
|
return UnScaleByZoom(value, ZOOM_LVL_GUI);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scale traditional pixel dimensions to GUI zoom level.
|
2015-10-29 19:23:21 +00:00
|
|
|
* @param value Pixel amount at #ZOOM_LVL_BASE (traditional "normal" interface size).
|
|
|
|
* @return Pixel amount at #ZOOM_LVL_GUI (current interface size).
|
2015-02-01 20:54:24 +00:00
|
|
|
*/
|
|
|
|
static inline int ScaleGUITrad(int value)
|
|
|
|
{
|
|
|
|
return UnScaleGUI(value * ZOOM_LVL_BASE);
|
|
|
|
}
|
|
|
|
|
2007-12-23 10:56:02 +00:00
|
|
|
#endif /* ZOOM_FUNC_H */
|