OpenTTD
smallmap_gui.h
Go to the documentation of this file.
1 /* $Id: smallmap_gui.h 27939 2017-12-11 19:20:44Z frosch $ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * 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.
6  * 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.
7  * 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/>.
8  */
9 
12 #ifndef SMALLMAP_GUI_H
13 #define SMALLMAP_GUI_H
14 
15 #include "industry_type.h"
16 #include "company_base.h"
17 #include "window_gui.h"
18 #include "strings_func.h"
19 #include "blitter/factory.hpp"
22 
23 /* set up the cargos to be displayed in the smallmap's route legend */
25 
27 void ShowSmallMap();
28 void BuildLandLegend();
29 void BuildOwnerLegend();
30 
33  uint8 colour;
35  IndustryType type;
36  uint8 height;
38  bool show_on_map;
39  bool end;
40  bool col_break;
41 };
42 
44 class SmallMapWindow : public Window {
45 protected:
47  enum SmallMapType {
48  SMT_CONTOUR,
49  SMT_VEHICLES,
50  SMT_INDUSTRY,
51  SMT_LINKSTATS,
52  SMT_ROUTES,
53  SMT_VEGETATION,
54  SMT_OWNER,
55  };
56 
62  };
63 
65  static bool show_towns;
66  static int max_heightlevel;
67 
68  static const uint LEGEND_BLOB_WIDTH = 8;
69  static const uint INDUSTRY_MIN_NUMBER_OF_COLUMNS = 2;
70  static const uint FORCE_REFRESH_PERIOD = 0x1F;
71  static const uint BLINK_PERIOD = 0x0F;
72 
75  uint column_width;
76 
77  int32 scroll_x;
78  int32 scroll_y;
79  int32 subscroll;
80  int zoom;
81 
82  uint8 refresh;
83  LinkGraphOverlay *overlay;
84 
85  static void BreakIndustryChainLink();
86  Point SmallmapRemapCoords(int x, int y) const;
87 
94  static inline void DrawVertMapIndicator(int x, int y, int y2)
95  {
96  GfxFillRect(x, y, x, y + 3, PC_VERY_LIGHT_YELLOW);
97  GfxFillRect(x, y2 - 3, x, y2, PC_VERY_LIGHT_YELLOW);
98  }
99 
106  static inline void DrawHorizMapIndicator(int x, int x2, int y)
107  {
108  GfxFillRect(x, y, x + 3, y, PC_VERY_LIGHT_YELLOW);
109  GfxFillRect(x2 - 3, y, x2, y, PC_VERY_LIGHT_YELLOW);
110  }
111 
116  inline uint GetMinLegendWidth() const
117  {
119  }
120 
125  inline uint GetNumberColumnsLegend(uint width) const
126  {
127  return width / this->column_width;
128  }
129 
135  inline uint GetLegendHeight(uint num_columns) const
136  {
138  this->GetNumberRowsLegend(num_columns) * FONT_HEIGHT_SMALL;
139  }
140 
146  inline uint32 GetOverlayCompanyMask() const
147  {
148  return Company::IsValidID(_local_company) ? 1U << _local_company : 0xffffffff;
149  }
150 
152  uint GetNumberRowsLegend(uint columns) const;
153  void SelectLegendItem(int click_pos, LegendAndColour *legend, int end_legend_item, int begin_legend_item = 0);
155  void SetNewScroll(int sx, int sy, int sub);
156 
157  void DrawMapIndicators() const;
158  void DrawSmallMapColumn(void *dst, uint xc, uint yc, int pitch, int reps, int start_pos, int end_pos, Blitter *blitter) const;
159  void DrawVehicles(const DrawPixelInfo *dpi, Blitter *blitter) const;
160  void DrawTowns(const DrawPixelInfo *dpi) const;
161  void DrawSmallMap(DrawPixelInfo *dpi) const;
162 
163  Point RemapTile(int tile_x, int tile_y) const;
164  Point PixelToTile(int px, int py, int *sub, bool add_sub = true) const;
165  Point ComputeScroll(int tx, int ty, int x, int y, int *sub);
166  void SetZoomLevel(ZoomLevelChange change, const Point *zoom_pt);
167  void SetOverlayCargoMask();
168  void SetupWidgetData();
169  uint32 GetTileColours(const TileArea &ta) const;
170 
171  int GetPositionOnLegend(Point pt);
172 
173 public:
174  friend class NWidgetSmallmapDisplay;
175 
177  virtual ~SmallMapWindow();
178 
180  Point GetStationMiddle(const Station *st) const;
181 
182  virtual void SetStringParameters(int widget) const;
183  virtual void OnInit();
184  virtual void OnPaint();
185  virtual void DrawWidget(const Rect &r, int widget) const;
186  virtual void OnClick(Point pt, int widget, int click_count);
187  virtual void OnInvalidateData(int data = 0, bool gui_scope = true);
188  virtual bool OnRightClick(Point pt, int widget);
189  virtual void OnMouseWheel(int wheel);
190  virtual void OnTick();
191  virtual void OnScroll(Point delta);
192  virtual void OnMouseOver(Point pt, int widget);
193 };
194 
195 #endif /* SMALLMAP_GUI_H */