OpenTTD Source 20250609-master-g3908df5fbe
help_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 <http://www.gnu.org/licenses/>.
6 */
7
10#include "stdafx.h"
11#include "gui.h"
12#include "window_gui.h"
13#include "textfile_gui.h"
14#include "fileio_func.h"
15#include "table/control_codes.h"
16#include "string_func.h"
17#include "openttd.h"
18#include "help_gui.h"
19
20#include "widgets/help_widget.h"
21#include "widgets/misc_widget.h"
22
23#include "table/strings.h"
24
25#include "safeguards.h"
26
27static const std::string README_FILENAME = "README.md";
28static const std::string CHANGELOG_FILENAME = "changelog.md";
29static const std::string KNOWN_BUGS_FILENAME = "known-bugs.md";
30static const std::string LICENSE_FILENAME = "COPYING.md";
31static const std::string FONTS_FILENAME = "fonts.md";
32
33static const std::string WEBSITE_LINK = "https://www.openttd.org/";
34static const std::string WIKI_LINK = "https://wiki.openttd.org/";
35static const std::string BUGTRACKER_LINK = "https://bugs.openttd.org/";
36static const std::string COMMUNITY_LINK = "https://community.openttd.org/";
37
39static constexpr size_t CHANGELOG_VERSIONS_LIMIT = 20;
40
47static std::optional<std::string> FindGameManualFilePath(std::string_view filename, Subdirectory subdir)
48{
49 static const Searchpath searchpaths[] = {
51 };
52
53 for (Searchpath sp : searchpaths) {
54 std::string file_path = FioGetDirectory(sp, subdir);
55 file_path.append(filename);
56 if (FioCheckFileExists(file_path, NO_DIRECTORY)) return file_path;
57 }
58
59 return {};
60}
61
65 {
66 this->ConstructWindow();
67
68 /* Mark the content of these files as trusted. */
69 this->trusted = true;
70
71 auto filepath = FindGameManualFilePath(filename, subdir);
72 /* The user could, in theory, have moved the file. So just show an empty window if that is the case. */
73 if (!filepath.has_value()) {
74 return;
75 }
76
77 this->filepath = filepath.value();
79 this->OnClick({ 0, 0 }, WID_TF_WRAPTEXT, 1);
80 }
81
82 std::string GetWidgetString(WidgetID widget, StringID stringid) const override
83 {
84 if (widget == WID_TF_CAPTION) {
85 return GetString(stringid, this->filename);
86 }
87
88 return this->Window::GetWidgetString(widget, stringid);
89 }
90
91 void AfterLoadText() override
92 {
93 if (this->filename == CHANGELOG_FILENAME) {
94 this->link_anchors.clear();
95 this->AfterLoadChangelog();
96 }
98 }
99
106 {
107 uint versions = 0;
108
109 /* Look for lines beginning with ###, they indicate a release name. */
110 for (size_t line_index = 0; line_index < this->lines.size(); ++line_index) {
111 const Line &line = this->lines[line_index];
112 if (!line.text.starts_with("###")) continue;
113
114 if (versions >= CHANGELOG_VERSIONS_LIMIT) {
115 this->lines.resize(line_index - 2);
116 break;
117 }
118
119 ++versions;
120 }
121 }
122};
123
125struct HelpWindow : public Window {
126
127 HelpWindow(WindowDesc &desc, WindowNumber number) : Window(desc)
128 {
129 this->InitNested(number);
130
131 this->EnableTextfileButton(README_FILENAME, BASE_DIR, WID_HW_README);
132 this->EnableTextfileButton(CHANGELOG_FILENAME, BASE_DIR, WID_HW_CHANGELOG);
133 this->EnableTextfileButton(KNOWN_BUGS_FILENAME, BASE_DIR, WID_HW_KNOWN_BUGS);
134 this->EnableTextfileButton(LICENSE_FILENAME, BASE_DIR, WID_HW_LICENSE);
135 this->EnableTextfileButton(FONTS_FILENAME, DOCS_DIR, WID_HW_FONTS);
136 }
137
138 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
139 {
140 switch (widget) {
141 case WID_HW_README:
142 new GameManualTextfileWindow(README_FILENAME, BASE_DIR);
143 break;
144 case WID_HW_CHANGELOG:
145 new GameManualTextfileWindow(CHANGELOG_FILENAME, BASE_DIR);
146 break;
147 case WID_HW_KNOWN_BUGS:
148 new GameManualTextfileWindow(KNOWN_BUGS_FILENAME, BASE_DIR);
149 break;
150 case WID_HW_LICENSE:
151 new GameManualTextfileWindow(LICENSE_FILENAME, BASE_DIR);
152 break;
153 case WID_HW_FONTS:
154 new GameManualTextfileWindow(FONTS_FILENAME, DOCS_DIR);
155 break;
156 case WID_HW_WEBSITE:
157 OpenBrowser(WEBSITE_LINK);
158 break;
159 case WID_HW_WIKI:
160 OpenBrowser(WIKI_LINK);
161 break;
162 case WID_HW_BUGTRACKER:
163 OpenBrowser(BUGTRACKER_LINK);
164 break;
165 case WID_HW_COMMUNITY:
166 OpenBrowser(COMMUNITY_LINK);
167 break;
168 }
169 }
170
171private:
172 void EnableTextfileButton(std::string_view filename, Subdirectory subdir, WidgetID button_widget)
173 {
174 this->GetWidget<NWidgetLeaf>(button_widget)->SetDisabled(!FindGameManualFilePath(filename, subdir).has_value());
175 }
176};
177
178static constexpr NWidgetPart _nested_helpwin_widgets[] = {
180 NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
181 NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetStringTip(STR_HELP_WINDOW_CAPTION),
182 EndContainer(),
183
184 NWidget(WWT_PANEL, COLOUR_DARK_GREEN),
186 NWidget(WWT_FRAME, COLOUR_DARK_GREEN), SetStringTip(STR_HELP_WINDOW_WEBSITES),
187 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_WEBSITE), SetStringTip(STR_HELP_WINDOW_MAIN_WEBSITE), SetMinimalSize(128, 12), SetFill(1, 0),
188 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_WIKI), SetStringTip(STR_HELP_WINDOW_MANUAL_WIKI), SetMinimalSize(128, 12), SetFill(1, 0),
189 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_BUGTRACKER), SetStringTip(STR_HELP_WINDOW_BUGTRACKER), SetMinimalSize(128, 12), SetFill(1, 0),
190 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_COMMUNITY), SetStringTip(STR_HELP_WINDOW_COMMUNITY), SetMinimalSize(128, 12), SetFill(1, 0),
191 EndContainer(),
192
193 NWidget(WWT_FRAME, COLOUR_DARK_GREEN), SetStringTip(STR_HELP_WINDOW_DOCUMENTS),
194 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_README), SetStringTip(STR_HELP_WINDOW_README), SetMinimalSize(128, 12), SetFill(1, 0),
195 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_CHANGELOG), SetStringTip(STR_HELP_WINDOW_CHANGELOG), SetMinimalSize(128, 12), SetFill(1, 0),
196 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_KNOWN_BUGS),SetStringTip(STR_HELP_WINDOW_KNOWN_BUGS), SetMinimalSize(128, 12), SetFill(1, 0),
197 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_LICENSE), SetStringTip(STR_HELP_WINDOW_LICENSE), SetMinimalSize(128, 12), SetFill(1, 0),
198 NWidget(WWT_PUSHTXTBTN, COLOUR_GREEN, WID_HW_FONTS), SetStringTip(STR_HELP_WINDOW_FONTS), SetMinimalSize(128, 12), SetFill(1, 0),
199 EndContainer(),
200 EndContainer(),
201 EndContainer(),
202};
203
204static WindowDesc _helpwin_desc(
205 WDP_CENTER, {}, 0, 0,
206 WC_HELPWIN, WC_NONE,
207 {},
208 _nested_helpwin_widgets
209);
210
211void ShowHelpWindow()
212{
213 AllocateWindowDescFront<HelpWindow>(_helpwin_desc, 0);
214}
static const WidgetDimensions unscaled
Unscaled widget dimensions.
Definition window_gui.h:93
Control codes that are embedded in the translation strings.
bool FioCheckFileExists(std::string_view filename, Subdirectory subdir)
Check whether the given file exists.
Definition fileio.cpp:121
Functions for Standard In/Out file operations.
Searchpath
Types of searchpaths OpenTTD might use.
@ SP_SHARED_DIR
Search in the shared directory, like 'Shared Files' under Windows.
@ SP_INSTALLATION_DIR
Search in the installation directory.
@ SP_BINARY_DIR
Search in the directory where the binary resides.
@ SP_WORKING_DIR
Search in the working directory.
@ SP_APPLICATION_BUNDLE_DIR
Search within the application bundle.
Subdirectory
The different kinds of subdirectories OpenTTD uses.
Definition fileio_type.h:87
@ NO_DIRECTORY
A path without any base directory.
@ BASE_DIR
Base directory for all subdirectories.
Definition fileio_type.h:88
@ DOCS_DIR
Subdirectory for documentation.
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 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 SetMinimalSize(int16_t x, int16_t y)
Widget part function for setting the minimal size.
constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx=-1)
Widget part function for starting a new 'real' widget.
constexpr NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
GUI functions that shouldn't be here.
static constexpr size_t CHANGELOG_VERSIONS_LIMIT
Only show the first 20 changelog versions in the textfile viewer.
Definition help_gui.cpp:39
static std::optional< std::string > FindGameManualFilePath(std::string_view filename, Subdirectory subdir)
Find the path to the game manual file.
Definition help_gui.cpp:47
GUI to access manuals and related.
Types related to the help window widgets.
Types related to the misc widgets.
@ WID_TF_WRAPTEXT
Whether or not to wrap the text.
Definition misc_widget.h:53
@ WID_TF_CAPTION
The caption of the window.
Definition misc_widget.h:50
Some generic types.
A number of safeguards to prevent using unsafe methods.
Definition of base types and functions in a cross-platform compatible way.
Functions related to low-level strings.
std::string GetString(StringID string)
Resolve the given StringID into a std::string with formatting but no parameters.
Definition strings.cpp:415
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Window class displaying the game manual textfile viewer.
Definition help_gui.cpp:63
std::string GetWidgetString(WidgetID widget, StringID stringid) const override
Get the raw string for a widget.
Definition help_gui.cpp:82
void AfterLoadChangelog()
For changelog files, truncate the file after CHANGELOG_VERSIONS_LIMIT versions.
Definition help_gui.cpp:105
void AfterLoadText() override
Post-processing after the text is loaded.
Definition help_gui.cpp:91
Window class displaying the help window.
Definition help_gui.cpp:125
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
Definition help_gui.cpp:138
Partial widget specification to allow NWidgets to be written nested.
Coordinates of a point in 2D.
std::string text
Contents of the line.
Window for displaying a textfile.
bool trusted
Whether the content is trusted (read: not from content like NewGRFs, etc).
std::vector< Line > lines
#text, split into lines in a table with lines.
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
virtual void AfterLoadText()
Post-processing after the text is loaded.
std::string filepath
Full path to the filename.
std::vector< Hyperlink > link_anchors
Anchor names of headings that can be linked to.
std::string filename
Filename of the textfile.
virtual void LoadTextfile(const std::string &textfile, Subdirectory dir)
Loads the textfile text from file and setup lines.
High level window description.
Definition window_gui.h:167
Number to differentiate different windows of the same class.
Data structure for an opened window.
Definition window_gui.h:273
virtual std::string GetWidgetString(WidgetID widget, StringID stringid) const
Get the raw string for a widget.
Definition window.cpp:503
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
Definition window.cpp:1791
GUI functions related to textfiles.
@ TFT_GAME_MANUAL
Game manual/documentation file.
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
@ NWID_HORIZONTAL
Horizontal container.
Definition widget_type.h:67
@ WWT_PANEL
Simple depressed panel.
Definition widget_type.h:40
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition widget_type.h:53
@ WWT_CLOSEBOX
Close box (at top-left of a window)
Definition widget_type.h:61
@ WWT_FRAME
Frame.
Definition widget_type.h:52
Functions, definitions and such used only by the GUI.
@ WDP_CENTER
Center the window.
Definition window_gui.h:145
int WidgetID
Widget ID.
Definition window_type.h:20
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
Definition window_type.h:47