OpenTTD
newgrf_gui.cpp
Go to the documentation of this file.
1 /* $Id: newgrf_gui.cpp 27724 2017-01-07 21:28:03Z 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 #include "stdafx.h"
13 #include "error.h"
14 #include "settings_gui.h"
15 #include "newgrf.h"
16 #include "strings_func.h"
17 #include "window_func.h"
18 #include "gamelog.h"
19 #include "settings_type.h"
20 #include "settings_func.h"
21 #include "widgets/dropdown_type.h"
22 #include "widgets/dropdown_func.h"
23 #include "network/network.h"
25 #include "sortlist_type.h"
26 #include "stringfilter_type.h"
27 #include "querystring_gui.h"
28 #include "core/geometry_func.hpp"
29 #include "newgrf_text.h"
30 #include "textfile_gui.h"
31 #include "tilehighlight_func.h"
32 #include "fios.h"
33 
34 #include "widgets/newgrf_widget.h"
35 #include "widgets/misc_widget.h"
36 
37 #include "table/sprites.h"
38 
39 #include <map>
40 #include "safeguards.h"
41 
42 /* Maximum number of NewGRFs that may be loaded. Six reserved slots are:
43  * 0 - config, 1 - sound, 2 - base, 3 - logos, 4 - climate, 5 - extra */
44 static const int MAX_NEWGRFS = MAX_FILE_SLOTS - 6;
45 
50 {
51  /* Do not show errors when entering the main screen */
52  if (_game_mode == GM_MENU) return;
53 
54  for (const GRFConfig *c = _grfconfig; c != NULL; c = c->next) {
55  /* We only want to show fatal errors */
56  if (c->error == NULL || c->error->severity != STR_NEWGRF_ERROR_MSG_FATAL) continue;
57 
58  SetDParam (0, c->error->custom_message == NULL ? c->error->message : STR_JUST_RAW_STRING);
59  SetDParamStr(1, c->error->custom_message);
60  SetDParamStr(2, c->filename);
61  SetDParamStr(3, c->error->data);
62  for (uint i = 0; i < lengthof(c->error->param_value); i++) {
63  SetDParam(4 + i, c->error->param_value[i]);
64  }
65  ShowErrorMessage(STR_NEWGRF_ERROR_FATAL_POPUP, INVALID_STRING_ID, WL_CRITICAL);
66  break;
67  }
68 }
69 
70 static void ShowNewGRFInfo(const GRFConfig *c, uint x, uint y, uint right, uint bottom, bool show_params)
71 {
72  if (c->error != NULL) {
73  char message[512];
74  SetDParamStr(0, c->error->custom_message); // is skipped by built-in messages
75  SetDParamStr(1, c->filename);
76  SetDParamStr(2, c->error->data);
77  for (uint i = 0; i < lengthof(c->error->param_value); i++) {
78  SetDParam(3 + i, c->error->param_value[i]);
79  }
80  GetString(message, c->error->custom_message == NULL ? c->error->message : STR_JUST_RAW_STRING, lastof(message));
81 
82  SetDParamStr(0, message);
83  y = DrawStringMultiLine(x, right, y, bottom, c->error->severity);
84  }
85 
86  /* Draw filename or not if it is not known (GRF sent over internet) */
87  if (c->filename != NULL) {
88  SetDParamStr(0, c->filename);
89  y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_FILENAME);
90  }
91 
92  /* Prepare and draw GRF ID */
93  char buff[256];
94  seprintf(buff, lastof(buff), "%08X", BSWAP32(c->ident.grfid));
95  SetDParamStr(0, buff);
96  y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_GRF_ID);
97 
99  SetDParam(0, c->version);
100  y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_VERSION);
101  }
104  y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_MIN_VERSION);
105  }
106 
107  /* Prepare and draw MD5 sum */
108  md5sumToString(buff, lastof(buff), c->ident.md5sum);
109  SetDParamStr(0, buff);
110  y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_MD5SUM);
111 
112  /* Show GRF parameter list */
113  if (show_params) {
114  if (c->num_params > 0) {
115  GRFBuildParamList(buff, c, lastof(buff));
116  SetDParam(0, STR_JUST_RAW_STRING);
117  SetDParamStr(1, buff);
118  } else {
119  SetDParam(0, STR_LAND_AREA_INFORMATION_LOCAL_AUTHORITY_NONE);
120  }
121  y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_PARAMETER);
122 
123  /* Draw the palette of the NewGRF */
124  if (c->palette & GRFP_BLT_32BPP) {
125  SetDParamStr(0, (c->palette & GRFP_USE_WINDOWS) ? "Legacy (W) / 32 bpp" : "Default (D) / 32 bpp");
126  } else {
127  SetDParamStr(0, (c->palette & GRFP_USE_WINDOWS) ? "Legacy (W)" : "Default (D)");
128  }
129  y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_PALETTE);
130  }
131 
132  /* Show flags */
133  if (c->status == GCS_NOT_FOUND) y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_NOT_FOUND);
134  if (c->status == GCS_DISABLED) y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_DISABLED);
135  if (HasBit(c->flags, GCF_INVALID)) y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_INCOMPATIBLE);
136  if (HasBit(c->flags, GCF_COMPATIBLE)) y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_COMPATIBLE_LOADED);
137 
138  /* Draw GRF info if it exists */
139  if (!StrEmpty(c->GetDescription())) {
140  SetDParamStr(0, c->GetDescription());
141  y = DrawStringMultiLine(x, right, y, bottom, STR_BLACK_RAW_STRING);
142  } else {
143  y = DrawStringMultiLine(x, right, y, bottom, STR_NEWGRF_SETTINGS_NO_INFO);
144  }
145 }
146 
157  int timeout;
158  uint clicked_row;
160  Scrollbar *vscroll;
162  bool editable;
163 
164  NewGRFParametersWindow(WindowDesc *desc, GRFConfig *c, bool editable) : Window(desc),
165  grf_config(c),
166  clicked_button(UINT_MAX),
167  clicked_dropdown(false),
168  closing_dropdown(false),
169  timeout(0),
170  clicked_row(UINT_MAX),
171  editable(editable)
172  {
173  this->action14present = (c->num_valid_params != lengthof(c->param) || c->param_info.Length() != 0);
174 
175  this->CreateNestedTree();
176  this->vscroll = this->GetScrollbar(WID_NP_SCROLLBAR);
177  this->GetWidget<NWidgetStacked>(WID_NP_SHOW_NUMPAR)->SetDisplayedPlane(this->action14present ? SZSP_HORIZONTAL : 0);
178  this->GetWidget<NWidgetStacked>(WID_NP_SHOW_DESCRIPTION)->SetDisplayedPlane(this->action14present ? 0 : SZSP_HORIZONTAL);
179  this->FinishInitNested(); // Initializes 'this->line_height' as side effect.
180 
181  this->SetWidgetDisabledState(WID_NP_RESET, !this->editable);
182 
183  this->InvalidateData();
184  }
185 
192  {
194  return &dummy_parameter_info;
195  }
196 
197  virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
198  {
199  switch (widget) {
200  case WID_NP_NUMPAR_DEC:
201  case WID_NP_NUMPAR_INC: {
202  size->width = max(SETTING_BUTTON_WIDTH / 2, FONT_HEIGHT_NORMAL);
204  break;
205  }
206 
207  case WID_NP_NUMPAR: {
209  Dimension d = GetStringBoundingBox(this->GetWidget<NWidgetCore>(widget)->widget_data);
210  d.width += padding.width;
211  d.height += padding.height;
212  *size = maxdim(*size, d);
213  break;
214  }
215 
216  case WID_NP_BACKGROUND:
218 
219  resize->width = 1;
220  resize->height = this->line_height;
221  size->height = 5 * this->line_height;
222  break;
223 
224  case WID_NP_DESCRIPTION:
225  /* Minimum size of 4 lines. The 500 is the default size of the window. */
227  for (uint i = 0; i < this->grf_config->param_info.Length(); i++) {
228  const GRFParameterInfo *par_info = this->grf_config->param_info[i];
229  if (par_info == NULL) continue;
230  const char *desc = GetGRFStringFromGRFText(par_info->desc);
231  if (desc == NULL) continue;
232  Dimension d = GetStringMultiLineBoundingBox(desc, suggestion);
234  suggestion = maxdim(d, suggestion);
235  }
236  size->height = suggestion.height;
237  break;
238  }
239  }
240 
241  virtual void SetStringParameters(int widget) const
242  {
243  switch (widget) {
244  case WID_NP_NUMPAR:
245  SetDParam(0, this->vscroll->GetCount());
246  break;
247  }
248  }
249 
250  virtual void DrawWidget(const Rect &r, int widget) const
251  {
252  if (widget == WID_NP_DESCRIPTION) {
253  const GRFParameterInfo *par_info = (this->clicked_row < this->grf_config->param_info.Length()) ? this->grf_config->param_info[this->clicked_row] : NULL;
254  if (par_info == NULL) return;
255  const char *desc = GetGRFStringFromGRFText(par_info->desc);
256  if (desc == NULL) return;
257  DrawStringMultiLine(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, r.top + WD_TEXTPANEL_TOP, r.bottom - WD_TEXTPANEL_BOTTOM, desc, TC_BLACK);
258  return;
259  } else if (widget != WID_NP_BACKGROUND) {
260  return;
261  }
262 
263  bool rtl = _current_text_dir == TD_RTL;
264  uint buttons_left = rtl ? r.right - SETTING_BUTTON_WIDTH - 3 : r.left + 4;
265  uint text_left = r.left + (rtl ? WD_FRAMERECT_LEFT : SETTING_BUTTON_WIDTH + 8);
266  uint text_right = r.right - (rtl ? SETTING_BUTTON_WIDTH + 8 : WD_FRAMERECT_RIGHT);
267 
268  int y = r.top;
269  int button_y_offset = (this->line_height - SETTING_BUTTON_HEIGHT) / 2;
270  int text_y_offset = (this->line_height - FONT_HEIGHT_NORMAL) / 2;
271  for (uint i = this->vscroll->GetPosition(); this->vscroll->IsVisible(i) && i < this->vscroll->GetCount(); i++) {
272  GRFParameterInfo *par_info = (i < this->grf_config->param_info.Length()) ? this->grf_config->param_info[i] : NULL;
273  if (par_info == NULL) par_info = GetDummyParameterInfo(i);
274  uint32 current_value = par_info->GetValue(this->grf_config);
275  bool selected = (i == this->clicked_row);
276 
277  if (par_info->type == PTYPE_BOOL) {
278  DrawBoolButton(buttons_left, y + button_y_offset, current_value != 0, this->editable);
279  SetDParam(2, par_info->GetValue(this->grf_config) == 0 ? STR_CONFIG_SETTING_OFF : STR_CONFIG_SETTING_ON);
280  } else if (par_info->type == PTYPE_UINT_ENUM) {
281  if (par_info->complete_labels) {
282  DrawDropDownButton(buttons_left, y + button_y_offset, COLOUR_YELLOW, this->clicked_row == i && this->clicked_dropdown, this->editable);
283  } else {
284  DrawArrowButtons(buttons_left, y + button_y_offset, COLOUR_YELLOW, (this->clicked_button == i) ? 1 + (this->clicked_increase != rtl) : 0, this->editable && current_value > par_info->min_value, this->editable && current_value < par_info->max_value);
285  }
286  SetDParam(2, STR_JUST_INT);
287  SetDParam(3, current_value);
288  if (par_info->value_names.Contains(current_value)) {
289  const char *label = GetGRFStringFromGRFText(par_info->value_names.Find(current_value)->second);
290  if (label != NULL) {
291  SetDParam(2, STR_JUST_RAW_STRING);
292  SetDParamStr(3, label);
293  }
294  }
295  }
296 
297  const char *name = GetGRFStringFromGRFText(par_info->name);
298  if (name != NULL) {
299  SetDParam(0, STR_JUST_RAW_STRING);
300  SetDParamStr(1, name);
301  } else {
302  SetDParam(0, STR_NEWGRF_PARAMETERS_DEFAULT_NAME);
303  SetDParam(1, i + 1);
304  }
305 
306  DrawString(text_left, text_right, y + text_y_offset, STR_NEWGRF_PARAMETERS_SETTING, selected ? TC_WHITE : TC_LIGHT_BLUE);
307  y += this->line_height;
308  }
309  }
310 
311  virtual void OnPaint()
312  {
313  if (this->closing_dropdown) {
314  this->closing_dropdown = false;
315  this->clicked_dropdown = false;
316  }
317  this->DrawWidgets();
318  }
319 
320  virtual void OnClick(Point pt, int widget, int click_count)
321  {
322  switch (widget) {
323  case WID_NP_NUMPAR_DEC:
324  if (this->editable && !this->action14present && this->grf_config->num_params > 0) {
325  this->grf_config->num_params--;
326  this->InvalidateData();
328  }
329  break;
330 
331  case WID_NP_NUMPAR_INC: {
332  GRFConfig *c = this->grf_config;
333  if (this->editable && !this->action14present && c->num_params < c->num_valid_params) {
334  c->param[c->num_params++] = 0;
335  this->InvalidateData();
337  }
338  break;
339  }
340 
341  case WID_NP_BACKGROUND: {
342  if (!this->editable) break;
343  uint num = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_NP_BACKGROUND);
344  if (num >= this->vscroll->GetCount()) break;
345  if (this->clicked_row != num) {
347  HideDropDownMenu(this);
348  this->clicked_row = num;
349  this->clicked_dropdown = false;
350  }
351 
352  const NWidgetBase *wid = this->GetWidget<NWidgetBase>(WID_NP_BACKGROUND);
353  int x = pt.x - wid->pos_x;
354  if (_current_text_dir == TD_RTL) x = wid->current_x - 1 - x;
355  x -= 4;
356 
357  GRFParameterInfo *par_info = (num < this->grf_config->param_info.Length()) ? this->grf_config->param_info[num] : NULL;
358  if (par_info == NULL) par_info = GetDummyParameterInfo(num);
359 
360  /* One of the arrows is clicked */
361  uint32 old_val = par_info->GetValue(this->grf_config);
362  if (par_info->type != PTYPE_BOOL && IsInsideMM(x, 0, SETTING_BUTTON_WIDTH) && par_info->complete_labels) {
363  if (this->clicked_dropdown) {
364  /* unclick the dropdown */
365  HideDropDownMenu(this);
366  this->clicked_dropdown = false;
367  this->closing_dropdown = false;
368  } else {
369  const NWidgetBase *wid = this->GetWidget<NWidgetBase>(WID_NP_BACKGROUND);
370  int rel_y = (pt.y - (int)wid->pos_y) % this->line_height;
371 
372  Rect wi_rect;
373  wi_rect.left = pt.x - (_current_text_dir == TD_RTL ? SETTING_BUTTON_WIDTH - 1 - x : x);;
374  wi_rect.right = wi_rect.left + SETTING_BUTTON_WIDTH - 1;
375  wi_rect.top = pt.y - rel_y + (this->line_height - SETTING_BUTTON_HEIGHT) / 2;
376  wi_rect.bottom = wi_rect.top + SETTING_BUTTON_HEIGHT - 1;
377 
378  /* For dropdowns we also have to check the y position thoroughly, the mouse may not above the just opening dropdown */
379  if (pt.y >= wi_rect.top && pt.y <= wi_rect.bottom) {
380  this->clicked_dropdown = true;
381  this->closing_dropdown = false;
382 
383  DropDownList *list = new DropDownList();
384  for (uint32 i = par_info->min_value; i <= par_info->max_value; i++) {
385  *list->Append() = new DropDownListCharStringItem(GetGRFStringFromGRFText(par_info->value_names.Find(i)->second), i, false);
386  }
387 
388  ShowDropDownListAt(this, list, old_val, -1, wi_rect, COLOUR_ORANGE, true);
389  }
390  }
391  } else if (IsInsideMM(x, 0, SETTING_BUTTON_WIDTH)) {
392  uint32 val = old_val;
393  if (par_info->type == PTYPE_BOOL) {
394  val = !val;
395  } else {
396  if (x >= SETTING_BUTTON_WIDTH / 2) {
397  /* Increase button clicked */
398  if (val < par_info->max_value) val++;
399  this->clicked_increase = true;
400  } else {
401  /* Decrease button clicked */
402  if (val > par_info->min_value) val--;
403  this->clicked_increase = false;
404  }
405  }
406  if (val != old_val) {
407  par_info->SetValue(this->grf_config, val);
408 
409  this->clicked_button = num;
410  this->timeout = 5;
411  }
412  } else if (par_info->type == PTYPE_UINT_ENUM && !par_info->complete_labels && click_count >= 2) {
413  /* Display a query box so users can enter a custom value. */
414  SetDParam(0, old_val);
415  ShowQueryString(STR_JUST_INT, STR_CONFIG_SETTING_QUERY_CAPTION, 10, this, CS_NUMERAL, QSF_NONE);
416  }
417  this->SetDirty();
418  break;
419  }
420 
421  case WID_NP_RESET:
422  if (!this->editable) break;
424  this->InvalidateData();
426  break;
427 
428  case WID_NP_ACCEPT:
429  delete this;
430  break;
431  }
432  }
433 
434  virtual void OnQueryTextFinished(char *str)
435  {
436  if (StrEmpty(str)) return;
437  int32 value = atoi(str);
438  GRFParameterInfo *par_info = ((uint)this->clicked_row < this->grf_config->param_info.Length()) ? this->grf_config->param_info[this->clicked_row] : NULL;
439  if (par_info == NULL) par_info = GetDummyParameterInfo(this->clicked_row);
440  uint32 val = Clamp<uint32>(value, par_info->min_value, par_info->max_value);
441  par_info->SetValue(this->grf_config, val);
442  this->SetDirty();
443  }
444 
445  virtual void OnDropdownSelect(int widget, int index)
446  {
447  assert(this->clicked_dropdown);
448  GRFParameterInfo *par_info = ((uint)this->clicked_row < this->grf_config->param_info.Length()) ? this->grf_config->param_info[this->clicked_row] : NULL;
449  if (par_info == NULL) par_info = GetDummyParameterInfo(this->clicked_row);
450  par_info->SetValue(this->grf_config, index);
451  this->SetDirty();
452  }
453 
454  virtual void OnDropdownClose(Point pt, int widget, int index, bool instant_close)
455  {
456  /* We cannot raise the dropdown button just yet. OnClick needs some hint, whether
457  * the same dropdown button was clicked again, and then not open the dropdown again.
458  * So, we only remember that it was closed, and process it on the next OnPaint, which is
459  * after OnClick. */
460  assert(this->clicked_dropdown);
461  this->closing_dropdown = true;
462  this->SetDirty();
463  }
464 
465  virtual void OnResize()
466  {
467  this->vscroll->SetCapacityFromWidget(this, WID_NP_BACKGROUND);
468  }
469 
475  virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
476  {
477  if (!gui_scope) return;
478  if (!this->action14present) {
480  this->SetWidgetDisabledState(WID_NP_NUMPAR_INC, !this->editable || this->grf_config->num_params >= this->grf_config->num_valid_params);
481  }
482 
483  this->vscroll->SetCount(this->action14present ? this->grf_config->num_valid_params : this->grf_config->num_params);
484  if (this->clicked_row != UINT_MAX && this->clicked_row >= this->vscroll->GetCount()) {
485  this->clicked_row = UINT_MAX;
487  }
488  }
489 
490  virtual void OnTick()
491  {
492  if (--this->timeout == 0) {
493  this->clicked_button = UINT_MAX;
494  this->SetDirty();
495  }
496  }
497 };
499 
500 
501 static const NWidgetPart _nested_newgrf_parameter_widgets[] = {
503  NWidget(WWT_CLOSEBOX, COLOUR_MAUVE),
504  NWidget(WWT_CAPTION, COLOUR_MAUVE), SetDataTip(STR_NEWGRF_PARAMETERS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
505  NWidget(WWT_DEFSIZEBOX, COLOUR_MAUVE),
506  EndContainer(),
507  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_NP_SHOW_NUMPAR),
508  NWidget(WWT_PANEL, COLOUR_MAUVE), SetResize(1, 0), SetFill(1, 0), SetPIP(4, 0, 4),
509  NWidget(NWID_HORIZONTAL), SetPIP(4, 0, 4),
510  NWidget(WWT_PUSHARROWBTN, COLOUR_YELLOW, WID_NP_NUMPAR_DEC), SetMinimalSize(12, 12), SetDataTip(AWV_DECREASE, STR_NULL),
511  NWidget(WWT_PUSHARROWBTN, COLOUR_YELLOW, WID_NP_NUMPAR_INC), SetMinimalSize(12, 12), SetDataTip(AWV_INCREASE, STR_NULL),
512  NWidget(WWT_TEXT, COLOUR_MAUVE, WID_NP_NUMPAR), SetResize(1, 0), SetFill(1, 0), SetPadding(0, 0, 0, 4), SetDataTip(STR_NEWGRF_PARAMETERS_NUM_PARAM, STR_NULL),
513  EndContainer(),
514  EndContainer(),
515  EndContainer(),
517  NWidget(WWT_MATRIX, COLOUR_MAUVE, WID_NP_BACKGROUND), SetMinimalSize(188, 182), SetResize(1, 1), SetFill(1, 0), SetMatrixDataTip(1, 0, STR_NULL), SetScrollbar(WID_NP_SCROLLBAR),
518  NWidget(NWID_VSCROLLBAR, COLOUR_MAUVE, WID_NP_SCROLLBAR),
519  EndContainer(),
521  NWidget(WWT_PANEL, COLOUR_MAUVE, WID_NP_DESCRIPTION), SetResize(1, 0), SetFill(1, 0),
522  EndContainer(),
523  EndContainer(),
526  NWidget(WWT_PUSHTXTBTN, COLOUR_MAUVE, WID_NP_ACCEPT), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_NEWGRF_PARAMETERS_CLOSE, STR_NULL),
527  NWidget(WWT_PUSHTXTBTN, COLOUR_MAUVE, WID_NP_RESET), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_NEWGRF_PARAMETERS_RESET, STR_NEWGRF_PARAMETERS_RESET_TOOLTIP),
528  EndContainer(),
529  NWidget(WWT_RESIZEBOX, COLOUR_MAUVE),
530  EndContainer(),
531 };
532 
535  WDP_CENTER, "settings_newgrf_config", 500, 208,
537  0,
538  _nested_newgrf_parameter_widgets, lengthof(_nested_newgrf_parameter_widgets)
539 );
540 
541 static void OpenGRFParameterWindow(GRFConfig *c, bool editable)
542 {
545 }
546 
550 
551  NewGRFTextfileWindow(TextfileType file_type, const GRFConfig *c) : TextfileWindow(file_type), grf_config(c)
552  {
553  const char *textfile = this->grf_config->GetTextfile(file_type);
554  this->LoadTextfile(textfile, NEWGRF_DIR);
555  }
556 
557  /* virtual */ void SetStringParameters(int widget) const
558  {
559  if (widget == WID_TF_CAPTION) {
560  SetDParam(0, STR_CONTENT_TYPE_NEWGRF);
561  SetDParamStr(1, this->grf_config->GetName());
562  }
563  }
564 };
565 
566 void ShowNewGRFTextfileWindow(TextfileType file_type, const GRFConfig *c)
567 {
569  new NewGRFTextfileWindow(file_type, c);
570 }
571 
573 
575 public:
576  DropDownListPresetItem(int result) : DropDownListItem(result, false) {}
577 
578  virtual ~DropDownListPresetItem() {}
579 
580  bool Selectable() const
581  {
582  return true;
583  }
584 
585  void Draw(int left, int right, int top, int bottom, bool sel, int bg_colour) const
586  {
587  DrawString(left + 2, right + 2, top, _grf_preset_list[this->result], sel ? TC_WHITE : TC_BLACK);
588  }
589 };
590 
591 
592 typedef std::map<uint32, const GRFConfig *> GrfIdMap;
593 
599 static void FillGrfidMap(const GRFConfig *c, GrfIdMap *grfid_map)
600 {
601  while (c != NULL) {
602  std::pair<uint32, const GRFConfig *> p(c->ident.grfid, c);
603  grfid_map->insert(p);
604  c = c->next;
605  }
606 }
607 
608 static void NewGRFConfirmationCallback(Window *w, bool confirmed);
609 static void ShowSavePresetWindow(const char *initial_text);
610 
616 
617  static const uint EDITBOX_MAX_SIZE = 50;
618 
621  static GUIGRFConfigList::SortFunction * const sorter_funcs[];
622  static GUIGRFConfigList::FilterFunction * const filter_funcs[];
623 
626  int avail_pos;
629 
632 
634  bool editable;
635  bool show_params;
636  bool execute;
637  int preset;
639 
640  Scrollbar *vscroll;
641  Scrollbar *vscroll2;
642 
643  NewGRFWindow(WindowDesc *desc, bool editable, bool show_params, bool execute, GRFConfig **orig_list) : Window(desc), filter_editbox(EDITBOX_MAX_SIZE)
644  {
645  this->avail_sel = NULL;
646  this->avail_pos = -1;
647  this->active_sel = NULL;
648  this->actives = NULL;
649  this->orig_list = orig_list;
650  this->editable = editable;
651  this->execute = execute;
652  this->show_params = show_params;
653  this->preset = -1;
654  this->active_over = -1;
655 
656  CopyGRFConfigList(&this->actives, *orig_list, false);
658 
659  this->CreateNestedTree();
660  this->vscroll = this->GetScrollbar(WID_NS_SCROLLBAR);
661  this->vscroll2 = this->GetScrollbar(WID_NS_SCROLL2BAR);
662 
663  this->GetWidget<NWidgetStacked>(WID_NS_SHOW_REMOVE)->SetDisplayedPlane(this->editable ? 0 : 1);
664  this->GetWidget<NWidgetStacked>(WID_NS_SHOW_APPLY)->SetDisplayedPlane(this->editable ? 0 : this->show_params ? 1 : SZSP_HORIZONTAL);
666 
667  this->querystrings[WID_NS_FILTER] = &this->filter_editbox;
668  this->filter_editbox.cancel_button = QueryString::ACTION_CLEAR;
669  if (editable) {
671  } else {
673  }
674 
675  this->avails.SetListing(this->last_sorting);
676  this->avails.SetFiltering(this->last_filtering);
677  this->avails.SetSortFuncs(this->sorter_funcs);
678  this->avails.SetFilterFuncs(this->filter_funcs);
679  this->avails.ForceRebuild();
680 
682  }
683 
684  ~NewGRFWindow()
685  {
689 
690  if (this->editable && !this->execute) {
691  CopyGRFConfigList(this->orig_list, this->actives, true);
692  ResetGRFConfig(false);
694  }
695 
696  /* Remove the temporary copy of grf-list used in window */
697  ClearGRFConfigList(&this->actives);
699  }
700 
705  bool CanUpgradeCurrent()
706  {
707  GrfIdMap grfid_map;
708  FillGrfidMap(this->actives, &grfid_map);
709 
710  for (const GRFConfig *a = _all_grfs; a != NULL; a = a->next) {
711  GrfIdMap::const_iterator iter = grfid_map.find(a->ident.grfid);
712  if (iter != grfid_map.end() && a->version > iter->second->version) return true;
713  }
714  return false;
715  }
716 
718  void UpgradeCurrent()
719  {
720  GrfIdMap grfid_map;
721  FillGrfidMap(this->actives, &grfid_map);
722 
723  for (const GRFConfig *a = _all_grfs; a != NULL; a = a->next) {
724  GrfIdMap::iterator iter = grfid_map.find(a->ident.grfid);
725  if (iter == grfid_map.end() || iter->second->version >= a->version) continue;
726 
727  GRFConfig **c = &this->actives;
728  while (*c != iter->second) c = &(*c)->next;
729  GRFConfig *d = new GRFConfig(*a);
730  d->next = (*c)->next;
731  d->CopyParams(**c);
732  if (this->active_sel == *c) this->active_sel = NULL;
733  delete *c;
734  *c = d;
735  iter->second = d;
736  }
737  }
738 
739  virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
740  {
741  switch (widget) {
742  case WID_NS_FILE_LIST:
743  {
744  Dimension d = maxdim(GetSpriteSize(SPR_SQUARE), GetSpriteSize(SPR_WARNING_SIGN));
745  resize->height = max(d.height + 2U, FONT_HEIGHT_NORMAL + 2U);
746  size->height = max(size->height, WD_FRAMERECT_TOP + 6 * resize->height + WD_FRAMERECT_BOTTOM);
747  break;
748  }
749 
750  case WID_NS_AVAIL_LIST:
751  resize->height = max(12, FONT_HEIGHT_NORMAL + 2);
752  size->height = max(size->height, WD_FRAMERECT_TOP + 8 * resize->height + WD_FRAMERECT_BOTTOM);
753  break;
754 
756  Dimension dim = GetStringBoundingBox(STR_NEWGRF_SETTINGS_INFO_TITLE);
757  size->height = max(size->height, dim.height + WD_FRAMETEXT_TOP + WD_FRAMETEXT_BOTTOM);
758  size->width = max(size->width, dim.width + WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT);
759  break;
760  }
761 
762  case WID_NS_NEWGRF_INFO:
763  size->height = max(size->height, WD_FRAMERECT_TOP + 10 * FONT_HEIGHT_NORMAL + WD_FRAMERECT_BOTTOM + padding.height + 2);
764  break;
765 
766  case WID_NS_PRESET_LIST: {
767  Dimension d = GetStringBoundingBox(STR_NUM_CUSTOM);
768  for (uint i = 0; i < _grf_preset_list.Length(); i++) {
769  if (_grf_preset_list[i] != NULL) {
771  d = maxdim(d, GetStringBoundingBox(STR_JUST_RAW_STRING));
772  }
773  }
774  d.width += padding.width;
775  *size = maxdim(d, *size);
776  break;
777  }
778 
781  Dimension d = GetStringBoundingBox(STR_NEWGRF_SETTINGS_FIND_MISSING_CONTENT_BUTTON);
782  *size = maxdim(d, GetStringBoundingBox(STR_INTRO_ONLINE_CONTENT));
783  size->width += padding.width;
784  size->height += padding.height;
785  break;
786  }
787  }
788  }
789 
790  virtual void OnResize()
791  {
792  this->vscroll->SetCapacityFromWidget(this, WID_NS_FILE_LIST);
793  this->vscroll2->SetCapacityFromWidget(this, WID_NS_AVAIL_LIST);
794  }
795 
796  virtual void SetStringParameters(int widget) const
797  {
798  switch (widget) {
799  case WID_NS_PRESET_LIST:
800  if (this->preset == -1) {
801  SetDParam(0, STR_NUM_CUSTOM);
802  } else {
803  SetDParam(0, STR_JUST_RAW_STRING);
804  SetDParamStr(1, _grf_preset_list[this->preset]);
805  }
806  break;
807  }
808  }
809 
815  inline PaletteID GetPalette(const GRFConfig *c) const
816  {
817  PaletteID pal;
818 
819  /* Pick a colour */
820  switch (c->status) {
821  case GCS_NOT_FOUND:
822  case GCS_DISABLED:
823  pal = PALETTE_TO_RED;
824  break;
825  case GCS_ACTIVATED:
826  pal = PALETTE_TO_GREEN;
827  break;
828  default:
829  pal = PALETTE_TO_BLUE;
830  break;
831  }
832 
833  /* Do not show a "not-failure" colour when it actually failed to load */
834  if (pal != PALETTE_TO_RED) {
835  if (HasBit(c->flags, GCF_STATIC)) {
836  pal = PALETTE_TO_GREY;
837  } else if (HasBit(c->flags, GCF_COMPATIBLE)) {
838  pal = PALETTE_TO_ORANGE;
839  }
840  }
841 
842  return pal;
843  }
844 
845  virtual void DrawWidget(const Rect &r, int widget) const
846  {
847  switch (widget) {
848  case WID_NS_FILE_LIST: {
849  GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, PC_BLACK);
850 
851  uint step_height = this->GetWidget<NWidgetBase>(WID_NS_FILE_LIST)->resize_y;
852  uint y = r.top + WD_FRAMERECT_TOP;
853  Dimension square = GetSpriteSize(SPR_SQUARE);
854  Dimension warning = GetSpriteSize(SPR_WARNING_SIGN);
855  int square_offset_y = (step_height - square.height) / 2;
856  int warning_offset_y = (step_height - warning.height) / 2;
857  int offset_y = (step_height - FONT_HEIGHT_NORMAL) / 2;
858 
859  bool rtl = _current_text_dir == TD_RTL;
860  uint text_left = rtl ? r.left + WD_FRAMERECT_LEFT : r.left + square.width + 15;
861  uint text_right = rtl ? r.right - square.width - 15 : r.right - WD_FRAMERECT_RIGHT;
862  uint square_left = rtl ? r.right - square.width - 5 : r.left + 5;
863  uint warning_left = rtl ? r.right - square.width - warning.width - 10 : r.left + square.width + 10;
864 
865  int i = 0;
866  for (const GRFConfig *c = this->actives; c != NULL; c = c->next, i++) {
867  if (this->vscroll->IsVisible(i)) {
868  const char *text = c->GetName();
869  bool h = (this->active_sel == c);
870  PaletteID pal = this->GetPalette(c);
871 
872  if (h) {
873  GfxFillRect(r.left + 1, y, r.right - 1, y + step_height - 1, PC_DARK_BLUE);
874  } else if (i == this->active_over) {
875  /* Get index of current selection. */
876  int active_sel_pos = 0;
877  for (GRFConfig *c = this->actives; c != NULL && c != this->active_sel; c = c->next, active_sel_pos++) {}
878  if (active_sel_pos != this->active_over) {
879  uint top = this->active_over < active_sel_pos ? y + 1 : y + step_height - 2;
880  GfxFillRect(r.left + WD_FRAMERECT_LEFT, top - 1, r.right - WD_FRAMERECT_RIGHT, top + 1, PC_GREY);
881  }
882  }
883  DrawSprite(SPR_SQUARE, pal, square_left, y + square_offset_y);
884  if (c->error != NULL) DrawSprite(SPR_WARNING_SIGN, 0, warning_left, y + warning_offset_y);
885  uint txtoffset = c->error == NULL ? 0 : warning.width;
886  DrawString(text_left + (rtl ? 0 : txtoffset), text_right - (rtl ? txtoffset : 0), y + offset_y, text, h ? TC_WHITE : TC_ORANGE);
887  y += step_height;
888  }
889  }
890  if (i == this->active_over && this->vscroll->IsVisible(i)) { // Highlight is after the last GRF entry.
891  GfxFillRect(r.left + WD_FRAMERECT_LEFT, y, r.right - WD_FRAMERECT_RIGHT, y + 2, PC_GREY);
892  }
893  break;
894  }
895 
896  case WID_NS_AVAIL_LIST: {
897  GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, this->active_over == -2 ? PC_DARK_GREY : PC_BLACK);
898 
899  uint step_height = this->GetWidget<NWidgetBase>(WID_NS_AVAIL_LIST)->resize_y;
900  int offset_y = (step_height - FONT_HEIGHT_NORMAL) / 2;
901  uint y = r.top + WD_FRAMERECT_TOP;
902  uint min_index = this->vscroll2->GetPosition();
903  uint max_index = min(min_index + this->vscroll2->GetCapacity(), this->avails.Length());
904 
905  for (uint i = min_index; i < max_index; i++) {
906  const GRFConfig *c = this->avails[i];
907  bool h = (c == this->avail_sel);
908  const char *text = c->GetName();
909 
910  if (h) GfxFillRect(r.left + 1, y, r.right - 1, y + step_height - 1, PC_DARK_BLUE);
911  DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y + offset_y, text, h ? TC_WHITE : TC_SILVER);
912  y += step_height;
913  }
914  break;
915  }
916 
918  /* Create the nice grayish rectangle at the details top. */
919  GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, PC_DARK_BLUE);
920  DrawString(r.left, r.right, (r.top + r.bottom - FONT_HEIGHT_NORMAL) / 2, STR_NEWGRF_SETTINGS_INFO_TITLE, TC_FROMSTRING, SA_HOR_CENTER);
921  break;
922 
923  case WID_NS_NEWGRF_INFO: {
924  const GRFConfig *selected = this->active_sel;
925  if (selected == NULL) selected = this->avail_sel;
926  if (selected != NULL) {
927  ShowNewGRFInfo(selected, r.left + WD_FRAMERECT_LEFT, r.top + WD_FRAMERECT_TOP, r.right - WD_FRAMERECT_RIGHT, r.bottom - WD_FRAMERECT_BOTTOM, this->show_params);
928  }
929  break;
930  }
931  }
932  }
933 
934  virtual void OnClick(Point pt, int widget, int click_count)
935  {
936  if (widget >= WID_NS_NEWGRF_TEXTFILE && widget < WID_NS_NEWGRF_TEXTFILE + TFT_END) {
937  if (this->active_sel == NULL && this->avail_sel == NULL) return;
938 
939  ShowNewGRFTextfileWindow((TextfileType)(widget - WID_NS_NEWGRF_TEXTFILE), this->active_sel != NULL ? this->active_sel : this->avail_sel);
940  return;
941  }
942 
943  switch (widget) {
944  case WID_NS_PRESET_LIST: {
945  DropDownList *list = new DropDownList();
946 
947  /* Add 'None' option for clearing list */
948  *list->Append() = new DropDownListStringItem(STR_NONE, -1, false);
949 
950  for (uint i = 0; i < _grf_preset_list.Length(); i++) {
951  if (_grf_preset_list[i] != NULL) {
952  *list->Append() = new DropDownListPresetItem(i);
953  }
954  }
955 
956  this->DeleteChildWindows(WC_QUERY_STRING); // Remove the parameter query window
957  ShowDropDownList(this, list, this->preset, WID_NS_PRESET_LIST);
958  break;
959  }
960 
961  case WID_NS_OPEN_URL: {
962  const GRFConfig *c = (this->avail_sel == NULL) ? this->active_sel : this->avail_sel;
963 
964  extern void OpenBrowser(const char *url);
965  OpenBrowser(c->GetURL());
966  break;
967  }
968 
969  case WID_NS_PRESET_SAVE:
970  ShowSavePresetWindow((this->preset == -1) ? NULL : _grf_preset_list[this->preset]);
971  break;
972 
974  if (this->preset == -1) return;
975 
978  this->preset = -1;
979  this->InvalidateData();
980  this->DeleteChildWindows(WC_QUERY_STRING); // Remove the parameter query window
981  break;
982 
983  case WID_NS_MOVE_UP: { // Move GRF up
984  if (this->active_sel == NULL || !this->editable) break;
985 
986  int pos = 0;
987  for (GRFConfig **pc = &this->actives; *pc != NULL; pc = &(*pc)->next, pos++) {
988  GRFConfig *c = *pc;
989  if (c->next == this->active_sel) {
990  c->next = this->active_sel->next;
991  this->active_sel->next = c;
992  *pc = this->active_sel;
993  break;
994  }
995  }
996  this->vscroll->ScrollTowards(pos);
997  this->preset = -1;
998  this->InvalidateData();
999  break;
1000  }
1001 
1002  case WID_NS_MOVE_DOWN: { // Move GRF down
1003  if (this->active_sel == NULL || !this->editable) break;
1004 
1005  int pos = 1; // Start at 1 as we swap the selected newgrf with the next one
1006  for (GRFConfig **pc = &this->actives; *pc != NULL; pc = &(*pc)->next, pos++) {
1007  GRFConfig *c = *pc;
1008  if (c == this->active_sel) {
1009  *pc = c->next;
1010  c->next = c->next->next;
1011  (*pc)->next = c;
1012  break;
1013  }
1014  }
1015  this->vscroll->ScrollTowards(pos);
1016  this->preset = -1;
1017  this->InvalidateData();
1018  break;
1019  }
1020 
1021  case WID_NS_FILE_LIST: { // Select an active GRF.
1023 
1024  uint i = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_NS_FILE_LIST);
1025 
1026  GRFConfig *c;
1027  for (c = this->actives; c != NULL && i > 0; c = c->next, i--) {}
1028 
1029  if (this->active_sel != c) DeleteWindowByClass(WC_GRF_PARAMETERS);
1030  this->active_sel = c;
1031  this->avail_sel = NULL;
1032  this->avail_pos = -1;
1033 
1034  this->InvalidateData();
1035  if (click_count == 1) {
1036  if (this->editable && this->active_sel != NULL) SetObjectToPlaceWnd(SPR_CURSOR_MOUSE, PAL_NONE, HT_DRAG, this);
1037  break;
1038  }
1039  /* FALL THROUGH, with double click. */
1040  }
1041 
1042  case WID_NS_REMOVE: { // Remove GRF
1043  if (this->active_sel == NULL || !this->editable) break;
1045 
1046  /* Choose the next GRF file to be the selected file. */
1047  GRFConfig *newsel = this->active_sel->next;
1048  for (GRFConfig **pc = &this->actives; *pc != NULL; pc = &(*pc)->next) {
1049  GRFConfig *c = *pc;
1050  /* If the new selection is empty (i.e. we're deleting the last item
1051  * in the list, pick the file just before the selected file */
1052  if (newsel == NULL && c->next == this->active_sel) newsel = c;
1053 
1054  if (c == this->active_sel) {
1055  if (newsel == c) newsel = NULL;
1056 
1057  *pc = c->next;
1058  delete c;
1059  break;
1060  }
1061  }
1062 
1063  this->active_sel = newsel;
1064  this->preset = -1;
1065  this->avail_pos = -1;
1066  this->avail_sel = NULL;
1067  this->avails.ForceRebuild();
1069  break;
1070  }
1071 
1072  case WID_NS_UPGRADE: { // Upgrade GRF.
1073  if (!this->editable || this->actives == NULL) break;
1074  UpgradeCurrent();
1076  break;
1077  }
1078 
1079  case WID_NS_AVAIL_LIST: { // Select a non-active GRF.
1081 
1082  uint i = this->vscroll2->GetScrolledRowFromWidget(pt.y, this, WID_NS_AVAIL_LIST);
1083  this->active_sel = NULL;
1085  if (i < this->avails.Length()) {
1086  this->avail_sel = this->avails[i];
1087  this->avail_pos = i;
1088  }
1089  this->InvalidateData();
1090  if (click_count == 1) {
1091  if (this->editable && this->avail_sel != NULL && !HasBit(this->avail_sel->flags, GCF_INVALID)) SetObjectToPlaceWnd(SPR_CURSOR_MOUSE, PAL_NONE, HT_DRAG, this);
1092  break;
1093  }
1094  /* FALL THROUGH, with double click. */
1095  }
1096 
1097  case WID_NS_ADD:
1098  if (this->avail_sel == NULL || !this->editable || HasBit(this->avail_sel->flags, GCF_INVALID)) break;
1099 
1100  this->AddGRFToActive();
1101  break;
1102 
1103  case WID_NS_APPLY_CHANGES: // Apply changes made to GRF list
1104  if (!this->editable) break;
1105  if (this->execute) {
1106  ShowQuery(
1107  STR_NEWGRF_POPUP_CAUTION_CAPTION,
1108  STR_NEWGRF_CONFIRMATION_TEXT,
1109  this,
1111  );
1112  } else {
1113  CopyGRFConfigList(this->orig_list, this->actives, true);
1114  ResetGRFConfig(false);
1115  ReloadNewGRFData();
1116  }
1117  this->DeleteChildWindows(WC_QUERY_STRING); // Remove the parameter query window
1118  break;
1119 
1121  case WID_NS_SET_PARAMETERS: { // Edit parameters
1122  if (this->active_sel == NULL || !this->show_params || this->active_sel->num_valid_params == 0) break;
1123 
1124  OpenGRFParameterWindow(this->active_sel, this->editable);
1125  break;
1126  }
1127 
1128  case WID_NS_TOGGLE_PALETTE:
1129  if (this->active_sel != NULL && this->editable) {
1130  this->active_sel->palette ^= GRFP_USE_MASK;
1131  this->SetDirty();
1132  }
1133  break;
1134 
1137  if (!_network_available) {
1138  ShowErrorMessage(STR_NETWORK_ERROR_NOTAVAILABLE, INVALID_STRING_ID, WL_ERROR);
1139  } else {
1140 #if defined(ENABLE_NETWORK)
1141  this->DeleteChildWindows(WC_QUERY_STRING); // Remove the parameter query window
1142 
1143  ShowMissingContentWindow(this->actives);
1144 #endif
1145  }
1146  break;
1147 
1148  case WID_NS_RESCAN_FILES:
1149  case WID_NS_RESCAN_FILES2:
1150  ScanNewGRFFiles(this);
1151  break;
1152  }
1153  }
1154 
1155  virtual void OnNewGRFsScanned()
1156  {
1157  this->avail_sel = NULL;
1158  this->avail_pos = -1;
1159  this->avails.ForceRebuild();
1160  this->DeleteChildWindows(WC_QUERY_STRING); // Remove the parameter query window
1161  this->DeleteChildWindows(WC_TEXTFILE); // Remove the view textfile window
1162  }
1163 
1164  virtual void OnDropdownSelect(int widget, int index)
1165  {
1166  if (!this->editable) return;
1167 
1168  ClearGRFConfigList(&this->actives);
1169  this->preset = index;
1170 
1171  if (index != -1) {
1172  this->actives = LoadGRFPresetFromConfig(_grf_preset_list[index]);
1173  }
1174  this->avails.ForceRebuild();
1175 
1178  this->active_sel = NULL;
1180  }
1181 
1182  virtual void OnQueryTextFinished(char *str)
1183  {
1184  if (str == NULL) return;
1185 
1186  SaveGRFPresetToConfig(str, this->actives);
1188 
1189  /* Switch to this preset */
1190  for (uint i = 0; i < _grf_preset_list.Length(); i++) {
1191  if (_grf_preset_list[i] != NULL && strcmp(_grf_preset_list[i], str) == 0) {
1192  this->preset = i;
1193  break;
1194  }
1195  }
1196 
1197  this->InvalidateData();
1198  }
1199 
1205  virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
1206  {
1207  if (!gui_scope) return;
1208  switch (data) {
1209  default:
1210  /* Nothing important to do */
1211  break;
1212 
1213  case GOID_NEWGRF_RESCANNED:
1214  /* Search the list for items that are now found and mark them as such. */
1215  for (GRFConfig **l = &this->actives; *l != NULL; l = &(*l)->next) {
1216  GRFConfig *c = *l;
1217  bool compatible = HasBit(c->flags, GCF_COMPATIBLE);
1218  if (c->status != GCS_NOT_FOUND && !compatible) continue;
1219 
1220  const GRFConfig *f = FindGRFConfig(c->ident.grfid, FGCM_EXACT, compatible ? c->original_md5sum : c->ident.md5sum);
1221  if (f == NULL || HasBit(f->flags, GCF_INVALID)) continue;
1222 
1223  *l = new GRFConfig(*f);
1224  (*l)->next = c->next;
1225 
1226  if (active_sel == c) active_sel = *l;
1227 
1228  delete c;
1229  }
1230 
1231  this->avails.ForceRebuild();
1232  /* FALL THROUGH */
1234  this->preset = -1;
1235  /* FALL THROUGH */
1237  /* Update scrollbars */
1238  int i = 0;
1239  for (const GRFConfig *c = this->actives; c != NULL; c = c->next, i++) {}
1240 
1241  this->vscroll->SetCount(i + 1); // Reserve empty space for drag and drop handling.
1242 
1243  if (this->avail_pos >= 0) this->vscroll2->ScrollTowards(this->avail_pos);
1244  break;
1245  }
1246  }
1247 
1248  this->BuildAvailables();
1249 
1250  this->SetWidgetsDisabledState(!this->editable,
1255  );
1256  this->SetWidgetDisabledState(WID_NS_ADD, !this->editable || this->avail_sel == NULL || HasBit(this->avail_sel->flags, GCF_INVALID));
1257  this->SetWidgetDisabledState(WID_NS_UPGRADE, !this->editable || this->actives == NULL || !this->CanUpgradeCurrent());
1258 
1259  bool disable_all = this->active_sel == NULL || !this->editable;
1260  this->SetWidgetsDisabledState(disable_all,
1261  WID_NS_REMOVE,
1265  );
1266 
1267  const GRFConfig *c = (this->avail_sel == NULL) ? this->active_sel : this->avail_sel;
1268  for (TextfileType tft = TFT_BEGIN; tft < TFT_END; tft++) {
1269  this->SetWidgetDisabledState(WID_NS_NEWGRF_TEXTFILE + tft, c == NULL || c->GetTextfile(tft) == NULL);
1270  }
1271  this->SetWidgetDisabledState(WID_NS_OPEN_URL, c == NULL || StrEmpty(c->GetURL()));
1272 
1273  this->SetWidgetDisabledState(WID_NS_SET_PARAMETERS, !this->show_params || this->active_sel == NULL || this->active_sel->num_valid_params == 0);
1274  this->SetWidgetDisabledState(WID_NS_VIEW_PARAMETERS, !this->show_params || this->active_sel == NULL || this->active_sel->num_valid_params == 0);
1275  this->SetWidgetDisabledState(WID_NS_TOGGLE_PALETTE, disable_all ||
1277 
1278  if (!disable_all) {
1279  /* All widgets are now enabled, so disable widgets we can't use */
1280  if (this->active_sel == this->actives) this->DisableWidget(WID_NS_MOVE_UP);
1281  if (this->active_sel->next == NULL) this->DisableWidget(WID_NS_MOVE_DOWN);
1282  }
1283 
1284  this->SetWidgetDisabledState(WID_NS_PRESET_DELETE, this->preset == -1);
1285 
1286  bool has_missing = false;
1287  bool has_compatible = false;
1288  for (const GRFConfig *c = this->actives; !has_missing && c != NULL; c = c->next) {
1289  has_missing |= c->status == GCS_NOT_FOUND;
1290  has_compatible |= HasBit(c->flags, GCF_COMPATIBLE);
1291  }
1292  uint32 widget_data;
1293  StringID tool_tip;
1294  if (has_missing || has_compatible) {
1295  widget_data = STR_NEWGRF_SETTINGS_FIND_MISSING_CONTENT_BUTTON;
1296  tool_tip = STR_NEWGRF_SETTINGS_FIND_MISSING_CONTENT_TOOLTIP;
1297  } else {
1298  widget_data = STR_INTRO_ONLINE_CONTENT;
1299  tool_tip = STR_INTRO_TOOLTIP_ONLINE_CONTENT;
1300  }
1301  this->GetWidget<NWidgetCore>(WID_NS_CONTENT_DOWNLOAD)->widget_data = widget_data;
1302  this->GetWidget<NWidgetCore>(WID_NS_CONTENT_DOWNLOAD)->tool_tip = tool_tip;
1303  this->GetWidget<NWidgetCore>(WID_NS_CONTENT_DOWNLOAD2)->widget_data = widget_data;
1304  this->GetWidget<NWidgetCore>(WID_NS_CONTENT_DOWNLOAD2)->tool_tip = tool_tip;
1305 
1306  this->SetWidgetDisabledState(WID_NS_PRESET_SAVE, has_missing);
1307  }
1308 
1309  virtual EventState OnKeyPress(WChar key, uint16 keycode)
1310  {
1311  if (!this->editable) return ES_NOT_HANDLED;
1312 
1313  switch (keycode) {
1314  case WKC_UP:
1315  /* scroll up by one */
1316  if (this->avail_pos > 0) this->avail_pos--;
1317  break;
1318 
1319  case WKC_DOWN:
1320  /* scroll down by one */
1321  if (this->avail_pos < (int)this->avails.Length() - 1) this->avail_pos++;
1322  break;
1323 
1324  case WKC_PAGEUP:
1325  /* scroll up a page */
1326  this->avail_pos = (this->avail_pos < this->vscroll2->GetCapacity()) ? 0 : this->avail_pos - this->vscroll2->GetCapacity();
1327  break;
1328 
1329  case WKC_PAGEDOWN:
1330  /* scroll down a page */
1331  this->avail_pos = min(this->avail_pos + this->vscroll2->GetCapacity(), (int)this->avails.Length() - 1);
1332  break;
1333 
1334  case WKC_HOME:
1335  /* jump to beginning */
1336  this->avail_pos = 0;
1337  break;
1338 
1339  case WKC_END:
1340  /* jump to end */
1341  this->avail_pos = this->avails.Length() - 1;
1342  break;
1343 
1344  default:
1345  return ES_NOT_HANDLED;
1346  }
1347 
1348  if (this->avails.Length() == 0) this->avail_pos = -1;
1349  if (this->avail_pos >= 0) {
1350  this->avail_sel = this->avails[this->avail_pos];
1351  this->vscroll2->ScrollTowards(this->avail_pos);
1352  this->InvalidateData(0);
1353  }
1354 
1355  return ES_HANDLED;
1356  }
1357 
1358  virtual void OnEditboxChanged(int wid)
1359  {
1360  if (!this->editable) return;
1361 
1362  string_filter.SetFilterTerm(this->filter_editbox.text.buf);
1363  this->avails.SetFilterState(!string_filter.IsEmpty());
1364  this->avails.ForceRebuild();
1365  this->InvalidateData(0);
1366  }
1367 
1368  virtual void OnDragDrop(Point pt, int widget)
1369  {
1370  if (!this->editable) return;
1371 
1372  if (widget == WID_NS_FILE_LIST) {
1373  if (this->active_sel != NULL) {
1374  /* Get pointer to the selected file in the active list. */
1375  int from_pos = 0;
1376  GRFConfig **from_prev;
1377  for (from_prev = &this->actives; *from_prev != this->active_sel; from_prev = &(*from_prev)->next, from_pos++) {}
1378 
1379  /* Gets the drag-and-drop destination offset. Ignore the last dummy line. */
1380  int to_pos = min(this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_NS_FILE_LIST), this->vscroll->GetCount() - 2);
1381  if (to_pos != from_pos) { // Don't move NewGRF file over itself.
1382  /* Get pointer to destination position. */
1383  GRFConfig **to_prev = &this->actives;
1384  for (int i = from_pos < to_pos ? -1 : 0; *to_prev != NULL && i < to_pos; to_prev = &(*to_prev)->next, i++) {}
1385 
1386  /* Detach NewGRF file from its original position. */
1387  *from_prev = this->active_sel->next;
1388 
1389  /* Attach NewGRF file to its new position. */
1390  this->active_sel->next = *to_prev;
1391  *to_prev = this->active_sel;
1392 
1393  this->vscroll->ScrollTowards(to_pos);
1394  this->preset = -1;
1395  this->InvalidateData();
1396  }
1397  } else if (this->avail_sel != NULL) {
1398  int to_pos = min(this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_NS_FILE_LIST), this->vscroll->GetCount() - 1);
1399  this->AddGRFToActive(to_pos);
1400  }
1401  } else if (widget == WID_NS_AVAIL_LIST && this->active_sel != NULL) {
1402  /* Remove active NewGRF file by dragging it over available list. */
1403  Point dummy = {-1, -1};
1404  this->OnClick(dummy, WID_NS_REMOVE, 1);
1405  }
1406 
1408 
1409  if (this->active_over != -1) {
1410  /* End of drag-and-drop, hide dragged destination highlight. */
1411  this->SetWidgetDirty(this->active_over == -2 ? WID_NS_AVAIL_LIST : WID_NS_FILE_LIST);
1412  this->active_over = -1;
1413  }
1414  }
1415 
1416  virtual void OnMouseDrag(Point pt, int widget)
1417  {
1418  if (!this->editable) return;
1419 
1420  if (widget == WID_NS_FILE_LIST && (this->active_sel != NULL || this->avail_sel != NULL)) {
1421  /* An NewGRF file is dragged over the active list. */
1422  int to_pos = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_NS_FILE_LIST);
1423  /* Skip the last dummy line if the source is from the active list. */
1424  to_pos = min(to_pos, this->vscroll->GetCount() - (this->active_sel != NULL ? 2 : 1));
1425 
1426  if (to_pos != this->active_over) {
1427  this->active_over = to_pos;
1429  }
1430  } else if (widget == WID_NS_AVAIL_LIST && this->active_sel != NULL) {
1431  this->active_over = -2;
1433  } else if (this->active_over != -1) {
1434  this->SetWidgetDirty(this->active_over == -2 ? WID_NS_AVAIL_LIST : WID_NS_FILE_LIST);
1435  this->active_over = -1;
1436  }
1437  }
1438 
1439 private:
1441  static int CDECL NameSorter(const GRFConfig * const *a, const GRFConfig * const *b)
1442  {
1443  int i = strnatcmp((*a)->GetName(), (*b)->GetName(), true); // Sort by name (natural sorting).
1444  if (i != 0) return i;
1445 
1446  i = (*a)->version - (*b)->version;
1447  if (i != 0) return i;
1448 
1449  return memcmp((*a)->ident.md5sum, (*b)->ident.md5sum, lengthof((*b)->ident.md5sum));
1450  }
1451 
1453  static bool CDECL TagNameFilter(const GRFConfig * const *a, StringFilter &filter)
1454  {
1455  filter.ResetState();
1456  filter.AddLine((*a)->GetName());
1457  filter.AddLine((*a)->filename);
1458  filter.AddLine((*a)->GetDescription());
1459  return filter.GetState();;
1460  }
1461 
1462  void BuildAvailables()
1463  {
1464  if (!this->avails.NeedRebuild()) return;
1465 
1466  this->avails.Clear();
1467 
1468  for (const GRFConfig *c = _all_grfs; c != NULL; c = c->next) {
1469  bool found = false;
1470  for (const GRFConfig *grf = this->actives; grf != NULL && !found; grf = grf->next) found = grf->ident.HasGrfIdentifier(c->ident.grfid, c->ident.md5sum);
1471  if (found) continue;
1472 
1474  *this->avails.Append() = c;
1475  } else {
1477  /*
1478  * If the best version is 0, then all NewGRF with this GRF ID
1479  * have version 0, so for backward compatibility reasons we
1480  * want to show them all.
1481  * If we are the best version, then we definitely want to
1482  * show that NewGRF!.
1483  */
1484  if (best->version == 0 || best->ident.HasGrfIdentifier(c->ident.grfid, c->ident.md5sum)) {
1485  *this->avails.Append() = c;
1486  }
1487  }
1488  }
1489 
1490  this->avails.Filter(this->string_filter);
1491  this->avails.Compact();
1492  this->avails.RebuildDone();
1493  this->avails.Sort();
1494 
1495  if (this->avail_sel != NULL) {
1496  this->avail_pos = this->avails.FindIndex(this->avail_sel);
1497  if (this->avail_pos < 0) this->avail_sel = NULL;
1498  }
1499 
1500  this->vscroll2->SetCount(this->avails.Length()); // Update the scrollbar
1501  }
1502 
1508  bool AddGRFToActive(int ins_pos = -1)
1509  {
1510  if (this->avail_sel == NULL || !this->editable || HasBit(this->avail_sel->flags, GCF_INVALID)) return false;
1511 
1512  int count = 0;
1513  GRFConfig **entry = NULL;
1514  GRFConfig **list;
1515  /* Find last entry in the list, checking for duplicate grfid on the way */
1516  for (list = &this->actives; *list != NULL; list = &(*list)->next, ins_pos--) {
1517  if (ins_pos == 0) entry = list; // Insert position? Save.
1518  if ((*list)->ident.grfid == this->avail_sel->ident.grfid) {
1519  ShowErrorMessage(STR_NEWGRF_DUPLICATE_GRFID, INVALID_STRING_ID, WL_INFO);
1520  return false;
1521  }
1522  count++;
1523  }
1524  if (entry == NULL) entry = list;
1525  if (count >= MAX_NEWGRFS) {
1526  ShowErrorMessage(STR_NEWGRF_TOO_MANY_NEWGRFS, INVALID_STRING_ID, WL_INFO);
1527  return false;
1528  }
1529 
1530  GRFConfig *c = new GRFConfig(*this->avail_sel); // Copy GRF details from scanned list.
1531  c->SetParameterDefaults();
1532 
1533  /* Insert GRF config to configuration list. */
1534  c->next = *entry;
1535  *entry = c;
1536 
1537  /* Select next (or previous, if last one) item in the list. */
1538  int new_pos = this->avail_pos + 1;
1539  if (new_pos >= (int)this->avails.Length()) new_pos = this->avail_pos - 1;
1540  this->avail_pos = new_pos;
1541  if (new_pos >= 0) this->avail_sel = this->avails[new_pos];
1542 
1543  this->avails.ForceRebuild();
1545  return true;
1546  }
1547 };
1548 
1549 #if defined(ENABLE_NETWORK)
1550 
1555 {
1556  /* Only show the things in the current list, or everything when nothing's selected */
1557  ContentVector cv;
1558  for (const GRFConfig *c = list; c != NULL; c = c->next) {
1559  if (c->status != GCS_NOT_FOUND && !HasBit(c->flags, GCF_COMPATIBLE)) continue;
1560 
1561  ContentInfo *ci = new ContentInfo();
1562  ci->type = CONTENT_TYPE_NEWGRF;
1564  strecpy(ci->name, c->GetName(), lastof(ci->name));
1565  ci->unique_id = BSWAP32(c->ident.grfid);
1566  memcpy(ci->md5sum, HasBit(c->flags, GCF_COMPATIBLE) ? c->original_md5sum : c->ident.md5sum, sizeof(ci->md5sum));
1567  *cv.Append() = ci;
1568  }
1569  ShowNetworkContentListWindow(cv.Length() == 0 ? NULL : &cv, CONTENT_TYPE_NEWGRF);
1570 }
1571 #endif
1572 
1573 Listing NewGRFWindow::last_sorting = {false, 0};
1575 
1577  &NameSorter,
1578 };
1579 
1581  &TagNameFilter,
1582 };
1583 
1591 public:
1592  static const uint INTER_LIST_SPACING;
1593  static const uint INTER_COLUMN_SPACING;
1594  static const uint MAX_EXTRA_INFO_WIDTH;
1595  static const uint MIN_EXTRA_FOR_3_COLUMNS;
1596 
1600  bool editable;
1601 
1603  {
1604  this->avs = avs;
1605  this->acs = acs;
1606  this->inf = inf;
1607 
1608  this->Add(this->avs);
1609  this->Add(this->acs);
1610  this->Add(this->inf);
1611 
1612  this->editable = true; // Temporary setting, 'real' value is set in SetupSmallestSize().
1613  }
1614 
1615  virtual void SetupSmallestSize(Window *w, bool init_array)
1616  {
1617  /* Copy state flag from the window. */
1618  assert(dynamic_cast<NewGRFWindow *>(w) != NULL);
1619  NewGRFWindow *ngw = (NewGRFWindow *)w;
1620  this->editable = ngw->editable;
1621 
1622  this->avs->SetupSmallestSize(w, init_array);
1623  this->acs->SetupSmallestSize(w, init_array);
1624  this->inf->SetupSmallestSize(w, init_array);
1625 
1626  uint min_avs_width = this->avs->smallest_x + this->avs->padding_left + this->avs->padding_right;
1627  uint min_acs_width = this->acs->smallest_x + this->acs->padding_left + this->acs->padding_right;
1628  uint min_inf_width = this->inf->smallest_x + this->inf->padding_left + this->inf->padding_right;
1629 
1630  uint min_avs_height = this->avs->smallest_y + this->avs->padding_top + this->avs->padding_bottom;
1631  uint min_acs_height = this->acs->smallest_y + this->acs->padding_top + this->acs->padding_bottom;
1632  uint min_inf_height = this->inf->smallest_y + this->inf->padding_top + this->inf->padding_bottom;
1633 
1634  /* Smallest window is in two column mode. */
1635  this->smallest_x = max(min_avs_width, min_acs_width) + INTER_COLUMN_SPACING + min_inf_width;
1636  this->smallest_y = max(min_inf_height, min_acs_height + INTER_LIST_SPACING + min_avs_height);
1637 
1638  /* Filling. */
1639  this->fill_x = LeastCommonMultiple(this->avs->fill_x, this->acs->fill_x);
1640  if (this->inf->fill_x > 0 && (this->fill_x == 0 || this->fill_x > this->inf->fill_x)) this->fill_x = this->inf->fill_x;
1641 
1642  this->fill_y = this->avs->fill_y;
1643  if (this->acs->fill_y > 0 && (this->fill_y == 0 || this->fill_y > this->acs->fill_y)) this->fill_y = this->acs->fill_y;
1644  this->fill_y = LeastCommonMultiple(this->fill_y, this->inf->fill_y);
1645 
1646  /* Resizing. */
1647  this->resize_x = LeastCommonMultiple(this->avs->resize_x, this->acs->resize_x);
1648  if (this->inf->resize_x > 0 && (this->resize_x == 0 || this->resize_x > this->inf->resize_x)) this->resize_x = this->inf->resize_x;
1649 
1650  this->resize_y = this->avs->resize_y;
1651  if (this->acs->resize_y > 0 && (this->resize_y == 0 || this->resize_y > this->acs->resize_y)) this->resize_y = this->acs->resize_y;
1652  this->resize_y = LeastCommonMultiple(this->resize_y, this->inf->resize_y);
1653 
1654  /* Make sure the height suits the 3 column (resp. not-editable) format; the 2 column format can easily fill space between the lists */
1655  this->smallest_y = ComputeMaxSize(min_acs_height, this->smallest_y + this->resize_y - 1, this->resize_y);
1656  }
1657 
1658  virtual void AssignSizePosition(SizingType sizing, uint x, uint y, uint given_width, uint given_height, bool rtl)
1659  {
1660  this->StoreSizePosition(sizing, x, y, given_width, given_height);
1661 
1662  uint min_avs_width = this->avs->smallest_x + this->avs->padding_left + this->avs->padding_right;
1663  uint min_acs_width = this->acs->smallest_x + this->acs->padding_left + this->acs->padding_right;
1664  uint min_inf_width = this->inf->smallest_x + this->inf->padding_left + this->inf->padding_right;
1665 
1666  uint min_list_width = max(min_avs_width, min_acs_width); // Smallest width of the lists such that they have equal width (incl padding).
1667  uint avs_extra_width = min_list_width - min_avs_width; // Additional width needed for avs to reach min_list_width.
1668  uint acs_extra_width = min_list_width - min_acs_width; // Additional width needed for acs to reach min_list_width.
1669 
1670  /* Use 2 or 3 columns? */
1671  uint min_three_columns = min_avs_width + min_acs_width + min_inf_width + 2 * INTER_COLUMN_SPACING;
1672  uint min_two_columns = min_list_width + min_inf_width + INTER_COLUMN_SPACING;
1673  bool use_three_columns = this->editable && (min_three_columns + MIN_EXTRA_FOR_3_COLUMNS <= given_width);
1674 
1675  /* Info panel is a separate column in both modes. Compute its width first. */
1676  uint extra_width, inf_width;
1677  if (use_three_columns) {
1678  extra_width = given_width - min_three_columns;
1679  inf_width = min(MAX_EXTRA_INFO_WIDTH, extra_width / 2);
1680  } else {
1681  extra_width = given_width - min_two_columns;
1682  inf_width = min(MAX_EXTRA_INFO_WIDTH, extra_width / 2);
1683  }
1684  inf_width = ComputeMaxSize(this->inf->smallest_x, this->inf->smallest_x + inf_width, this->inf->GetHorizontalStepSize(sizing));
1685  extra_width -= inf_width - this->inf->smallest_x;
1686 
1687  uint inf_height = ComputeMaxSize(this->inf->smallest_y, given_height, this->inf->GetVerticalStepSize(sizing));
1688 
1689  if (use_three_columns) {
1690  /* Three column display, first make both lists equally wide, then divide whatever is left between both lists.
1691  * Only keep track of what avs gets, all other space goes to acs. */
1692  uint avs_width = min(avs_extra_width, extra_width);
1693  extra_width -= avs_width;
1694  extra_width -= min(acs_extra_width, extra_width);
1695  avs_width += extra_width / 2;
1696 
1697  avs_width = ComputeMaxSize(this->avs->smallest_x, this->avs->smallest_x + avs_width, this->avs->GetHorizontalStepSize(sizing));
1698 
1699  uint acs_width = given_width - // Remaining space, including horizontal padding.
1700  inf_width - this->inf->padding_left - this->inf->padding_right -
1701  avs_width - this->avs->padding_left - this->avs->padding_right - 2 * INTER_COLUMN_SPACING;
1702  acs_width = ComputeMaxSize(min_acs_width, acs_width, this->acs->GetHorizontalStepSize(sizing)) -
1703  this->acs->padding_left - this->acs->padding_right;
1704 
1705  /* Never use fill_y on these; the minimal size is chosen, so that the 3 column view looks nice */
1706  uint avs_height = ComputeMaxSize(this->avs->smallest_y, given_height, this->avs->resize_y);
1707  uint acs_height = ComputeMaxSize(this->acs->smallest_y, given_height, this->acs->resize_y);
1708 
1709  /* Assign size and position to the children. */
1710  if (rtl) {
1711  x += this->inf->padding_left;
1712  this->inf->AssignSizePosition(sizing, x, y + this->inf->padding_top, inf_width, inf_height, rtl);
1713  x += inf_width + this->inf->padding_right + INTER_COLUMN_SPACING;
1714  } else {
1715  x += this->avs->padding_left;
1716  this->avs->AssignSizePosition(sizing, x, y + this->avs->padding_top, avs_width, avs_height, rtl);
1717  x += avs_width + this->avs->padding_right + INTER_COLUMN_SPACING;
1718  }
1719 
1720  x += this->acs->padding_left;
1721  this->acs->AssignSizePosition(sizing, x, y + this->acs->padding_top, acs_width, acs_height, rtl);
1722  x += acs_width + this->acs->padding_right + INTER_COLUMN_SPACING;
1723 
1724  if (rtl) {
1725  x += this->avs->padding_left;
1726  this->avs->AssignSizePosition(sizing, x, y + this->avs->padding_top, avs_width, avs_height, rtl);
1727  } else {
1728  x += this->inf->padding_left;
1729  this->inf->AssignSizePosition(sizing, x, y + this->inf->padding_top, inf_width, inf_height, rtl);
1730  }
1731  } else {
1732  /* Two columns, all space in extra_width goes to both lists. Since the lists are underneath each other,
1733  * the column is min_list_width wide at least. */
1734  uint avs_width = ComputeMaxSize(this->avs->smallest_x, this->avs->smallest_x + avs_extra_width + extra_width,
1735  this->avs->GetHorizontalStepSize(sizing));
1736  uint acs_width = ComputeMaxSize(this->acs->smallest_x, this->acs->smallest_x + acs_extra_width + extra_width,
1737  this->acs->GetHorizontalStepSize(sizing));
1738 
1739  uint min_avs_height = (!this->editable) ? 0 : this->avs->smallest_y + this->avs->padding_top + this->avs->padding_bottom + INTER_LIST_SPACING;
1740  uint min_acs_height = this->acs->smallest_y + this->acs->padding_top + this->acs->padding_bottom;
1741  uint extra_height = given_height - min_acs_height - min_avs_height;
1742 
1743  /* Never use fill_y on these; instead use the INTER_LIST_SPACING as filler */
1744  uint avs_height = ComputeMaxSize(this->avs->smallest_y, this->avs->smallest_y + extra_height / 2, this->avs->resize_y);
1745  if (this->editable) extra_height -= avs_height - this->avs->smallest_y;
1746  uint acs_height = ComputeMaxSize(this->acs->smallest_y, this->acs->smallest_y + extra_height, this->acs->resize_y);
1747 
1748  /* Assign size and position to the children. */
1749  if (rtl) {
1750  x += this->inf->padding_left;
1751  this->inf->AssignSizePosition(sizing, x, y + this->inf->padding_top, inf_width, inf_height, rtl);
1752  x += inf_width + this->inf->padding_right + INTER_COLUMN_SPACING;
1753 
1754  this->acs->AssignSizePosition(sizing, x + this->acs->padding_left, y + this->acs->padding_top, acs_width, acs_height, rtl);
1755  if (this->editable) {
1756  this->avs->AssignSizePosition(sizing, x + this->avs->padding_left, y + given_height - avs_height - this->avs->padding_bottom, avs_width, avs_height, rtl);
1757  } else {
1758  this->avs->AssignSizePosition(sizing, 0, 0, this->avs->smallest_x, this->avs->smallest_y, rtl);
1759  }
1760  } else {
1761  this->acs->AssignSizePosition(sizing, x + this->acs->padding_left, y + this->acs->padding_top, acs_width, acs_height, rtl);
1762  if (this->editable) {
1763  this->avs->AssignSizePosition(sizing, x + this->avs->padding_left, y + given_height - avs_height - this->avs->padding_bottom, avs_width, avs_height, rtl);
1764  } else {
1765  this->avs->AssignSizePosition(sizing, 0, 0, this->avs->smallest_x, this->avs->smallest_y, rtl);
1766  }
1767  uint dx = this->acs->current_x + this->acs->padding_left + this->acs->padding_right;
1768  if (this->editable) {
1769  dx = max(dx, this->avs->current_x + this->avs->padding_left + this->avs->padding_right);
1770  }
1771  x += dx + INTER_COLUMN_SPACING + this->inf->padding_left;
1772  this->inf->AssignSizePosition(sizing, x, y + this->inf->padding_top, inf_width, inf_height, rtl);
1773  }
1774  }
1775  }
1776 
1777  virtual NWidgetCore *GetWidgetFromPos(int x, int y)
1778  {
1779  if (!IsInsideBS(x, this->pos_x, this->current_x) || !IsInsideBS(y, this->pos_y, this->current_y)) return NULL;
1780 
1781  NWidgetCore *nw = (this->editable) ? this->avs->GetWidgetFromPos(x, y) : NULL;
1782  if (nw == NULL) nw = this->acs->GetWidgetFromPos(x, y);
1783  if (nw == NULL) nw = this->inf->GetWidgetFromPos(x, y);
1784  return nw;
1785  }
1786 
1787  virtual void Draw(const Window *w)
1788  {
1789  if (this->editable) this->avs->Draw(w);
1790  this->acs->Draw(w);
1791  this->inf->Draw(w);
1792  }
1793 };
1794 
1799 
1800 static const NWidgetPart _nested_newgrf_actives_widgets[] = {
1801  /* Left side, presets. */
1803  NWidget(WWT_TEXT, COLOUR_MAUVE), SetDataTip(STR_NEWGRF_SETTINGS_SELECT_PRESET, STR_NULL),
1804  SetPadding(0, WD_FRAMETEXT_RIGHT, 0, 0),
1805  NWidget(WWT_DROPDOWN, COLOUR_YELLOW, WID_NS_PRESET_LIST), SetFill(1, 0), SetResize(1, 0),
1806  SetDataTip(STR_JUST_STRING, STR_NEWGRF_SETTINGS_PRESET_LIST_TOOLTIP),
1807  EndContainer(),
1809  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_PRESET_SAVE), SetFill(1, 0), SetResize(1, 0),
1810  SetDataTip(STR_NEWGRF_SETTINGS_PRESET_SAVE, STR_NEWGRF_SETTINGS_PRESET_SAVE_TOOLTIP),
1811  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_PRESET_DELETE), SetFill(1, 0), SetResize(1, 0),
1812  SetDataTip(STR_NEWGRF_SETTINGS_PRESET_DELETE, STR_NEWGRF_SETTINGS_PRESET_DELETE_TOOLTIP),
1813  EndContainer(),
1814 
1816  NWidget(WWT_PANEL, COLOUR_MAUVE),
1817  NWidget(WWT_LABEL, COLOUR_MAUVE), SetDataTip(STR_NEWGRF_SETTINGS_ACTIVE_LIST, STR_NULL),
1819  /* Left side, active grfs. */
1820  NWidget(NWID_HORIZONTAL), SetPadding(0, 2, 0, 2),
1821  NWidget(WWT_PANEL, COLOUR_MAUVE),
1822  NWidget(WWT_INSET, COLOUR_MAUVE, WID_NS_FILE_LIST), SetMinimalSize(100, 1), SetPadding(2, 2, 2, 2),
1823  SetFill(1, 1), SetResize(1, 1), SetScrollbar(WID_NS_SCROLLBAR), SetDataTip(STR_NULL, STR_NEWGRF_SETTINGS_FILE_TOOLTIP),
1824  EndContainer(),
1825  EndContainer(),
1826  NWidget(NWID_VSCROLLBAR, COLOUR_MAUVE, WID_NS_SCROLLBAR),
1827  EndContainer(),
1828  /* Buttons. */
1829  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_NS_SHOW_REMOVE),
1831  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_REMOVE), SetFill(1, 0), SetResize(1, 0),
1832  SetDataTip(STR_NEWGRF_SETTINGS_REMOVE, STR_NEWGRF_SETTINGS_REMOVE_TOOLTIP),
1834  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_MOVE_UP), SetFill(1, 0), SetResize(1, 0),
1835  SetDataTip(STR_NEWGRF_SETTINGS_MOVEUP, STR_NEWGRF_SETTINGS_MOVEUP_TOOLTIP),
1836  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_MOVE_DOWN), SetFill(1, 0), SetResize(1, 0),
1837  SetDataTip(STR_NEWGRF_SETTINGS_MOVEDOWN, STR_NEWGRF_SETTINGS_MOVEDOWN_TOOLTIP),
1838  EndContainer(),
1839  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_UPGRADE), SetFill(1, 0), SetResize(1, 0),
1840  SetDataTip(STR_NEWGRF_SETTINGS_UPGRADE, STR_NEWGRF_SETTINGS_UPGRADE_TOOLTIP),
1841  EndContainer(),
1842 
1844  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_RESCAN_FILES2), SetFill(1, 0), SetResize(1, 0),
1845  SetDataTip(STR_NEWGRF_SETTINGS_RESCAN_FILES, STR_NEWGRF_SETTINGS_RESCAN_FILES_TOOLTIP),
1846  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_CONTENT_DOWNLOAD2), SetFill(1, 0), SetResize(1, 0),
1847  SetDataTip(STR_INTRO_ONLINE_CONTENT, STR_INTRO_TOOLTIP_ONLINE_CONTENT),
1848  EndContainer(),
1849  EndContainer(),
1850  EndContainer(),
1851 };
1852 
1853 static const NWidgetPart _nested_newgrf_availables_widgets[] = {
1854  NWidget(WWT_PANEL, COLOUR_MAUVE),
1855  NWidget(WWT_LABEL, COLOUR_MAUVE), SetDataTip(STR_NEWGRF_SETTINGS_INACTIVE_LIST, STR_NULL),
1857  /* Left side, available grfs, filter edit box. */
1860  NWidget(WWT_TEXT, COLOUR_MAUVE), SetFill(0, 1), SetDataTip(STR_NEWGRF_FILTER_TITLE, STR_NULL),
1861  NWidget(WWT_EDITBOX, COLOUR_MAUVE, WID_NS_FILTER), SetFill(1, 0), SetMinimalSize(50, 12), SetResize(1, 0),
1862  SetDataTip(STR_LIST_FILTER_OSKTITLE, STR_LIST_FILTER_TOOLTIP),
1863  EndContainer(),
1864  /* Left side, available grfs. */
1865  NWidget(NWID_HORIZONTAL), SetPadding(0, 2, 0, 2),
1866  NWidget(WWT_PANEL, COLOUR_MAUVE),
1867  NWidget(WWT_INSET, COLOUR_MAUVE, WID_NS_AVAIL_LIST), SetMinimalSize(100, 1), SetPadding(2, 2, 2, 2),
1869  EndContainer(),
1870  EndContainer(),
1871  NWidget(NWID_VSCROLLBAR, COLOUR_MAUVE, WID_NS_SCROLL2BAR),
1872  EndContainer(),
1873  /* Left side, available grfs, buttons. */
1875  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_ADD), SetFill(1, 0), SetResize(1, 0),
1876  SetDataTip(STR_NEWGRF_SETTINGS_ADD, STR_NEWGRF_SETTINGS_ADD_FILE_TOOLTIP),
1878  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_RESCAN_FILES), SetFill(1, 0), SetResize(1, 0),
1879  SetDataTip(STR_NEWGRF_SETTINGS_RESCAN_FILES, STR_NEWGRF_SETTINGS_RESCAN_FILES_TOOLTIP),
1880  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_CONTENT_DOWNLOAD), SetFill(1, 0), SetResize(1, 0),
1881  SetDataTip(STR_INTRO_ONLINE_CONTENT, STR_INTRO_TOOLTIP_ONLINE_CONTENT),
1882  EndContainer(),
1883  EndContainer(),
1884  EndContainer(),
1885 };
1886 
1887 static const NWidgetPart _nested_newgrf_infopanel_widgets[] = {
1888  /* Right side, info panel. */
1889  NWidget(NWID_VERTICAL), SetPadding(0, 0, 2, 0),
1890  NWidget(WWT_PANEL, COLOUR_MAUVE), SetPadding(0, 0, 2, 0),
1891  NWidget(WWT_EMPTY, COLOUR_MAUVE, WID_NS_NEWGRF_INFO_TITLE), SetFill(1, 0), SetResize(1, 0),
1892  NWidget(WWT_EMPTY, COLOUR_MAUVE, WID_NS_NEWGRF_INFO), SetFill(1, 1), SetResize(1, 1), SetMinimalSize(150, 100),
1893  EndContainer(),
1894  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_OPEN_URL), SetFill(1, 0), SetResize(1, 0),
1895  SetDataTip(STR_CONTENT_OPEN_URL, STR_CONTENT_OPEN_URL_TOOLTIP),
1896  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_NEWGRF_TEXTFILE + TFT_README), SetFill(1, 0), SetResize(1, 0),
1897  SetDataTip(STR_TEXTFILE_VIEW_README, STR_NULL),
1900  SetDataTip(STR_TEXTFILE_VIEW_CHANGELOG, STR_NULL),
1901  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_NEWGRF_TEXTFILE + TFT_LICENSE), SetFill(1, 0), SetResize(1, 0),
1902  SetDataTip(STR_TEXTFILE_VIEW_LICENCE, STR_NULL),
1903  EndContainer(),
1904  EndContainer(),
1905  NWidget(NWID_SELECTION, INVALID_COLOUR, WID_NS_SHOW_APPLY),
1906  /* Right side, buttons. */
1909  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_SET_PARAMETERS), SetFill(1, 0), SetResize(1, 0),
1910  SetDataTip(STR_NEWGRF_SETTINGS_SET_PARAMETERS, STR_NULL),
1911  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_TOGGLE_PALETTE), SetFill(1, 0), SetResize(1, 0),
1912  SetDataTip(STR_NEWGRF_SETTINGS_TOGGLE_PALETTE, STR_NEWGRF_SETTINGS_TOGGLE_PALETTE_TOOLTIP),
1913  EndContainer(),
1914  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_APPLY_CHANGES), SetFill(1, 0), SetResize(1, 0),
1915  SetDataTip(STR_NEWGRF_SETTINGS_APPLY_CHANGES, STR_NULL),
1916  EndContainer(),
1917  NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_NS_VIEW_PARAMETERS), SetFill(1, 0), SetResize(1, 0),
1918  SetDataTip(STR_NEWGRF_SETTINGS_SHOW_PARAMETERS, STR_NULL),
1919  EndContainer(),
1920 };
1921 
1923 NWidgetBase* NewGRFDisplay(int *biggest_index)
1924 {
1925  NWidgetBase *avs = MakeNWidgets(_nested_newgrf_availables_widgets, lengthof(_nested_newgrf_availables_widgets), biggest_index, NULL);
1926 
1927  int biggest2;
1928  NWidgetBase *acs = MakeNWidgets(_nested_newgrf_actives_widgets, lengthof(_nested_newgrf_actives_widgets), &biggest2, NULL);
1929  *biggest_index = max(*biggest_index, biggest2);
1930 
1931  NWidgetBase *inf = MakeNWidgets(_nested_newgrf_infopanel_widgets, lengthof(_nested_newgrf_infopanel_widgets), &biggest2, NULL);
1932  *biggest_index = max(*biggest_index, biggest2);
1933 
1934  return new NWidgetNewGRFDisplay(avs, acs, inf);
1935 }
1936 
1937 /* Widget definition of the manage newgrfs window */
1938 static const NWidgetPart _nested_newgrf_widgets[] = {
1940  NWidget(WWT_CLOSEBOX, COLOUR_MAUVE),
1941  NWidget(WWT_CAPTION, COLOUR_MAUVE), SetDataTip(STR_NEWGRF_SETTINGS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1942  NWidget(WWT_DEFSIZEBOX, COLOUR_MAUVE),
1943  EndContainer(),
1944  NWidget(WWT_PANEL, COLOUR_MAUVE),
1946  /* Resize button. */
1948  NWidget(NWID_SPACER), SetFill(1, 0), SetResize(1, 0),
1949  NWidget(WWT_RESIZEBOX, COLOUR_MAUVE),
1950  EndContainer(),
1951  EndContainer(),
1952 };
1953 
1954 /* Window definition of the manage newgrfs window */
1955 static WindowDesc _newgrf_desc(
1956  WDP_CENTER, "settings_newgrf", 300, 263,
1958  0,
1959  _nested_newgrf_widgets, lengthof(_nested_newgrf_widgets)
1960 );
1961 
1967 static void NewGRFConfirmationCallback(Window *w, bool confirmed)
1968 {
1969  if (confirmed) {
1971  NewGRFWindow *nw = dynamic_cast<NewGRFWindow*>(w);
1972 
1974  GamelogGRFUpdate(_grfconfig, nw->actives); // log GRF changes
1975  CopyGRFConfigList(nw->orig_list, nw->actives, false);
1976  ReloadNewGRFData();
1978 
1979  /* Show new, updated list */
1980  GRFConfig *c;
1981  int i = 0;
1982  for (c = nw->actives; c != NULL && c != nw->active_sel; c = c->next, i++) {}
1983  CopyGRFConfigList(&nw->actives, *nw->orig_list, false);
1984  for (c = nw->actives; c != NULL && i > 0; c = c->next, i--) {}
1985  nw->active_sel = c;
1986  nw->avails.ForceRebuild();
1987 
1988  w->InvalidateData();
1989 
1990  ReInitAllWindows();
1992  }
1993 }
1994 
1995 
1996 
2005 void ShowNewGRFSettings(bool editable, bool show_params, bool exec_changes, GRFConfig **config)
2006 {
2008  new NewGRFWindow(&_newgrf_desc, editable, show_params, exec_changes, config);
2009 }
2010 
2014  NWidget(WWT_CLOSEBOX, COLOUR_GREY),
2015  NWidget(WWT_CAPTION, COLOUR_GREY), SetDataTip(STR_SAVE_PRESET_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
2016  NWidget(WWT_DEFSIZEBOX, COLOUR_GREY),
2017  EndContainer(),
2018  NWidget(WWT_PANEL, COLOUR_GREY),
2020  NWidget(WWT_INSET, COLOUR_GREY, WID_SVP_PRESET_LIST), SetPadding(2, 1, 0, 2),
2021  SetDataTip(0x0, STR_SAVE_PRESET_LIST_TOOLTIP), SetResize(1, 10), SetScrollbar(WID_SVP_SCROLLBAR), EndContainer(),
2022  NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_SVP_SCROLLBAR),
2023  EndContainer(),
2024  NWidget(WWT_EDITBOX, COLOUR_GREY, WID_SVP_EDITBOX), SetPadding(3, 2, 2, 2), SetFill(1, 0), SetResize(1, 0),
2025  SetDataTip(STR_SAVE_PRESET_TITLE, STR_SAVE_PRESET_EDITBOX_TOOLTIP),
2026  EndContainer(),
2028  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SVP_CANCEL), SetDataTip(STR_SAVE_PRESET_CANCEL, STR_SAVE_PRESET_CANCEL_TOOLTIP), SetFill(1, 0), SetResize(1, 0),
2029  NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SVP_SAVE), SetDataTip(STR_SAVE_PRESET_SAVE, STR_SAVE_PRESET_SAVE_TOOLTIP), SetFill(1, 0), SetResize(1, 0),
2030  NWidget(WWT_RESIZEBOX, COLOUR_GREY),
2031  EndContainer(),
2032 };
2033 
2036  WDP_CENTER, "save_preset", 140, 110,
2038  WDF_MODAL,
2040 );
2041 
2043 struct SavePresetWindow : public Window {
2047  int selected;
2048 
2053  SavePresetWindow(const char *initial_text) : Window(&_save_preset_desc), presetname_editbox(32)
2054  {
2055  GetGRFPresetList(&this->presets);
2056  this->selected = -1;
2057  if (initial_text != NULL) {
2058  for (uint i = 0; i < this->presets.Length(); i++) {
2059  if (!strcmp(initial_text, this->presets[i])) {
2060  this->selected = i;
2061  break;
2062  }
2063  }
2064  }
2065 
2066  this->querystrings[WID_SVP_EDITBOX] = &this->presetname_editbox;
2067  this->presetname_editbox.ok_button = WID_SVP_SAVE;
2068  this->presetname_editbox.cancel_button = WID_SVP_CANCEL;
2069 
2070  this->CreateNestedTree();
2071  this->vscroll = this->GetScrollbar(WID_SVP_SCROLLBAR);
2072  this->FinishInitNested(0);
2073 
2074  this->vscroll->SetCount(this->presets.Length());
2076  if (initial_text != NULL) this->presetname_editbox.text.Assign(initial_text);
2077  }
2078 
2079  ~SavePresetWindow()
2080  {
2081  }
2082 
2083  virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
2084  {
2085  switch (widget) {
2086  case WID_SVP_PRESET_LIST: {
2087  resize->height = FONT_HEIGHT_NORMAL + 2U;
2088  size->height = 0;
2089  for (uint i = 0; i < this->presets.Length(); i++) {
2090  Dimension d = GetStringBoundingBox(this->presets[i]);
2091  size->width = max(size->width, d.width + WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT);
2092  resize->height = max(resize->height, d.height);
2093  }
2094  size->height = ClampU(this->presets.Length(), 5, 20) * resize->height + 1;
2095  break;
2096  }
2097  }
2098  }
2099 
2100  virtual void DrawWidget(const Rect &r, int widget) const
2101  {
2102  switch (widget) {
2103  case WID_SVP_PRESET_LIST: {
2104  GfxFillRect(r.left + 1, r.top + 1, r.right - 1, r.bottom - 1, PC_BLACK);
2105 
2106  uint step_height = this->GetWidget<NWidgetBase>(WID_SVP_PRESET_LIST)->resize_y;
2107  int offset_y = (step_height - FONT_HEIGHT_NORMAL) / 2;
2108  uint y = r.top + WD_FRAMERECT_TOP;
2109  uint min_index = this->vscroll->GetPosition();
2110  uint max_index = min(min_index + this->vscroll->GetCapacity(), this->presets.Length());
2111 
2112  for (uint i = min_index; i < max_index; i++) {
2113  if ((int)i == this->selected) GfxFillRect(r.left + 1, y, r.right - 1, y + step_height - 2, PC_DARK_BLUE);
2114 
2115  const char *text = this->presets[i];
2116  DrawString(r.left + WD_FRAMERECT_LEFT, r.right, y + offset_y, text, ((int)i == this->selected) ? TC_WHITE : TC_SILVER);
2117  y += step_height;
2118  }
2119  break;
2120  }
2121  }
2122  }
2123 
2124  virtual void OnClick(Point pt, int widget, int click_count)
2125  {
2126  switch (widget) {
2127  case WID_SVP_PRESET_LIST: {
2128  uint row = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_SVP_PRESET_LIST);
2129  if (row < this->presets.Length()) {
2130  this->selected = row;
2131  this->presetname_editbox.text.Assign(this->presets[row]);
2134  }
2135  break;
2136  }
2137 
2138  case WID_SVP_CANCEL:
2139  delete this;
2140  break;
2141 
2142  case WID_SVP_SAVE: {
2144  if (w != NULL && !StrEmpty(this->presetname_editbox.text.buf)) w->OnQueryTextFinished(this->presetname_editbox.text.buf);
2145  delete this;
2146  break;
2147  }
2148  }
2149  }
2150 
2151  virtual void OnResize()
2152  {
2153  this->vscroll->SetCapacityFromWidget(this, WID_SVP_PRESET_LIST);
2154  }
2155 };
2156 
2161 static void ShowSavePresetWindow(const char *initial_text)
2162 {
2164  new SavePresetWindow(initial_text);
2165 }
2166 
2169  NWidget(WWT_CAPTION, COLOUR_GREY), SetDataTip(STR_NEWGRF_SCAN_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
2170  NWidget(WWT_PANEL, COLOUR_GREY),
2171  NWidget(NWID_HORIZONTAL), SetPIP(20, 0, 20),
2172  NWidget(NWID_VERTICAL), SetPIP(11, 8, 11),
2173  NWidget(WWT_LABEL, INVALID_COLOUR), SetDataTip(STR_NEWGRF_SCAN_MESSAGE, STR_NULL), SetFill(1, 0),
2174  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_SP_PROGRESS_BAR), SetFill(1, 0),
2175  NWidget(WWT_EMPTY, INVALID_COLOUR, WID_SP_PROGRESS_TEXT), SetFill(1, 0),
2176  EndContainer(),
2177  EndContainer(),
2178  EndContainer(),
2179 };
2180 
2183  WDP_CENTER, NULL, 0, 0,
2185  0,
2187 );
2188 
2190 struct ScanProgressWindow : public Window {
2191  char *last_name;
2192  int scanned;
2193 
2195  ScanProgressWindow() : Window(&_scan_progress_desc), last_name(NULL), scanned(0)
2196  {
2197  this->InitNested(1);
2198  }
2199 
2202  {
2203  free(last_name);
2204  }
2205 
2206  virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
2207  {
2208  switch (widget) {
2209  case WID_SP_PROGRESS_BAR: {
2210  SetDParamMaxValue(0, 100);
2211  *size = GetStringBoundingBox(STR_GENERATION_PROGRESS);
2212  /* We need some spacing for the 'border' */
2213  size->height += 8;
2214  size->width += 8;
2215  break;
2216  }
2217 
2218  case WID_SP_PROGRESS_TEXT:
2219  SetDParamMaxDigits(0, 4);
2220  SetDParamMaxDigits(1, 4);
2221  /* We really don't know the width. We could determine it by scanning the NewGRFs,
2222  * but this is the status window for scanning them... */
2223  size->width = max(400U, GetStringBoundingBox(STR_NEWGRF_SCAN_STATUS).width);
2224  size->height = FONT_HEIGHT_NORMAL * 2 + WD_PAR_VSEP_NORMAL;
2225  break;
2226  }
2227  }
2228 
2229  virtual void DrawWidget(const Rect &r, int widget) const
2230  {
2231  switch (widget) {
2232  case WID_SP_PROGRESS_BAR: {
2233  /* Draw the % complete with a bar and a text */
2234  DrawFrameRect(r.left, r.top, r.right, r.bottom, COLOUR_GREY, FR_BORDERONLY);
2235  uint percent = scanned * 100 / max(1U, _settings_client.gui.last_newgrf_count);
2236  DrawFrameRect(r.left + 1, r.top + 1, (int)((r.right - r.left - 2) * percent / 100) + r.left + 1, r.bottom - 1, COLOUR_MAUVE, FR_NONE);
2237  SetDParam(0, percent);
2238  DrawString(r.left, r.right, r.top + 5, STR_GENERATION_PROGRESS, TC_FROMSTRING, SA_HOR_CENTER);
2239  break;
2240  }
2241 
2242  case WID_SP_PROGRESS_TEXT:
2243  SetDParam(0, this->scanned);
2245  DrawString(r.left, r.right, r.top, STR_NEWGRF_SCAN_STATUS, TC_FROMSTRING, SA_HOR_CENTER);
2246 
2247  DrawString(r.left, r.right, r.top + FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL, this->last_name == NULL ? "" : this->last_name, TC_BLACK, SA_HOR_CENTER);
2248  break;
2249  }
2250  }
2251 
2257  void UpdateNewGRFScanStatus(uint num, const char *name)
2258  {
2259  free(this->last_name);
2260  if (name == NULL) {
2261  char buf[256];
2262  GetString(buf, STR_NEWGRF_SCAN_ARCHIVES, lastof(buf));
2263  this->last_name = stredup(buf);
2264  } else {
2265  this->last_name = stredup(name);
2266  }
2267  this->scanned = num;
2269 
2270  this->SetDirty();
2271  }
2272 };
2273 
2279 void UpdateNewGRFScanStatus(uint num, const char *name)
2280 {
2282  if (w == NULL) w = new ScanProgressWindow();
2283  w->UpdateNewGRFScanStatus(num, name);
2284 }