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/>.
10 /** @file newgrf_gui.cpp GUI to change NewGRF settings. */
14 #include "settings_gui.h"
16 #include "strings_func.h"
17 #include "window_func.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"
24 #include "network/network_content.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"
34 #include "widgets/newgrf_widget.h"
35 #include "widgets/misc_widget.h"
37 #include "table/sprites.h"
40 #include "safeguards.h"
43 * Show the first NewGRF error we can find.
45 void ShowNewGRFError()
47 /* Do not show errors when entering the main screen */
48 if (_game_mode
== GM_MENU
) return;
50 for (const GRFConfig
*c
= _grfconfig
; c
!= NULL
; c
= c
->next
) {
51 /* We only want to show fatal errors */
52 if (c
->error
== NULL
|| c
->error
->severity
!= STR_NEWGRF_ERROR_MSG_FATAL
) continue;
54 SetDParam (0, c
->error
->custom_message
== NULL
? c
->error
->message
: STR_JUST_RAW_STRING
);
55 SetDParamStr(1, c
->error
->custom_message
);
56 SetDParamStr(2, c
->filename
);
57 SetDParamStr(3, c
->error
->data
);
58 for (uint i
= 0; i
< lengthof(c
->error
->param_value
); i
++) {
59 SetDParam(4 + i
, c
->error
->param_value
[i
]);
61 ShowErrorMessage(STR_NEWGRF_ERROR_FATAL_POPUP
, INVALID_STRING_ID
, WL_CRITICAL
);
66 static void ShowNewGRFInfo(const GRFConfig
*c
, uint x
, uint y
, uint right
, uint bottom
, bool show_params
)
68 if (c
->error
!= NULL
) {
70 SetDParamStr(0, c
->error
->custom_message
); // is skipped by built-in messages
71 SetDParamStr(1, c
->filename
);
72 SetDParamStr(2, c
->error
->data
);
73 for (uint i
= 0; i
< lengthof(c
->error
->param_value
); i
++) {
74 SetDParam(3 + i
, c
->error
->param_value
[i
]);
76 GetString(message
, c
->error
->custom_message
== NULL
? c
->error
->message
: STR_JUST_RAW_STRING
, lastof(message
));
78 SetDParamStr(0, message
);
79 y
= DrawStringMultiLine(x
, right
, y
, bottom
, c
->error
->severity
);
82 /* Draw filename or not if it is not known (GRF sent over internet) */
83 if (c
->filename
!= NULL
) {
84 SetDParamStr(0, c
->filename
);
85 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_FILENAME
);
88 /* Prepare and draw GRF ID */
90 seprintf(buff
, lastof(buff
), "%08X", BSWAP32(c
->ident
.grfid
));
91 SetDParamStr(0, buff
);
92 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_GRF_ID
);
94 if ((_settings_client
.gui
.newgrf_developer_tools
|| _settings_client
.gui
.newgrf_show_old_versions
) && c
->version
!= 0) {
95 SetDParam(0, c
->version
);
96 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_VERSION
);
98 if ((_settings_client
.gui
.newgrf_developer_tools
|| _settings_client
.gui
.newgrf_show_old_versions
) && c
->min_loadable_version
!= 0) {
99 SetDParam(0, c
->min_loadable_version
);
100 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_MIN_VERSION
);
103 /* Prepare and draw MD5 sum */
104 md5sumToString(buff
, lastof(buff
), c
->ident
.md5sum
);
105 SetDParamStr(0, buff
);
106 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_MD5SUM
);
108 /* Show GRF parameter list */
110 if (c
->num_params
> 0) {
111 GRFBuildParamList(buff
, c
, lastof(buff
));
112 SetDParam(0, STR_JUST_RAW_STRING
);
113 SetDParamStr(1, buff
);
115 SetDParam(0, STR_LAND_AREA_INFORMATION_LOCAL_AUTHORITY_NONE
);
117 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_PARAMETER
);
119 /* Draw the palette of the NewGRF */
120 if (c
->palette
& GRFP_BLT_32BPP
) {
121 SetDParamStr(0, (c
->palette
& GRFP_USE_WINDOWS
) ? "Legacy (W) / 32 bpp" : "Default (D) / 32 bpp");
123 SetDParamStr(0, (c
->palette
& GRFP_USE_WINDOWS
) ? "Legacy (W)" : "Default (D)");
125 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_PALETTE
);
129 if (c
->status
== GCS_NOT_FOUND
) y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_NOT_FOUND
);
130 if (c
->status
== GCS_DISABLED
) y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_DISABLED
);
131 if (HasBit(c
->flags
, GCF_INVALID
)) y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_INCOMPATIBLE
);
132 if (HasBit(c
->flags
, GCF_COMPATIBLE
)) y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_COMPATIBLE_LOADED
);
134 /* Draw GRF info if it exists */
135 if (!StrEmpty(c
->GetDescription())) {
136 SetDParamStr(0, c
->GetDescription());
137 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_BLACK_RAW_STRING
);
139 y
= DrawStringMultiLine(x
, right
, y
, bottom
, STR_NEWGRF_SETTINGS_NO_INFO
);
144 * Window for setting the parameters of a NewGRF.
146 struct NewGRFParametersWindow
: public Window
{
147 static GRFParameterInfo dummy_parameter_info
; ///< Dummy info in case a newgrf didn't provide info about some parameter.
148 GRFConfig
*grf_config
; ///< Set the parameters of this GRFConfig.
149 uint clicked_button
; ///< The row in which a button was clicked or UINT_MAX.
150 bool clicked_increase
; ///< True if the increase button was clicked, false for the decrease button.
151 bool clicked_dropdown
; ///< Whether the dropdown is open.
152 bool closing_dropdown
; ///< True, if the dropdown list is currently closing.
153 int timeout
; ///< How long before we unpress the last-pressed button?
154 uint clicked_row
; ///< The selected parameter
155 int line_height
; ///< Height of a row in the matrix widget.
157 bool action14present
; ///< True if action14 information is present.
158 bool editable
; ///< Allow editing parameters.
160 NewGRFParametersWindow(WindowDesc
*desc
, GRFConfig
*c
, bool editable
) : Window(desc
),
162 clicked_button(UINT_MAX
),
163 clicked_dropdown(false),
164 closing_dropdown(false),
166 clicked_row(UINT_MAX
),
169 this->action14present
= (c
->num_valid_params
!= lengthof(c
->param
) || c
->param_info
.Length() != 0);
171 this->CreateNestedTree();
172 this->vscroll
= this->GetScrollbar(WID_NP_SCROLLBAR
);
173 this->GetWidget
<NWidgetStacked
>(WID_NP_SHOW_NUMPAR
)->SetDisplayedPlane(this->action14present
? SZSP_HORIZONTAL
: 0);
174 this->GetWidget
<NWidgetStacked
>(WID_NP_SHOW_DESCRIPTION
)->SetDisplayedPlane(this->action14present
? 0 : SZSP_HORIZONTAL
);
175 this->FinishInitNested(); // Initializes 'this->line_height' as side effect.
177 this->SetWidgetDisabledState(WID_NP_RESET
, !this->editable
);
179 this->InvalidateData();
183 * Get a dummy parameter-info object with default information.
184 * @param nr The param number that should be changed.
185 * @return GRFParameterInfo with dummy information about the given parameter.
187 static GRFParameterInfo
*GetDummyParameterInfo(uint nr
)
189 dummy_parameter_info
.param_nr
= nr
;
190 return &dummy_parameter_info
;
193 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
196 case WID_NP_NUMPAR_DEC
:
197 case WID_NP_NUMPAR_INC
: {
198 size
->width
= max(SETTING_BUTTON_WIDTH
/ 2, FONT_HEIGHT_NORMAL
);
199 size
->height
= max(SETTING_BUTTON_HEIGHT
, FONT_HEIGHT_NORMAL
);
203 case WID_NP_NUMPAR
: {
204 SetDParamMaxValue(0, lengthof(this->grf_config
->param
));
205 Dimension d
= GetStringBoundingBox(this->GetWidget
<NWidgetCore
>(widget
)->widget_data
);
206 d
.width
+= padding
.width
;
207 d
.height
+= padding
.height
;
208 *size
= maxdim(*size
, d
);
212 case WID_NP_BACKGROUND
:
213 this->line_height
= max(SETTING_BUTTON_HEIGHT
, FONT_HEIGHT_NORMAL
) + WD_MATRIX_TOP
+ WD_MATRIX_BOTTOM
;
216 resize
->height
= this->line_height
;
217 size
->height
= 5 * this->line_height
;
220 case WID_NP_DESCRIPTION
:
221 /* Minimum size of 4 lines. The 500 is the default size of the window. */
222 Dimension suggestion
= {500 - WD_FRAMERECT_LEFT
- WD_FRAMERECT_RIGHT
, (uint
)FONT_HEIGHT_NORMAL
* 4 + WD_TEXTPANEL_TOP
+ WD_TEXTPANEL_BOTTOM
};
223 for (uint i
= 0; i
< this->grf_config
->param_info
.Length(); i
++) {
224 const GRFParameterInfo
*par_info
= this->grf_config
->param_info
[i
];
225 if (par_info
== NULL
) continue;
226 const char *desc
= GetGRFStringFromGRFText(par_info
->desc
);
227 if (desc
== NULL
) continue;
228 Dimension d
= GetStringMultiLineBoundingBox(desc
, suggestion
);
229 d
.height
+= WD_TEXTPANEL_TOP
+ WD_TEXTPANEL_BOTTOM
;
230 suggestion
= maxdim(d
, suggestion
);
232 size
->height
= suggestion
.height
;
237 virtual void SetStringParameters(int widget
) const
241 SetDParam(0, this->vscroll
->GetCount());
246 virtual void DrawWidget(const Rect
&r
, int widget
) const
248 if (widget
== WID_NP_DESCRIPTION
) {
249 const GRFParameterInfo
*par_info
= (this->clicked_row
< this->grf_config
->param_info
.Length()) ? this->grf_config
->param_info
[this->clicked_row
] : NULL
;
250 if (par_info
== NULL
) return;
251 const char *desc
= GetGRFStringFromGRFText(par_info
->desc
);
252 if (desc
== NULL
) return;
253 DrawStringMultiLine(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, r
.top
+ WD_TEXTPANEL_TOP
, r
.bottom
- WD_TEXTPANEL_BOTTOM
, desc
, TC_BLACK
);
255 } else if (widget
!= WID_NP_BACKGROUND
) {
259 bool rtl
= _current_text_dir
== TD_RTL
;
260 uint buttons_left
= rtl
? r
.right
- SETTING_BUTTON_WIDTH
- 3 : r
.left
+ 4;
261 uint text_left
= r
.left
+ (rtl
? WD_FRAMERECT_LEFT
: SETTING_BUTTON_WIDTH
+ 8);
262 uint text_right
= r
.right
- (rtl
? SETTING_BUTTON_WIDTH
+ 8 : WD_FRAMERECT_RIGHT
);
265 int button_y_offset
= (this->line_height
- SETTING_BUTTON_HEIGHT
) / 2;
266 int text_y_offset
= (this->line_height
- FONT_HEIGHT_NORMAL
) / 2;
267 for (uint i
= this->vscroll
->GetPosition(); this->vscroll
->IsVisible(i
) && i
< this->vscroll
->GetCount(); i
++) {
268 GRFParameterInfo
*par_info
= (i
< this->grf_config
->param_info
.Length()) ? this->grf_config
->param_info
[i
] : NULL
;
269 if (par_info
== NULL
) par_info
= GetDummyParameterInfo(i
);
270 uint32 current_value
= par_info
->GetValue(this->grf_config
);
271 bool selected
= (i
== this->clicked_row
);
273 if (par_info
->type
== PTYPE_BOOL
) {
274 DrawBoolButton(buttons_left
, y
+ button_y_offset
, current_value
!= 0, this->editable
);
275 SetDParam(2, par_info
->GetValue(this->grf_config
) == 0 ? STR_CONFIG_SETTING_OFF
: STR_CONFIG_SETTING_ON
);
276 } else if (par_info
->type
== PTYPE_UINT_ENUM
) {
277 if (par_info
->complete_labels
) {
278 DrawDropDownButton(buttons_left
, y
+ button_y_offset
, COLOUR_YELLOW
, this->clicked_row
== i
&& this->clicked_dropdown
, this->editable
);
280 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
);
282 SetDParam(2, STR_JUST_INT
);
283 SetDParam(3, current_value
);
284 if (par_info
->value_names
.Contains(current_value
)) {
285 const char *label
= GetGRFStringFromGRFText(par_info
->value_names
.Find(current_value
)->second
);
287 SetDParam(2, STR_JUST_RAW_STRING
);
288 SetDParamStr(3, label
);
293 const char *name
= GetGRFStringFromGRFText(par_info
->name
);
295 SetDParam(0, STR_JUST_RAW_STRING
);
296 SetDParamStr(1, name
);
298 SetDParam(0, STR_NEWGRF_PARAMETERS_DEFAULT_NAME
);
302 DrawString(text_left
, text_right
, y
+ text_y_offset
, STR_NEWGRF_PARAMETERS_SETTING
, selected
? TC_WHITE
: TC_LIGHT_BLUE
);
303 y
+= this->line_height
;
307 virtual void OnPaint()
309 if (this->closing_dropdown
) {
310 this->closing_dropdown
= false;
311 this->clicked_dropdown
= false;
316 virtual void OnClick(Point pt
, int widget
, int click_count
)
319 case WID_NP_NUMPAR_DEC
:
320 if (this->editable
&& !this->action14present
&& this->grf_config
->num_params
> 0) {
321 this->grf_config
->num_params
--;
322 this->InvalidateData();
323 SetWindowDirty(WC_GAME_OPTIONS
, WN_GAME_OPTIONS_NEWGRF_STATE
);
327 case WID_NP_NUMPAR_INC
: {
328 GRFConfig
*c
= this->grf_config
;
329 if (this->editable
&& !this->action14present
&& c
->num_params
< c
->num_valid_params
) {
330 c
->param
[c
->num_params
++] = 0;
331 this->InvalidateData();
332 SetWindowDirty(WC_GAME_OPTIONS
, WN_GAME_OPTIONS_NEWGRF_STATE
);
337 case WID_NP_BACKGROUND
: {
338 if (!this->editable
) break;
339 uint num
= this->vscroll
->GetScrolledRowFromWidget(pt
.y
, this, WID_NP_BACKGROUND
);
340 if (num
>= this->vscroll
->GetCount()) break;
341 if (this->clicked_row
!= num
) {
342 DeleteChildWindows(WC_QUERY_STRING
);
343 HideDropDownMenu(this);
344 this->clicked_row
= num
;
345 this->clicked_dropdown
= false;
348 const NWidgetBase
*wid
= this->GetWidget
<NWidgetBase
>(WID_NP_BACKGROUND
);
349 int x
= pt
.x
- wid
->pos_x
;
350 if (_current_text_dir
== TD_RTL
) x
= wid
->current_x
- 1 - x
;
353 GRFParameterInfo
*par_info
= (num
< this->grf_config
->param_info
.Length()) ? this->grf_config
->param_info
[num
] : NULL
;
354 if (par_info
== NULL
) par_info
= GetDummyParameterInfo(num
);
356 /* One of the arrows is clicked */
357 uint32 old_val
= par_info
->GetValue(this->grf_config
);
358 if (par_info
->type
!= PTYPE_BOOL
&& IsInsideMM(x
, 0, SETTING_BUTTON_WIDTH
) && par_info
->complete_labels
) {
359 if (this->clicked_dropdown
) {
360 /* unclick the dropdown */
361 HideDropDownMenu(this);
362 this->clicked_dropdown
= false;
363 this->closing_dropdown
= false;
365 const NWidgetBase
*wid
= this->GetWidget
<NWidgetBase
>(WID_NP_BACKGROUND
);
366 int rel_y
= (pt
.y
- (int)wid
->pos_y
) % this->line_height
;
369 wi_rect
.left
= pt
.x
- (_current_text_dir
== TD_RTL
? SETTING_BUTTON_WIDTH
- 1 - x
: x
);;
370 wi_rect
.right
= wi_rect
.left
+ SETTING_BUTTON_WIDTH
- 1;
371 wi_rect
.top
= pt
.y
- rel_y
+ (this->line_height
- SETTING_BUTTON_HEIGHT
) / 2;
372 wi_rect
.bottom
= wi_rect
.top
+ SETTING_BUTTON_HEIGHT
- 1;
374 /* For dropdowns we also have to check the y position thoroughly, the mouse may not above the just opening dropdown */
375 if (pt
.y
>= wi_rect
.top
&& pt
.y
<= wi_rect
.bottom
) {
376 this->clicked_dropdown
= true;
377 this->closing_dropdown
= false;
379 DropDownList
*list
= new DropDownList();
380 for (uint32 i
= par_info
->min_value
; i
<= par_info
->max_value
; i
++) {
381 *list
->Append() = new DropDownListCharStringItem(GetGRFStringFromGRFText(par_info
->value_names
.Find(i
)->second
), i
, false);
384 ShowDropDownListAt(this, list
, old_val
, -1, wi_rect
, COLOUR_ORANGE
, true);
387 } else if (IsInsideMM(x
, 0, SETTING_BUTTON_WIDTH
)) {
388 uint32 val
= old_val
;
389 if (par_info
->type
== PTYPE_BOOL
) {
392 if (x
>= SETTING_BUTTON_WIDTH
/ 2) {
393 /* Increase button clicked */
394 if (val
< par_info
->max_value
) val
++;
395 this->clicked_increase
= true;
397 /* Decrease button clicked */
398 if (val
> par_info
->min_value
) val
--;
399 this->clicked_increase
= false;
402 if (val
!= old_val
) {
403 par_info
->SetValue(this->grf_config
, val
);
405 this->clicked_button
= num
;
408 } else if (par_info
->type
== PTYPE_UINT_ENUM
&& !par_info
->complete_labels
&& click_count
>= 2) {
409 /* Display a query box so users can enter a custom value. */
410 SetDParam(0, old_val
);
411 ShowQueryString(STR_JUST_INT
, STR_CONFIG_SETTING_QUERY_CAPTION
, 10, this, CS_NUMERAL
, QSF_NONE
);
418 if (!this->editable
) break;
419 this->grf_config
->SetParameterDefaults();
420 this->InvalidateData();
421 SetWindowDirty(WC_GAME_OPTIONS
, WN_GAME_OPTIONS_NEWGRF_STATE
);
430 virtual void OnQueryTextFinished(char *str
)
432 if (StrEmpty(str
)) return;
433 int32 value
= atoi(str
);
434 GRFParameterInfo
*par_info
= ((uint
)this->clicked_row
< this->grf_config
->param_info
.Length()) ? this->grf_config
->param_info
[this->clicked_row
] : NULL
;
435 if (par_info
== NULL
) par_info
= GetDummyParameterInfo(this->clicked_row
);
436 uint32 val
= Clamp
<uint32
>(value
, par_info
->min_value
, par_info
->max_value
);
437 par_info
->SetValue(this->grf_config
, val
);
441 virtual void OnDropdownSelect(int widget
, int index
)
443 assert(this->clicked_dropdown
);
444 GRFParameterInfo
*par_info
= ((uint
)this->clicked_row
< this->grf_config
->param_info
.Length()) ? this->grf_config
->param_info
[this->clicked_row
] : NULL
;
445 if (par_info
== NULL
) par_info
= GetDummyParameterInfo(this->clicked_row
);
446 par_info
->SetValue(this->grf_config
, index
);
450 virtual void OnDropdownClose(Point pt
, int widget
, int index
, bool instant_close
)
452 /* We cannot raise the dropdown button just yet. OnClick needs some hint, whether
453 * the same dropdown button was clicked again, and then not open the dropdown again.
454 * So, we only remember that it was closed, and process it on the next OnPaint, which is
456 assert(this->clicked_dropdown
);
457 this->closing_dropdown
= true;
461 virtual void OnResize()
463 this->vscroll
->SetCapacityFromWidget(this, WID_NP_BACKGROUND
);
467 * Some data on this window has become invalid.
468 * @param data Information about the changed data.
469 * @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.
471 virtual void OnInvalidateData(int data
= 0, bool gui_scope
= true)
473 if (!gui_scope
) return;
474 if (!this->action14present
) {
475 this->SetWidgetDisabledState(WID_NP_NUMPAR_DEC
, !this->editable
|| this->grf_config
->num_params
== 0);
476 this->SetWidgetDisabledState(WID_NP_NUMPAR_INC
, !this->editable
|| this->grf_config
->num_params
>= this->grf_config
->num_valid_params
);
479 this->vscroll
->SetCount(this->action14present
? this->grf_config
->num_valid_params
: this->grf_config
->num_params
);
480 if (this->clicked_row
!= UINT_MAX
&& this->clicked_row
>= this->vscroll
->GetCount()) {
481 this->clicked_row
= UINT_MAX
;
482 DeleteChildWindows(WC_QUERY_STRING
);
486 virtual void OnTick()
488 if (--this->timeout
== 0) {
489 this->clicked_button
= UINT_MAX
;
494 GRFParameterInfo
NewGRFParametersWindow::dummy_parameter_info(0);
497 static const NWidgetPart _nested_newgrf_parameter_widgets
[] = {
498 NWidget(NWID_HORIZONTAL
),
499 NWidget(WWT_CLOSEBOX
, COLOUR_MAUVE
),
500 NWidget(WWT_CAPTION
, COLOUR_MAUVE
), SetDataTip(STR_NEWGRF_PARAMETERS_CAPTION
, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS
),
501 NWidget(WWT_DEFSIZEBOX
, COLOUR_MAUVE
),
503 NWidget(NWID_SELECTION
, INVALID_COLOUR
, WID_NP_SHOW_NUMPAR
),
504 NWidget(WWT_PANEL
, COLOUR_MAUVE
), SetResize(1, 0), SetFill(1, 0), SetPIP(4, 0, 4),
505 NWidget(NWID_HORIZONTAL
), SetPIP(4, 0, 4),
506 NWidget(WWT_PUSHARROWBTN
, COLOUR_YELLOW
, WID_NP_NUMPAR_DEC
), SetMinimalSize(12, 12), SetDataTip(AWV_DECREASE
, STR_NULL
),
507 NWidget(WWT_PUSHARROWBTN
, COLOUR_YELLOW
, WID_NP_NUMPAR_INC
), SetMinimalSize(12, 12), SetDataTip(AWV_INCREASE
, STR_NULL
),
508 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
),
512 NWidget(NWID_HORIZONTAL
),
513 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
),
514 NWidget(NWID_VSCROLLBAR
, COLOUR_MAUVE
, WID_NP_SCROLLBAR
),
516 NWidget(NWID_SELECTION
, INVALID_COLOUR
, WID_NP_SHOW_DESCRIPTION
),
517 NWidget(WWT_PANEL
, COLOUR_MAUVE
, WID_NP_DESCRIPTION
), SetResize(1, 0), SetFill(1, 0),
520 NWidget(NWID_HORIZONTAL
),
521 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
),
522 NWidget(WWT_PUSHTXTBTN
, COLOUR_MAUVE
, WID_NP_ACCEPT
), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_NEWGRF_PARAMETERS_CLOSE
, STR_NULL
),
523 NWidget(WWT_PUSHTXTBTN
, COLOUR_MAUVE
, WID_NP_RESET
), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_NEWGRF_PARAMETERS_RESET
, STR_NEWGRF_PARAMETERS_RESET_TOOLTIP
),
525 NWidget(WWT_RESIZEBOX
, COLOUR_MAUVE
),
529 /** Window definition for the change grf parameters window */
530 static WindowDesc
_newgrf_parameters_desc(
531 WDP_CENTER
, "settings_newgrf_config", 500, 208,
532 WC_GRF_PARAMETERS
, WC_NONE
,
534 _nested_newgrf_parameter_widgets
, lengthof(_nested_newgrf_parameter_widgets
)
537 static void OpenGRFParameterWindow(GRFConfig
*c
, bool editable
)
539 DeleteWindowByClass(WC_GRF_PARAMETERS
);
540 new NewGRFParametersWindow(&_newgrf_parameters_desc
, c
, editable
);
543 /** Window for displaying the textfile of a NewGRF. */
544 struct NewGRFTextfileWindow
: public TextfileWindow
{
545 const GRFConfig
*grf_config
; ///< View the textfile of this GRFConfig.
547 NewGRFTextfileWindow(TextfileType file_type
, const GRFConfig
*c
) : TextfileWindow(file_type
), grf_config(c
)
549 const char *textfile
= this->grf_config
->GetTextfile(file_type
);
550 this->LoadTextfile(textfile
, NEWGRF_DIR
);
553 /* virtual */ void SetStringParameters(int widget
) const
555 if (widget
== WID_TF_CAPTION
) {
556 SetDParam(0, STR_CONTENT_TYPE_NEWGRF
);
557 SetDParamStr(1, this->grf_config
->GetName());
562 void ShowNewGRFTextfileWindow(TextfileType file_type
, const GRFConfig
*c
)
564 DeleteWindowByClass(WC_TEXTFILE
);
565 new NewGRFTextfileWindow(file_type
, c
);
568 static GRFPresetList _grf_preset_list
; ///< List of known NewGRF presets. @see GetGRFPresetList
570 class DropDownListPresetItem
: public DropDownListItem
{
572 DropDownListPresetItem(int result
) : DropDownListItem(result
, false) {}
574 virtual ~DropDownListPresetItem() {}
576 bool Selectable() const
581 void Draw(int left
, int right
, int top
, int bottom
, bool sel
, int bg_colour
) const
583 DrawString(left
+ 2, right
+ 2, top
, _grf_preset_list
[this->result
], sel
? TC_WHITE
: TC_BLACK
);
588 typedef std::map
<uint32
, const GRFConfig
*> GrfIdMap
; ///< Map of grfid to the grf config.
591 * Add all grf configs from \a c into the map.
592 * @param c Grf list to add.
593 * @param grfid_map Map to add them to.
595 static void FillGrfidMap(const GRFConfig
*c
, GrfIdMap
*grfid_map
)
598 std::pair
<uint32
, const GRFConfig
*> p(c
->ident
.grfid
, c
);
599 grfid_map
->insert(p
);
604 static void NewGRFConfirmationCallback(Window
*w
, bool confirmed
);
605 static void ShowSavePresetWindow(const char *initial_text
);
608 * Window for showing NewGRF files
610 struct NewGRFWindow
: public Window
, NewGRFScanCallback
{
611 typedef GUIList
<const GRFConfig
*, StringFilter
&> GUIGRFConfigList
;
613 static const uint EDITBOX_MAX_SIZE
= 50;
615 static Listing last_sorting
; ///< Default sorting of #GUIGRFConfigList.
616 static Filtering last_filtering
; ///< Default filtering of #GUIGRFConfigList.
617 static GUIGRFConfigList::SortFunction
* const sorter_funcs
[]; ///< Sort functions of the #GUIGRFConfigList.
618 static GUIGRFConfigList::FilterFunction
* const filter_funcs
[]; ///< Filter functions of the #GUIGRFConfigList.
620 GUIGRFConfigList avails
; ///< Available (non-active) grfs.
621 const GRFConfig
*avail_sel
; ///< Currently selected available grf. \c NULL is none is selected.
622 int avail_pos
; ///< Index of #avail_sel if existing, else \c -1.
623 StringFilter string_filter
; ///< Filter for available grf.
624 QueryString filter_editbox
; ///< Filter editbox;
626 GRFConfig
*actives
; ///< Temporary active grf list to which changes are made.
627 GRFConfig
*active_sel
; ///< Selected active grf item.
629 GRFConfig
**orig_list
; ///< List active grfs in the game. Used as initial value, may be updated by the window.
630 bool editable
; ///< Is the window editable?
631 bool show_params
; ///< Are the grf-parameters shown in the info-panel?
632 bool execute
; ///< On pressing 'apply changes' are grf changes applied immediately, or only list is updated.
633 int preset
; ///< Selected preset or \c -1 if none selected.
634 int active_over
; ///< Active GRF item over which another one is dragged, \c -1 if none.
639 NewGRFWindow(WindowDesc
*desc
, bool editable
, bool show_params
, bool execute
, GRFConfig
**orig_list
) : Window(desc
), filter_editbox(EDITBOX_MAX_SIZE
)
641 this->avail_sel
= NULL
;
642 this->avail_pos
= -1;
643 this->active_sel
= NULL
;
644 this->actives
= NULL
;
645 this->orig_list
= orig_list
;
646 this->editable
= editable
;
647 this->execute
= execute
;
648 this->show_params
= show_params
;
650 this->active_over
= -1;
652 CopyGRFConfigList(&this->actives
, *orig_list
, false);
653 GetGRFPresetList(&_grf_preset_list
);
655 this->CreateNestedTree();
656 this->vscroll
= this->GetScrollbar(WID_NS_SCROLLBAR
);
657 this->vscroll2
= this->GetScrollbar(WID_NS_SCROLL2BAR
);
659 this->GetWidget
<NWidgetStacked
>(WID_NS_SHOW_REMOVE
)->SetDisplayedPlane(this->editable
? 0 : 1);
660 this->GetWidget
<NWidgetStacked
>(WID_NS_SHOW_APPLY
)->SetDisplayedPlane(this->editable
? 0 : this->show_params
? 1 : SZSP_HORIZONTAL
);
661 this->FinishInitNested(WN_GAME_OPTIONS_NEWGRF_STATE
);
663 this->querystrings
[WID_NS_FILTER
] = &this->filter_editbox
;
664 this->filter_editbox
.cancel_button
= QueryString::ACTION_CLEAR
;
666 this->SetFocusedWidget(WID_NS_FILTER
);
668 this->DisableWidget(WID_NS_FILTER
);
671 this->avails
.SetListing(this->last_sorting
);
672 this->avails
.SetFiltering(this->last_filtering
);
673 this->avails
.SetSortFuncs(this->sorter_funcs
);
674 this->avails
.SetFilterFuncs(this->filter_funcs
);
675 this->avails
.ForceRebuild();
677 this->OnInvalidateData(GOID_NEWGRF_LIST_EDITED
);
682 DeleteWindowByClass(WC_GRF_PARAMETERS
);
683 DeleteWindowByClass(WC_TEXTFILE
);
684 DeleteWindowByClass(WC_SAVE_PRESET
);
686 if (this->editable
&& !this->execute
) {
687 CopyGRFConfigList(this->orig_list
, this->actives
, true);
688 ResetGRFConfig(false);
692 /* Remove the temporary copy of grf-list used in window */
693 ClearGRFConfigList(&this->actives
);
694 _grf_preset_list
.Clear();
698 * Test whether the currently active set of NewGRFs can be upgraded with the available NewGRFs.
699 * @return Whether an upgrade is possible.
701 bool CanUpgradeCurrent()
704 FillGrfidMap(this->actives
, &grfid_map
);
706 for (const GRFConfig
*a
= _all_grfs
; a
!= NULL
; a
= a
->next
) {
707 GrfIdMap::const_iterator iter
= grfid_map
.find(a
->ident
.grfid
);
708 if (iter
!= grfid_map
.end() && a
->version
> iter
->second
->version
) return true;
713 /** Upgrade the currently active set of NewGRFs. */
714 void UpgradeCurrent()
717 FillGrfidMap(this->actives
, &grfid_map
);
719 for (const GRFConfig
*a
= _all_grfs
; a
!= NULL
; a
= a
->next
) {
720 GrfIdMap::iterator iter
= grfid_map
.find(a
->ident
.grfid
);
721 if (iter
== grfid_map
.end() || iter
->second
->version
>= a
->version
) continue;
723 GRFConfig
**c
= &this->actives
;
724 while (*c
!= iter
->second
) c
= &(*c
)->next
;
725 GRFConfig
*d
= new GRFConfig(*a
);
726 d
->next
= (*c
)->next
;
728 if (this->active_sel
== *c
) this->active_sel
= NULL
;
735 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
738 case WID_NS_FILE_LIST
:
740 Dimension d
= maxdim(GetSpriteSize(SPR_SQUARE
), GetSpriteSize(SPR_WARNING_SIGN
));
741 resize
->height
= max(d
.height
+ 2U, FONT_HEIGHT_NORMAL
+ 2U);
742 size
->height
= max(size
->height
, WD_FRAMERECT_TOP
+ 6 * resize
->height
+ WD_FRAMERECT_BOTTOM
);
746 case WID_NS_AVAIL_LIST
:
747 resize
->height
= max(12, FONT_HEIGHT_NORMAL
+ 2);
748 size
->height
= max(size
->height
, WD_FRAMERECT_TOP
+ 8 * resize
->height
+ WD_FRAMERECT_BOTTOM
);
751 case WID_NS_NEWGRF_INFO_TITLE
: {
752 Dimension dim
= GetStringBoundingBox(STR_NEWGRF_SETTINGS_INFO_TITLE
);
753 size
->height
= max(size
->height
, dim
.height
+ WD_FRAMETEXT_TOP
+ WD_FRAMETEXT_BOTTOM
);
754 size
->width
= max(size
->width
, dim
.width
+ WD_FRAMETEXT_LEFT
+ WD_FRAMETEXT_RIGHT
);
758 case WID_NS_NEWGRF_INFO
:
759 size
->height
= max(size
->height
, WD_FRAMERECT_TOP
+ 10 * FONT_HEIGHT_NORMAL
+ WD_FRAMERECT_BOTTOM
+ padding
.height
+ 2);
762 case WID_NS_PRESET_LIST
: {
763 Dimension d
= GetStringBoundingBox(STR_NUM_CUSTOM
);
764 for (uint i
= 0; i
< _grf_preset_list
.Length(); i
++) {
765 if (_grf_preset_list
[i
] != NULL
) {
766 SetDParamStr(0, _grf_preset_list
[i
]);
767 d
= maxdim(d
, GetStringBoundingBox(STR_JUST_RAW_STRING
));
770 d
.width
+= padding
.width
;
771 *size
= maxdim(d
, *size
);
775 case WID_NS_CONTENT_DOWNLOAD
:
776 case WID_NS_CONTENT_DOWNLOAD2
: {
777 Dimension d
= GetStringBoundingBox(STR_NEWGRF_SETTINGS_FIND_MISSING_CONTENT_BUTTON
);
778 *size
= maxdim(d
, GetStringBoundingBox(STR_INTRO_ONLINE_CONTENT
));
779 size
->width
+= padding
.width
;
780 size
->height
+= padding
.height
;
786 virtual void OnResize()
788 this->vscroll
->SetCapacityFromWidget(this, WID_NS_FILE_LIST
);
789 this->vscroll2
->SetCapacityFromWidget(this, WID_NS_AVAIL_LIST
);
792 virtual void SetStringParameters(int widget
) const
795 case WID_NS_PRESET_LIST
:
796 if (this->preset
== -1) {
797 SetDParam(0, STR_NUM_CUSTOM
);
799 SetDParam(0, STR_JUST_RAW_STRING
);
800 SetDParamStr(1, _grf_preset_list
[this->preset
]);
807 * Pick the palette for the sprite of the grf to display.
808 * @param c grf to display.
809 * @return Palette for the sprite.
811 inline PaletteID
GetPalette(const GRFConfig
*c
) const
819 pal
= PALETTE_TO_RED
;
822 pal
= PALETTE_TO_GREEN
;
825 pal
= PALETTE_TO_BLUE
;
829 /* Do not show a "not-failure" colour when it actually failed to load */
830 if (pal
!= PALETTE_TO_RED
) {
831 if (HasBit(c
->flags
, GCF_STATIC
)) {
832 pal
= PALETTE_TO_GREY
;
833 } else if (HasBit(c
->flags
, GCF_COMPATIBLE
)) {
834 pal
= PALETTE_TO_ORANGE
;
841 virtual void DrawWidget(const Rect
&r
, int widget
) const
844 case WID_NS_FILE_LIST
: {
845 GfxFillRect(r
.left
+ 1, r
.top
+ 1, r
.right
- 1, r
.bottom
- 1, PC_BLACK
);
847 uint step_height
= this->GetWidget
<NWidgetBase
>(WID_NS_FILE_LIST
)->resize_y
;
848 uint y
= r
.top
+ WD_FRAMERECT_TOP
;
849 Dimension square
= GetSpriteSize(SPR_SQUARE
);
850 Dimension warning
= GetSpriteSize(SPR_WARNING_SIGN
);
851 int square_offset_y
= (step_height
- square
.height
) / 2;
852 int warning_offset_y
= (step_height
- warning
.height
) / 2;
853 int offset_y
= (step_height
- FONT_HEIGHT_NORMAL
) / 2;
855 bool rtl
= _current_text_dir
== TD_RTL
;
856 uint text_left
= rtl
? r
.left
+ WD_FRAMERECT_LEFT
: r
.left
+ square
.width
+ 15;
857 uint text_right
= rtl
? r
.right
- square
.width
- 15 : r
.right
- WD_FRAMERECT_RIGHT
;
858 uint square_left
= rtl
? r
.right
- square
.width
- 5 : r
.left
+ 5;
859 uint warning_left
= rtl
? r
.right
- square
.width
- warning
.width
- 10 : r
.left
+ square
.width
+ 10;
862 for (const GRFConfig
*c
= this->actives
; c
!= NULL
; c
= c
->next
, i
++) {
863 if (this->vscroll
->IsVisible(i
)) {
864 const char *text
= c
->GetName();
865 bool h
= (this->active_sel
== c
);
866 PaletteID pal
= this->GetPalette(c
);
869 GfxFillRect(r
.left
+ 1, y
, r
.right
- 1, y
+ step_height
- 1, PC_DARK_BLUE
);
870 } else if (i
== this->active_over
) {
871 /* Get index of current selection. */
872 int active_sel_pos
= 0;
873 for (GRFConfig
*c
= this->actives
; c
!= NULL
&& c
!= this->active_sel
; c
= c
->next
, active_sel_pos
++) {}
874 if (active_sel_pos
!= this->active_over
) {
875 uint top
= this->active_over
< active_sel_pos
? y
+ 1 : y
+ step_height
- 2;
876 GfxFillRect(r
.left
+ WD_FRAMERECT_LEFT
, top
- 1, r
.right
- WD_FRAMERECT_RIGHT
, top
+ 1, PC_GREY
);
879 DrawSprite(SPR_SQUARE
, pal
, square_left
, y
+ square_offset_y
);
880 if (c
->error
!= NULL
) DrawSprite(SPR_WARNING_SIGN
, 0, warning_left
, y
+ warning_offset_y
);
881 uint txtoffset
= c
->error
== NULL
? 0 : warning
.width
;
882 DrawString(text_left
+ (rtl
? 0 : txtoffset
), text_right
- (rtl
? txtoffset
: 0), y
+ offset_y
, text
, h
? TC_WHITE
: TC_ORANGE
);
886 if (i
== this->active_over
&& this->vscroll
->IsVisible(i
)) { // Highlight is after the last GRF entry.
887 GfxFillRect(r
.left
+ WD_FRAMERECT_LEFT
, y
, r
.right
- WD_FRAMERECT_RIGHT
, y
+ 2, PC_GREY
);
892 case WID_NS_AVAIL_LIST
: {
893 GfxFillRect(r
.left
+ 1, r
.top
+ 1, r
.right
- 1, r
.bottom
- 1, this->active_over
== -2 ? PC_DARK_GREY
: PC_BLACK
);
895 uint step_height
= this->GetWidget
<NWidgetBase
>(WID_NS_AVAIL_LIST
)->resize_y
;
896 int offset_y
= (step_height
- FONT_HEIGHT_NORMAL
) / 2;
897 uint y
= r
.top
+ WD_FRAMERECT_TOP
;
898 uint min_index
= this->vscroll2
->GetPosition();
899 uint max_index
= min(min_index
+ this->vscroll2
->GetCapacity(), this->avails
.Length());
901 for (uint i
= min_index
; i
< max_index
; i
++) {
902 const GRFConfig
*c
= this->avails
[i
];
903 bool h
= (c
== this->avail_sel
);
904 const char *text
= c
->GetName();
906 if (h
) GfxFillRect(r
.left
+ 1, y
, r
.right
- 1, y
+ step_height
- 1, PC_DARK_BLUE
);
907 DrawString(r
.left
+ WD_FRAMERECT_LEFT
, r
.right
- WD_FRAMERECT_RIGHT
, y
+ offset_y
, text
, h
? TC_WHITE
: TC_SILVER
);
913 case WID_NS_NEWGRF_INFO_TITLE
:
914 /* Create the nice grayish rectangle at the details top. */
915 GfxFillRect(r
.left
+ 1, r
.top
+ 1, r
.right
- 1, r
.bottom
- 1, PC_DARK_BLUE
);
916 DrawString(r
.left
, r
.right
, (r
.top
+ r
.bottom
- FONT_HEIGHT_NORMAL
) / 2, STR_NEWGRF_SETTINGS_INFO_TITLE
, TC_FROMSTRING
, SA_HOR_CENTER
);
919 case WID_NS_NEWGRF_INFO
: {
920 const GRFConfig
*selected
= this->active_sel
;
921 if (selected
== NULL
) selected
= this->avail_sel
;
922 if (selected
!= NULL
) {
923 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
);
930 virtual void OnClick(Point pt
, int widget
, int click_count
)
932 if (widget
>= WID_NS_NEWGRF_TEXTFILE
&& widget
< WID_NS_NEWGRF_TEXTFILE
+ TFT_END
) {
933 if (this->active_sel
== NULL
&& this->avail_sel
== NULL
) return;
935 ShowNewGRFTextfileWindow((TextfileType
)(widget
- WID_NS_NEWGRF_TEXTFILE
), this->active_sel
!= NULL
? this->active_sel
: this->avail_sel
);
940 case WID_NS_PRESET_LIST
: {
941 DropDownList
*list
= new DropDownList();
943 /* Add 'None' option for clearing list */
944 *list
->Append() = new DropDownListStringItem(STR_NONE
, -1, false);
946 for (uint i
= 0; i
< _grf_preset_list
.Length(); i
++) {
947 if (_grf_preset_list
[i
] != NULL
) {
948 *list
->Append() = new DropDownListPresetItem(i
);
952 this->DeleteChildWindows(WC_QUERY_STRING
); // Remove the parameter query window
953 ShowDropDownList(this, list
, this->preset
, WID_NS_PRESET_LIST
);
957 case WID_NS_OPEN_URL
: {
958 const GRFConfig
*c
= (this->avail_sel
== NULL
) ? this->active_sel
: this->avail_sel
;
960 extern void OpenBrowser(const char *url
);
961 OpenBrowser(c
->GetURL());
965 case WID_NS_PRESET_SAVE
:
966 ShowSavePresetWindow((this->preset
== -1) ? NULL
: _grf_preset_list
[this->preset
]);
969 case WID_NS_PRESET_DELETE
:
970 if (this->preset
== -1) return;
972 DeleteGRFPresetFromConfig(_grf_preset_list
[this->preset
]);
973 GetGRFPresetList(&_grf_preset_list
);
975 this->InvalidateData();
976 this->DeleteChildWindows(WC_QUERY_STRING
); // Remove the parameter query window
979 case WID_NS_MOVE_UP
: { // Move GRF up
980 if (this->active_sel
== NULL
|| !this->editable
) break;
983 for (GRFConfig
**pc
= &this->actives
; *pc
!= NULL
; pc
= &(*pc
)->next
, pos
++) {
985 if (c
->next
== this->active_sel
) {
986 c
->next
= this->active_sel
->next
;
987 this->active_sel
->next
= c
;
988 *pc
= this->active_sel
;
992 this->vscroll
->ScrollTowards(pos
);
994 this->InvalidateData();
998 case WID_NS_MOVE_DOWN
: { // Move GRF down
999 if (this->active_sel
== NULL
|| !this->editable
) break;
1001 int pos
= 1; // Start at 1 as we swap the selected newgrf with the next one
1002 for (GRFConfig
**pc
= &this->actives
; *pc
!= NULL
; pc
= &(*pc
)->next
, pos
++) {
1004 if (c
== this->active_sel
) {
1006 c
->next
= c
->next
->next
;
1011 this->vscroll
->ScrollTowards(pos
);
1013 this->InvalidateData();
1017 case WID_NS_FILE_LIST
: { // Select an active GRF.
1018 ResetObjectToPlace();
1020 uint i
= this->vscroll
->GetScrolledRowFromWidget(pt
.y
, this, WID_NS_FILE_LIST
);
1023 for (c
= this->actives
; c
!= NULL
&& i
> 0; c
= c
->next
, i
--) {}
1025 if (this->active_sel
!= c
) DeleteWindowByClass(WC_GRF_PARAMETERS
);
1026 this->active_sel
= c
;
1027 this->avail_sel
= NULL
;
1028 this->avail_pos
= -1;
1030 this->InvalidateData();
1031 if (click_count
== 1) {
1032 if (this->editable
&& this->active_sel
!= NULL
) SetObjectToPlaceWnd(SPR_CURSOR_MOUSE
, PAL_NONE
, HT_DRAG
, this);
1035 /* With double click, continue */
1039 case WID_NS_REMOVE
: { // Remove GRF
1040 if (this->active_sel
== NULL
|| !this->editable
) break;
1041 DeleteWindowByClass(WC_GRF_PARAMETERS
);
1043 /* Choose the next GRF file to be the selected file. */
1044 GRFConfig
*newsel
= this->active_sel
->next
;
1045 for (GRFConfig
**pc
= &this->actives
; *pc
!= NULL
; pc
= &(*pc
)->next
) {
1047 /* If the new selection is empty (i.e. we're deleting the last item
1048 * in the list, pick the file just before the selected file */
1049 if (newsel
== NULL
&& c
->next
== this->active_sel
) newsel
= c
;
1051 if (c
== this->active_sel
) {
1052 if (newsel
== c
) newsel
= NULL
;
1060 this->active_sel
= newsel
;
1062 this->avail_pos
= -1;
1063 this->avail_sel
= NULL
;
1064 this->avails
.ForceRebuild();
1065 this->InvalidateData(GOID_NEWGRF_LIST_EDITED
);
1069 case WID_NS_UPGRADE
: { // Upgrade GRF.
1070 if (!this->editable
|| this->actives
== NULL
) break;
1072 this->InvalidateData(GOID_NEWGRF_LIST_EDITED
);
1076 case WID_NS_AVAIL_LIST
: { // Select a non-active GRF.
1077 ResetObjectToPlace();
1079 uint i
= this->vscroll2
->GetScrolledRowFromWidget(pt
.y
, this, WID_NS_AVAIL_LIST
);
1080 this->active_sel
= NULL
;
1081 DeleteWindowByClass(WC_GRF_PARAMETERS
);
1082 if (i
< this->avails
.Length()) {
1083 this->avail_sel
= this->avails
[i
];
1084 this->avail_pos
= i
;
1086 this->InvalidateData();
1087 if (click_count
== 1) {
1088 if (this->editable
&& this->avail_sel
!= NULL
&& !HasBit(this->avail_sel
->flags
, GCF_INVALID
)) SetObjectToPlaceWnd(SPR_CURSOR_MOUSE
, PAL_NONE
, HT_DRAG
, this);
1091 /* With double click, continue */
1096 if (this->avail_sel
== NULL
|| !this->editable
|| HasBit(this->avail_sel
->flags
, GCF_INVALID
)) break;
1098 this->AddGRFToActive();
1101 case WID_NS_APPLY_CHANGES
: // Apply changes made to GRF list
1102 if (!this->editable
) break;
1103 if (this->execute
) {
1105 STR_NEWGRF_POPUP_CAUTION_CAPTION
,
1106 STR_NEWGRF_CONFIRMATION_TEXT
,
1108 NewGRFConfirmationCallback
1111 CopyGRFConfigList(this->orig_list
, this->actives
, true);
1112 ResetGRFConfig(false);
1115 this->DeleteChildWindows(WC_QUERY_STRING
); // Remove the parameter query window
1118 case WID_NS_VIEW_PARAMETERS
:
1119 case WID_NS_SET_PARAMETERS
: { // Edit parameters
1120 if (this->active_sel
== NULL
|| !this->show_params
|| this->active_sel
->num_valid_params
== 0) break;
1122 OpenGRFParameterWindow(this->active_sel
, this->editable
);
1126 case WID_NS_TOGGLE_PALETTE
:
1127 if (this->active_sel
!= NULL
&& this->editable
) {
1128 this->active_sel
->palette
^= GRFP_USE_MASK
;
1133 case WID_NS_CONTENT_DOWNLOAD
:
1134 case WID_NS_CONTENT_DOWNLOAD2
:
1135 if (!_network_available
) {
1136 ShowErrorMessage(STR_NETWORK_ERROR_NOTAVAILABLE
, INVALID_STRING_ID
, WL_ERROR
);
1138 #if defined(ENABLE_NETWORK)
1139 this->DeleteChildWindows(WC_QUERY_STRING
); // Remove the parameter query window
1141 ShowMissingContentWindow(this->actives
);
1146 case WID_NS_RESCAN_FILES
:
1147 case WID_NS_RESCAN_FILES2
:
1148 ScanNewGRFFiles(this);
1153 virtual void OnNewGRFsScanned()
1155 this->avail_sel
= NULL
;
1156 this->avail_pos
= -1;
1157 this->avails
.ForceRebuild();
1158 this->DeleteChildWindows(WC_QUERY_STRING
); // Remove the parameter query window
1159 this->DeleteChildWindows(WC_TEXTFILE
); // Remove the view textfile window
1162 virtual void OnDropdownSelect(int widget
, int index
)
1164 if (!this->editable
) return;
1166 ClearGRFConfigList(&this->actives
);
1167 this->preset
= index
;
1170 this->actives
= LoadGRFPresetFromConfig(_grf_preset_list
[index
]);
1172 this->avails
.ForceRebuild();
1174 ResetObjectToPlace();
1175 DeleteWindowByClass(WC_GRF_PARAMETERS
);
1176 this->active_sel
= NULL
;
1177 this->InvalidateData(GOID_NEWGRF_PRESET_LOADED
);
1180 virtual void OnQueryTextFinished(char *str
)
1182 if (str
== NULL
) return;
1184 SaveGRFPresetToConfig(str
, this->actives
);
1185 GetGRFPresetList(&_grf_preset_list
);
1187 /* Switch to this preset */
1188 for (uint i
= 0; i
< _grf_preset_list
.Length(); i
++) {
1189 if (_grf_preset_list
[i
] != NULL
&& strcmp(_grf_preset_list
[i
], str
) == 0) {
1195 this->InvalidateData();
1199 * Some data on this window has become invalid.
1200 * @param data Information about the changed data. @see GameOptionsInvalidationData
1201 * @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.
1203 virtual void OnInvalidateData(int data
= 0, bool gui_scope
= true)
1205 if (!gui_scope
) return;
1208 /* Nothing important to do */
1211 case GOID_NEWGRF_RESCANNED
:
1212 /* Search the list for items that are now found and mark them as such. */
1213 for (GRFConfig
**l
= &this->actives
; *l
!= NULL
; l
= &(*l
)->next
) {
1215 bool compatible
= HasBit(c
->flags
, GCF_COMPATIBLE
);
1216 if (c
->status
!= GCS_NOT_FOUND
&& !compatible
) continue;
1218 const GRFConfig
*f
= FindGRFConfig(c
->ident
.grfid
, FGCM_EXACT
, compatible
? c
->original_md5sum
: c
->ident
.md5sum
);
1219 if (f
== NULL
|| HasBit(f
->flags
, GCF_INVALID
)) continue;
1221 *l
= new GRFConfig(*f
);
1222 (*l
)->next
= c
->next
;
1224 if (active_sel
== c
) active_sel
= *l
;
1229 this->avails
.ForceRebuild();
1232 case GOID_NEWGRF_LIST_EDITED
:
1236 case GOID_NEWGRF_PRESET_LOADED
: {
1237 /* Update scrollbars */
1239 for (const GRFConfig
*c
= this->actives
; c
!= NULL
; c
= c
->next
, i
++) {}
1241 this->vscroll
->SetCount(i
+ 1); // Reserve empty space for drag and drop handling.
1243 if (this->avail_pos
>= 0) this->vscroll2
->ScrollTowards(this->avail_pos
);
1248 this->BuildAvailables();
1250 this->SetWidgetsDisabledState(!this->editable
,
1252 WID_NS_APPLY_CHANGES
,
1253 WID_NS_TOGGLE_PALETTE
,
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());
1259 bool disable_all
= this->active_sel
== NULL
|| !this->editable
;
1260 this->SetWidgetsDisabledState(disable_all
,
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
);
1271 this->SetWidgetDisabledState(WID_NS_OPEN_URL
, c
== NULL
|| StrEmpty(c
->GetURL()));
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
||
1276 (!(_settings_client
.gui
.newgrf_developer_tools
|| _settings_client
.gui
.scenario_developer
) && ((c
->palette
& GRFP_GRF_MASK
) != GRFP_GRF_UNSET
)));
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
);
1284 this->SetWidgetDisabledState(WID_NS_PRESET_DELETE
, this->preset
== -1);
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
);
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
;
1298 widget_data
= STR_INTRO_ONLINE_CONTENT
;
1299 tool_tip
= STR_INTRO_TOOLTIP_ONLINE_CONTENT
;
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
;
1306 this->SetWidgetDisabledState(WID_NS_PRESET_SAVE
, has_missing
);
1309 virtual EventState
OnKeyPress(WChar key
, uint16 keycode
)
1311 if (!this->editable
) return ES_NOT_HANDLED
;
1315 /* scroll up by one */
1316 if (this->avail_pos
> 0) this->avail_pos
--;
1320 /* scroll down by one */
1321 if (this->avail_pos
< (int)this->avails
.Length() - 1) this->avail_pos
++;
1325 /* scroll up a page */
1326 this->avail_pos
= (this->avail_pos
< this->vscroll2
->GetCapacity()) ? 0 : this->avail_pos
- this->vscroll2
->GetCapacity();
1330 /* scroll down a page */
1331 this->avail_pos
= min(this->avail_pos
+ this->vscroll2
->GetCapacity(), (int)this->avails
.Length() - 1);
1335 /* jump to beginning */
1336 this->avail_pos
= 0;
1341 this->avail_pos
= this->avails
.Length() - 1;
1345 return ES_NOT_HANDLED
;
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);
1358 virtual void OnEditboxChanged(int wid
)
1360 if (!this->editable
) return;
1362 string_filter
.SetFilterTerm(this->filter_editbox
.text
.buf
);
1363 this->avails
.SetFilterState(!string_filter
.IsEmpty());
1364 this->avails
.ForceRebuild();
1365 this->InvalidateData(0);
1368 virtual void OnDragDrop(Point pt
, int widget
)
1370 if (!this->editable
) return;
1372 if (widget
== WID_NS_FILE_LIST
) {
1373 if (this->active_sel
!= NULL
) {
1374 /* Get pointer to the selected file in the active list. */
1376 GRFConfig
**from_prev
;
1377 for (from_prev
= &this->actives
; *from_prev
!= this->active_sel
; from_prev
= &(*from_prev
)->next
, from_pos
++) {}
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
++) {}
1386 /* Detach NewGRF file from its original position. */
1387 *from_prev
= this->active_sel
->next
;
1389 /* Attach NewGRF file to its new position. */
1390 this->active_sel
->next
= *to_prev
;
1391 *to_prev
= this->active_sel
;
1393 this->vscroll
->ScrollTowards(to_pos
);
1395 this->InvalidateData();
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
);
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);
1407 ResetObjectToPlace();
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;
1416 virtual void OnMouseDrag(Point pt
, int widget
)
1418 if (!this->editable
) return;
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));
1426 if (to_pos
!= this->active_over
) {
1427 this->active_over
= to_pos
;
1428 this->SetWidgetDirty(WID_NS_FILE_LIST
);
1430 } else if (widget
== WID_NS_AVAIL_LIST
&& this->active_sel
!= NULL
) {
1431 this->active_over
= -2;
1432 this->SetWidgetDirty(WID_NS_AVAIL_LIST
);
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;
1440 /** Sort grfs by name. */
1441 static int CDECL
NameSorter(const GRFConfig
* const *a
, const GRFConfig
* const *b
)
1443 int i
= strnatcmp((*a
)->GetName(), (*b
)->GetName(), true); // Sort by name (natural sorting).
1444 if (i
!= 0) return i
;
1446 i
= (*a
)->version
- (*b
)->version
;
1447 if (i
!= 0) return i
;
1449 return memcmp((*a
)->ident
.md5sum
, (*b
)->ident
.md5sum
, lengthof((*b
)->ident
.md5sum
));
1452 /** Filter grfs by tags/name */
1453 static bool CDECL
TagNameFilter(const GRFConfig
* const *a
, StringFilter
&filter
)
1455 filter
.ResetState();
1456 filter
.AddLine((*a
)->GetName());
1457 filter
.AddLine((*a
)->filename
);
1458 filter
.AddLine((*a
)->GetDescription());
1459 return filter
.GetState();;
1462 void BuildAvailables()
1464 if (!this->avails
.NeedRebuild()) return;
1466 this->avails
.Clear();
1468 for (const GRFConfig
*c
= _all_grfs
; c
!= NULL
; c
= c
->next
) {
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;
1473 if (_settings_client
.gui
.newgrf_show_old_versions
) {
1474 *this->avails
.Append() = c
;
1476 const GRFConfig
*best
= FindGRFConfig(c
->ident
.grfid
, HasBit(c
->flags
, GCF_INVALID
) ? FGCM_NEWEST
: FGCM_NEWEST_VALID
);
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!.
1484 if (best
->version
== 0 || best
->ident
.HasGrfIdentifier(c
->ident
.grfid
, c
->ident
.md5sum
)) {
1485 *this->avails
.Append() = c
;
1490 this->avails
.Filter(this->string_filter
);
1491 this->avails
.Compact();
1492 this->avails
.RebuildDone();
1493 this->avails
.Sort();
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
;
1500 this->vscroll2
->SetCount(this->avails
.Length()); // Update the scrollbar
1504 * Insert a GRF into the active list.
1505 * @param ins_pos Insert GRF at this position.
1506 * @return True if the GRF was successfully added.
1508 bool AddGRFToActive(int ins_pos
= -1)
1510 if (this->avail_sel
== NULL
|| !this->editable
|| HasBit(this->avail_sel
->flags
, GCF_INVALID
)) return false;
1513 GRFConfig
**entry
= NULL
;
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
);
1522 if (!HasBit((*list
)->flags
, GCF_STATIC
)) count
++;
1524 if (entry
== NULL
) entry
= list
;
1525 if (count
>= NETWORK_MAX_GRF_COUNT
) {
1526 ShowErrorMessage(STR_NEWGRF_TOO_MANY_NEWGRFS
, INVALID_STRING_ID
, WL_INFO
);
1530 GRFConfig
*c
= new GRFConfig(*this->avail_sel
); // Copy GRF details from scanned list.
1531 c
->SetParameterDefaults();
1533 /* Insert GRF config to configuration list. */
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
];
1543 this->avails
.ForceRebuild();
1544 this->InvalidateData(GOID_NEWGRF_LIST_EDITED
);
1549 #if defined(ENABLE_NETWORK)
1551 * Show the content list window with all missing grfs from the given list.
1552 * @param list The list of grfs to check for missing / not exactly matching ones.
1554 void ShowMissingContentWindow(const GRFConfig
*list
)
1556 /* Only show the things in the current list, or everything when nothing's selected */
1558 for (const GRFConfig
*c
= list
; c
!= NULL
; c
= c
->next
) {
1559 if (c
->status
!= GCS_NOT_FOUND
&& !HasBit(c
->flags
, GCF_COMPATIBLE
)) continue;
1561 ContentInfo
*ci
= new ContentInfo();
1562 ci
->type
= CONTENT_TYPE_NEWGRF
;
1563 ci
->state
= ContentInfo::DOES_NOT_EXIST
;
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
));
1569 ShowNetworkContentListWindow(cv
.Length() == 0 ? NULL
: &cv
, CONTENT_TYPE_NEWGRF
);
1573 Listing
NewGRFWindow::last_sorting
= {false, 0};
1574 Filtering
NewGRFWindow::last_filtering
= {false, 0};
1576 NewGRFWindow::GUIGRFConfigList::SortFunction
* const NewGRFWindow::sorter_funcs
[] = {
1580 NewGRFWindow::GUIGRFConfigList::FilterFunction
* const NewGRFWindow::filter_funcs
[] = {
1585 * Custom nested widget container for the NewGRF gui.
1586 * Depending on the space in the gui, it uses either
1587 * - two column mode, put the #acs and the #avs underneath each other and the #info next to it, or
1588 * - three column mode, put the #avs, #acs, and #info each in its own column.
1590 class NWidgetNewGRFDisplay
: public NWidgetContainer
{
1592 static const uint INTER_LIST_SPACING
; ///< Empty vertical space between both lists in the 2 column mode.
1593 static const uint INTER_COLUMN_SPACING
; ///< Empty horizontal space between two columns.
1594 static const uint MAX_EXTRA_INFO_WIDTH
; ///< Maximal additional width given to the panel.
1595 static const uint MIN_EXTRA_FOR_3_COLUMNS
; ///< Minimal additional width needed before switching to 3 columns.
1597 NWidgetBase
*avs
; ///< Widget with the available grfs list and buttons.
1598 NWidgetBase
*acs
; ///< Widget with the active grfs list and buttons.
1599 NWidgetBase
*inf
; ///< Info panel.
1600 bool editable
; ///< Editable status of the parent NewGRF window (if \c false, drop all widgets that make the window editable).
1602 NWidgetNewGRFDisplay(NWidgetBase
*avs
, NWidgetBase
*acs
, NWidgetBase
*inf
) : NWidgetContainer(NWID_HORIZONTAL
)
1608 this->Add(this->avs
);
1609 this->Add(this->acs
);
1610 this->Add(this->inf
);
1612 this->editable
= true; // Temporary setting, 'real' value is set in SetupSmallestSize().
1615 virtual void SetupSmallestSize(Window
*w
, bool init_array
)
1617 /* Copy state flag from the window. */
1618 assert(dynamic_cast<NewGRFWindow
*>(w
) != NULL
);
1619 NewGRFWindow
*ngw
= (NewGRFWindow
*)w
;
1620 this->editable
= ngw
->editable
;
1622 this->avs
->SetupSmallestSize(w
, init_array
);
1623 this->acs
->SetupSmallestSize(w
, init_array
);
1624 this->inf
->SetupSmallestSize(w
, init_array
);
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
;
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
;
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
);
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
;
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
);
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
;
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
);
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
);
1658 virtual void AssignSizePosition(SizingType sizing
, uint x
, uint y
, uint given_width
, uint given_height
, bool rtl
)
1660 this->StoreSizePosition(sizing
, x
, y
, given_width
, given_height
);
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
;
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.
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
);
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);
1681 extra_width
= given_width
- min_two_columns
;
1682 inf_width
= min(MAX_EXTRA_INFO_WIDTH
, extra_width
/ 2);
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
;
1687 uint inf_height
= ComputeMaxSize(this->inf
->smallest_y
, given_height
, this->inf
->GetVerticalStepSize(sizing
));
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;
1697 avs_width
= ComputeMaxSize(this->avs
->smallest_x
, this->avs
->smallest_x
+ avs_width
, this->avs
->GetHorizontalStepSize(sizing
));
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
;
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
);
1709 /* Assign size and position to the children. */
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
;
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
;
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
;
1725 x
+= this->avs
->padding_left
;
1726 this->avs
->AssignSizePosition(sizing
, x
, y
+ this->avs
->padding_top
, avs_width
, avs_height
, rtl
);
1728 x
+= this->inf
->padding_left
;
1729 this->inf
->AssignSizePosition(sizing
, x
, y
+ this->inf
->padding_top
, inf_width
, inf_height
, rtl
);
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
));
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
;
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
);
1748 /* Assign size and position to the children. */
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
;
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
);
1758 this->avs
->AssignSizePosition(sizing
, 0, 0, this->avs
->smallest_x
, this->avs
->smallest_y
, rtl
);
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
);
1765 this->avs
->AssignSizePosition(sizing
, 0, 0, this->avs
->smallest_x
, this->avs
->smallest_y
, rtl
);
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
);
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
);
1777 virtual NWidgetCore
*GetWidgetFromPos(int x
, int y
)
1779 if (!IsInsideBS(x
, this->pos_x
, this->current_x
) || !IsInsideBS(y
, this->pos_y
, this->current_y
)) return NULL
;
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
);
1787 virtual void Draw(const Window
*w
)
1789 if (this->editable
) this->avs
->Draw(w
);
1795 const uint
NWidgetNewGRFDisplay::INTER_LIST_SPACING
= WD_RESIZEBOX_WIDTH
+ 1;
1796 const uint
NWidgetNewGRFDisplay::INTER_COLUMN_SPACING
= WD_RESIZEBOX_WIDTH
;
1797 const uint
NWidgetNewGRFDisplay::MAX_EXTRA_INFO_WIDTH
= 150;
1798 const uint
NWidgetNewGRFDisplay::MIN_EXTRA_FOR_3_COLUMNS
= 50;
1800 static const NWidgetPart _nested_newgrf_actives_widgets
[] = {
1801 /* Left side, presets. */
1802 NWidget(NWID_HORIZONTAL
),
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
),
1808 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
),
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
),
1815 NWidget(NWID_SPACER
), SetMinimalSize(0, WD_RESIZEBOX_WIDTH
), SetResize(1, 0), SetFill(1, 0),
1816 NWidget(WWT_PANEL
, COLOUR_MAUVE
),
1817 NWidget(WWT_LABEL
, COLOUR_MAUVE
), SetDataTip(STR_NEWGRF_SETTINGS_ACTIVE_LIST
, STR_NULL
),
1818 SetFill(1, 0), SetResize(1, 0), SetPadding(3, WD_FRAMETEXT_RIGHT
, 0, WD_FRAMETEXT_LEFT
),
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
),
1826 NWidget(NWID_VSCROLLBAR
, COLOUR_MAUVE
, WID_NS_SCROLLBAR
),
1829 NWidget(NWID_SELECTION
, INVALID_COLOUR
, WID_NS_SHOW_REMOVE
),
1830 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
), SetPadding(2, 2, 2, 2), SetPIP(0, WD_RESIZEBOX_WIDTH
, 0),
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
),
1833 NWidget(NWID_VERTICAL
),
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
),
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
),
1843 NWidget(NWID_VERTICAL
, NC_EQUALSIZE
), SetPadding(2, 2, 2, 2),
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
),
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
),
1856 SetFill(1, 0), SetResize(1, 0), SetPadding(3, WD_FRAMETEXT_RIGHT
, 0, WD_FRAMETEXT_LEFT
),
1857 /* Left side, available grfs, filter edit box. */
1858 NWidget(NWID_HORIZONTAL
), SetPadding(WD_TEXTPANEL_TOP
, 0, WD_TEXTPANEL_BOTTOM
, 0),
1859 SetPIP(WD_FRAMETEXT_LEFT
, WD_FRAMETEXT_RIGHT
, WD_FRAMETEXT_RIGHT
),
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
),
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),
1868 SetFill(1, 1), SetResize(1, 1), SetScrollbar(WID_NS_SCROLL2BAR
),
1871 NWidget(NWID_VSCROLLBAR
, COLOUR_MAUVE
, WID_NS_SCROLL2BAR
),
1873 /* Left side, available grfs, buttons. */
1874 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
), SetPadding(2, 2, 2, 2), SetPIP(0, WD_RESIZEBOX_WIDTH
, 0),
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
),
1877 NWidget(NWID_VERTICAL
),
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
),
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),
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
),
1898 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
),
1899 NWidget(WWT_PUSHTXTBTN
, COLOUR_YELLOW
, WID_NS_NEWGRF_TEXTFILE
+ TFT_CHANGELOG
), SetFill(1, 0), SetResize(1, 0),
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
),
1905 NWidget(NWID_SELECTION
, INVALID_COLOUR
, WID_NS_SHOW_APPLY
),
1906 /* Right side, buttons. */
1907 NWidget(NWID_HORIZONTAL
, NC_EQUALSIZE
), SetPIP(0, WD_RESIZEBOX_WIDTH
, 0),
1908 NWidget(NWID_VERTICAL
),
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
),
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
),
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
),
1922 /** Construct nested container widget for managing the lists and the info panel of the NewGRF GUI. */
1923 NWidgetBase
* NewGRFDisplay(int *biggest_index
)
1925 NWidgetBase
*avs
= MakeNWidgets(_nested_newgrf_availables_widgets
, lengthof(_nested_newgrf_availables_widgets
), biggest_index
, NULL
);
1928 NWidgetBase
*acs
= MakeNWidgets(_nested_newgrf_actives_widgets
, lengthof(_nested_newgrf_actives_widgets
), &biggest2
, NULL
);
1929 *biggest_index
= max(*biggest_index
, biggest2
);
1931 NWidgetBase
*inf
= MakeNWidgets(_nested_newgrf_infopanel_widgets
, lengthof(_nested_newgrf_infopanel_widgets
), &biggest2
, NULL
);
1932 *biggest_index
= max(*biggest_index
, biggest2
);
1934 return new NWidgetNewGRFDisplay(avs
, acs
, inf
);
1937 /* Widget definition of the manage newgrfs window */
1938 static const NWidgetPart _nested_newgrf_widgets
[] = {
1939 NWidget(NWID_HORIZONTAL
),
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
),
1944 NWidget(WWT_PANEL
, COLOUR_MAUVE
),
1945 NWidgetFunction(NewGRFDisplay
), SetPadding(WD_RESIZEBOX_WIDTH
, WD_RESIZEBOX_WIDTH
, 2, WD_RESIZEBOX_WIDTH
),
1946 /* Resize button. */
1947 NWidget(NWID_HORIZONTAL
),
1948 NWidget(NWID_SPACER
), SetFill(1, 0), SetResize(1, 0),
1949 NWidget(WWT_RESIZEBOX
, COLOUR_MAUVE
),
1954 /* Window definition of the manage newgrfs window */
1955 static WindowDesc
_newgrf_desc(
1956 WDP_CENTER
, "settings_newgrf", 300, 263,
1957 WC_GAME_OPTIONS
, WC_NONE
,
1959 _nested_newgrf_widgets
, lengthof(_nested_newgrf_widgets
)
1963 * Callback function for the newgrf 'apply changes' confirmation window
1964 * @param w Window which is calling this callback
1965 * @param confirmed boolean value, true when yes was clicked, false otherwise
1967 static void NewGRFConfirmationCallback(Window
*w
, bool confirmed
)
1970 DeleteWindowByClass(WC_GRF_PARAMETERS
);
1971 NewGRFWindow
*nw
= dynamic_cast<NewGRFWindow
*>(w
);
1973 GamelogStartAction(GLAT_GRF
);
1974 GamelogGRFUpdate(_grfconfig
, nw
->actives
); // log GRF changes
1975 CopyGRFConfigList(nw
->orig_list
, nw
->actives
, false);
1977 GamelogStopAction();
1979 /* Show new, updated list */
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
--) {}
1986 nw
->avails
.ForceRebuild();
1988 w
->InvalidateData();
1991 DeleteWindowByClass(WC_BUILD_OBJECT
);
1998 * Setup the NewGRF gui
1999 * @param editable allow the user to make changes to the grfconfig in the window
2000 * @param show_params show information about what parameters are set for the grf files
2001 * @param exec_changes if changes are made to the list (editable is true), apply these
2002 * changes immediately or only update the list
2003 * @param config pointer to a linked-list of grfconfig's that will be shown
2005 void ShowNewGRFSettings(bool editable
, bool show_params
, bool exec_changes
, GRFConfig
**config
)
2007 DeleteWindowByClass(WC_GAME_OPTIONS
);
2008 new NewGRFWindow(&_newgrf_desc
, editable
, show_params
, exec_changes
, config
);
2011 /** Widget parts of the save preset window. */
2012 static const NWidgetPart _nested_save_preset_widgets
[] = {
2013 NWidget(NWID_HORIZONTAL
),
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
),
2018 NWidget(WWT_PANEL
, COLOUR_GREY
),
2019 NWidget(NWID_HORIZONTAL
),
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
),
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
),
2027 NWidget(NWID_HORIZONTAL
),
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
),
2034 /** Window description of the preset save window. */
2035 static WindowDesc
_save_preset_desc(
2036 WDP_CENTER
, "save_preset", 140, 110,
2037 WC_SAVE_PRESET
, WC_GAME_OPTIONS
,
2039 _nested_save_preset_widgets
, lengthof(_nested_save_preset_widgets
)
2042 /** Class for the save preset window. */
2043 struct SavePresetWindow
: public Window
{
2044 QueryString presetname_editbox
; ///< Edit box of the save preset.
2045 GRFPresetList presets
; ///< Available presets.
2046 Scrollbar
*vscroll
; ///< Pointer to the scrollbar widget.
2047 int selected
; ///< Selected entry in the preset list, or \c -1 if none selected.
2050 * Constructor of the save preset window.
2051 * @param initial_text Initial text to display in the edit box, or \c NULL.
2053 SavePresetWindow(const char *initial_text
) : Window(&_save_preset_desc
), presetname_editbox(32)
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
])) {
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
;
2070 this->CreateNestedTree();
2071 this->vscroll
= this->GetScrollbar(WID_SVP_SCROLLBAR
);
2072 this->FinishInitNested(0);
2074 this->vscroll
->SetCount(this->presets
.Length());
2075 this->SetFocusedWidget(WID_SVP_EDITBOX
);
2076 if (initial_text
!= NULL
) this->presetname_editbox
.text
.Assign(initial_text
);
2083 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
2086 case WID_SVP_PRESET_LIST
: {
2087 resize
->height
= FONT_HEIGHT_NORMAL
+ 2U;
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
);
2094 size
->height
= ClampU(this->presets
.Length(), 5, 20) * resize
->height
+ 1;
2100 virtual void DrawWidget(const Rect
&r
, int widget
) const
2103 case WID_SVP_PRESET_LIST
: {
2104 GfxFillRect(r
.left
+ 1, r
.top
+ 1, r
.right
- 1, r
.bottom
- 1, PC_BLACK
);
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());
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
);
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
);
2124 virtual void OnClick(Point pt
, int widget
, int click_count
)
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
]);
2132 this->SetWidgetDirty(WID_SVP_PRESET_LIST
);
2133 this->SetWidgetDirty(WID_SVP_EDITBOX
);
2138 case WID_SVP_CANCEL
:
2142 case WID_SVP_SAVE
: {
2143 Window
*w
= FindWindowById(WC_GAME_OPTIONS
, WN_GAME_OPTIONS_NEWGRF_STATE
);
2144 if (w
!= NULL
&& !StrEmpty(this->presetname_editbox
.text
.buf
)) w
->OnQueryTextFinished(this->presetname_editbox
.text
.buf
);
2151 virtual void OnResize()
2153 this->vscroll
->SetCapacityFromWidget(this, WID_SVP_PRESET_LIST
);
2158 * Open the window for saving a preset.
2159 * @param initial_text Initial text to display in the edit box, or \c NULL.
2161 static void ShowSavePresetWindow(const char *initial_text
)
2163 DeleteWindowByClass(WC_SAVE_PRESET
);
2164 new SavePresetWindow(initial_text
);
2167 /** Widgets for the progress window. */
2168 static const NWidgetPart _nested_scan_progress_widgets
[] = {
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),
2181 /** Description of the widgets and other settings of the window. */
2182 static WindowDesc
_scan_progress_desc(
2183 WDP_CENTER
, NULL
, 0, 0,
2184 WC_MODAL_PROGRESS
, WC_NONE
,
2186 _nested_scan_progress_widgets
, lengthof(_nested_scan_progress_widgets
)
2189 /** Window for showing the progress of NewGRF scanning. */
2190 struct ScanProgressWindow
: public Window
{
2191 char *last_name
; ///< The name of the last 'seen' NewGRF.
2192 int scanned
; ///< The number of NewGRFs that we have seen.
2194 /** Create the window. */
2195 ScanProgressWindow() : Window(&_scan_progress_desc
), last_name(NULL
), scanned(0)
2197 this->InitNested(1);
2200 /** Free the last name buffer. */
2201 ~ScanProgressWindow()
2206 virtual void UpdateWidgetSize(int widget
, Dimension
*size
, const Dimension
&padding
, Dimension
*fill
, Dimension
*resize
)
2209 case WID_SP_PROGRESS_BAR
: {
2210 SetDParamMaxValue(0, 100);
2211 *size
= GetStringBoundingBox(STR_GENERATION_PROGRESS
);
2212 /* We need some spacing for the 'border' */
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
;
2229 virtual void DrawWidget(const Rect
&r
, int widget
) const
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
);
2242 case WID_SP_PROGRESS_TEXT
:
2243 SetDParam(0, this->scanned
);
2244 SetDParam(1, _settings_client
.gui
.last_newgrf_count
);
2245 DrawString(r
.left
, r
.right
, r
.top
, STR_NEWGRF_SCAN_STATUS
, TC_FROMSTRING
, SA_HOR_CENTER
);
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
);
2253 * Update the NewGRF scan status.
2254 * @param num The number of NewGRFs scanned so far.
2255 * @param name The name of the last scanned NewGRF.
2257 void UpdateNewGRFScanStatus(uint num
, const char *name
)
2259 free(this->last_name
);
2262 GetString(buf
, STR_NEWGRF_SCAN_ARCHIVES
, lastof(buf
));
2263 this->last_name
= stredup(buf
);
2265 this->last_name
= stredup(name
);
2267 this->scanned
= num
;
2268 if (num
> _settings_client
.gui
.last_newgrf_count
) _settings_client
.gui
.last_newgrf_count
= num
;
2275 * Update the NewGRF scan status.
2276 * @param num The number of NewGRFs scanned so far.
2277 * @param name The name of the last scanned NewGRF.
2279 void UpdateNewGRFScanStatus(uint num
, const char *name
)
2281 ScanProgressWindow
*w
= dynamic_cast<ScanProgressWindow
*>(FindWindowByClass(WC_MODAL_PROGRESS
));
2282 if (w
== NULL
) w
= new ScanProgressWindow();
2283 w
->UpdateNewGRFScanStatus(num
, name
);