OpenTTD Source 20260218-master-g2123fca5ea
news_gui.cpp
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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 <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#include "stdafx.h"
11#include "gui.h"
12#include "viewport_func.h"
13#include "strings_func.h"
14#include "window_func.h"
15#include "vehicle_base.h"
16#include "vehicle_func.h"
17#include "vehicle_gui.h"
18#include "roadveh.h"
19#include "station_base.h"
20#include "industry.h"
21#include "town.h"
22#include "sound_func.h"
23#include "string_func.h"
24#include "statusbar_gui.h"
26#include "company_func.h"
27#include "engine_base.h"
28#include "engine_gui.h"
30#include "command_func.h"
31#include "company_base.h"
32#include "settings_internal.h"
33#include "group_gui.h"
34#include "zoom_func.h"
35#include "news_cmd.h"
36#include "news_func.h"
37#include "timer/timer.h"
38#include "timer/timer_window.h"
40
41#include "widgets/news_widget.h"
42
43#include "table/strings.h"
44
45#include "safeguards.h"
46
47static const uint MIN_NEWS_AMOUNT = 30;
48static const uint MAX_NEWS_AMOUNT = 1U << 10;
49
51
58static NewsIterator _forced_news = std::end(_news);
59
61static NewsIterator _current_news = std::end(_news);
62
65
71{
72 return (_statusbar_news == std::end(_news)) ? nullptr : &*_statusbar_news;
73}
74
80{
81 return _news;
82}
83
90{
91 struct visitor {
92 TileIndex operator()(const std::monostate &) { return INVALID_TILE; }
93 TileIndex operator()(const TileIndex &t) { return t; }
94 TileIndex operator()(const VehicleID) { return INVALID_TILE; }
95 TileIndex operator()(const StationID s) { return Station::Get(s)->xy; }
96 TileIndex operator()(const IndustryID i) { return Industry::Get(i)->location.tile + TileDiffXY(1, 1); }
97 TileIndex operator()(const TownID t) { return Town::Get(t)->xy; }
98 TileIndex operator()(const EngineID) { return INVALID_TILE; }
99 };
100
101 return std::visit(visitor{}, reference);
102}
103
104/* Normal news items. */
105static constexpr std::initializer_list<NWidgetPart> _nested_normal_news_widgets = {
106 NWidget(WWT_PANEL, COLOUR_WHITE, WID_N_PANEL),
108 NWidget(NWID_LAYER, INVALID_COLOUR),
109 /* Layer 1 */
112 NWidget(WWT_CLOSEBOX, COLOUR_WHITE, WID_N_CLOSEBOX),
113 NWidget(WWT_LABEL, INVALID_COLOUR, WID_N_DATE),
114 SetTextStyle(TC_BLACK, FS_SMALL),
116 EndContainer(),
117 EndContainer(),
118 /* Layer 2 */
119 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_MESSAGE),
121 SetMinimalSize(400, 0),
123 SetTextStyle(TC_BLACK, FS_LARGE),
124 EndContainer(),
125 EndContainer(),
126 EndContainer(),
127};
128
129static WindowDesc _normal_news_desc(
130 WDP_MANUAL, {}, 0, 0,
132 {},
133 _nested_normal_news_widgets
134);
135
136/* New vehicles news items. */
137static constexpr std::initializer_list<NWidgetPart> _nested_vehicle_news_widgets = {
138 NWidget(WWT_PANEL, COLOUR_WHITE, WID_N_PANEL),
140 NWidget(NWID_LAYER, INVALID_COLOUR),
141 /* Layer 1 */
144 NWidget(WWT_CLOSEBOX, COLOUR_WHITE, WID_N_CLOSEBOX),
145 EndContainer(),
146 EndContainer(),
147 /* Layer 2 */
148 NWidget(WWT_LABEL, INVALID_COLOUR, WID_N_VEH_TITLE),
149 SetFill(1, 1),
151 SetMinimalSize(400, 0),
153 SetStringTip(STR_EMPTY),
154 SetTextStyle(TC_BLACK, FS_LARGE),
155 EndContainer(),
158 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_VEH_NAME),
160 SetMinimalSize(350, 0),
162 SetFill(1, 0),
163 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_VEH_SPR),
164 SetMinimalSize(350, 32),
165 SetFill(1, 0),
166 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_VEH_INFO),
168 SetMinimalSize(350, 0),
170 SetFill(1, 0),
171 EndContainer(),
172 EndContainer(),
173 EndContainer(),
174 EndContainer(),
175};
176
177static WindowDesc _vehicle_news_desc(
178 WDP_MANUAL, {}, 0, 0,
180 {},
181 _nested_vehicle_news_widgets
182);
183
184/* Company news items. */
185static constexpr std::initializer_list<NWidgetPart> _nested_company_news_widgets = {
186 NWidget(WWT_PANEL, COLOUR_WHITE, WID_N_PANEL),
188 NWidget(NWID_LAYER, INVALID_COLOUR),
189 /* Layer 1 */
192 NWidget(WWT_CLOSEBOX, COLOUR_WHITE, WID_N_CLOSEBOX),
193 EndContainer(),
194 EndContainer(),
195 /* Layer 2 */
196 NWidget(WWT_LABEL, INVALID_COLOUR, WID_N_TITLE),
197 SetFill(1, 1),
199 SetMinimalSize(400, 0),
201 SetTextStyle(TC_BLACK, FS_LARGE),
202 EndContainer(),
205 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_MGR_FACE),
206 SetFill(0, 0),
207 SetMinimalSize(93, 119),
208 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_MGR_NAME),
209 SetFill(0, 1),
211 EndContainer(),
212 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_COMPANY_MSG),
213 SetFill(1, 1),
215 SetMinimalSize(300, 0),
216 SetTextStyle(TC_BLACK, FS_LARGE),
217 EndContainer(),
218 EndContainer(),
219 EndContainer(),
220};
221
222static WindowDesc _company_news_desc(
223 WDP_MANUAL, {}, 0, 0,
225 {},
226 _nested_company_news_widgets
227);
228
229/* Thin news items. */
230static constexpr std::initializer_list<NWidgetPart> _nested_thin_news_widgets = {
231 NWidget(WWT_PANEL, COLOUR_WHITE, WID_N_PANEL),
233 NWidget(NWID_LAYER, INVALID_COLOUR),
234 /* Layer 1 */
237 NWidget(WWT_CLOSEBOX, COLOUR_WHITE, WID_N_CLOSEBOX),
238 NWidget(WWT_LABEL, INVALID_COLOUR, WID_N_DATE),
239 SetTextStyle(TC_BLACK, FS_SMALL),
241 EndContainer(),
242 EndContainer(),
243 /* Layer 2 */
244 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_MESSAGE),
246 SetMinimalSize(400, 0),
248 SetTextStyle(TC_BLACK, FS_LARGE),
249 EndContainer(),
250 NWidget(NWID_VIEWPORT, INVALID_COLOUR, WID_N_VIEWPORT), SetMinimalSize(426, 70),
252 EndContainer(),
253 EndContainer(),
254};
255
256static WindowDesc _thin_news_desc(
257 WDP_MANUAL, {}, 0, 0,
259 {},
260 _nested_thin_news_widgets
261);
262
263/* Small news items. */
264static constexpr std::initializer_list<NWidgetPart> _nested_small_news_widgets = {
265 /* Caption + close box. The caption is not WWT_CAPTION as the window shall not be moveable and so on. */
267 NWidget(WWT_CLOSEBOX, COLOUR_LIGHT_BLUE, WID_N_CLOSEBOX),
268 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_CAPTION),
270 NWidget(WWT_TEXTBTN, COLOUR_LIGHT_BLUE, WID_N_SHOW_GROUP),
271 SetAspect(WidgetDimensions::ASPECT_VEHICLE_ICON),
272 SetResize(1, 0),
273 SetToolTip(STR_NEWS_SHOW_VEHICLE_GROUP_TOOLTIP),
274 EndContainer(),
275 EndContainer(),
276
277 /* Main part */
278 NWidget(WWT_PANEL, COLOUR_LIGHT_BLUE, WID_N_HEADLINE),
280 SetPIP(0, WidgetDimensions::unscaled.vsep_normal, 0),
281 SetPadding(2),
282 NWidget(WWT_INSET, COLOUR_LIGHT_BLUE, WID_N_INSET),
283 NWidget(NWID_VIEWPORT, INVALID_COLOUR, WID_N_VIEWPORT),
284 SetMinimalSize(274, 47),
285 EndContainer(),
286 NWidget(WWT_EMPTY, INVALID_COLOUR, WID_N_MESSAGE),
288 SetMinimalSize(275, 0),
289 SetTextStyle(TC_WHITE, FS_NORMAL),
290 EndContainer(),
291 EndContainer(),
292};
293
294static WindowDesc _small_news_desc(
295 WDP_MANUAL, {}, 0, 0,
297 {},
298 _nested_small_news_widgets
299);
300
305 &_thin_news_desc, // NewsStyle::Thin
306 &_small_news_desc, // NewsStyle::Small
307 &_normal_news_desc, // NewsStyle::Normal
308 &_vehicle_news_desc, // NewsStyle::Vehicle
309 &_company_news_desc, // NewsStyle::Company
310};
311
312static WindowDesc &GetNewsWindowLayout(NewsStyle style)
313{
314 uint layout = to_underlying(style);
315 assert(layout < lengthof(_news_window_layout));
316 return *_news_window_layout[layout];
317}
318
323 /* name, age, sound, */
324 NewsTypeData("news_display.arrival_player", 60, SND_1D_APPLAUSE ),
325 NewsTypeData("news_display.arrival_other", 60, SND_1D_APPLAUSE ),
326 NewsTypeData("news_display.accident", 90, SND_BEGIN ),
327 NewsTypeData("news_display.accident_other", 90, SND_BEGIN ),
328 NewsTypeData("news_display.company_info", 60, SND_BEGIN ),
329 NewsTypeData("news_display.open", 90, SND_BEGIN ),
330 NewsTypeData("news_display.close", 90, SND_BEGIN ),
331 NewsTypeData("news_display.economy", 30, SND_BEGIN ),
332 NewsTypeData("news_display.production_player", 30, SND_BEGIN ),
333 NewsTypeData("news_display.production_other", 30, SND_BEGIN ),
334 NewsTypeData("news_display.production_nobody", 30, SND_BEGIN ),
335 NewsTypeData("news_display.advice", 150, SND_BEGIN ),
336 NewsTypeData("news_display.new_vehicles", 30, SND_1E_NEW_ENGINE),
337 NewsTypeData("news_display.acceptance", 90, SND_BEGIN ),
338 NewsTypeData("news_display.subsidies", 180, SND_BEGIN ),
339 NewsTypeData("news_display.general", 60, SND_BEGIN ),
340};
341
342static_assert(std::size(_news_type_data) == to_underlying(NewsType::End));
343
349{
350 const SettingDesc *sd = GetSettingFromName(this->name);
351 assert(sd != nullptr && sd->IsIntSetting());
352 return static_cast<NewsDisplay>(sd->AsIntSetting()->Read(nullptr));
353}
354
356struct NewsWindow : Window {
357 uint16_t chat_height = 0;
358 uint16_t status_height = 0;
359 const NewsItem *ni = nullptr;
360 static int duration;
361
362 NewsWindow(WindowDesc &desc, const NewsItem *ni) : Window(desc), ni(ni)
363 {
364 NewsWindow::duration = 16650;
366 this->chat_height = (w != nullptr) ? w->height : 0;
367 this->status_height = FindWindowById(WC_STATUS_BAR, 0)->height;
368
370
371 this->CreateNestedTree();
372
373 bool has_vehicle_id = std::holds_alternative<VehicleID>(ni->ref1);
375 if (nwid_sel != nullptr) nwid_sel->SetDisplayedPlane(has_vehicle_id ? 0 : SZSP_NONE);
376
378 if (has_vehicle_id && nwid != nullptr) {
379 const Vehicle *v = Vehicle::Get(std::get<VehicleID>(ni->ref1));
380 switch (v->type) {
381 case VEH_TRAIN:
382 nwid->SetString(STR_TRAIN);
383 break;
384 case VEH_ROAD:
385 nwid->SetString(RoadVehicle::From(v)->IsBus() ? STR_BUS : STR_LORRY);
386 break;
387 case VEH_SHIP:
388 nwid->SetString(STR_SHIP);
389 break;
390 case VEH_AIRCRAFT:
391 nwid->SetString(STR_PLANE);
392 break;
393 default:
394 break; // Do nothing
395 }
396 }
397
398 this->FinishInitNested(0);
399
400 /* Initialize viewport if it exists. */
402 if (nvp != nullptr) {
403 if (std::holds_alternative<VehicleID>(ni->ref1)) {
404 nvp->InitializeViewport(this, std::get<VehicleID>(ni->ref1), ScaleZoomGUI(ZoomLevel::News));
405 } else {
407 }
409 if (!this->ni->flags.Test(NewsFlag::InColour)) {
411 } else if (this->ni->flags.Test(NewsFlag::Shaded)) {
413 }
414 }
415
417 }
418
419 void DrawNewsBorder(const Rect &r) const
420 {
423
424 ir = ir.Expand(1);
425 GfxFillRect( r.left, r.top, ir.left, r.bottom, PC_BLACK);
426 GfxFillRect(ir.right, r.top, r.right, r.bottom, PC_BLACK);
427 GfxFillRect( r.left, r.top, r.right, ir.top, PC_BLACK);
428 GfxFillRect( r.left, ir.bottom, r.right, r.bottom, PC_BLACK);
429 }
430
431 Point OnInitialPosition([[maybe_unused]] int16_t sm_width, [[maybe_unused]] int16_t sm_height, [[maybe_unused]] int window_number) override
432 {
433 Point pt = { 0, _screen.height };
434 return pt;
435 }
436
437 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
438 {
439 FontSize fontsize = FS_NORMAL;
440 std::string str;
441 switch (widget) {
442 case WID_N_CAPTION: {
443 /* Caption is not a real caption (so that the window cannot be moved)
444 * thus it doesn't get the default sizing of a caption. */
445 Dimension d2 = GetStringBoundingBox(STR_NEWS_MESSAGE_CAPTION);
446 d2.height += WidgetDimensions::scaled.captiontext.Vertical();
447 size = maxdim(size, d2);
448 return;
449 }
450
451 case WID_N_MGR_FACE:
452 size = maxdim(size, GetScaledSpriteSize(SPR_GRADIENT));
453 break;
454
455 case WID_N_MESSAGE:
457 fontsize = this->GetWidget<NWidgetLeaf>(widget)->GetFontSize();
458 str = this->ni->headline.GetDecodedString();
459 break;
460
461 case WID_N_VEH_NAME:
462 case WID_N_VEH_TITLE:
463 str = this->GetNewVehicleMessageString(widget);
464 break;
465
466 case WID_N_VEH_INFO: {
467 assert(std::holds_alternative<EngineID>(ni->ref1));
468 EngineID engine = std::get<EngineID>(this->ni->ref1);
469 str = GetEngineInfoString(engine);
470 break;
471 }
472
473 case WID_N_SHOW_GROUP:
474 if (std::holds_alternative<VehicleID>(ni->ref1)) {
476 d2.height += WidgetDimensions::scaled.captiontext.Vertical();
477 d2.width += WidgetDimensions::scaled.captiontext.Horizontal();
478 size = d2;
479 }
480 return;
481
482 default:
483 return; // Do nothing
484 }
485
486 /* Update minimal size with length of the multi-line string. */
487 Dimension d = size;
488 d.width = (d.width >= padding.width) ? d.width - padding.width : 0;
489 d.height = (d.height >= padding.height) ? d.height - padding.height : 0;
490 d = GetStringMultiLineBoundingBox(str, d, fontsize);
491 d.width += padding.width;
492 d.height += padding.height;
493 size = maxdim(size, d);
494 }
495
496 std::string GetWidgetString(WidgetID widget, StringID stringid) const override
497 {
498 if (widget == WID_N_DATE) {
499 return GetString(STR_JUST_DATE_LONG, this->ni->date);
500 } else if (widget == WID_N_TITLE) {
501 const CompanyNewsInformation *cni = static_cast<const CompanyNewsInformation*>(this->ni->data.get());
502 return GetString(cni->title);
503 }
504
505 return this->Window::GetWidgetString(widget, stringid);
506
507 }
508
509 void DrawWidget(const Rect &r, WidgetID widget) const override
510 {
511 switch (widget) {
512 case WID_N_CAPTION:
513 DrawCaption(r, COLOUR_LIGHT_BLUE, this->owner, TC_FROMSTRING, GetString(STR_NEWS_MESSAGE_CAPTION), SA_CENTER, FS_NORMAL);
514 break;
515
516 case WID_N_PANEL:
517 this->DrawNewsBorder(r);
518 break;
519
520 case WID_N_MESSAGE:
521 case WID_N_COMPANY_MSG: {
522 const NWidgetLeaf &nwid = *this->GetWidget<NWidgetLeaf>(widget);
523 DrawStringMultiLine(r, this->ni->headline.GetDecodedString(), nwid.GetTextColour(), SA_CENTER, false, nwid.GetFontSize());
524 break;
525 }
526
527 case WID_N_MGR_FACE: {
528 const CompanyNewsInformation *cni = static_cast<const CompanyNewsInformation*>(this->ni->data.get());
529 DrawCompanyManagerFace(cni->face, cni->colour, r);
531 break;
532 }
533 case WID_N_MGR_NAME: {
534 const CompanyNewsInformation *cni = static_cast<const CompanyNewsInformation*>(this->ni->data.get());
535 DrawStringMultiLine(r, GetString(STR_JUST_RAW_STRING, cni->president_name), TC_FROMSTRING, SA_CENTER);
536 break;
537 }
538
539 case WID_N_VEH_BKGND:
541 break;
542
543 case WID_N_VEH_NAME:
544 case WID_N_VEH_TITLE:
545 DrawStringMultiLine(r, this->GetNewVehicleMessageString(widget), TC_FROMSTRING, SA_CENTER);
546 break;
547
548 case WID_N_VEH_SPR: {
549 assert(std::holds_alternative<EngineID>(ni->ref1));
550 EngineID engine = std::get<EngineID>(this->ni->ref1);
551 DrawVehicleEngine(r.left, r.right, CentreBounds(r.left, r.right, 0), CentreBounds(r.top, r.bottom, 0), engine, GetEnginePalette(engine, _local_company), EIT_PREVIEW);
553 break;
554 }
555 case WID_N_VEH_INFO: {
556 assert(std::holds_alternative<EngineID>(ni->ref1));
557 EngineID engine = std::get<EngineID>(this->ni->ref1);
559 break;
560 }
561 }
562 }
563
564 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
565 {
566 switch (widget) {
567 case WID_N_CLOSEBOX:
569 this->Close();
570 _forced_news = std::end(_news);
571 break;
572
573 case WID_N_CAPTION:
574 if (std::holds_alternative<VehicleID>(ni->ref1)) {
575 const Vehicle *v = Vehicle::Get(std::get<VehicleID>(this->ni->ref1));
577 }
578 break;
579
580 case WID_N_VIEWPORT:
581 break; // Ignore clicks
582
583 case WID_N_SHOW_GROUP:
584 if (std::holds_alternative<VehicleID>(ni->ref1)) {
585 const Vehicle *v = Vehicle::Get(std::get<VehicleID>(this->ni->ref1));
587 }
588 break;
589 default:
590 if (std::holds_alternative<VehicleID>(ni->ref1)) {
591 const Vehicle *v = Vehicle::Get(std::get<VehicleID>(this->ni->ref1));
593 } else {
594 TileIndex tile1 = GetReferenceTile(this->ni->ref1);
595 TileIndex tile2 = GetReferenceTile(this->ni->ref2);
596 if (_ctrl_pressed) {
597 if (tile1 != INVALID_TILE) ShowExtraViewportWindow(tile1);
598 if (tile2 != INVALID_TILE) ShowExtraViewportWindow(tile2);
599 } else {
600 if ((tile1 == INVALID_TILE || !ScrollMainWindowToTile(tile1)) && tile2 != INVALID_TILE) {
602 }
603 }
604 }
605 break;
606 }
607 }
608
609 void OnResize() override
610 {
611 if (this->viewport != nullptr) {
613 nvp->UpdateViewportCoordinates(this);
614
615 if (!std::holds_alternative<VehicleID>(ni->ref1)) {
616 ScrollWindowToTile(GetReferenceTile(ni->ref1), this, true); // Re-center viewport.
617 }
618 }
619
621 if (wid != nullptr) {
622 int y = GetStringHeight(GetString(STR_JUST_RAW_STRING, static_cast<const CompanyNewsInformation *>(this->ni->data.get())->president_name), wid->current_x);
623 if (wid->UpdateVerticalSize(y)) this->ReInit(0, 0);
624 }
625 }
626
632 void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
633 {
634 if (!gui_scope) return;
635 /* The chatbar has notified us that is was either created or closed */
636 int newtop = this->top + this->chat_height - data;
637 this->chat_height = data;
638 this->SetWindowTop(newtop);
639 }
640
641 void OnRealtimeTick([[maybe_unused]] uint delta_ms) override
642 {
643 /* Decrement the news timer. We don't need to action an elapsed event here,
644 * so no need to use TimerElapsed(). */
645 if (NewsWindow::duration > 0) NewsWindow::duration -= delta_ms;
646 }
647
653 const IntervalTimer<TimerWindow> scroll_interval = {std::chrono::milliseconds(210) / GetCharacterHeight(FS_NORMAL), [this](uint count) {
654 int newtop = std::max(this->top - 2 * static_cast<int>(count), _screen.height - this->height - this->status_height - this->chat_height);
655 this->SetWindowTop(newtop);
656 }};
657
658private:
663 void SetWindowTop(int newtop)
664 {
665 if (this->top == newtop) return;
666
667 int mintop = std::min(newtop, this->top);
668 int maxtop = std::max(newtop, this->top);
669 if (this->viewport != nullptr) this->viewport->top += newtop - this->top;
670 this->top = newtop;
671
672 AddDirtyBlock(this->left, mintop, this->left + this->width, maxtop + this->height);
673 }
674
675 std::string GetNewVehicleMessageString(WidgetID widget) const
676 {
677 assert(std::holds_alternative<EngineID>(ni->ref1));
678 EngineID engine = std::get<EngineID>(this->ni->ref1);
679
680 switch (widget) {
681 case WID_N_VEH_TITLE:
682 return GetString(STR_NEWS_NEW_VEHICLE_NOW_AVAILABLE, GetEngineCategoryName(engine));
683
684 case WID_N_VEH_NAME:
685 return GetString(STR_NEWS_NEW_VEHICLE_TYPE, PackEngineNameDParam(engine, EngineNameContext::PreviewNews));
686
687 default:
688 NOT_REACHED();
689 }
690 }
691};
692
693/* static */ int NewsWindow::duration = 0; // Instance creation.
694
699static void ShowNewspaper(const NewsItem *ni)
700{
701 SoundFx sound = _news_type_data[to_underlying(ni->type)].sound;
702 if (sound != 0 && _settings_client.sound.news_full) SndPlayFx(sound);
703
704 new NewsWindow(GetNewsWindowLayout(ni->style), ni);
705}
706
712{
713 if (_settings_client.sound.news_ticker) SndPlayFx(SND_16_NEWS_TICKER);
714
715 _statusbar_news = ni;
717}
718
721{
722 _news.clear();
723 _forced_news = std::end(_news);
724 _current_news = std::end(_news);
725 _statusbar_news = std::end(_news);
727}
728
735{
736 const NewsItem *ni = GetStatusbarNews();
737 if (ni == nullptr) return true;
738
739 /* Ticker message
740 * Check if the status bar message is still being displayed? */
741 return !IsNewsTickerShown();
742}
743
750{
751 if (_forced_news == std::end(_news) && _current_news == std::end(_news)) return true;
752
753 /* neither newsticker nor newspaper are running */
754 return (NewsWindow::duration <= 0 || FindWindowById(WC_NEWS_WINDOW, 0) == nullptr);
755}
756
759{
760 /* There is no status bar, so no reason to show news;
761 * especially important with the end game screen when
762 * there is no status bar but possible news. */
763 if (FindWindowById(WC_STATUS_BAR, 0) == nullptr) return;
764
765 /* No news to move to. */
766 if (std::empty(_news)) return;
767
768 /* if we're not at the latest item, then move on */
769 while (_statusbar_news != std::begin(_news)) {
771 const NewsType type = _statusbar_news->type;
772
773 /* check the date, don't show too old items */
774 if (TimerGameEconomy::date - _news_type_data[to_underlying(type)].age > _statusbar_news->economy_date) continue;
775
776 switch (_news_type_data[to_underlying(type)].GetDisplay()) {
777 default: NOT_REACHED();
778 case NewsDisplay::Off: // Show nothing only a small reminder in the status bar.
780 return;
781
782 case NewsDisplay::Summary: // Show ticker.
784 return;
785
786 case NewsDisplay::Full: // Show newspaper, skipped here.
787 break;;
788 }
789 }
790}
791
794{
795 /* There is no status bar, so no reason to show news;
796 * especially important with the end game screen when
797 * there is no status bar but possible news. */
798 if (FindWindowById(WC_STATUS_BAR, 0) == nullptr) return;
799
800 CloseWindowById(WC_NEWS_WINDOW, 0); // close the newspapers window if shown
801 _forced_news = std::end(_news);
802
803 /* No news to move to. */
804 if (std::empty(_news)) return;
805
806 /* if we're not at the latest item, then move on */
807 while (_current_news != std::begin(_news)) {
809 const NewsType type = _current_news->type;
810
811 /* check the date, don't show too old items */
812 if (TimerGameEconomy::date - _news_type_data[to_underlying(type)].age > _current_news->economy_date) continue;
813
814 switch (_news_type_data[to_underlying(type)].GetDisplay()) {
815 default: NOT_REACHED();
816 case NewsDisplay::Off: // Show nothing only a small reminder in the status bar, skipped here.
817 break;
818
819 case NewsDisplay::Summary: // Show ticker, skipped here.
820 break;
821
822 case NewsDisplay::Full: // Sshow newspaper.
824 return;
825 }
826 }
827}
828
834static std::list<NewsItem>::iterator DeleteNewsItem(std::list<NewsItem>::iterator ni)
835{
836 bool update_current_news = (_forced_news == ni || _current_news == ni);
837 bool update_statusbar_news = (_statusbar_news == ni);
838
839 if (update_current_news) {
840 /* When we're the current news, go to the next older item first;
841 * we just possibly made that the last news item. */
842 if (_current_news == ni) ++_current_news;
843 if (_forced_news == ni) _forced_news = std::end(_news);
844 }
845
846 if (update_statusbar_news) {
847 /* When we're the current news, go to the next older item first;
848 * we just possibly made that the last news item. */
850 }
851
852 /* Delete the news from the news queue. */
853 ni = _news.erase(ni);
854
855 if (update_current_news) {
856 /* About to remove the currently forced item (shown as newspapers) ||
857 * about to remove the currently displayed item (newspapers) */
859 }
860
861 if (update_statusbar_news) {
862 /* About to remove the currently displayed item (ticker, or just a reminder) */
863 InvalidateWindowData(WC_STATUS_BAR, 0, SBI_NEWS_DELETED); // invalidate the statusbar
865 }
866
867 return ni;
868}
869
885{
886 /* show this news message in colour? */
887 if (TimerGameCalendar::year >= _settings_client.gui.coloured_news_year) this->flags.Set(NewsFlag::InColour);
888}
889
890std::string NewsItem::GetStatusText() const
891{
892 if (this->data != nullptr) {
893 /* CompanyNewsInformation is the only type of additional data used. */
894 const CompanyNewsInformation &cni = *static_cast<const CompanyNewsInformation*>(this->data.get());
895 return GetString(STR_MESSAGE_NEWS_FORMAT, cni.title, this->headline.GetDecodedString());
896 }
897
898 return this->headline.GetDecodedString();
899}
900
914void AddNewsItem(EncodedString &&headline, NewsType type, NewsStyle style, NewsFlags flags, NewsReference ref1, NewsReference ref2, std::unique_ptr<NewsAllocatedData> &&data, AdviceType advice_type)
915{
916 if (_game_mode == GM_MENU) return;
917
918 /* Create new news item node */
919 _news.emplace_front(std::move(headline), type, style, flags, ref1, ref2, std::move(data), advice_type);
920
921 /* Keep the number of stored news items to a manageable number */
922 if (std::size(_news) > MAX_NEWS_AMOUNT) {
923 DeleteNewsItem(std::prev(std::end(_news)));
924 }
925
927}
928
934uint32_t SerialiseNewsReference(const NewsReference &reference)
935{
936 struct visitor {
937 uint32_t operator()(const std::monostate &) { return 0; }
938 uint32_t operator()(const TileIndex &t) { return t.base(); }
939 uint32_t operator()(const VehicleID v) { return v.base(); }
940 uint32_t operator()(const StationID s) { return s.base(); }
941 uint32_t operator()(const IndustryID i) { return i.base(); }
942 uint32_t operator()(const TownID t) { return t.base(); }
943 uint32_t operator()(const EngineID e) { return e.base(); }
944 };
945
946 return std::visit(visitor{}, reference);
947}
948
958CommandCost CmdCustomNewsItem(DoCommandFlags flags, NewsType type, CompanyID company, NewsReference reference, const EncodedString &text)
959{
961
962 if (company != INVALID_OWNER && !Company::IsValidID(company)) return CMD_ERROR;
963 if (type >= NewsType::End) return CMD_ERROR;
964 if (text.empty()) return CMD_ERROR;
965
966 struct visitor {
967 bool operator()(const std::monostate &) { return true; }
968 bool operator()(const TileIndex t) { return IsValidTile(t); }
969 bool operator()(const VehicleID v) { return Vehicle::IsValidID(v); }
970 bool operator()(const StationID s) { return Station::IsValidID(s); }
971 bool operator()(const IndustryID i) { return Industry::IsValidID(i); }
972 bool operator()(const TownID t) { return Town::IsValidID(t); }
973 bool operator()(const EngineID e) { return Engine::IsValidID(e); }
974 };
975
976 if (!std::visit(visitor{}, reference)) return CMD_ERROR;
977
978 if (company != INVALID_OWNER && company != _local_company) return CommandCost();
979
980 if (flags.Test(DoCommandFlag::Execute)) {
981 AddNewsItem(EncodedString{text}, type, NewsStyle::Normal, {}, reference, {});
982 }
983
984 return CommandCost();
985}
986
993template <size_t Tmin = 0, class Tpredicate>
994void DeleteNews(Tpredicate predicate)
995{
996 bool dirty = false;
997 for (auto it = std::rbegin(_news); it != std::rend(_news); /* nothing */) {
998 if constexpr (Tmin > 0) {
999 if (std::size(_news) <= Tmin) break;
1000 }
1001 if (predicate(*it)) {
1002 it = std::make_reverse_iterator(DeleteNewsItem(std::prev(it.base())));
1003 dirty = true;
1004 } else {
1005 ++it;
1006 }
1007 }
1009}
1010
1011template <typename T>
1012static bool IsReferenceObject(const NewsReference &reference, T id)
1013{
1014 return std::holds_alternative<T>(reference) && std::get<T>(reference) == id;
1015}
1016
1017template <typename T>
1018static bool HasReferenceObject(const NewsItem &ni, T id)
1019{
1020 return IsReferenceObject(ni.ref1, id) || IsReferenceObject(ni.ref2, id);
1021}
1022
1030{
1031 DeleteNews([&](const auto &ni) {
1032 return HasReferenceObject(ni, vid) && (advice_type == AdviceType::Invalid || ni.advice_type == advice_type);
1033 });
1034}
1035
1041void DeleteStationNews(StationID sid)
1042{
1043 DeleteNews([&](const auto &ni) {
1044 return HasReferenceObject(ni, sid);
1045 });
1046}
1047
1052void DeleteIndustryNews(IndustryID iid)
1053{
1054 DeleteNews([&](const auto &ni) {
1055 return HasReferenceObject(ni, iid);
1056 });
1057}
1058
1059bool IsInvalidEngineNews(const NewsReference &reference)
1060{
1061 if (!std::holds_alternative<EngineID>(reference)) return false;
1062
1063 EngineID eid = std::get<EngineID>(reference);
1064 return !Engine::IsValidID(eid) || !Engine::Get(eid)->IsEnabled();
1065}
1066
1071{
1072 DeleteNews([](const auto &ni) {
1073 return IsInvalidEngineNews(ni.ref1) || IsInvalidEngineNews(ni.ref2);
1074 });
1075}
1076
1077static void RemoveOldNewsItems()
1078{
1079 DeleteNews<MIN_NEWS_AMOUNT>([](const auto &ni) {
1080 return TimerGameEconomy::date - _news_type_data[to_underlying(ni.type)].age * _settings_client.gui.news_message_timeout > ni.economy_date;
1081 });
1082}
1083
1084template <typename T>
1085static void ChangeObject(NewsReference reference, T from, T to)
1086{
1087 if (!std::holds_alternative<T>(reference)) return;
1088 if (std::get<T>(reference) == from) reference = to;
1089}
1090
1097void ChangeVehicleNews(VehicleID from_index, VehicleID to_index)
1098{
1099 for (auto &ni : _news) {
1100 ChangeObject(ni.ref1, from_index, to_index);
1101 ChangeObject(ni.ref2, from_index, to_index);
1102 if (ni.flags.Test(NewsFlag::VehicleParam0) && IsReferenceObject(ni.ref1, to_index)) ni.headline = ni.headline.ReplaceParam(0, to_index.base());
1103 }
1104}
1105
1106void NewsLoop()
1107{
1108 /* no news item yet */
1109 if (std::empty(_news)) return;
1110
1111 static TimerGameEconomy::Month _last_clean_month = 0;
1112
1113 if (_last_clean_month != TimerGameEconomy::month) {
1114 RemoveOldNewsItems();
1115 _last_clean_month = TimerGameEconomy::month;
1116 }
1117
1120}
1121
1127{
1128 assert(!std::empty(_news));
1129
1130 /* Delete the news window */
1132
1133 /* setup forced news item */
1134 _forced_news = ni;
1135
1136 if (_forced_news != std::end(_news)) {
1138 ShowNewspaper(&*ni);
1139 }
1140}
1141
1147{
1148 NewsWindow *w = dynamic_cast<NewsWindow *>(FindWindowById(WC_NEWS_WINDOW, 0));
1149 if (w == nullptr) return false;
1150 w->Close();
1151 return true;
1152}
1153
1156{
1157 if (std::empty(_news)) return;
1158
1159 NewsIterator ni;
1160 if (_forced_news == std::end(_news)) {
1161 /* Not forced any news yet, show the current one, unless a news window is
1162 * open (which can only be the current one), then show the previous item */
1163 if (_current_news == std::end(_news)) {
1164 /* No news were shown yet resp. the last shown one was already deleted.
1165 * Treat this as if _forced_news reached the oldest news; so, wrap around and start anew with the latest. */
1166 ni = std::begin(_news);
1167 } else {
1168 const Window *w = FindWindowById(WC_NEWS_WINDOW, 0);
1169 ni = (w == nullptr || (std::next(_current_news) == std::end(_news))) ? _current_news : std::next(_current_news);
1170 }
1171 } else if (std::next(_forced_news) == std::end(_news)) {
1172 /* We have reached the oldest news, start anew with the latest */
1173 ni = std::begin(_news);
1174 } else {
1175 /* 'Scrolling' through news history show each one in turn */
1176 ni = std::next(_forced_news);
1177 }
1178 bool wrap = false;
1179 for (;;) {
1180 if (_news_type_data[to_underlying(ni->type)].GetDisplay() != NewsDisplay::Off) {
1181 ShowNewsMessage(ni);
1182 break;
1183 }
1184
1185 ++ni;
1186 if (ni == std::end(_news)) {
1187 if (wrap) break;
1188 /* We have reached the oldest news, start anew with the latest */
1189 ni = std::begin(_news);
1190 wrap = true;
1191 }
1192 }
1193}
1194
1195
1205static void DrawNewsString(uint left, uint right, int y, TextColour colour, const NewsItem &ni)
1206{
1207 /* Get the string, replaces newlines with spaces and remove control codes from the string. */
1208 std::string message = StrMakeValid(ni.GetStatusText(), StringValidationSetting::ReplaceTabCrNlWithSpace);
1209
1210 /* Truncate and show string; postfixed by '...' if necessary */
1211 DrawString(left, right, y, message, colour);
1212}
1213
1214struct MessageHistoryWindow : Window {
1215 int line_height = 0;
1216 int date_width = 0;
1217
1218 Scrollbar *vscroll = nullptr;
1219
1220 MessageHistoryWindow(WindowDesc &desc) : Window(desc)
1221 {
1222 this->CreateNestedTree();
1223 this->vscroll = this->GetScrollbar(WID_MH_SCROLLBAR);
1224 this->FinishInitNested(); // Initializes 'this->line_height' and 'this->date_width'.
1225 this->OnInvalidateData(0);
1226 }
1227
1228 void UpdateWidgetSize(WidgetID widget, Dimension &size, [[maybe_unused]] const Dimension &padding, [[maybe_unused]] Dimension &fill, [[maybe_unused]] Dimension &resize) override
1229 {
1230 if (widget == WID_MH_BACKGROUND) {
1231 this->line_height = GetCharacterHeight(FS_NORMAL) + WidgetDimensions::scaled.vsep_normal;
1232 fill.height = resize.height = this->line_height;
1233
1234 /* Months are off-by-one, so it's actually 8. Not using
1235 * month 12 because the 1 is usually less wide. */
1237
1238 size.height = 4 * resize.height + WidgetDimensions::scaled.framerect.Vertical(); // At least 4 lines are visible.
1239 size.width = std::max(200u, size.width); // At least 200 pixels wide.
1240 }
1241 }
1242
1243 void DrawWidget(const Rect &r, WidgetID widget) const override
1244 {
1245 if (widget != WID_MH_BACKGROUND || std::empty(_news)) return;
1246
1247 /* Fill the widget with news items. */
1248 bool rtl = _current_text_dir == TD_RTL;
1249 Rect news = r.Shrink(WidgetDimensions::scaled.framerect).Indent(this->date_width + WidgetDimensions::scaled.hsep_wide, rtl);
1250 Rect date = r.Shrink(WidgetDimensions::scaled.framerect).WithWidth(this->date_width, rtl);
1251 int y = news.top;
1252
1253 auto [first, last] = this->vscroll->GetVisibleRangeIterators(_news);
1254 for (auto ni = first; ni != last; ++ni) {
1255 DrawString(date.left, date.right, y, GetString(STR_JUST_DATE_TINY, ni->date), TC_WHITE);
1256
1257 DrawNewsString(news.left, news.right, y, TC_WHITE, *ni);
1258 y += this->line_height;
1259 }
1260 }
1261
1267 void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
1268 {
1269 if (!gui_scope) return;
1270 this->vscroll->SetCount(std::size(_news));
1271 }
1272
1273 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
1274 {
1275 if (widget == WID_MH_BACKGROUND) {
1276 /* Scheduled window invalidations currently occur after the input loop, which means the scrollbar count
1277 * could be invalid, so ensure it's correct now. Potentially this means that item clicked on might be
1278 * different as well. */
1279 this->vscroll->SetCount(std::size(_news));
1280 auto ni = this->vscroll->GetScrolledItemFromWidget(_news, pt.y, this, widget, WidgetDimensions::scaled.framerect.top);
1281 if (ni == std::end(_news)) return;
1282
1283 ShowNewsMessage(ni);
1284 }
1285 }
1286
1287 void OnResize() override
1288 {
1289 this->vscroll->SetCapacityFromWidget(this, WID_MH_BACKGROUND, WidgetDimensions::scaled.framerect.Vertical());
1290 }
1291};
1292
1293static constexpr std::initializer_list<NWidgetPart> _nested_message_history = {
1295 NWidget(WWT_CLOSEBOX, COLOUR_BROWN),
1296 NWidget(WWT_CAPTION, COLOUR_BROWN), SetStringTip(STR_MESSAGE_HISTORY, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
1297 NWidget(WWT_SHADEBOX, COLOUR_BROWN),
1298 NWidget(WWT_DEFSIZEBOX, COLOUR_BROWN),
1299 NWidget(WWT_STICKYBOX, COLOUR_BROWN),
1300 EndContainer(),
1301
1303 NWidget(WWT_PANEL, COLOUR_BROWN, WID_MH_BACKGROUND), SetMinimalSize(200, 125), SetToolTip(STR_MESSAGE_HISTORY_TOOLTIP), SetResize(1, 12), SetScrollbar(WID_MH_SCROLLBAR),
1304 EndContainer(),
1307 NWidget(WWT_RESIZEBOX, COLOUR_BROWN),
1308 EndContainer(),
1309 EndContainer(),
1310};
1311
1312static WindowDesc _message_history_desc(
1313 WDP_AUTO, "list_news", 400, 140,
1315 {},
1316 _nested_message_history
1317);
1318
1321{
1323 new MessageHistoryWindow(_message_history_desc);
1324}
constexpr bool Test(Tvalue_type value) const
Test if the value-th bit is set.
constexpr Timpl & Set()
Set all bits.
Common return value for all commands.
Container for an encoded string, created by GetEncodedString.
std::string GetDecodedString() const
Decode the encoded string.
Definition strings.cpp:207
EncodedString ReplaceParam(size_t param, StringParameter &&value) const
Replace a parameter of this EncodedString.
Definition strings.cpp:150
An interval timer will fire every interval, and will continue to fire until it is deleted.
Definition timer.h:76
uint current_x
Current horizontal size (after resizing).
Base class for a 'real' widget.
NWidgetDisplayFlags disp_flags
Flags that affect display and interaction with the widget.
void SetString(StringID string)
Set string of the nested widget.
Definition widget.cpp:1155
Leaf widget.
Base class for a resizable nested widget.
bool UpdateVerticalSize(uint min_y)
Set absolute (post-scaling) minimal size of the widget.
Definition widget.cpp:1121
Stacked widgets, widgets all occupying the same space in the window.
bool SetDisplayedPlane(int plane)
Select which plane to show (for NWID_SELECTION only).
Definition widget.cpp:1423
Nested widget to display a viewport in a window.
void UpdateViewportCoordinates(Window *w)
Update the position and size of the viewport (after eg a resize).
Definition widget.cpp:2403
void InitializeViewport(Window *w, std::variant< TileIndex, VehicleID > focus, ZoomLevel zoom)
Initialize the viewport of the window.
Definition widget.cpp:2394
Scrollbar data structure.
void SetCount(size_t num)
Sets the number of elements in the list.
auto GetScrolledItemFromWidget(Tcontainer &container, int clickpos, const Window *const w, WidgetID widget, int padding=0, int line_height=-1) const
Return an iterator pointing to the element of a scrolled widget that a user clicked in.
void SetCapacityFromWidget(Window *w, WidgetID widget, int padding=0)
Set capacity of visible elements from the size and resize properties of a widget.
Definition widget.cpp:2500
auto GetVisibleRangeIterators(Tcontainer &container) const
Get a pair of iterators for the range of visible elements in a container.
Timer that is increased every 27ms, and counts towards ticks / days / months / years.
static Date ConvertYMDToDate(Year year, Month month, Day day)
Converts a tuple of Year, Month and Day to a Date.
static Year year
Current year, starting at 0.
static constexpr TimerGame< struct Calendar >::Year ORIGINAL_MAX_YEAR
Timer that is increased every 27ms, and counts towards economy time units, expressed in days / months...
static Date date
Current date in days (day counter).
static Month month
Current month (0..11).
static WidgetDimensions scaled
Widget dimensions scaled for current zoom level.
Definition window_gui.h:30
static const WidgetDimensions unscaled
Unscaled widget dimensions.
Definition window_gui.h:93
Functions related to commands.
static const CommandCost CMD_ERROR
Define a default return value for a failed command.
@ Execute
execute the given command
Definition of stuff that is very close to a company, like the company struct itself.
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
CompanyID _current_company
Company currently doing an action.
Functions related to companies.
void DrawCompanyManagerFace(const CompanyManagerFace &cmf, Colours colour, const Rect &r)
Draws the face of a company manager's face.
Functionality related to the company manager's face.
static constexpr Owner OWNER_DEITY
The object is owned by a superuser / goal script.
static constexpr Owner INVALID_OWNER
An invalid owner.
Base class for engines.
std::string GetEngineInfoString(EngineID engine)
Get a multi-line string with some technical data, describing the engine.
StringID GetEngineCategoryName(EngineID engine)
Return the category of an engine.
void DrawVehicleEngine(int left, int right, int preferred_x, int y, EngineID engine, PaletteID pal, EngineImageType image_type)
Draw an engine.
Engine GUI functions, used by build_vehicle_gui and autoreplace_gui.
PoolID< uint16_t, struct EngineIDTag, 64000, 0xFFFF > EngineID
Unique identification number of an engine.
Definition engine_type.h:26
uint64_t PackEngineNameDParam(EngineID engine_id, EngineNameContext context, uint32_t extra_data=0)
Combine an engine ID and a name context to an engine name StringParameter.
@ PreviewNews
Name is shown in exclusive preview or newspaper.
constexpr std::underlying_type_t< enum_type > to_underlying(enum_type e)
Implementation of std::to_underlying (from C++23).
Definition enum_type.hpp:21
int GetCharacterHeight(FontSize size)
Get height of a character for a given font size.
Definition fontcache.cpp:87
Dimension maxdim(const Dimension &d1, const Dimension &d2)
Compute bounding box of both dimensions.
Geometry functions.
int CentreBounds(int min, int max, int size)
Determine where to position a centred object.
int GetStringHeight(std::string_view str, int maxw, FontSize fontsize)
Calculates height of string (in pixels).
Definition gfx.cpp:717
Dimension GetStringBoundingBox(std::string_view str, FontSize start_fontsize)
Return the string dimension in pixels.
Definition gfx.cpp:900
int DrawString(int left, int right, int top, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly truncated to make it fit in its allocated space.
Definition gfx.cpp:669
bool _ctrl_pressed
Is Ctrl pressed?
Definition gfx.cpp:39
Dimension GetStringMultiLineBoundingBox(StringID str, const Dimension &suggestion)
Calculate string bounding box for multi-line strings.
Definition gfx.cpp:753
int DrawStringMultiLine(int left, int right, int top, int bottom, std::string_view str, TextColour colour, StringAlignment align, bool underline, FontSize fontsize)
Draw string, possibly over multiple lines.
Definition gfx.cpp:788
void GfxFillRect(int left, int top, int right, int bottom, const std::variant< PixelColour, PaletteID > &colour, FillRectMode mode)
Applies a certain FillRectMode-operation to a rectangle [left, right] x [top, bottom] on the screen.
Definition gfx.cpp:116
Dimension GetScaledSpriteSize(SpriteID sprid)
Scale sprite size for GUI.
Definition widget.cpp:68
FontSize
Available font sizes.
Definition gfx_type.h:248
@ FS_SMALL
Index of the small font in the font tables.
Definition gfx_type.h:250
@ FS_NORMAL
Index of the normal font in the font tables.
Definition gfx_type.h:249
@ FS_LARGE
Index of the large font in the font tables.
Definition gfx_type.h:251
@ SA_TOP
Top align the text.
Definition gfx_type.h:393
@ SA_RIGHT
Right align the text (must be a single bit).
Definition gfx_type.h:390
@ SA_CENTER
Center both horizontally and vertically.
Definition gfx_type.h:398
TextColour
Colour of the strings, see _string_colourmap in table/string_colours.h or docs/ottd-colourtext-palett...
Definition gfx_type.h:307
@ FILLRECT_RECOLOUR
Apply a recolour sprite to the screen content.
Definition gfx_type.h:347
constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
Widget part function for setting filling.
constexpr NWidgetPart SetPIP(uint8_t pre, uint8_t inter, uint8_t post)
Widget part function for setting a pre/inter/post spaces.
constexpr NWidgetPart SetScrollbar(WidgetID index)
Attach a scrollbar to a widget.
constexpr NWidgetPart SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
Widget part function for setting additional space around a widget.
constexpr NWidgetPart SetStringTip(StringID string, StringID tip={})
Widget part function for setting the string and tooltip.
constexpr NWidgetPart SetAspect(float ratio, AspectFlags flags=AspectFlag::ResizeX)
Widget part function for setting the aspect ratio.
constexpr NWidgetPart SetTextStyle(TextColour colour, FontSize size=FS_NORMAL)
Widget part function for setting the text style.
constexpr NWidgetPart SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
constexpr NWidgetPart SetToolTip(StringID tip)
Widget part function for setting tooltip and clearing the widget data.
constexpr NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx=INVALID_WIDGET)
Widget part function for starting a new 'real' widget.
constexpr NWidgetPart SetMinimalTextLines(uint8_t lines, uint8_t spacing, FontSize size=FS_NORMAL)
Widget part function for setting the minimal text lines.
constexpr NWidgetPart SetAlignment(StringAlignment align)
Widget part function for setting the alignment of text/images.
constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
Widget part function for setting the resize step.
constexpr NWidgetPart SetPIPRatio(uint8_t ratio_pre, uint8_t ratio_inter, uint8_t ratio_post)
Widget part function for setting a pre/inter/post ratio.
void AddDirtyBlock(int left, int top, int right, int bottom)
Extend the internal _invalid_rect rectangle to contain the rectangle defined by the given parameters.
Definition gfx.cpp:1521
void ShowCompanyGroupForVehicle(const Vehicle *v)
Show the group window for the given vehicle.
Functions/definitions that have something to do with groups.
GUI functions that shouldn't be here.
void ShowExtraViewportWindow(TileIndex tile=INVALID_TILE)
Show a new Extra Viewport window.
Base of all industries.
#define Rect
Macro that prevents name conflicts between included headers.
#define Point
Macro that prevents name conflicts between included headers.
TileIndexDiff TileDiffXY(int x, int y)
Calculates an offset for the given coordinate(-offset).
Definition map_func.h:394
Command definitions related to news messages.
Functions related to news.
static NewsContainer _news
List of news, with newest items at the start.
Definition news_gui.cpp:50
void AddNewsItem(EncodedString &&headline, NewsType type, NewsStyle style, NewsFlags flags, NewsReference ref1, NewsReference ref2, std::unique_ptr< NewsAllocatedData > &&data, AdviceType advice_type)
Add a new newsitem to be shown.
Definition news_gui.cpp:914
static void MoveToNextNewsItem()
Move to the next news item.
Definition news_gui.cpp:793
static void ShowTicker(NewsIterator ni)
Show news item in the ticker.
Definition news_gui.cpp:711
void DeleteNews(Tpredicate predicate)
Delete news items by predicate, and invalidate the message history if necessary.
Definition news_gui.cpp:994
static void ShowNewspaper(const NewsItem *ni)
Open up an own newspaper window for the news item.
Definition news_gui.cpp:699
static const NewsTypeData _news_type_data[]
Per-NewsType data.
Definition news_gui.cpp:322
static const uint MIN_NEWS_AMOUNT
preferred minimum amount of news messages.
Definition news_gui.cpp:47
CommandCost CmdCustomNewsItem(DoCommandFlags flags, NewsType type, CompanyID company, NewsReference reference, const EncodedString &text)
Create a new custom news item.
Definition news_gui.cpp:958
static NewsIterator _forced_news
Forced news item.
Definition news_gui.cpp:58
void DeleteIndustryNews(IndustryID iid)
Remove news regarding given industry.
void DeleteStationNews(StationID sid)
Remove news regarding given station so there are no 'unknown station now accepts Mail' or 'First trai...
static TileIndex GetReferenceTile(const NewsReference &reference)
Get the position a news-reference is referencing.
Definition news_gui.cpp:89
static void DrawNewsString(uint left, uint right, int y, TextColour colour, const NewsItem &ni)
Draw an unformatted news message truncated to a maximum length.
void ShowLastNewsMessage()
Show previous news item.
static const uint MAX_NEWS_AMOUNT
Do not exceed this number of news messages.
Definition news_gui.cpp:48
uint32_t SerialiseNewsReference(const NewsReference &reference)
Encode a NewsReference for serialisation, e.g.
Definition news_gui.cpp:934
void DeleteInvalidEngineNews()
Remove engine announcements for invalid engines.
static bool ReadyForNextNewsItem()
Are we ready to show another news item?
Definition news_gui.cpp:749
static std::list< NewsItem >::iterator DeleteNewsItem(std::list< NewsItem >::iterator ni)
Delete a news item from the queue.
Definition news_gui.cpp:834
bool HideActiveNewsMessage()
Close active news message window.
void ShowMessageHistory()
Display window with news messages history.
void ChangeVehicleNews(VehicleID from_index, VehicleID to_index)
Report a change in vehicle IDs (due to autoreplace) to affected vehicle news.
void InitNewsItemStructs()
Initialize the news-items data structures.
Definition news_gui.cpp:720
static void MoveToNextTickerItem()
Move to the next ticker item.
Definition news_gui.cpp:758
void DeleteVehicleNews(VehicleID vid, AdviceType advice_type)
Delete news with a given advice type about a vehicle.
const NewsContainer & GetNews()
Get read-only reference to all news items.
Definition news_gui.cpp:79
static void ShowNewsMessage(NewsIterator ni)
Do a forced show of a specific message.
static NewsIterator _current_news
Current news item (last item shown regularly).
Definition news_gui.cpp:61
const NewsItem * GetStatusbarNews()
Get pointer to the current status bar news item.
Definition news_gui.cpp:70
static bool ReadyForNextTickerItem()
Are we ready to show another ticker item?
Definition news_gui.cpp:734
static WindowDesc * _news_window_layout[]
Window layouts for news items.
Definition news_gui.cpp:304
static NewsIterator _statusbar_news
Current status bar news item.
Definition news_gui.cpp:64
NewsType
Type of news.
Definition news_type.h:29
@ End
end-of-array marker
Definition news_type.h:47
NewsContainer::const_iterator NewsIterator
Iterator type for news items.
Definition news_type.h:175
std::list< NewsItem > NewsContainer
Container type for storing news items.
Definition news_type.h:174
NewsStyle
News Window Styles.
Definition news_type.h:77
@ Normal
Normal news item. (Newspaper with text only).
Definition news_type.h:80
AdviceType
Sub type of the NewsType::Advice to be able to remove specific news items.
Definition news_type.h:51
@ Invalid
Invalid marker.
Definition news_type.h:62
std::variant< std::monostate, TileIndex, VehicleID, StationID, IndustryID, TownID, EngineID > NewsReference
References to objects in news.
Definition news_type.h:74
@ NoTransparency
News item disables transparency in the viewport.
Definition news_type.h:91
@ VehicleParam0
String param 0 contains a vehicle ID. (special autoreplace behaviour).
Definition news_type.h:93
@ Shaded
News item uses shaded colours.
Definition news_type.h:92
@ InColour
News item is shown in colour (otherwise it is shown in black & white).
Definition news_type.h:90
NewsDisplay
News display options.
Definition news_type.h:100
@ Summary
Show ticker.
Definition news_type.h:102
@ Full
Show newspaper.
Definition news_type.h:103
@ Off
Only show a reminder in the status bar.
Definition news_type.h:101
Types related to the news widgets.
@ WID_N_DATE
Date of the news item.
Definition news_widget.h:21
@ WID_N_PANEL
Panel of the window.
Definition news_widget.h:17
@ WID_N_CLOSEBOX
Close the window.
Definition news_widget.h:20
@ WID_N_SHOW_GROUP
Show vehicle's group.
Definition news_widget.h:34
@ WID_N_CAPTION
Title bar of the window. Only used in small news items.
Definition news_widget.h:22
@ WID_N_HEADLINE
The news headline.
Definition news_widget.h:19
@ WID_N_INSET
Inset around the viewport in the window. Only used in small news items.
Definition news_widget.h:23
@ WID_N_SHOW_GROUP_SEL
Selector for showing vehicle group, which can be hidden.
Definition news_widget.h:35
@ WID_N_VEH_TITLE
Vehicle new title.
Definition news_widget.h:29
@ WID_N_VEH_INFO
Some technical data of the new vehicle.
Definition news_widget.h:33
@ WID_N_TITLE
Title of the company news.
Definition news_widget.h:18
@ WID_N_VIEWPORT
Viewport in the window.
Definition news_widget.h:24
@ WID_N_MGR_FACE
Face of the manager.
Definition news_widget.h:27
@ WID_N_MESSAGE
Space for displaying the message. Only used in small news items.
Definition news_widget.h:26
@ WID_N_VEH_BKGND
Dark background of new vehicle news.
Definition news_widget.h:30
@ WID_N_VEH_SPR
Graphical display of the new vehicle.
Definition news_widget.h:32
@ WID_N_VEH_NAME
Name of the new vehicle.
Definition news_widget.h:31
@ WID_N_COMPANY_MSG
Message in company news items.
Definition news_widget.h:25
@ WID_N_MGR_NAME
Name of the manager.
Definition news_widget.h:28
@ WID_MH_SCROLLBAR
Scrollbar for the list.
Definition news_widget.h:42
@ WID_MH_BACKGROUND
Background of the window.
Definition news_widget.h:41
static constexpr PixelColour PC_GREY
Grey palette colour.
static constexpr PixelColour PC_BLACK
Black palette colour.
static constexpr PixelColour PC_WHITE
White palette colour.
Road vehicle states.
A number of safeguards to prevent using unsafe methods.
static const SettingDesc * GetSettingFromName(std::string_view name, const SettingTable &settings)
Given a name of setting, return a setting description from the table.
ClientSettings _settings_client
The current settings for this game.
Definition settings.cpp:60
Functions and types used internally for the settings configurations.
bool ScrollMainWindowTo(int x, int y, int z, bool instant)
Scrolls the main window to given coordinates.
Functions related to sound.
SoundFx
Sound effects from baseset.
Definition sound_type.h:46
@ SND_1D_APPLAUSE
27 == 0x1B News: first vehicle at station
Definition sound_type.h:75
@ SND_16_NEWS_TICKER
20 == 0x14 News ticker
Definition sound_type.h:68
@ SND_1E_NEW_ENGINE
28 == 0x1C News: new engine available
Definition sound_type.h:76
static const PaletteID PALETTE_NEWSPAPER
Recolour sprite for newspaper-greying.
Definition sprites.h:1618
Base classes/functions for stations.
bool IsNewsTickerShown()
Checks whether the news ticker is currently being used.
Functions, definitions and such used only by the GUI.
@ SBI_SHOW_REMINDER
show a reminder (dot on the right side of the statusbar)
@ SBI_SHOW_TICKER
start scrolling news
@ SBI_NEWS_DELETED
abort current news display (active news were deleted)
Definition of base types and functions in a cross-platform compatible way.
#define lengthof(array)
Return the length of an fixed size array.
Definition stdafx.h:271
static void StrMakeValid(Builder &builder, StringConsumer &consumer, StringValidationSettings settings)
Copies the valid (UTF-8) characters from consumer to the builder.
Definition string.cpp:119
Functions related to low-level strings.
@ ReplaceTabCrNlWithSpace
Replace tabs ('\t'), carriage returns ('\r') and newlines (' ') with spaces.
Definition string_type.h:53
std::string GetString(StringID string)
Resolve the given StringID into a std::string with formatting but no parameters.
Definition strings.cpp:424
TextDirection _current_text_dir
Text direction of the currently selected language.
Definition strings.cpp:56
Functions related to OTTD's strings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
@ TD_RTL
Text is written right-to-left by default.
TileIndex xy
Base tile of the station.
VehicleType type
Type of vehicle.
Data that needs to be stored for company news messages.
Definition news_type.h:162
CompanyManagerFace face
The face of the president.
Definition news_type.h:168
Colours colour
The colour related to the company.
Definition news_type.h:169
std::string president_name
The name of the president.
Definition news_type.h:164
Dimensions (a width and height) of a rectangle in 2D.
int date_width
< Height of a single line in the news history window including spacing.
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
void DrawWidget(const Rect &r, WidgetID widget) const override
Draw the contents of a nested widget.
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
void OnResize() override
Called after the window got resized.
Scrollbar * vscroll
< Width needed for the date part.
void UpdateWidgetSize(WidgetID widget, Dimension &size, const Dimension &padding, Dimension &fill, Dimension &resize) override
Update size and resize step of a widget in the window.
Information about a single item of news.
Definition news_type.h:137
TimerGameCalendar::Date date
Calendar date to show for the news.
Definition news_type.h:139
std::unique_ptr< NewsAllocatedData > data
Custom data for the news item that will be deallocated (deleted) when the news item has reached its e...
Definition news_type.h:149
NewsType type
Type of the news.
Definition news_type.h:141
EncodedString headline
Headline of news.
Definition news_type.h:138
AdviceType advice_type
The type of advice, to be able to remove specific advices later on.
Definition news_type.h:142
TimerGameEconomy::Date economy_date
Economy date of the news item, never shown but used to calculate age.
Definition news_type.h:140
NewsItem(EncodedString &&headline, NewsType type, NewsStyle style, NewsFlags flags, NewsReference ref1, NewsReference ref2, std::unique_ptr< NewsAllocatedData > &&data, AdviceType advice_type)
Create a new newsitem to be shown.
Definition news_gui.cpp:883
NewsFlags flags
Window style for the news.
Definition news_type.h:144
NewsReference ref2
Reference 2 to some object: Used for scrolling after clicking on the news, and for deleting the news ...
Definition news_type.h:147
NewsReference ref1
Reference 1 to some object: Used for a possible viewport, scrolling after clicking on the news,...
Definition news_type.h:146
Per-NewsType data.
Definition news_type.h:109
NewsDisplay GetDisplay() const
Return the news display option.
Definition news_gui.cpp:348
const std::string_view name
Name.
Definition news_type.h:110
Window class displaying a news item.
Definition news_gui.cpp:356
uint16_t chat_height
Height of the chat window.
Definition news_gui.cpp:357
void OnResize() override
Called after the window got resized.
Definition news_gui.cpp:609
static int duration
Remaining time for showing the current news message (may only be access while a news item is displaye...
Definition news_gui.cpp:360
void DrawWidget(const Rect &r, WidgetID widget) const override
Draw the contents of a nested widget.
Definition news_gui.cpp:509
void UpdateWidgetSize(WidgetID widget, Dimension &size, const Dimension &padding, Dimension &fill, Dimension &resize) override
Update size and resize step of a widget in the window.
Definition news_gui.cpp:437
Point OnInitialPosition(int16_t sm_width, int16_t sm_height, int window_number) override
Compute the initial position of the window.
Definition news_gui.cpp:431
void OnRealtimeTick(uint delta_ms) override
Called periodically.
Definition news_gui.cpp:641
uint16_t status_height
Height of the status bar window.
Definition news_gui.cpp:358
const NewsItem * ni
News item to display.
Definition news_gui.cpp:359
void SetWindowTop(int newtop)
Moves the window to a new top coordinate.
Definition news_gui.cpp:663
std::string GetWidgetString(WidgetID widget, StringID stringid) const override
Get the raw string for a widget.
Definition news_gui.cpp:496
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
Definition news_gui.cpp:632
const IntervalTimer< TimerWindow > scroll_interval
Scroll the news message slowly up from the bottom.
Definition news_gui.cpp:653
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition news_gui.cpp:564
static Industry * Get(auto index)
Specification of a rectangle with absolute coordinates of all edges.
Rect WithWidth(int width, bool end) const
Copy Rect and set its width.
Rect Shrink(int s) const
Copy and shrink Rect by s pixels.
Rect Indent(int indent, bool end) const
Copy Rect and indent it from its position.
Rect Expand(int s) const
Copy and expand Rect by s pixels.
Properties of config file settings.
virtual bool IsIntSetting() const
Check whether this setting is an integer type setting.
const struct IntSettingDesc * AsIntSetting() const
Get the setting description of this setting as an integer setting.
Definition settings.cpp:918
static Station * Get(auto index)
static RoadVehicle * From(Vehicle *v)
Vehicle data structure.
int32_t z_pos
z coordinate.
int32_t y_pos
y coordinate.
int32_t x_pos
x coordinate.
High level window description.
Definition window_gui.h:168
Data structure for an opened window.
Definition window_gui.h:274
void ReInit(int rx=0, int ry=0, bool reposition=false)
Re-initialize a window, and optionally change its size.
Definition window.cpp:979
virtual void Close(int data=0)
Hide the window and all its child windows, and mark them for a later deletion.
Definition window.cpp:1104
void FinishInitNested(WindowNumber window_number=0)
Perform the second part of the initialization of a nested widget tree.
Definition window.cpp:1809
std::unique_ptr< ViewportData > viewport
Pointer to viewport data, if present.
Definition window_gui.h:319
virtual std::string GetWidgetString(WidgetID widget, StringID stringid) const
Get the raw string for a widget.
Definition window.cpp:505
ResizeInfo resize
Resize information.
Definition window_gui.h:315
void CreateNestedTree()
Perform the first part of the initialization of a nested widget tree.
Definition window.cpp:1799
Owner owner
The owner of the content shown in this window. Company colour is acquired from this variable.
Definition window_gui.h:317
int left
x position of left edge of the window
Definition window_gui.h:310
int top
y position of top edge of the window
Definition window_gui.h:311
Window(WindowDesc &desc)
Empty constructor, initialization has been moved to InitNested() called from the constructor of the d...
Definition window.cpp:1832
const NWID * GetWidget(WidgetID widnum) const
Get the nested widget with number widnum from the nested widget tree.
Definition window_gui.h:986
WindowFlags flags
Window flags.
Definition window_gui.h:301
const Scrollbar * GetScrollbar(WidgetID widnum) const
Return the Scrollbar to a widget index.
Definition window.cpp:314
int height
Height of the window (number of pixels down in y direction).
Definition window_gui.h:313
int width
width of the window (number of pixels to the right in x direction)
Definition window_gui.h:312
WindowNumber window_number
Window number within the window class.
Definition window_gui.h:303
bool IsValidTile(Tile tile)
Checks if a tile is valid.
Definition tile_map.h:161
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > > TileIndex
The index/ID of a Tile.
Definition tile_type.h:92
constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition tile_type.h:100
Definition of Interval and OneShot timers.
Definition of the game-calendar-timer.
Definition of the Window system.
Base of the town class.
PaletteID GetEnginePalette(EngineID engine_type, CompanyID company)
Get the colour map for an engine.
Definition vehicle.cpp:2136
Base class for all vehicles.
Functions related to vehicles.
void ShowVehicleViewWindow(const Vehicle *v)
Shows the vehicle view window of the given vehicle.
Functions related to the vehicle's GUIs.
@ EIT_PREVIEW
Vehicle drawn in preview window, news, ...
PoolID< uint32_t, struct VehicleIDTag, 0xFF000, 0xFFFFF > VehicleID
The type all our vehicle IDs have.
@ VEH_ROAD
Road vehicle type.
@ VEH_AIRCRAFT
Aircraft vehicle type.
@ VEH_SHIP
Ship vehicle type.
@ VEH_TRAIN
Train vehicle type.
bool ScrollWindowToTile(TileIndex tile, Window *w, bool instant)
Scrolls the viewport in a window to a given location.
bool ScrollMainWindowToTile(TileIndex tile, bool instant)
Scrolls the viewport of the main window to a given location.
Functions related to (drawing on) viewports.
void DrawCaption(const Rect &r, Colours colour, Owner owner, TextColour text_colour, std::string_view str, StringAlignment align, FontSize fs)
Draw a caption bar.
Definition widget.cpp:718
@ WWT_INSET
Pressed (inset) panel, most commonly used as combo box text area.
Definition widget_type.h:40
@ WWT_LABEL
Centered label.
Definition widget_type.h:48
@ NWID_HORIZONTAL
Horizontal container.
Definition widget_type.h:66
@ WWT_TEXTBTN
(Toggle) Button with text
Definition widget_type.h:44
@ WWT_PANEL
Simple depressed panel.
Definition widget_type.h:39
@ WWT_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX).
Definition widget_type.h:57
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX).
Definition widget_type.h:55
@ WWT_CAPTION
Window caption (window title between closebox and stickybox).
Definition widget_type.h:52
@ NWID_VSCROLLBAR
Vertical scrollbar.
Definition widget_type.h:76
@ NWID_VERTICAL
Vertical container.
Definition widget_type.h:68
@ WWT_CLOSEBOX
Close box (at top-left of a window).
Definition widget_type.h:60
@ WWT_EMPTY
Empty widget, place holder to reserve space in widget tree.
Definition widget_type.h:37
@ WWT_RESIZEBOX
Resize box (normally at bottom-right of a window).
Definition widget_type.h:59
@ WWT_DEFSIZEBOX
Default window size box (at top-right of a window, between WWT_SHADEBOX and WWT_STICKYBOX).
Definition widget_type.h:56
@ NWID_VIEWPORT
Nested widget containing a viewport.
Definition widget_type.h:73
@ NWID_LAYER
Layered widgets, all visible together.
Definition widget_type.h:72
@ NWID_SELECTION
Stacked widgets, only one visible at a time (eg in a panel with tabs).
Definition widget_type.h:71
@ ShadeDimmed
Display dimmed colours in the viewport.
@ ShadeGrey
Shade viewport to grey-scale.
@ NoTransparency
Viewport is never transparent.
@ SZSP_NONE
Display plane with zero size in both directions (none filling and resizing).
void CloseWindowById(WindowClass cls, WindowNumber number, bool force, int data)
Close a window by its class and window number (if it is open).
Definition window.cpp:1196
Window * FindWindowByClass(WindowClass cls)
Find any window by its class.
Definition window.cpp:1168
int PositionNewsMessage(Window *w)
(Re)position news message window at the screen.
Definition window.cpp:3501
void InvalidateWindowData(WindowClass cls, WindowNumber number, int data, bool gui_scope)
Mark window data of the window of a given class and specific window number as invalid (in need of re-...
Definition window.cpp:3307
Window * FindWindowById(WindowClass cls, WindowNumber number)
Find a window by its class and window number.
Definition window.cpp:1153
Window functions not directly related to making/drawing windows.
@ DisableVpScroll
Window does not do autoscroll,.
Definition window_gui.h:234
@ WDP_AUTO
Find a place automatically.
Definition window_gui.h:144
@ WDP_MANUAL
Manually align the window (so no automatic location finding).
Definition window_gui.h:143
int WidgetID
Widget ID.
Definition window_type.h:20
@ WC_NEWS_WINDOW
News window; Window numbers:
@ WC_STATUS_BAR
Statusbar (at the bottom of your screen); Window numbers:
Definition window_type.h:69
@ WC_SEND_NETWORK_MSG
Chatbox; Window numbers:
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
Definition window_type.h:50
@ WC_MESSAGE_HISTORY
News history list; Window numbers:
Functions related to zooming.
ZoomLevel ScaleZoomGUI(ZoomLevel value)
Scale zoom level relative to GUI zoom.
Definition zoom_func.h:87
@ News
Default zoom level for the news messages.
Definition zoom_type.h:35