OpenTTD Source  1.11.2
openttd.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 
12 #include "blitter/factory.hpp"
13 #include "sound/sound_driver.hpp"
14 #include "music/music_driver.hpp"
15 #include "video/video_driver.hpp"
16 
17 #include "fontcache.h"
18 #include "error.h"
19 #include "gui.h"
20 
21 #include "base_media_base.h"
22 #include "saveload/saveload.h"
23 #include "company_func.h"
24 #include "command_func.h"
25 #include "news_func.h"
26 #include "fios.h"
27 #include "aircraft.h"
28 #include "roadveh.h"
29 #include "train.h"
30 #include "ship.h"
31 #include "console_func.h"
32 #include "screenshot.h"
33 #include "network/network.h"
34 #include "network/network_func.h"
35 #include "network/core/game_info.h"
36 #include "ai/ai.hpp"
37 #include "ai/ai_config.hpp"
38 #include "settings_func.h"
39 #include "genworld.h"
40 #include "progress.h"
41 #include "strings_func.h"
42 #include "date_func.h"
43 #include "vehicle_func.h"
44 #include "gamelog.h"
45 #include "animated_tile_func.h"
46 #include "roadstop_base.h"
47 #include "elrail_func.h"
48 #include "rev.h"
49 #include "highscore.h"
50 #include "station_base.h"
51 #include "crashlog.h"
52 #include "engine_func.h"
53 #include "core/random_func.hpp"
54 #include "rail_gui.h"
55 #include "road_gui.h"
56 #include "core/backup_type.hpp"
57 #include "hotkeys.h"
58 #include "newgrf.h"
59 #include "misc/getoptdata.h"
60 #include "game/game.hpp"
61 #include "game/game_config.hpp"
62 #include "town.h"
63 #include "subsidy_func.h"
64 #include "gfx_layout.h"
65 #include "viewport_func.h"
66 #include "viewport_sprite_sorter.h"
67 #include "framerate_type.h"
68 #include "industry.h"
69 
71 
72 #include <stdarg.h>
73 #include <system_error>
74 
75 #include "safeguards.h"
76 
77 #ifdef __EMSCRIPTEN__
78 # include <emscripten.h>
79 # include <emscripten/html5.h>
80 #endif
81 
82 void CallLandscapeTick();
83 void IncreaseDate();
84 void DoPaletteAnimations();
85 void MusicLoop();
86 void ResetMusic();
88 bool HandleBootstrap();
89 
90 extern Company *DoStartupNewCompany(bool is_ai, CompanyID company = INVALID_COMPANY);
91 extern void ShowOSErrorBox(const char *buf, bool system);
92 extern std::string _config_file;
93 
94 bool _save_config = false;
95 bool _request_newgrf_scan = false;
96 NewGRFScanCallback *_request_newgrf_scan_callback = nullptr;
97 
103 void CDECL usererror(const char *s, ...)
104 {
105  va_list va;
106  char buf[512];
107 
108  va_start(va, s);
109  vseprintf(buf, lastof(buf), s, va);
110  va_end(va);
111 
112  ShowOSErrorBox(buf, false);
114 
115 #ifdef __EMSCRIPTEN__
116  emscripten_exit_pointerlock();
117  /* In effect, the game ends here. As emscripten_set_main_loop() caused
118  * the stack to be unwound, the code after MainLoop() in
119  * openttd_main() is never executed. */
120  EM_ASM(if (window["openttd_syncfs"]) openttd_syncfs());
121  EM_ASM(if (window["openttd_abort"]) openttd_abort());
122 #endif
123 
124  exit(1);
125 }
126 
132 void CDECL error(const char *s, ...)
133 {
134  va_list va;
135  char buf[2048];
136 
137  va_start(va, s);
138  vseprintf(buf, lastof(buf), s, va);
139  va_end(va);
140 
141  if (VideoDriver::GetInstance() == nullptr || VideoDriver::GetInstance()->HasGUI()) {
142  ShowOSErrorBox(buf, true);
143  }
144 
145  /* Set the error message for the crash log and then invoke it. */
147  abort();
148 }
149 
154 void CDECL ShowInfoF(const char *str, ...)
155 {
156  va_list va;
157  char buf[1024];
158  va_start(va, str);
159  vseprintf(buf, lastof(buf), str, va);
160  va_end(va);
161  ShowInfo(buf);
162 }
163 
167 static void ShowHelp()
168 {
169  char buf[8192];
170  char *p = buf;
171 
172  p += seprintf(p, lastof(buf), "OpenTTD %s\n", _openttd_revision);
173  p = strecpy(p,
174  "\n"
175  "\n"
176  "Command line options:\n"
177  " -v drv = Set video driver (see below)\n"
178  " -s drv = Set sound driver (see below) (param bufsize,hz)\n"
179  " -m drv = Set music driver (see below)\n"
180  " -b drv = Set the blitter to use (see below)\n"
181  " -r res = Set resolution (for instance 800x600)\n"
182  " -h = Display this help text\n"
183  " -t year = Set starting year\n"
184  " -d [[fac=]lvl[,...]]= Debug mode\n"
185  " -e = Start Editor\n"
186  " -g [savegame] = Start new/save game immediately\n"
187  " -G seed = Set random seed\n"
188  " -n [ip:port#company]= Join network game\n"
189  " -p password = Password to join server\n"
190  " -P password = Password to join company\n"
191  " -D [ip][:port] = Start dedicated server\n"
192  " -l ip[:port] = Redirect DEBUG()\n"
193 #if !defined(_WIN32)
194  " -f = Fork into the background (dedicated only)\n"
195 #endif
196  " -I graphics_set = Force the graphics set (see below)\n"
197  " -S sounds_set = Force the sounds set (see below)\n"
198  " -M music_set = Force the music set (see below)\n"
199  " -c config_file = Use 'config_file' instead of 'openttd.cfg'\n"
200  " -x = Never save configuration changes to disk\n"
201  " -q savegame = Write some information about the savegame and exit\n"
202  "\n",
203  lastof(buf)
204  );
205 
206  /* List the graphics packs */
207  p = BaseGraphics::GetSetsList(p, lastof(buf));
208 
209  /* List the sounds packs */
210  p = BaseSounds::GetSetsList(p, lastof(buf));
211 
212  /* List the music packs */
213  p = BaseMusic::GetSetsList(p, lastof(buf));
214 
215  /* List the drivers */
217 
218  /* List the blitters */
220 
221  /* List the debug facilities. */
222  p = DumpDebugFacilityNames(p, lastof(buf));
223 
224  /* We need to initialize the AI, so it finds the AIs */
225  AI::Initialize();
226  p = AI::GetConsoleList(p, lastof(buf), true);
227  AI::Uninitialize(true);
228 
229  /* We need to initialize the GameScript, so it finds the GSs */
231  p = Game::GetConsoleList(p, lastof(buf), true);
232  Game::Uninitialize(true);
233 
234  /* ShowInfo put output to stderr, but version information should go
235  * to stdout; this is the only exception */
236 #if !defined(_WIN32)
237  printf("%s\n", buf);
238 #else
239  ShowInfo(buf);
240 #endif
241 }
242 
243 static void WriteSavegameInfo(const char *name)
244 {
246  uint32 last_ottd_rev = 0;
247  byte ever_modified = 0;
248  bool removed_newgrfs = false;
249 
250  GamelogInfo(_load_check_data.gamelog_action, _load_check_data.gamelog_actions, &last_ottd_rev, &ever_modified, &removed_newgrfs);
251 
252  char buf[8192];
253  char *p = buf;
254  p += seprintf(p, lastof(buf), "Name: %s\n", name);
255  p += seprintf(p, lastof(buf), "Savegame ver: %d\n", _sl_version);
256  p += seprintf(p, lastof(buf), "NewGRF ver: 0x%08X\n", last_ottd_rev);
257  p += seprintf(p, lastof(buf), "Modified: %d\n", ever_modified);
258 
259  if (removed_newgrfs) {
260  p += seprintf(p, lastof(buf), "NewGRFs have been removed\n");
261  }
262 
263  p = strecpy(p, "NewGRFs:\n", lastof(buf));
265  for (GRFConfig *c = _load_check_data.grfconfig; c != nullptr; c = c->next) {
266  char md5sum[33];
267  md5sumToString(md5sum, lastof(md5sum), HasBit(c->flags, GCF_COMPATIBLE) ? c->original_md5sum : c->ident.md5sum);
268  p += seprintf(p, lastof(buf), "%08X %s %s\n", c->ident.grfid, md5sum, c->filename);
269  }
270  }
271 
272  /* ShowInfo put output to stderr, but version information should go
273  * to stdout; this is the only exception */
274 #if !defined(_WIN32)
275  printf("%s\n", buf);
276 #else
277  ShowInfo(buf);
278 #endif
279 }
280 
281 
288 static void ParseResolution(Dimension *res, const char *s)
289 {
290  const char *t = strchr(s, 'x');
291  if (t == nullptr) {
292  ShowInfoF("Invalid resolution '%s'", s);
293  return;
294  }
295 
296  res->width = std::max(strtoul(s, nullptr, 0), 64UL);
297  res->height = std::max(strtoul(t + 1, nullptr, 0), 64UL);
298 }
299 
300 
305 static void ShutdownGame()
306 {
307  IConsoleFree();
308 
309  if (_network_available) NetworkShutDown(); // Shut down the network and close any open connections
310 
312 
314 
315  /* stop the scripts */
316  AI::Uninitialize(false);
317  Game::Uninitialize(false);
318 
319  /* Uninitialize variables that are allocated dynamically */
320  GamelogReset();
321 
324 
325  /* No NewGRFs were loaded when it was still bootstrapping. */
326  if (_game_mode != GM_BOOTSTRAP) ResetNewGRFData();
327 
328  /* Close all and any open filehandles */
329  FioCloseAll();
330 
331  UninitFreeType();
332 }
333 
338 static void LoadIntroGame(bool load_newgrfs = true)
339 {
340  _game_mode = GM_MENU;
341 
342  if (load_newgrfs) ResetGRFConfig(false);
343 
344  /* Setup main window */
347 
348  /* Load the default opening screen savegame */
349  if (SaveOrLoad("opntitle.dat", SLO_LOAD, DFT_GAME_FILE, BASESET_DIR) != SL_OK) {
350  GenerateWorld(GWM_EMPTY, 64, 64); // if failed loading, make empty world.
352  } else {
354  }
355 
356  FixTitleGameZoom();
358  _cursor.fix_at = false;
359 
361 
362  MusicLoop(); // ensure music is correct
363 }
364 
365 void MakeNewgameSettingsLive()
366 {
367  for (CompanyID c = COMPANY_FIRST; c < MAX_COMPANIES; c++) {
368  if (_settings_game.ai_config[c] != nullptr) {
369  delete _settings_game.ai_config[c];
370  }
371  }
372  if (_settings_game.game_config != nullptr) {
374  }
375 
376  /* Copy newgame settings to active settings.
377  * Also initialise old settings needed for savegame conversion. */
380 
381  for (CompanyID c = COMPANY_FIRST; c < MAX_COMPANIES; c++) {
382  _settings_game.ai_config[c] = nullptr;
383  if (_settings_newgame.ai_config[c] != nullptr) {
385  if (!AIConfig::GetConfig(c, AIConfig::SSS_FORCE_GAME)->HasScript()) {
387  }
388  }
389  }
390  _settings_game.game_config = nullptr;
391  if (_settings_newgame.game_config != nullptr) {
393  }
394 }
395 
396 void OpenBrowser(const char *url)
397 {
398  /* Make sure we only accept urls that are sure to open a browser. */
399  if (strstr(url, "http://") != url && strstr(url, "https://") != url) return;
400 
401  extern void OSOpenBrowser(const char *url);
402  OSOpenBrowser(url);
403 }
404 
410  uint16 dedicated_port;
411  char *network_conn;
412  const char *join_server_password;
413  const char *join_company_password;
414  bool save_config;
415 
421  dedicated_host(nullptr), dedicated_port(0), network_conn(nullptr),
422  join_server_password(nullptr), join_company_password(nullptr),
423  save_config(true)
424  {
425  /* Visual C++ 2015 fails compiling this line (AfterNewGRFScan::generation_seed undefined symbol)
426  * if it's placed outside a member function, directly in the struct body. */
427  static_assert(sizeof(generation_seed) == sizeof(_settings_game.game_creation.generation_seed));
428  }
429 
430  virtual void OnNewGRFsScanned()
431  {
432  ResetGRFConfig(false);
433 
435 
436  AI::Initialize();
438 
439  /* We want the new (correct) NewGRF count to survive the loading. */
440  uint last_newgrf_count = _settings_client.gui.last_newgrf_count;
441  LoadFromConfig();
442  _settings_client.gui.last_newgrf_count = last_newgrf_count;
443  /* Since the default for the palette might have changed due to
444  * reading the configuration file, recalculate that now. */
446 
447  Game::Uninitialize(true);
448  AI::Uninitialize(true);
452 
453  /* We have loaded the config, so we may possibly save it. */
454  _save_config = save_config;
455 
456  /* restore saved music volume */
458 
459  if (startyear != INVALID_YEAR) IConsoleSetSetting("game_creation.starting_year", startyear);
461 
462  if (dedicated_host != nullptr) {
463  _network_bind_list.clear();
464  _network_bind_list.emplace_back(dedicated_host);
465  }
467 
468  /* initialize the ingame console */
469  IConsoleInit();
470  InitializeGUI();
471  IConsoleCmdExec("exec scripts/autoexec.scr 0");
472 
473  /* Make sure _settings is filled with _settings_newgame if we switch to a game directly */
474  if (_switch_mode != SM_NONE) MakeNewgameSettingsLive();
475 
476  if (_network_available && network_conn != nullptr) {
477  const char *port = nullptr;
478  const char *company = nullptr;
479  uint16 rport = NETWORK_DEFAULT_PORT;
480  CompanyID join_as = COMPANY_NEW_COMPANY;
481 
482  ParseConnectionString(&company, &port, network_conn);
483 
484  if (company != nullptr) {
485  join_as = (CompanyID)atoi(company);
486 
487  if (join_as != COMPANY_SPECTATOR) {
488  join_as--;
489  if (join_as >= MAX_COMPANIES) {
490  delete this;
491  return;
492  }
493  }
494  }
495  if (port != nullptr) rport = atoi(port);
496 
497  LoadIntroGame();
498  _switch_mode = SM_NONE;
499  NetworkClientConnectGame(network_conn, rport, join_as, join_server_password, join_company_password);
500  }
501 
502  /* After the scan we're not used anymore. */
503  delete this;
504  }
505 };
506 
507 #if defined(UNIX)
508 extern void DedicatedFork();
509 #endif
510 
512 static const OptionData _options[] = {
513  GETOPT_SHORT_VALUE('I'),
514  GETOPT_SHORT_VALUE('S'),
515  GETOPT_SHORT_VALUE('M'),
516  GETOPT_SHORT_VALUE('m'),
517  GETOPT_SHORT_VALUE('s'),
518  GETOPT_SHORT_VALUE('v'),
519  GETOPT_SHORT_VALUE('b'),
520  GETOPT_SHORT_OPTVAL('D'),
521  GETOPT_SHORT_OPTVAL('n'),
522  GETOPT_SHORT_VALUE('l'),
523  GETOPT_SHORT_VALUE('p'),
524  GETOPT_SHORT_VALUE('P'),
525 #if !defined(_WIN32)
526  GETOPT_SHORT_NOVAL('f'),
527 #endif
528  GETOPT_SHORT_VALUE('r'),
529  GETOPT_SHORT_VALUE('t'),
530  GETOPT_SHORT_OPTVAL('d'),
531  GETOPT_SHORT_NOVAL('e'),
532  GETOPT_SHORT_OPTVAL('g'),
533  GETOPT_SHORT_VALUE('G'),
534  GETOPT_SHORT_VALUE('c'),
535  GETOPT_SHORT_NOVAL('x'),
536  GETOPT_SHORT_VALUE('q'),
537  GETOPT_SHORT_NOVAL('h'),
538  GETOPT_END()
539 };
540 
547 int openttd_main(int argc, char *argv[])
548 {
549  std::string musicdriver;
550  std::string sounddriver;
551  std::string videodriver;
552  std::string blitter;
553  std::string graphics_set;
554  std::string sounds_set;
555  std::string music_set;
556  Dimension resolution = {0, 0};
557  std::unique_ptr<AfterNewGRFScan> scanner(new AfterNewGRFScan());
558  bool dedicated = false;
559  char *debuglog_conn = nullptr;
560 
561  extern bool _dedicated_forks;
562  _dedicated_forks = false;
563 
564  _game_mode = GM_MENU;
566 
567  GetOptData mgo(argc - 1, argv + 1, _options);
568  int ret = 0;
569 
570  int i;
571  while ((i = mgo.GetOpt()) != -1) {
572  switch (i) {
573  case 'I': graphics_set = mgo.opt; break;
574  case 'S': sounds_set = mgo.opt; break;
575  case 'M': music_set = mgo.opt; break;
576  case 'm': musicdriver = mgo.opt; break;
577  case 's': sounddriver = mgo.opt; break;
578  case 'v': videodriver = mgo.opt; break;
579  case 'b': blitter = mgo.opt; break;
580  case 'D':
581  musicdriver = "null";
582  sounddriver = "null";
583  videodriver = "dedicated";
584  blitter = "null";
585  dedicated = true;
586  SetDebugString("net=6");
587  if (mgo.opt != nullptr) {
588  /* Use the existing method for parsing (openttd -n).
589  * However, we do ignore the #company part. */
590  const char *temp = nullptr;
591  const char *port = nullptr;
592  ParseConnectionString(&temp, &port, mgo.opt);
593  if (!StrEmpty(mgo.opt)) scanner->dedicated_host = mgo.opt;
594  if (port != nullptr) scanner->dedicated_port = atoi(port);
595  }
596  break;
597  case 'f': _dedicated_forks = true; break;
598  case 'n':
599  scanner->network_conn = mgo.opt; // optional IP parameter, nullptr if unset
600  break;
601  case 'l':
602  debuglog_conn = mgo.opt;
603  break;
604  case 'p':
605  scanner->join_server_password = mgo.opt;
606  break;
607  case 'P':
608  scanner->join_company_password = mgo.opt;
609  break;
610  case 'r': ParseResolution(&resolution, mgo.opt); break;
611  case 't': scanner->startyear = atoi(mgo.opt); break;
612  case 'd': {
613 #if defined(_WIN32)
614  CreateConsole();
615 #endif
616  if (mgo.opt != nullptr) SetDebugString(mgo.opt);
617  break;
618  }
620  case 'g':
621  if (mgo.opt != nullptr) {
623  bool is_scenario = _switch_mode == SM_EDITOR || _switch_mode == SM_LOAD_SCENARIO;
624  _switch_mode = is_scenario ? SM_LOAD_SCENARIO : SM_LOAD_GAME;
626 
627  /* if the file doesn't exist or it is not a valid savegame, let the saveload code show an error */
628  auto t = _file_to_saveload.name.find_last_of('.');
629  if (t != std::string::npos) {
630  FiosType ft = FiosGetSavegameListCallback(SLO_LOAD, _file_to_saveload.name, _file_to_saveload.name.substr(t).c_str(), nullptr, nullptr);
631  if (ft != FIOS_TYPE_INVALID) _file_to_saveload.SetMode(ft);
632  }
633 
634  break;
635  }
636 
638  /* Give a random map if no seed has been given */
639  if (scanner->generation_seed == GENERATE_NEW_SEED) {
640  scanner->generation_seed = InteractiveRandom();
641  }
642  break;
643  case 'q': {
644  DeterminePaths(argv[0]);
645  if (StrEmpty(mgo.opt)) {
646  ret = 1;
647  return ret;
648  }
649 
650  char title[80];
651  title[0] = '\0';
652  FiosGetSavegameListCallback(SLO_LOAD, mgo.opt, strrchr(mgo.opt, '.'), title, lastof(title));
653 
656  if (res != SL_OK || _load_check_data.HasErrors()) {
657  fprintf(stderr, "Failed to open savegame\n");
658  if (_load_check_data.HasErrors()) {
659  char buf[256];
661  GetString(buf, _load_check_data.error, lastof(buf));
662  fprintf(stderr, "%s\n", buf);
663  }
664  return ret;
665  }
666 
667  WriteSavegameInfo(title);
668  return ret;
669  }
670  case 'G': scanner->generation_seed = strtoul(mgo.opt, nullptr, 10); break;
671  case 'c': _config_file = mgo.opt; break;
672  case 'x': scanner->save_config = false; break;
673  case 'h':
674  i = -2; // Force printing of help.
675  break;
676  }
677  if (i == -2) break;
678  }
679 
680  if (i == -2 || mgo.numleft > 0) {
681  /* Either the user typed '-h', he made an error, or he added unrecognized command line arguments.
682  * In all cases, print the help, and exit.
683  *
684  * The next two functions are needed to list the graphics sets. We can't do them earlier
685  * because then we cannot show it on the debug console as that hasn't been configured yet. */
686  DeterminePaths(argv[0]);
691  ShowHelp();
692  return ret;
693  }
694 
695  DeterminePaths(argv[0]);
697 
698  if (dedicated) DEBUG(net, 0, "Starting dedicated version %s", _openttd_revision);
699  if (_dedicated_forks && !dedicated) _dedicated_forks = false;
700 
701 #if defined(UNIX)
702  /* We must fork here, or we'll end up without some resources we need (like sockets) */
703  if (_dedicated_forks) DedicatedFork();
704 #endif
705 
706  LoadFromConfig(true);
707 
708  if (resolution.width != 0) _cur_resolution = resolution;
709 
710  /* Limit width times height times bytes per pixel to fit a 32 bit
711  * integer, This way all internal drawing routines work correctly.
712  * A resolution that has one component as 0 is treated as a marker to
713  * auto-detect a good window size. */
714  _cur_resolution.width = std::min(_cur_resolution.width, UINT16_MAX / 2u);
715  _cur_resolution.height = std::min(_cur_resolution.height, UINT16_MAX / 2u);
716 
717  /* Assume the cursor starts within the game as not all video drivers
718  * get an event that the cursor is within the window when it is opened.
719  * Saying the cursor is there makes no visible difference as it would
720  * just be out of the bounds of the window. */
721  _cursor.in_window = true;
722 
723  /* enumerate language files */
725 
726  /* Initialize the regular font for FreeType */
727  InitFreeType(false);
728 
729  /* This must be done early, since functions use the SetWindowDirty* calls */
731 
733  if (graphics_set.empty() && !BaseGraphics::ini_set.empty()) graphics_set = BaseGraphics::ini_set;
734  if (!BaseGraphics::SetSet(graphics_set)) {
735  if (!graphics_set.empty()) {
737 
738  ErrorMessageData msg(STR_CONFIG_ERROR, STR_CONFIG_ERROR_INVALID_BASE_GRAPHICS_NOT_FOUND);
739  msg.SetDParamStr(0, graphics_set.c_str());
741  }
742  }
743 
744  /* Initialize game palette */
745  GfxInitPalettes();
746 
747  DEBUG(misc, 1, "Loading blitter...");
748  if (blitter.empty() && !_ini_blitter.empty()) blitter = _ini_blitter;
749  _blitter_autodetected = blitter.empty();
750  /* Activate the initial blitter.
751  * This is only some initial guess, after NewGRFs have been loaded SwitchNewGRFBlitter may switch to a different one.
752  * - Never guess anything, if the user specified a blitter. (_blitter_autodetected)
753  * - Use 32bpp blitter if baseset or 8bpp-support settings says so.
754  * - Use 8bpp blitter otherwise.
755  */
756  if (!_blitter_autodetected ||
757  (_support8bpp != S8BPP_NONE && (BaseGraphics::GetUsedSet() == nullptr || BaseGraphics::GetUsedSet()->blitter == BLT_8BPP)) ||
758  BlitterFactory::SelectBlitter("32bpp-anim") == nullptr) {
759  if (BlitterFactory::SelectBlitter(blitter) == nullptr) {
760  blitter.empty() ?
761  usererror("Failed to autoprobe blitter") :
762  usererror("Failed to select requested blitter '%s'; does it exist?", blitter.c_str());
763  }
764  }
765 
766  if (videodriver.empty() && !_ini_videodriver.empty()) videodriver = _ini_videodriver;
768 
770 
771  /* Initialize the zoom level of the screen to normal */
772  _screen.zoom = ZOOM_LVL_NORMAL;
773  UpdateGUIZoom();
774 
775  NetworkStartUp(); // initialize network-core
776 
777  if (debuglog_conn != nullptr && _network_available) {
778  const char *not_used = nullptr;
779  const char *port = nullptr;
780  uint16 rport;
781 
783 
784  ParseConnectionString(&not_used, &port, debuglog_conn);
785  if (port != nullptr) rport = atoi(port);
786 
787  NetworkStartDebugLog(debuglog_conn, rport);
788  }
789 
790  if (!HandleBootstrap()) {
791  ShutdownGame();
792  return ret;
793  }
794 
795  VideoDriver::GetInstance()->ClaimMousePointer();
796 
797  /* initialize screenshot formats */
799 
801  if (sounds_set.empty() && !BaseSounds::ini_set.empty()) sounds_set = BaseSounds::ini_set;
802  if (!BaseSounds::SetSet(sounds_set)) {
803  if (sounds_set.empty() || !BaseSounds::SetSet({})) {
804  usererror("Failed to find a sounds set. Please acquire a sounds set for OpenTTD. See section 1.4 of README.md.");
805  } else {
806  ErrorMessageData msg(STR_CONFIG_ERROR, STR_CONFIG_ERROR_INVALID_BASE_SOUNDS_NOT_FOUND);
807  msg.SetDParamStr(0, sounds_set.c_str());
809  }
810  }
811 
813  if (music_set.empty() && !BaseMusic::ini_set.empty()) music_set = BaseMusic::ini_set;
814  if (!BaseMusic::SetSet(music_set)) {
815  if (music_set.empty() || !BaseMusic::SetSet({})) {
816  usererror("Failed to find a music set. Please acquire a music set for OpenTTD. See section 1.4 of README.md.");
817  } else {
818  ErrorMessageData msg(STR_CONFIG_ERROR, STR_CONFIG_ERROR_INVALID_BASE_MUSIC_NOT_FOUND);
819  msg.SetDParamStr(0, music_set.c_str());
821  }
822  }
823 
824  if (sounddriver.empty() && !_ini_sounddriver.empty()) sounddriver = _ini_sounddriver;
826 
827  if (musicdriver.empty() && !_ini_musicdriver.empty()) musicdriver = _ini_musicdriver;
829 
830  GenerateWorld(GWM_EMPTY, 64, 64); // Make the viewport initialization happy
831  LoadIntroGame(false);
832 
834 
835  /* ScanNewGRFFiles now has control over the scanner. */
836  RequestNewGRFScan(scanner.release());
837 
839 
840  WaitTillSaved();
841 
842  /* only save config if we have to */
843  if (_save_config) {
844  SaveToConfig();
847  SaveToHighScore();
848  }
849 
850  /* Reset windowing system, stop drivers, free used memory, ... */
851  ShutdownGame();
852  return ret;
853 }
854 
855 void HandleExitGameRequest()
856 {
857  if (_game_mode == GM_MENU || _game_mode == GM_BOOTSTRAP) { // do not ask to quit on the main screen
858  _exit_game = true;
860  DoExitSave();
861  _exit_game = true;
862  } else {
863  AskExitGame();
864  }
865 }
866 
867 static void MakeNewGameDone()
868 {
870 
871  /* In a dedicated server, the server does not play */
872  if (!VideoDriver::GetInstance()->HasGUI()) {
875  IConsoleCmdExec("exec scripts/game_start.scr 0");
876  return;
877  }
878 
879  /* Create a single company */
880  DoStartupNewCompany(false);
881 
884 
885  /* Overwrite color from settings if needed
886  * COLOUR_END corresponds to Random colour */
887  if (_settings_client.gui.starting_colour != COLOUR_END) {
890  _company_colours[c->index] = (Colours)c->colour;
891  }
892 
893  IConsoleCmdExec("exec scripts/game_start.scr 0");
894 
896 
899 
900  /* We are the server, we start a new company (not dedicated),
901  * so set the default password *if* needed. */
904  }
905 
907 
908  CheckEngines();
909  CheckIndustries();
911 }
912 
913 static void MakeNewGame(bool from_heightmap, bool reset_settings)
914 {
915  _game_mode = GM_NORMAL;
916  if (!from_heightmap) {
917  /* "reload" command needs to know what mode we were in. */
919  }
920 
921  ResetGRFConfig(true);
922 
923  GenerateWorldSetCallback(&MakeNewGameDone);
925 }
926 
927 static void MakeNewEditorWorldDone()
928 {
930 }
931 
932 static void MakeNewEditorWorld()
933 {
934  _game_mode = GM_EDITOR;
935  /* "reload" command needs to know what mode we were in. */
937 
938  ResetGRFConfig(true);
939 
940  GenerateWorldSetCallback(&MakeNewEditorWorldDone);
942 }
943 
954 bool SafeLoad(const std::string &filename, SaveLoadOperation fop, DetailedFileType dft, GameMode newgm, Subdirectory subdir, struct LoadFilter *lf = nullptr)
955 {
956  assert(fop == SLO_LOAD);
957  assert(dft == DFT_GAME_FILE || (lf == nullptr && dft == DFT_OLD_GAME_FILE));
958  GameMode ogm = _game_mode;
959 
960  _game_mode = newgm;
961 
962  switch (lf == nullptr ? SaveOrLoad(filename, fop, dft, subdir) : LoadWithFilter(lf)) {
963  case SL_OK: return true;
964 
965  case SL_REINIT:
966  if (_network_dedicated) {
967  /*
968  * We need to reinit a network map...
969  * We can't simply load the intro game here as that game has many
970  * special cases which make clients desync immediately. So we fall
971  * back to just generating a new game with the current settings.
972  */
973  DEBUG(net, 0, "Loading game failed, so a new (random) game will be started!");
974  MakeNewGame(false, true);
975  return false;
976  }
977  if (_network_server) {
978  /* We can't load the intro game as server, so disconnect first. */
980  }
981 
982  switch (ogm) {
983  default:
984  case GM_MENU: LoadIntroGame(); break;
985  case GM_EDITOR: MakeNewEditorWorld(); break;
986  }
987  return false;
988 
989  default:
990  _game_mode = ogm;
991  return false;
992  }
993 }
994 
995 void SwitchToMode(SwitchMode new_mode)
996 {
997  /* If we are saving something, the network stays in his current state */
998  if (new_mode != SM_SAVE_GAME) {
999  /* If the network is active, make it not-active */
1000  if (_networking) {
1001  if (_network_server && (new_mode == SM_LOAD_GAME || new_mode == SM_NEWGAME || new_mode == SM_RESTARTGAME)) {
1002  NetworkReboot();
1003  } else {
1005  }
1006  }
1007 
1008  /* If we are a server, we restart the server */
1009  if (_is_network_server) {
1010  /* But not if we are going to the menu */
1011  if (new_mode != SM_MENU) {
1012  /* check if we should reload the config */
1014  LoadFromConfig();
1015  MakeNewgameSettingsLive();
1016  ResetGRFConfig(false);
1017  }
1018  NetworkServerStart();
1019  } else {
1020  /* This client no longer wants to be a network-server */
1021  _is_network_server = false;
1022  }
1023  }
1024  }
1025 
1026  /* Make sure all AI controllers are gone at quitting game */
1027  if (new_mode != SM_SAVE_GAME) AI::KillAll();
1028 
1029  switch (new_mode) {
1030  case SM_EDITOR: // Switch to scenario editor
1031  MakeNewEditorWorld();
1032  break;
1033 
1034  case SM_RELOADGAME: // Reload with what-ever started the game
1036  /* Reload current savegame/scenario */
1037  _switch_mode = _game_mode == GM_EDITOR ? SM_LOAD_SCENARIO : SM_LOAD_GAME;
1038  SwitchToMode(_switch_mode);
1039  break;
1041  /* Restart current heightmap */
1042  _switch_mode = _game_mode == GM_EDITOR ? SM_LOAD_HEIGHTMAP : SM_RESTART_HEIGHTMAP;
1043  SwitchToMode(_switch_mode);
1044  break;
1045  }
1046 
1047  MakeNewGame(false, new_mode == SM_NEWGAME);
1048  break;
1049 
1050  case SM_RESTARTGAME: // Restart --> 'Random game' with current settings
1051  case SM_NEWGAME: // New Game --> 'Random game'
1052  if (_network_server) {
1054  }
1055  MakeNewGame(false, new_mode == SM_NEWGAME);
1056  break;
1057 
1058  case SM_LOAD_GAME: { // Load game, Play Scenario
1059  ResetGRFConfig(true);
1061 
1064  ShowErrorMessage(STR_JUST_RAW_STRING, INVALID_STRING_ID, WL_ERROR);
1065  } else {
1067  /* Reset engine pool to simplify changing engine NewGRFs in scenario editor. */
1069  }
1070  /* Update the local company for a loaded game. It is either always
1071  * company #1 (eg 0) or in the case of a dedicated server a spectator */
1073  /* Execute the game-start script */
1074  IConsoleCmdExec("exec scripts/game_start.scr 0");
1075  /* Decrease pause counter (was increased from opening load dialog) */
1077  if (_network_server) {
1079  }
1080  }
1081  break;
1082  }
1083 
1084  case SM_RESTART_HEIGHTMAP: // Load a heightmap and start a new game from it with current settings
1085  case SM_START_HEIGHTMAP: // Load a heightmap and start a new game from it
1086  if (_network_server) {
1088  }
1089  MakeNewGame(true, new_mode == SM_START_HEIGHTMAP);
1090  break;
1091 
1092  case SM_LOAD_HEIGHTMAP: // Load heightmap from scenario editor
1094 
1097  break;
1098 
1099  case SM_LOAD_SCENARIO: { // Load scenario from scenario editor
1103  /* Cancel the saveload pausing */
1105  } else {
1107  ShowErrorMessage(STR_JUST_RAW_STRING, INVALID_STRING_ID, WL_ERROR);
1108  }
1109  break;
1110  }
1111 
1112  case SM_JOIN_GAME: // Join a multiplayer game
1113  LoadIntroGame();
1115  break;
1116 
1117  case SM_MENU: // Switch to game intro menu
1118  LoadIntroGame();
1119  if (BaseSounds::ini_set.empty() && BaseSounds::GetUsedSet()->fallback && SoundDriver::GetInstance()->HasOutput()) {
1120  ShowErrorMessage(STR_WARNING_FALLBACK_SOUNDSET, INVALID_STRING_ID, WL_CRITICAL);
1122  }
1123  break;
1124 
1125  case SM_SAVE_GAME: // Save game.
1126  /* Make network saved games on pause compatible to singleplayer mode */
1129  ShowErrorMessage(STR_JUST_RAW_STRING, INVALID_STRING_ID, WL_ERROR);
1130  } else {
1132  }
1133  break;
1134 
1135  case SM_SAVE_HEIGHTMAP: // Save heightmap.
1138  break;
1139 
1140  case SM_GENRANDLAND: // Generate random land within scenario editor
1143  /* XXX: set date */
1145  break;
1146 
1147  default: NOT_REACHED();
1148  }
1149 }
1150 
1151 
1158 static void CheckCaches()
1159 {
1160  /* Return here so it is easy to add checks that are run
1161  * always to aid testing of caches. */
1162  if (_debug_desync_level <= 1) return;
1163 
1164  /* Check the town caches. */
1165  std::vector<TownCache> old_town_caches;
1166  for (const Town *t : Town::Iterate()) {
1167  old_town_caches.push_back(t->cache);
1168  }
1169 
1170  extern void RebuildTownCaches();
1173 
1174  uint i = 0;
1175  for (Town *t : Town::Iterate()) {
1176  if (MemCmpT(old_town_caches.data() + i, &t->cache) != 0) {
1177  DEBUG(desync, 2, "town cache mismatch: town %i", (int)t->index);
1178  }
1179  i++;
1180  }
1181 
1182  /* Check company infrastructure cache. */
1183  std::vector<CompanyInfrastructure> old_infrastructure;
1184  for (const Company *c : Company::Iterate()) old_infrastructure.push_back(c->infrastructure);
1185 
1186  extern void AfterLoadCompanyStats();
1188 
1189  i = 0;
1190  for (const Company *c : Company::Iterate()) {
1191  if (MemCmpT(old_infrastructure.data() + i, &c->infrastructure) != 0) {
1192  DEBUG(desync, 2, "infrastructure cache mismatch: company %i", (int)c->index);
1193  }
1194  i++;
1195  }
1196 
1197  /* Strict checking of the road stop cache entries */
1198  for (const RoadStop *rs : RoadStop::Iterate()) {
1199  if (IsStandardRoadStopTile(rs->xy)) continue;
1200 
1201  assert(rs->GetEntry(DIAGDIR_NE) != rs->GetEntry(DIAGDIR_NW));
1202  rs->GetEntry(DIAGDIR_NE)->CheckIntegrity(rs);
1203  rs->GetEntry(DIAGDIR_NW)->CheckIntegrity(rs);
1204  }
1205 
1206  for (Vehicle *v : Vehicle::Iterate()) {
1207  extern void FillNewGRFVehicleCache(const Vehicle *v);
1208  if (v != v->First() || v->vehstatus & VS_CRASHED || !v->IsPrimaryVehicle()) continue;
1209 
1210  uint length = 0;
1211  for (const Vehicle *u = v; u != nullptr; u = u->Next()) length++;
1212 
1213  NewGRFCache *grf_cache = CallocT<NewGRFCache>(length);
1214  VehicleCache *veh_cache = CallocT<VehicleCache>(length);
1215  GroundVehicleCache *gro_cache = CallocT<GroundVehicleCache>(length);
1216  TrainCache *tra_cache = CallocT<TrainCache>(length);
1217 
1218  length = 0;
1219  for (const Vehicle *u = v; u != nullptr; u = u->Next()) {
1221  grf_cache[length] = u->grf_cache;
1222  veh_cache[length] = u->vcache;
1223  switch (u->type) {
1224  case VEH_TRAIN:
1225  gro_cache[length] = Train::From(u)->gcache;
1226  tra_cache[length] = Train::From(u)->tcache;
1227  break;
1228  case VEH_ROAD:
1229  gro_cache[length] = RoadVehicle::From(u)->gcache;
1230  break;
1231  default:
1232  break;
1233  }
1234  length++;
1235  }
1236 
1237  switch (v->type) {
1238  case VEH_TRAIN: Train::From(v)->ConsistChanged(CCF_TRACK); break;
1241  case VEH_SHIP: Ship::From(v)->UpdateCache(); break;
1242  default: break;
1243  }
1244 
1245  length = 0;
1246  for (const Vehicle *u = v; u != nullptr; u = u->Next()) {
1248  if (memcmp(&grf_cache[length], &u->grf_cache, sizeof(NewGRFCache)) != 0) {
1249  DEBUG(desync, 2, "newgrf cache mismatch: type %i, vehicle %i, company %i, unit number %i, wagon %i", (int)v->type, v->index, (int)v->owner, v->unitnumber, length);
1250  }
1251  if (memcmp(&veh_cache[length], &u->vcache, sizeof(VehicleCache)) != 0) {
1252  DEBUG(desync, 2, "vehicle cache mismatch: type %i, vehicle %i, company %i, unit number %i, wagon %i", (int)v->type, v->index, (int)v->owner, v->unitnumber, length);
1253  }
1254  switch (u->type) {
1255  case VEH_TRAIN:
1256  if (memcmp(&gro_cache[length], &Train::From(u)->gcache, sizeof(GroundVehicleCache)) != 0) {
1257  DEBUG(desync, 2, "train ground vehicle cache mismatch: vehicle %i, company %i, unit number %i, wagon %i", v->index, (int)v->owner, v->unitnumber, length);
1258  }
1259  if (memcmp(&tra_cache[length], &Train::From(u)->tcache, sizeof(TrainCache)) != 0) {
1260  DEBUG(desync, 2, "train cache mismatch: vehicle %i, company %i, unit number %i, wagon %i", v->index, (int)v->owner, v->unitnumber, length);
1261  }
1262  break;
1263  case VEH_ROAD:
1264  if (memcmp(&gro_cache[length], &RoadVehicle::From(u)->gcache, sizeof(GroundVehicleCache)) != 0) {
1265  DEBUG(desync, 2, "road vehicle ground vehicle cache mismatch: vehicle %i, company %i, unit number %i, wagon %i", v->index, (int)v->owner, v->unitnumber, length);
1266  }
1267  break;
1268  default:
1269  break;
1270  }
1271  length++;
1272  }
1273 
1274  free(grf_cache);
1275  free(veh_cache);
1276  free(gro_cache);
1277  free(tra_cache);
1278  }
1279 
1280  /* Check whether the caches are still valid */
1281  for (Vehicle *v : Vehicle::Iterate()) {
1282  byte buff[sizeof(VehicleCargoList)];
1283  memcpy(buff, &v->cargo, sizeof(VehicleCargoList));
1284  v->cargo.InvalidateCache();
1285  assert(memcmp(&v->cargo, buff, sizeof(VehicleCargoList)) == 0);
1286  }
1287 
1288  /* Backup stations_near */
1289  std::vector<StationList> old_town_stations_near;
1290  for (Town *t : Town::Iterate()) old_town_stations_near.push_back(t->stations_near);
1291 
1292  std::vector<StationList> old_industry_stations_near;
1293  for (Industry *ind : Industry::Iterate()) old_industry_stations_near.push_back(ind->stations_near);
1294 
1295  for (Station *st : Station::Iterate()) {
1296  for (CargoID c = 0; c < NUM_CARGO; c++) {
1297  byte buff[sizeof(StationCargoList)];
1298  memcpy(buff, &st->goods[c].cargo, sizeof(StationCargoList));
1299  st->goods[c].cargo.InvalidateCache();
1300  assert(memcmp(&st->goods[c].cargo, buff, sizeof(StationCargoList)) == 0);
1301  }
1302 
1303  /* Check docking tiles */
1304  TileArea ta;
1305  std::map<TileIndex, bool> docking_tiles;
1306  TILE_AREA_LOOP(tile, st->docking_station) {
1307  ta.Add(tile);
1308  docking_tiles[tile] = IsDockingTile(tile);
1309  }
1310  UpdateStationDockingTiles(st);
1311  if (ta.tile != st->docking_station.tile || ta.w != st->docking_station.w || ta.h != st->docking_station.h) {
1312  DEBUG(desync, 2, "station docking mismatch: station %i, company %i", st->index, (int)st->owner);
1313  }
1314  TILE_AREA_LOOP(tile, ta) {
1315  if (docking_tiles[tile] != IsDockingTile(tile)) {
1316  DEBUG(desync, 2, "docking tile mismatch: tile %i", (int)tile);
1317  }
1318  }
1319 
1320  /* Check industries_near */
1321  IndustryList industries_near = st->industries_near;
1322  st->RecomputeCatchment();
1323  if (st->industries_near != industries_near) {
1324  DEBUG(desync, 2, "station industries near mismatch: station %i", st->index);
1325  }
1326  }
1327 
1328  /* Check stations_near */
1329  i = 0;
1330  for (Town *t : Town::Iterate()) {
1331  if (t->stations_near != old_town_stations_near[i]) {
1332  DEBUG(desync, 2, "town stations near mismatch: town %i", t->index);
1333  }
1334  i++;
1335  }
1336  i = 0;
1337  for (Industry *ind : Industry::Iterate()) {
1338  if (ind->stations_near != old_industry_stations_near[i]) {
1339  DEBUG(desync, 2, "industry stations near mismatch: industry %i", ind->index);
1340  }
1341  i++;
1342  }
1343 }
1344 
1351 {
1352  if (!_networking || _network_server) {
1354  }
1355 
1356  /* Don't execute the state loop during pause or when modal windows are open. */
1365 
1367 #ifndef DEBUG_DUMP_COMMANDS
1368  Game::GameLoop();
1369 #endif
1370  return;
1371  }
1372 
1373  PerformanceMeasurer framerate(PFE_GAMELOOP);
1375 
1377 
1378  if (_game_mode == GM_EDITOR) {
1380  RunTileLoop();
1381  CallVehicleTicks();
1382  CallLandscapeTick();
1385 
1387  NewsLoop();
1388  } else {
1389  if (_debug_desync_level > 2 && _date_fract == 0 && (_date & 0x1F) == 0) {
1390  /* Save the desync savegame if needed. */
1391  char name[MAX_PATH];
1392  seprintf(name, lastof(name), "dmp_cmds_%08x_%08x.sav", _settings_game.game_creation.generation_seed, _date);
1394  }
1395 
1396  CheckCaches();
1397 
1398  /* All these actions has to be done from OWNER_NONE
1399  * for multiplayer compatibility */
1400  Backup<CompanyID> cur_company(_current_company, OWNER_NONE, FILE_LINE);
1401 
1404  IncreaseDate();
1405  RunTileLoop();
1406  CallVehicleTicks();
1407  CallLandscapeTick();
1409 
1410 #ifndef DEBUG_DUMP_COMMANDS
1411  {
1413  AI::GameLoop();
1414  Game::GameLoop();
1415  }
1416 #endif
1418 
1420  NewsLoop();
1421  cur_company.Restore();
1422  }
1423 
1424  assert(IsLocalCompany());
1425 }
1426 
1431 static void DoAutosave()
1432 {
1433  char buf[MAX_PATH];
1434 
1436  GenerateDefaultSaveName(buf, lastof(buf));
1437  strecat(buf, ".sav", lastof(buf));
1438  } else {
1439  static int _autosave_ctr = 0;
1440 
1441  /* generate a savegame name and number according to _settings_client.gui.max_num_autosaves */
1442  seprintf(buf, lastof(buf), "autosave%d.sav", _autosave_ctr);
1443 
1444  if (++_autosave_ctr >= _settings_client.gui.max_num_autosaves) _autosave_ctr = 0;
1445  }
1446 
1447  DEBUG(sl, 2, "Autosaving to '%s'", buf);
1449  ShowErrorMessage(STR_ERROR_AUTOSAVE_FAILED, INVALID_STRING_ID, WL_ERROR);
1450  }
1451 }
1452 
1462 {
1463  if (_request_newgrf_scan) return false;
1464 
1465  _request_newgrf_scan = true;
1466  _request_newgrf_scan_callback = callback;
1467  return true;
1468 }
1469 
1470 void GameLoop()
1471 {
1472  if (_game_mode == GM_BOOTSTRAP) {
1473  /* Check for UDP stuff */
1475  return;
1476  }
1477 
1478  if (_request_newgrf_scan) {
1479  ScanNewGRFFiles(_request_newgrf_scan_callback);
1480  _request_newgrf_scan = false;
1481  _request_newgrf_scan_callback = nullptr;
1482  /* In case someone closed the game during our scan, don't do anything else. */
1483  if (_exit_game) return;
1484  }
1485 
1487 
1488  /* autosave game? */
1489  if (_do_autosave) {
1490  DoAutosave();
1491  _do_autosave = false;
1493  }
1494 
1495  /* switch game mode? */
1496  if (_switch_mode != SM_NONE && !HasModalProgress()) {
1497  SwitchToMode(_switch_mode);
1498  _switch_mode = SM_NONE;
1499  }
1500 
1501  IncreaseSpriteLRU();
1502 
1503  /* Check for UDP stuff */
1505 
1506  if (_networking && !HasModalProgress()) {
1507  /* Multiplayer */
1508  NetworkGameLoop();
1509  } else {
1510  if (_network_reconnect > 0 && --_network_reconnect == 0) {
1511  /* This means that we want to reconnect to the last host
1512  * We do this here, because it means that the network is really closed */
1514  }
1515  /* Singleplayer */
1516  StateGameLoop();
1517  }
1518 
1519  if (!_pause_mode && HasBit(_display_opt, DO_FULL_ANIMATION)) DoPaletteAnimations();
1520 
1522  MusicLoop();
1523 }
VEH_AIRCRAFT
@ VEH_AIRCRAFT
Aircraft vehicle type.
Definition: vehicle_type.h:27
FileToSaveLoad::title
char title[255]
Internal name of the game.
Definition: saveload.h:345
game.hpp
AI::Uninitialize
static void Uninitialize(bool keepConfig)
Uninitialize the AI system.
Definition: ai_core.cpp:175
WC_SAVELOAD
@ WC_SAVELOAD
Saveload window; Window numbers:
Definition: window_type.h:137
openttd_main
int openttd_main(int argc, char *argv[])
Main entry point for this lovely game.
Definition: openttd.cpp:547
AfterNewGRFScan::save_config
bool save_config
The save config setting.
Definition: openttd.cpp:414
LinkGraphSchedule::Clear
static void Clear()
Clear all link graphs and jobs from the schedule.
Definition: linkgraphschedule.cpp:120
DriverFactoryBase::ShutdownDrivers
static void ShutdownDrivers()
Shuts down all active drivers.
Definition: driver.h:123
SwitchMode
SwitchMode
Mode which defines what mode we're switching to.
Definition: openttd.h:24
CheckEngines
void CheckEngines()
Check for engines that have an appropriate availability.
Definition: engine.cpp:1194
GameCreationSettings::generation_seed
uint32 generation_seed
noise seed for world generation
Definition: settings_type.h:292
factory.hpp
SetDebugString
void SetDebugString(const char *s)
Set debugging levels by parsing the text in s.
Definition: debug.cpp:170
AIConfig
Definition: ai_config.hpp:16
EngineOverrideManager::ResetToCurrentNewGRFConfig
static bool ResetToCurrentNewGRFConfig()
Tries to reset the engine mapping to match the current NewGRF configuration.
Definition: engine.cpp:524
GameSettings::ai_config
class AIConfig * ai_config[MAX_COMPANIES]
settings per company
Definition: settings_type.h:568
NETWORK_DEFAULT_PORT
static const uint16 NETWORK_DEFAULT_PORT
The default port of the game server (TCP & UDP)
Definition: config.h:29
FT_SCENARIO
@ FT_SCENARIO
old or new scenario
Definition: fileio_type.h:19
Pool::PoolItem<&_company_pool >::Get
static Titem * Get(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:329
SAVE_DIR
@ SAVE_DIR
Base directory for all savegames.
Definition: fileio_type.h:110
SetWindowDirty
void SetWindowDirty(WindowClass cls, WindowNumber number)
Mark window as dirty (in need of repainting)
Definition: window.cpp:3220
SM_START_HEIGHTMAP
@ SM_START_HEIGHTMAP
Load a heightmap and start a new game from it.
Definition: openttd.h:36
usererror
void CDECL usererror(const char *s,...)
Error handling for fatal user errors.
Definition: openttd.cpp:103
train.h
SM_LOAD_GAME
@ SM_LOAD_GAME
Load game, Play Scenario.
Definition: openttd.h:30
Dimension
Dimensions (a width and height) of a rectangle in 2D.
Definition: geometry_type.hpp:27
command_func.h
AfterNewGRFScan::join_company_password
const char * join_company_password
The password to join the company with.
Definition: openttd.cpp:413
ErrorMessageData::SetDParamStr
void SetDParamStr(uint n, const char *str)
Set a rawstring parameter.
Definition: error_gui.cpp:161
DoStartupNewCompany
Company * DoStartupNewCompany(bool is_ai, CompanyID company=INVALID_COMPANY)
Create a new company and sets all company variables default values.
Definition: company_cmd.cpp:539
GameCreationSettings::map_y
uint8 map_y
Y size of map.
Definition: settings_type.h:296
DoExitSave
void DoExitSave()
Do a save when exiting the game (_settings_client.gui.autosave_on_exit)
Definition: saveload.cpp:2851
LoadCheckData::gamelog_action
struct LoggedAction * gamelog_action
Gamelog actions.
Definition: fios.h:46
_config_file
std::string _config_file
Configuration file of OpenTTD.
Definition: settings.cpp:83
Backup
Class to backup a specific variable and restore it later.
Definition: backup_type.hpp:21
NetworkSettings::server_port
uint16 server_port
port the server listens on
Definition: settings_type.h:262
Vehicle::Next
Vehicle * Next() const
Get the next vehicle of this vehicle.
Definition: vehicle_base.h:592
_cur_year
Year _cur_year
Current year, starting at 0.
Definition: date.cpp:26
GUISettings::autosave_on_exit
bool autosave_on_exit
save an autosave when you quit the game, but do not ask "Do you really want to quit?...
Definition: settings_type.h:124
BLT_8BPP
@ BLT_8BPP
Base set has 8 bpp sprites only.
Definition: base_media_base.h:243
CheckIndustries
void CheckIndustries()
Verify whether the generated industries are complete, and warn the user if not.
Definition: industry_cmd.cpp:2958
Station
Station data structure.
Definition: station_base.h:450
SafeLoad
bool SafeLoad(const std::string &filename, SaveLoadOperation fop, DetailedFileType dft, GameMode newgm, Subdirectory subdir, struct LoadFilter *lf=nullptr)
Load the specified savegame but on error do different things.
Definition: openttd.cpp:954
BASESET_DIR
@ BASESET_DIR
Subdirectory for all base data (base sets, intro game)
Definition: fileio_type.h:116
TarScanner::DoScan
uint DoScan(Subdirectory sd)
Perform the scanning of a particular subdirectory.
Definition: fileio.cpp:572
elrail_func.h
SaveOrLoad
SaveOrLoadResult SaveOrLoad(const std::string &filename, SaveLoadOperation fop, DetailedFileType dft, Subdirectory sb, bool threaded)
Main Save or Load function where the high-level saveload functions are handled.
Definition: saveload.cpp:2764
MusicDriver::SetVolume
virtual void SetVolume(byte vol)=0
Set the volume, if possible.
SoundDriver::MainLoop
virtual void MainLoop()
Called once every tick.
Definition: sound_driver.hpp:19
_date_fract
DateFract _date_fract
Fractional part of the day.
Definition: date.cpp:29
SM_EDITOR
@ SM_EDITOR
Switch to scenario editor.
Definition: openttd.h:29
_network_server
bool _network_server
network-server is active
Definition: network.cpp:53
BaseSet::name
std::string name
The name of the base set.
Definition: base_media_base.h:61
SaveLoadOperation
SaveLoadOperation
Operation performed on the file.
Definition: fileio_type.h:47
FileToSaveLoad::name
std::string name
Name of the file.
Definition: saveload.h:344
Vehicle::vehstatus
byte vehstatus
Status.
Definition: vehicle_base.h:326
SaveToConfig
void SaveToConfig()
Save the values to the configuration file.
Definition: settings.cpp:1785
_load_check_data
LoadCheckData _load_check_data
Data loaded from save during SL_LOAD_CHECK.
Definition: fios_gui.cpp:38
InitWindowSystem
void InitWindowSystem()
(re)initialize the windowing system
Definition: window.cpp:1897
_old_vds
VehicleDefaultSettings _old_vds
Used for loading default vehicles settings from old savegames.
Definition: settings.cpp:82
Pool::PoolItem::index
Tindex index
Index of this pool item.
Definition: pool_type.hpp:227
GenerateWorldSetCallback
void GenerateWorldSetCallback(GWDoneProc *proc)
Set here the function, if any, that you want to be called when landscape generation is done.
Definition: genworld.cpp:220
PFE_GL_ROADVEHS
@ PFE_GL_ROADVEHS
Time spend processing road vehicles.
Definition: framerate_type.h:52
AfterNewGRFScan::dedicated_host
char * dedicated_host
Hostname for the dedicated server.
Definition: openttd.cpp:409
BlitterFactory::SelectBlitter
static Blitter * SelectBlitter(const std::string &name)
Find the requested blitter and return his class.
Definition: factory.hpp:98
NetworkServerGameInfo::map_name
char map_name[NETWORK_NAME_LENGTH]
Map which is played ["random" for a randomized map].
Definition: game_info.h:64
SLO_CHECK
@ SLO_CHECK
Load file for checking and/or preview.
Definition: fileio_type.h:48
DeterminePaths
void DeterminePaths(const char *exe)
Acquire the base paths (personal dir and game data dir), fill all other paths (save dir,...
Definition: fileio.cpp:1130
HasBit
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103
ship.h
PerformanceMeasurer
RAII class for measuring simple elements of performance.
Definition: framerate_type.h:92
_do_autosave
bool _do_autosave
are we doing an autosave at the moment?
Definition: saveload.cpp:68
CompanySettings::vehicle
VehicleDefaultSettings vehicle
default settings for vehicles
Definition: settings_type.h:558
SetLocalCompany
void SetLocalCompany(CompanyID new_company)
Sets the local company and updates the settings that are set on a per-company basis to reflect the co...
Definition: company_cmd.cpp:102
UnInitWindowSystem
void UnInitWindowSystem()
Close down the windowing system.
Definition: window.cpp:1918
DFT_GAME_FILE
@ DFT_GAME_FILE
Save game or scenario file.
Definition: fileio_type.h:31
GameSettings::game_config
class GameConfig * game_config
settings for gamescript
Definition: settings_type.h:569
LoadCheckData::grfconfig
GRFConfig * grfconfig
NewGrf configuration from save.
Definition: fios.h:43
StationCargoList
CargoList that is used for stations.
Definition: cargopacket.h:448
FileToSaveLoad::SetName
void SetName(const char *name)
Set the name of the file.
Definition: saveload.cpp:2923
IsStandardRoadStopTile
static bool IsStandardRoadStopTile(TileIndex t)
Is tile t a standard (non-drive through) road stop station?
Definition: station_map.h:223
INVALID_YEAR
static const Year INVALID_YEAR
Representation of an invalid year.
Definition: date_type.h:109
HandleBootstrap
bool HandleBootstrap()
Handle all procedures for bootstrapping OpenTTD without a base graphics set.
Definition: bootstrap_gui.cpp:279
Year
int32 Year
Type for the year, note: 0 based, i.e. starts at the year 0.
Definition: date_type.h:18
RequestNewGRFScan
bool RequestNewGRFScan(NewGRFScanCallback *callback)
Request a new NewGRF scan.
Definition: openttd.cpp:1461
AfterNewGRFScan::network_conn
char * network_conn
Information about the server to connect to, or nullptr.
Definition: openttd.cpp:411
saveload.h
aircraft.h
base_media_base.h
AUTOSAVE_DIR
@ AUTOSAVE_DIR
Subdirectory of save for autosaves.
Definition: fileio_type.h:111
_settings_client
ClientSettings _settings_client
The current settings for this game.
Definition: settings.cpp:79
_network_bind_list
StringList _network_bind_list
The addresses to bind on.
Definition: network.cpp:62
NetworkBackgroundLoop
void NetworkBackgroundLoop()
We have to do some (simple) background stuff that runs normally, even when we are not in multiplayer.
Definition: network.cpp:856
LoadFromHighScore
void LoadFromHighScore()
Initialize the highscore table to 0 and if any file exists, load in values.
Definition: highscore.cpp:152
town.h
OrthogonalTileArea::Add
void Add(TileIndex to_add)
Add a single tile to a tile area; enlarge if needed.
Definition: tilearea.cpp:43
LoadCheckData::HasErrors
bool HasErrors()
Check whether loading the game resulted in errors.
Definition: fios.h:67
DIAGDIR_NW
@ DIAGDIR_NW
Northwest.
Definition: direction_type.h:82
Company::infrastructure
CompanyInfrastructure infrastructure
NOSAVE: Counts of company owned infrastructure.
Definition: company_base.h:126
_display_opt
byte _display_opt
What do we want to draw/do?
Definition: transparency_gui.cpp:26
BaseMedia< GraphicsSet >::GetSetsList
static char * GetSetsList(char *p, const char *last)
Returns a list with the sets.
Definition: base_media_func.h:255
LoadWithFilter
SaveOrLoadResult LoadWithFilter(LoadFilter *reader)
Load the game using a (reader) filter.
Definition: saveload.cpp:2744
GETOPT_SHORT_NOVAL
#define GETOPT_SHORT_NOVAL(shortname)
Short option without value.
Definition: getoptdata.h:91
VEH_ROAD
@ VEH_ROAD
Road vehicle type.
Definition: vehicle_type.h:25
_network_game_info
NetworkServerGameInfo _network_game_info
Information about our game.
Definition: game_info.cpp:35
Vehicle
Vehicle data structure.
Definition: vehicle_base.h:222
Industry
Defines the internal data of a functional industry.
Definition: industry.h:66
AfterNewGRFScan::AfterNewGRFScan
AfterNewGRFScan()
Create a new callback.
Definition: openttd.cpp:419
Vehicle::IsPrimaryVehicle
virtual bool IsPrimaryVehicle() const
Whether this is the primary vehicle in the chain.
Definition: vehicle_base.h:444
SM_LOAD_SCENARIO
@ SM_LOAD_SCENARIO
Load scenario from scenario editor.
Definition: openttd.h:35
Vehicle::owner
Owner owner
Which company owns the vehicle?
Definition: vehicle_base.h:283
gamelog.h
fios.h
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
IsLocalCompany
static bool IsLocalCompany()
Is the current company the local company?
Definition: company_func.h:43
CheckCaches
static void CheckCaches()
Check the validity of some of the caches.
Definition: openttd.cpp:1158
GENERATE_NEW_SEED
static const uint32 GENERATE_NEW_SEED
Create a new random seed.
Definition: genworld.h:24
genworld.h
MakeHeightmapScreenshot
bool MakeHeightmapScreenshot(const char *filename)
Make a heightmap of the current map.
Definition: screenshot.cpp:838
InitializeScreenshotFormats
void InitializeScreenshotFormats()
Initialize screenshot format information on startup, with _screenshot_format_name filled from the loa...
Definition: screenshot.cpp:583
PFE_GL_LANDSCAPE
@ PFE_GL_LANDSCAPE
Time spent processing other world features.
Definition: framerate_type.h:55
GCF_COMPATIBLE
@ GCF_COMPATIBLE
GRF file does not exactly match the requested GRF (different MD5SUM), but grfid matches)
Definition: newgrf_config.h:26
_ini_musicdriver
std::string _ini_musicdriver
The music driver a stored in the configuration file.
Definition: driver.cpp:30
ShowErrorMessage
void ShowErrorMessage(StringID summary_msg, StringID detailed_msg, WarningLevel wl, int x=0, int y=0, const GRFFile *textref_stack_grffile=nullptr, uint textref_stack_size=0, const uint32 *textref_stack=nullptr)
Display an error message in a window.
Definition: error_gui.cpp:372
GameSettings::game_creation
GameCreationSettings game_creation
settings used during the creation of a game (map)
Definition: settings_type.h:564
SpecializedStation< Station, false >::Iterate
static Pool::IterateWrapper< Station > Iterate(size_t from=0)
Returns an iterable ensemble of all valid stations of type T.
Definition: base_station_base.h:270
ai.hpp
PFE_GL_TRAINS
@ PFE_GL_TRAINS
Time spent processing trains.
Definition: framerate_type.h:51
VehicleCargoList
CargoList that is used for vehicles.
Definition: cargopacket.h:268
screenshot.h
RebuildTownCaches
void RebuildTownCaches()
Rebuild all the cached variables of towns.
Definition: town_sl.cpp:28
GETOPT_SHORT_OPTVAL
#define GETOPT_SHORT_OPTVAL(shortname)
Short option with optional value.
Definition: getoptdata.h:104
PM_UNPAUSED
@ PM_UNPAUSED
A normal unpaused game.
Definition: openttd.h:60
Ship::UpdateCache
void UpdateCache()
Update the caches of this ship.
Definition: ship_cmd.cpp:202
BaseMedia< GraphicsSet >::ini_set
static std::string ini_set
The set as saved in the config file.
Definition: base_media_base.h:179
UpdateNewGRFConfigPalette
bool UpdateNewGRFConfigPalette(int32 p1)
Update the palettes of the graphics from the config file.
Definition: newgrf_config.cpp:288
COMPANY_FIRST
@ COMPANY_FIRST
First company, same as owner.
Definition: company_type.h:22
DO_FULL_ANIMATION
@ DO_FULL_ANIMATION
Perform palette animation.
Definition: openttd.h:47
NetworkClientJoinGame
void NetworkClientJoinGame()
Actually perform the joining to the server.
Definition: network.cpp:694
FileToSaveLoad::abstract_ftype
AbstractFileType abstract_ftype
Abstract type of file (scenario, heightmap, etc).
Definition: saveload.h:343
_company_colours
Colours _company_colours[MAX_COMPANIES]
NOSAVE: can be determined from company structs.
Definition: company_cmd.cpp:48
COMPANY_NEW_COMPANY
@ COMPANY_NEW_COMPANY
The client wants a new company.
Definition: company_type.h:34
SLO_LOAD
@ SLO_LOAD
File is being loaded.
Definition: fileio_type.h:49
GroundVehicleCache
Cached, frequently calculated values.
Definition: ground_vehicle.hpp:29
DumpDebugFacilityNames
char * DumpDebugFacilityNames(char *buf, char *last)
Dump the available debug facility names in the help text.
Definition: debug.cpp:82
AfterNewGRFScan::generation_seed
uint32 generation_seed
Seed for the new game.
Definition: openttd.cpp:408
CompanyProperties::colour
byte colour
Company colour.
Definition: company_base.h:70
GWM_HEIGHTMAP
@ GWM_HEIGHTMAP
Generate a newgame from a heightmap.
Definition: genworld.h:31
_date
Date _date
Current date in days (day counter)
Definition: date.cpp:28
SLO_SAVE
@ SLO_SAVE
File is being saved.
Definition: fileio_type.h:50
settings_func.h
TILE_AREA_LOOP
#define TILE_AREA_LOOP(var, ta)
A loop which iterates over the tiles of a TileArea.
Definition: tilearea_type.h:232
GRFConfig
Information about GRF, used in the game and (part of it) in savegames.
Definition: newgrf_config.h:152
PM_PAUSED_SAVELOAD
@ PM_PAUSED_SAVELOAD
A game paused for saving/loading.
Definition: openttd.h:62
DoCommandP
bool DoCommandP(const CommandContainer *container, bool my_cmd)
Shortcut for the long DoCommandP when having a container with the data.
Definition: command.cpp:541
MusicDriver::GetInstance
static MusicDriver * GetInstance()
Get the currently active instance of the music driver.
Definition: music_driver.hpp:46
NetworkSettings::last_host
char last_host[NETWORK_HOSTNAME_LENGTH]
IP address of the last joined server.
Definition: settings_type.h:285
CMD_PAUSE
@ CMD_PAUSE
pause the game
Definition: command_type.h:256
SM_NEWGAME
@ SM_NEWGAME
New Game --> 'Random game'.
Definition: openttd.h:26
DriverFactoryBase::GetDriversInfo
static char * GetDriversInfo(char *p, const char *last)
Build a human readable list of available drivers, grouped by type.
Definition: driver.cpp:188
GUISettings::starting_colour
byte starting_colour
default color scheme for the company to start a new game with
Definition: settings_type.h:157
S8BPP_NONE
@ S8BPP_NONE
No support for 8bpp by OS or hardware, force 32bpp blitters.
Definition: gfx_type.h:321
roadstop_base.h
AfterNewGRFScan::startyear
Year startyear
The start year.
Definition: openttd.cpp:407
DEBUG
#define DEBUG(name, level,...)
Output a line of debugging information.
Definition: debug.h:35
SM_SAVE_HEIGHTMAP
@ SM_SAVE_HEIGHTMAP
Save heightmap.
Definition: openttd.h:33
LoadCheckData::error_data
char * error_data
Data to pass to SetDParamStr when displaying error.
Definition: fios.h:34
LoadCheckData::gamelog_actions
uint gamelog_actions
Number of gamelog actions.
Definition: fios.h:47
highscore.h
GetSaveLoadErrorString
const char * GetSaveLoadErrorString()
Get the string representation of the error message.
Definition: saveload.cpp:2474
VS_CRASHED
@ VS_CRASHED
Vehicle is crashed.
Definition: vehicle_base.h:37
GWM_RANDOM
@ GWM_RANDOM
Generate a random map for SE.
Definition: genworld.h:30
CrashLog::SetErrorMessage
static void SetErrorMessage(const char *message)
Sets a message for the error message handler.
Definition: crashlog.cpp:498
GameConfig
Definition: game_config.hpp:15
NetworkSettings::default_company_pass
char default_company_pass[NETWORK_PASSWORD_LENGTH]
default password for new companies in encrypted form
Definition: settings_type.h:271
OrthogonalTileArea::w
uint16 w
The width of the area.
Definition: tilearea_type.h:18
ShowHelp
static void ShowHelp()
Show the help message when someone passed a wrong parameter.
Definition: openttd.cpp:167
PFE_GL_SHIPS
@ PFE_GL_SHIPS
Time spent processing ships.
Definition: framerate_type.h:53
GETOPT_END
#define GETOPT_END()
Option terminator.
Definition: getoptdata.h:107
FioCloseAll
void FioCloseAll()
Close all slotted open files.
Definition: fileio.cpp:183
ParseResolution
static void ParseResolution(Dimension *res, const char *s)
Extract the resolution from the given string and store it in the 'res' parameter.
Definition: openttd.cpp:288
SettingsDisableElrail
bool SettingsDisableElrail(int32 p1)
_settings_game.disable_elrail callback
Definition: elrail.cpp:596
GUISettings::pause_on_newgame
bool pause_on_newgame
whether to start new games paused or not
Definition: settings_type.h:134
AIConfig::GetConfig
static AIConfig * GetConfig(CompanyID company, ScriptSettingSource source=SSS_DEFAULT)
Get the config of a company.
Definition: ai_config.cpp:45
AfterLoadCompanyStats
void AfterLoadCompanyStats()
Rebuilding of company statistics after loading a savegame.
Definition: company_sl.cpp:94
ParseConnectionString
void ParseConnectionString(const char **company, const char **port, char *connection_string)
Converts a string to ip/port/company Format: IP:port::company.
Definition: network.cpp:459
SL_REINIT
@ SL_REINIT
error that was caught in the middle of updating game state, need to clear it. (can only happen during...
Definition: saveload.h:336
GroundVehicle::gcache
GroundVehicleCache gcache
Cache of often calculated values.
Definition: ground_vehicle.hpp:80
OrthogonalTileArea
Represents the covered area of e.g.
Definition: tilearea_type.h:16
_pause_mode
PauseMode _pause_mode
The current pause mode.
Definition: gfx.cpp:47
road_gui.h
AI::Initialize
static void Initialize()
Initialize the AI system.
Definition: ai_core.cpp:161
_settings_game
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition: settings.cpp:80
PSM_ENTER_GAMELOOP
@ PSM_ENTER_GAMELOOP
Enter the gameloop, changes will be permanent.
Definition: newgrf_storage.h:20
ShutdownGame
static void ShutdownGame()
Uninitializes drivers, frees allocated memory, cleans pools, ...
Definition: openttd.cpp:305
DoAutosave
static void DoAutosave()
Create an autosave.
Definition: openttd.cpp:1431
VehicleCache
Cached often queried values common to all vehicles.
Definition: vehicle_base.h:120
MAX_COMPANIES
@ MAX_COMPANIES
Maximum number of companies.
Definition: company_type.h:23
_local_company
CompanyID _local_company
Company controlled by the human player at this client. Can also be COMPANY_SPECTATOR.
Definition: company_cmd.cpp:46
industry.h
safeguards.h
GUISettings::keep_all_autosave
bool keep_all_autosave
name the autosave in a different way
Definition: settings_type.h:123
NetworkDisconnect
void NetworkDisconnect(bool blocking, bool close_admins)
We want to disconnect from the host/clients.
Definition: network.cpp:800
music_driver.hpp
SaveHotkeysToConfig
void SaveHotkeysToConfig()
Save the hotkeys to the config file.
Definition: hotkeys.cpp:363
UninitFreeType
void UninitFreeType()
Free everything allocated w.r.t.
Definition: fontcache.cpp:706
CursorVars::fix_at
bool fix_at
mouse is moving, but cursor is not (used for scrolling)
Definition: gfx_type.h:120
PoolBase::Clean
static void Clean(PoolType)
Clean all pools of given type.
Definition: pool_func.cpp:30
FT_INVALID
@ FT_INVALID
Invalid or unknown file type.
Definition: fileio_type.h:22
NetworkShutDown
void NetworkShutDown()
This shuts the network down.
Definition: network.cpp:1092
SaveLoadVersion
SaveLoadVersion
SaveLoad versions Previous savegame versions, the trunk revision where they were introduced and the r...
Definition: saveload.h:30
Game::Uninitialize
static void Uninitialize(bool keepConfig)
Uninitialize the Game system.
Definition: game_core.cpp:97
StrEmpty
static bool StrEmpty(const char *s)
Check if a string buffer is empty.
Definition: string_func.h:60
_networking
bool _networking
are we in networking mode?
Definition: network.cpp:52
NetworkSettings::last_port
uint16 last_port
port of the last joined server
Definition: settings_type.h:286
GetOptData::opt
char * opt
Option value, if available (else nullptr).
Definition: getoptdata.h:31
gfx_layout.h
ScanNewGRFFiles
void ScanNewGRFFiles(NewGRFScanCallback *callback)
Scan for all NewGRFs.
Definition: newgrf_config.cpp:720
ErrorMessageData
The data of the error message.
Definition: error.h:29
DFT_OLD_GAME_FILE
@ DFT_OLD_GAME_FILE
Old save game or scenario file.
Definition: fileio_type.h:30
vseprintf
int CDECL vseprintf(char *str, const char *last, const char *format, va_list ap)
Safer implementation of vsnprintf; same as vsnprintf except:
Definition: string.cpp:61
error.h
GUISettings::max_num_autosaves
byte max_num_autosaves
controls how many autosavegames are made before the game starts to overwrite (names them 0 to max_num...
Definition: settings_type.h:127
PFE_GL_AIRCRAFT
@ PFE_GL_AIRCRAFT
Time spent processing aircraft.
Definition: framerate_type.h:54
_network_reconnect
uint8 _network_reconnect
Reconnect timeout.
Definition: network.cpp:61
_network_dedicated
bool _network_dedicated
are we a dedicated server?
Definition: network.cpp:55
AI::GameLoop
static void GameLoop()
Called every game-tick to let AIs do something.
Definition: ai_core.cpp:67
WindowDesc::SaveToConfig
static void SaveToConfig()
Save all WindowDesc settings to _windows_file.
Definition: window.cpp:164
date_func.h
linkgraphschedule.h
stdafx.h
FT_SAVEGAME
@ FT_SAVEGAME
old or new savegame
Definition: fileio_type.h:18
GameMode
GameMode
Mode which defines the state of the game.
Definition: openttd.h:16
SM_GENRANDLAND
@ SM_GENRANDLAND
Generate random land within scenario editor.
Definition: openttd.h:34
SM_SAVE_GAME
@ SM_SAVE_GAME
Save game.
Definition: openttd.h:32
OptionData
Data of an option.
Definition: getoptdata.h:22
VideoDriver::GetInstance
static VideoDriver * GetInstance()
Get the currently active instance of the video driver.
Definition: video_driver.hpp:199
GetOptData
Data storage for parsing command line options.
Definition: getoptdata.h:30
viewport_func.h
PerformanceMeasurer::Paused
static void Paused(PerformanceElement elem)
Indicate that a cycle of "pause" where no processing occurs.
Definition: framerate_gui.cpp:275
LoadCheckData::error
StringID error
Error message from loading. INVALID_STRING_ID if no error.
Definition: fios.h:33
animated_tile_func.h
GenerateDefaultSaveName
void GenerateDefaultSaveName(char *buf, const char *last)
Fill the buffer with the default name for a savegame or screenshot.
Definition: saveload.cpp:2861
Layouter::ReduceLineCache
static void ReduceLineCache()
Reduce the size of linecache if necessary to prevent infinite growth.
Definition: gfx_layout.cpp:908
PT_ALL
@ PT_ALL
All pool types.
Definition: pool_type.hpp:23
AI::GetConsoleList
static char * GetConsoleList(char *p, const char *last, bool newest_only=false)
Wrapper function for AIScanner::GetAIConsoleList.
Definition: ai_core.cpp:318
OrthogonalTileArea::h
uint16 h
The height of the area.
Definition: tilearea_type.h:19
ObjectSpec::name
StringID name
The name for this object.
Definition: newgrf_object.h:62
UpdateAircraftCache
void UpdateAircraftCache(Aircraft *v, bool update_range=false)
Update cached values of an aircraft.
Definition: aircraft_cmd.cpp:591
SM_LOAD_HEIGHTMAP
@ SM_LOAD_HEIGHTMAP
Load heightmap from scenario editor.
Definition: openttd.h:37
sound_driver.hpp
IncreaseDate
void IncreaseDate()
Increases the tick counter, increases date and possibly calls procedures that have to be called daily...
Definition: date.cpp:270
_blitter_autodetected
bool _blitter_autodetected
Was the blitter autodetected or specified by the user?
Definition: driver.cpp:33
DFT_INVALID
@ DFT_INVALID
Unknown or invalid file.
Definition: fileio_type.h:43
_switch_mode
SwitchMode _switch_mode
The next mainloop command.
Definition: gfx.cpp:46
rail_gui.h
_current_company
CompanyID _current_company
Company currently doing an action.
Definition: company_cmd.cpp:47
vehicle_func.h
rev.h
Game::GameLoop
static void GameLoop()
Called every game-tick to let Game do something.
Definition: game_core.cpp:31
station_base.h
Driver::DT_SOUND
@ DT_SOUND
A sound driver.
Definition: driver.h:43
TarScanner::SCENARIO
@ SCENARIO
Scan for scenarios and heightmaps.
Definition: fileio_func.h:90
Pool::PoolItem<&_town_pool >::Iterate
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Definition: pool_type.hpp:378
strings_func.h
Vehicle::First
Vehicle * First() const
Get the first vehicle of this vehicle chain.
Definition: vehicle_base.h:605
DeleteWindowById
void DeleteWindowById(WindowClass cls, WindowNumber number, bool force)
Delete a window by its class and window number (if it is open).
Definition: window.cpp:1165
PFE_GAMELOOP
@ PFE_GAMELOOP
Speed of gameloop processing.
Definition: framerate_type.h:49
AI::KillAll
static void KillAll()
Kill any and all AIs we manage.
Definition: ai_core.cpp:151
DetailedFileType
DetailedFileType
Kinds of files in each AbstractFileType.
Definition: fileio_type.h:28
LoadCheckData::Clear
void Clear()
Reset read data.
Definition: fios_gui.cpp:47
RoadVehUpdateCache
void RoadVehUpdateCache(RoadVehicle *v, bool same_length=false)
Update the cache of a road vehicle.
Definition: roadveh_cmd.cpp:215
PFE_GL_ECONOMY
@ PFE_GL_ECONOMY
Time spent processing cargo movement.
Definition: framerate_type.h:50
subsidy_func.h
SaveToHighScore
void SaveToHighScore()
Save HighScore table to file.
Definition: highscore.cpp:124
RebuildSubsidisedSourceAndDestinationCache
void RebuildSubsidisedSourceAndDestinationCache()
Perform a full rebuild of the subsidies cache.
Definition: subsidy.cpp:132
FillNewGRFVehicleCache
void FillNewGRFVehicleCache(const Vehicle *v)
Fill the grf_cache of the given vehicle.
Definition: newgrf_engine.cpp:1400
Backup::Restore
void Restore()
Restore the variable.
Definition: backup_type.hpp:112
AfterNewGRFScan::dedicated_port
uint16 dedicated_port
Port for the dedicated server.
Definition: openttd.cpp:410
_ini_blitter
std::string _ini_blitter
The blitter as stored in the configuration file.
Definition: driver.cpp:32
FiosGetSavegameListCallback
FiosType FiosGetSavegameListCallback(SaveLoadOperation fop, const std::string &file, const char *ext, char *title, const char *last)
Callback for FiosGetFileList.
Definition: fios.cpp:467
GameCreationSettings::map_x
uint8 map_x
X size of map.
Definition: settings_type.h:295
SpecializedVehicle< Train, Type >::From
static Train * From(Vehicle *v)
Converts a Vehicle to SpecializedVehicle with type checking.
Definition: vehicle_base.h:1162
Train::ConsistChanged
void ConsistChanged(ConsistChangeFlags allowed_changes)
Recalculates the cached stuff of a train.
Definition: train_cmd.cpp:106
video_driver.hpp
NO_DIRECTORY
@ NO_DIRECTORY
A path without any base directory.
Definition: fileio_type.h:125
COMPANY_SPECTATOR
@ COMPANY_SPECTATOR
The client is spectating.
Definition: company_type.h:35
OrthogonalTileArea::tile
TileIndex tile
The base tile of the area.
Definition: tilearea_type.h:17
Driver::DT_VIDEO
@ DT_VIDEO
A video driver.
Definition: driver.h:44
framerate_type.h
_file_to_saveload
FileToSaveLoad _file_to_saveload
File to save or load in the openttd loop.
Definition: saveload.cpp:62
GRFConfig::next
struct GRFConfig * next
NOSAVE: Next item in the linked list.
Definition: newgrf_config.h:177
_ini_sounddriver
std::string _ini_sounddriver
The sound driver a stored in the configuration file.
Definition: driver.cpp:28
NETWORK_DEFAULT_DEBUGLOG_PORT
static const uint16 NETWORK_DEFAULT_DEBUGLOG_PORT
The default port debug-log is sent to (TCP)
Definition: config.h:31
ScheduleErrorMessage
void ScheduleErrorMessage(const ErrorMessageData &data)
Schedule an error.
Definition: error_gui.cpp:447
OWNER_NONE
@ OWNER_NONE
The tile has no ownership.
Definition: company_type.h:25
PM_PAUSED_NORMAL
@ PM_PAUSED_NORMAL
A game normally paused.
Definition: openttd.h:61
_options
static const OptionData _options[]
Options of OpenTTD.
Definition: openttd.cpp:512
GWM_EMPTY
@ GWM_EMPTY
Generate an empty map (sea-level)
Definition: genworld.h:29
newgrf.h
SM_RESTART_HEIGHTMAP
@ SM_RESTART_HEIGHTMAP
Load a heightmap and start a new game from it with current settings.
Definition: openttd.h:38
NUM_CARGO
@ NUM_CARGO
Maximal number of cargo types in a game.
Definition: cargo_type.h:64
BaseMedia< GraphicsSet >::FindSets
static uint FindSets()
Do the scan for files.
Definition: base_media_base.h:189
PFE_ALLSCRIPTS
@ PFE_ALLSCRIPTS
Sum of all GS/AI scripts.
Definition: framerate_type.h:61
VehicleSettings::disable_elrails
bool disable_elrails
when true, the elrails are disabled
Definition: settings_type.h:471
progress.h
ShowInfoF
void CDECL ShowInfoF(const char *str,...)
Shows some information on the console/a popup box depending on the OS.
Definition: openttd.cpp:154
seprintf
int CDECL seprintf(char *str, const char *last, const char *format,...)
Safer implementation of snprintf; same as snprintf except:
Definition: string.cpp:460
CallWindowGameTickEvent
void CallWindowGameTickEvent()
Dispatch OnGameTick event over all windows.
Definition: window.cpp:3353
FT_HEIGHTMAP
@ FT_HEIGHTMAP
heightmap file
Definition: fileio_type.h:20
Subdirectory
Subdirectory
The different kinds of subdirectories OpenTTD uses.
Definition: fileio_type.h:108
game_info.h
ResetNewGRFData
void ResetNewGRFData()
Reset all NewGRF loaded data.
Definition: newgrf.cpp:8562
GameCreationSettings::starting_year
Year starting_year
starting date
Definition: settings_type.h:293
Vehicle::unitnumber
UnitID unitnumber
unit number, for display purposes only
Definition: vehicle_base.h:300
SaveOrLoadResult
SaveOrLoadResult
Save or load result codes.
Definition: saveload.h:333
company_func.h
WL_ERROR
@ WL_ERROR
Errors (eg. saving/loading failed)
Definition: error.h:24
GamelogReset
void GamelogReset()
Resets and frees all memory allocated - used before loading or starting a new game.
Definition: gamelog.cpp:115
SM_RELOADGAME
@ SM_RELOADGAME
Reload the savegame / scenario / heightmap you started the game with.
Definition: openttd.h:28
FiosType
FiosType
Elements of a file system that are recognized.
Definition: fileio_type.h:67
SM_MENU
@ SM_MENU
Switch to game intro menu.
Definition: openttd.h:31
InitFreeType
void InitFreeType(bool monospace)
(Re)initialize the freetype related things, i.e.
Definition: fontcache.cpp:683
AnimateAnimatedTiles
void AnimateAnimatedTiles()
Animate all tiles in the animated tile list, i.e. call AnimateTile on them.
Definition: animated_tile.cpp:50
GWM_NEWGAME
@ GWM_NEWGAME
Generate a map for a new game.
Definition: genworld.h:28
GetOptData::GetOpt
int GetOpt()
Find the next option.
Definition: getoptdata.cpp:22
DriverFactoryBase::SelectDriver
static void SelectDriver(const std::string &name, Driver::Type type)
Find the requested driver and return its class.
Definition: driver.cpp:85
error
void CDECL error(const char *s,...)
Error handling for fatal non-user errors.
Definition: openttd.cpp:132
AfterNewGRFScan
Callback structure of statements to be executed after the NewGRF scan.
Definition: openttd.cpp:406
network.h
MusicLoop
void MusicLoop()
Check music playback status and start/stop/song-finished.
Definition: music_gui.cpp:423
NetworkChangeCompanyPassword
const char * NetworkChangeCompanyPassword(CompanyID company_id, const char *password)
Change the company password of a given company.
Definition: network.cpp:154
IsDockingTile
static bool IsDockingTile(TileIndex t)
Checks whether the tile is marked as a dockling tile.
Definition: water_map.h:365
CheckForMissingGlyphs
void CheckForMissingGlyphs(bool base_font, MissingGlyphSearcher *searcher)
Check whether the currently loaded language pack uses characters that the currently loaded font does ...
Definition: strings.cpp:2091
SLO_INVALID
@ SLO_INVALID
Unknown file operation.
Definition: fileio_type.h:52
NewGRFScanCallback
Callback for NewGRF scanning.
Definition: newgrf_config.h:207
LoadFilter
Interface for filtering a savegame till it is loaded.
Definition: saveload_filter.h:14
Town
Town data structure.
Definition: town.h:50
TrainCache
Variables that are cached to improve performance and such.
Definition: train.h:69
WindowDesc::LoadFromConfig
static void LoadFromConfig()
Load all WindowDesc settings from _windows_file.
Definition: window.cpp:141
MarkWholeScreenDirty
void MarkWholeScreenDirty()
This function mark the whole screen as dirty.
Definition: gfx.cpp:1597
ClientSettings::network
NetworkSettings network
settings related to the network
Definition: settings_type.h:582
random_func.hpp
LoadHotkeysFromConfig
void LoadHotkeysFromConfig()
Load the hotkeys from the config file.
Definition: hotkeys.cpp:357
VideoDriver::MainLoop
virtual void MainLoop()=0
Perform the actual drawing.
CargoID
byte CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:20
TarScanner::BASESET
@ BASESET
Scan for base sets.
Definition: fileio_func.h:87
GenerateWorld
void GenerateWorld(GenWorldMode mode, uint size_x, uint size_y, bool reset_settings)
Generate a world.
Definition: genworld.cpp:272
SoundDriver::GetInstance
static SoundDriver * GetInstance()
Get the currently active instance of the sound driver.
Definition: sound_driver.hpp:35
PSM_LEAVE_GAMELOOP
@ PSM_LEAVE_GAMELOOP
Leave the gameloop, changes will be temporary.
Definition: newgrf_storage.h:21
INVALID_COMPANY
@ INVALID_COMPANY
An invalid company.
Definition: company_type.h:30
crashlog.h
BasePersistentStorageArray::SwitchMode
static void SwitchMode(PersistentStorageMode mode, bool ignore_prev_mode=false)
Clear temporary changes made since the last call to SwitchMode, and set whether subsequent changes sh...
Definition: newgrf_storage.cpp:55
fontcache.h
PerformanceAccumulator::Reset
static void Reset(PerformanceElement elem)
Store the previous accumulator value and reset for a new cycle of accumulating measurements.
Definition: framerate_gui.cpp:305
IConsoleCmdExec
void IConsoleCmdExec(const char *cmdstr, const uint recurse_count)
Execute a given command passed to us.
Definition: console.cpp:407
ScriptConfig::Change
void Change(const char *name, int version=-1, bool force_exact_match=false, bool is_random=false)
Set another Script to be loaded in this slot.
Definition: script_config.cpp:19
ProcessAsyncSaveFinish
void ProcessAsyncSaveFinish()
Handle async save finishes.
Definition: saveload.cpp:402
InitializeRailGUI
void InitializeRailGUI()
Resets the rail GUI - sets default railtype to build and resets the signal GUI.
Definition: rail_gui.cpp:2156
ResetWindowSystem
void ResetWindowSystem()
Reset the windowing system, by means of shutting it down followed by re-initialization.
Definition: window.cpp:1938
gui.h
LoadIntroGame
static void LoadIntroGame(bool load_newgrfs=true)
Load the introduction game.
Definition: openttd.cpp:338
ZOOM_LVL_NORMAL
@ ZOOM_LVL_NORMAL
The normal zoom level.
Definition: zoom_type.h:24
ClientSettings::company
CompanySettings company
default values for per-company settings
Definition: settings_type.h:583
GUISettings::last_newgrf_count
uint32 last_newgrf_count
the numbers of NewGRFs we found during the last scan
Definition: settings_type.h:153
CCF_TRACK
@ CCF_TRACK
Valid changes while vehicle is driving, and possibly changing tracks.
Definition: train.h:48
GameSettings::vehicle
VehicleSettings vehicle
options for vehicles
Definition: settings_type.h:572
LoadCheckData::HasNewGrfs
bool HasNewGrfs()
Check whether the game uses any NewGrfs.
Definition: fios.h:76
getoptdata.h
md5sumToString
char * md5sumToString(char *buf, const char *last, const uint8 md5sum[16])
Convert the md5sum to a hexadecimal string representation.
Definition: string.cpp:478
VEH_TRAIN
@ VEH_TRAIN
Train vehicle type.
Definition: vehicle_type.h:24
FileToSaveLoad::detail_ftype
DetailedFileType detail_ftype
Concrete file type (PNG, BMP, old save, etc).
Definition: saveload.h:342
ResetGRFConfig
void ResetGRFConfig(bool defaults)
Reset the current GRF Config to either blank or newgame settings.
Definition: newgrf_config.cpp:497
BaseMedia< GraphicsSet >::GetUsedSet
static const GraphicsSet * GetUsedSet()
Return the used set.
Definition: base_media_func.h:357
WC_STATUS_BAR
@ WC_STATUS_BAR
Statusbar (at the bottom of your screen); Window numbers:
Definition: window_type.h:57
RoadStop
A Stop for a Road Vehicle.
Definition: roadstop_base.h:22
BaseVehicle::type
VehicleType type
Type of vehicle.
Definition: vehicle_type.h:52
StateGameLoop
void StateGameLoop()
State controlling game loop.
Definition: openttd.cpp:1350
NetworkStartUp
void NetworkStartUp()
This tries to launch the network for a given OS.
Definition: network.cpp:1072
HasModalProgress
static bool HasModalProgress()
Check if we are currently in a modal progress state.
Definition: progress.h:17
InitializeSpriteSorter
void InitializeSpriteSorter()
Choose the "best" sprite sorter and set _vp_sprite_sorter.
Definition: viewport.cpp:3453
viewport_sprite_sorter.h
Driver::DT_MUSIC
@ DT_MUSIC
A music driver, needs to be before sound to properly shut down extmidi forked music players.
Definition: driver.h:42
console_func.h
_network_available
bool _network_available
is network mode available?
Definition: network.cpp:54
strecpy
char * strecpy(char *dst, const char *src, const char *last)
Copies characters from one buffer to another.
Definition: string.cpp:112
InitializeRoadGUI
void InitializeRoadGUI()
I really don't know why rail_gui.cpp has this too, shouldn't be included in the other one?
Definition: road_gui.cpp:1283
free
static void free(const void *ptr)
Version of the standard free that accepts const pointers.
Definition: stdafx.h:456
MemCmpT
static int MemCmpT(const T *ptr1, const T *ptr2, size_t num=1)
Type-safe version of memcmp().
Definition: mem_func.hpp:63
strecat
char * strecat(char *dst, const char *src, const char *last)
Appends characters from one string to another.
Definition: string.cpp:84
FileToSaveLoad::SetMode
void SetMode(FiosType ft)
Set the mode and file type of the file to save or load based on the type of file entry at the file sy...
Definition: saveload.cpp:2894
NetworkSettings::reload_cfg
bool reload_cfg
reload the config file before restarting
Definition: settings_type.h:284
DIAGDIR_NE
@ DIAGDIR_NE
Northeast, upper right on your monitor.
Definition: direction_type.h:79
VEH_SHIP
@ VEH_SHIP
Ship vehicle type.
Definition: vehicle_type.h:26
GETOPT_SHORT_VALUE
#define GETOPT_SHORT_VALUE(shortname)
Short option with value.
Definition: getoptdata.h:97
Company
Definition: company_base.h:110
game_config.hpp
SM_JOIN_GAME
@ SM_JOIN_GAME
Join a network game.
Definition: openttd.h:39
Driver::Stop
virtual void Stop()=0
Stop this driver.
ScriptConfig::SSS_FORCE_GAME
@ SSS_FORCE_GAME
Get the Script config from the current game.
Definition: script_config.hpp:105
CursorVars::in_window
bool in_window
mouse inside this window, determines drawing logic
Definition: gfx_type.h:141
ClientSettings::music
MusicSettings music
settings related to music/sound
Definition: settings_type.h:585
lastof
#define lastof(x)
Get the last element of an fixed size array.
Definition: stdafx.h:385
SL_OK
@ SL_OK
completed successfully
Definition: saveload.h:334
LoadFromConfig
void LoadFromConfig(bool startup)
Load the values from the configuration files.
Definition: settings.cpp:1755
Company::settings
CompanySettings settings
settings specific for each company
Definition: company_base.h:122
UpdateGUIZoom
void UpdateGUIZoom()
Resolve GUI zoom level, if auto-suggestion is requested.
Definition: gfx.cpp:1870
MusicSettings::music_vol
byte music_vol
The requested music volume.
Definition: settings_type.h:207
_sl_version
SaveLoadVersion _sl_version
the major savegame version identifier
Definition: saveload.cpp:65
UpdateLandscapingLimits
void UpdateLandscapingLimits()
Update the landscaping limits per company.
Definition: company_cmd.cpp:267
_cur_resolution
Dimension _cur_resolution
The current resolution.
Definition: driver.cpp:25
network_func.h
_is_network_server
bool _is_network_server
Does this client wants to be a network-server?
Definition: network.cpp:56
GetOptData::numleft
int numleft
Number of arguments left in argv.
Definition: getoptdata.h:32
GamelogInfo
void GamelogInfo(LoggedAction *gamelog_action, uint gamelog_actions, uint32 *last_ottd_rev, byte *ever_modified, bool *removed_newgrfs)
Get some basic information from the given gamelog.
Definition: gamelog.cpp:806
AfterNewGRFScan::join_server_password
const char * join_server_password
The password to join the server with.
Definition: openttd.cpp:412
_ini_videodriver
std::string _ini_videodriver
The video driver a stored in the configuration file.
Definition: driver.cpp:23
SetDParamStr
void SetDParamStr(uint n, const char *str)
This function is used to "bind" a C string to a OpenTTD dparam slot.
Definition: strings.cpp:286
BlitterFactory::GetBlittersInfo
static char * GetBlittersInfo(char *p, const char *last)
Fill a buffer with information about the blitters.
Definition: factory.hpp:152
Game::GetConsoleList
static char * GetConsoleList(char *p, const char *last, bool newest_only=false)
Wrapper function for GameScanner::GetConsoleList.
Definition: game_core.cpp:228
_settings_newgame
GameSettings _settings_newgame
Game settings for new games (updated from the intro screen).
Definition: settings.cpp:81
INVALID_STRING_ID
static const StringID INVALID_STRING_ID
Constant representing an invalid string (16bit in case it is used in savegames)
Definition: strings_type.h:17
ResetCompanyLivery
void ResetCompanyLivery(Company *c)
Reset the livery schemes to the company's primary colour.
Definition: company_cmd.cpp:515
ClientSettings::gui
GUISettings gui
settings related to the GUI
Definition: settings_type.h:581
WL_CRITICAL
@ WL_CRITICAL
Critical errors, the MessageBox is shown in all cases.
Definition: error.h:25
InitializeLanguagePacks
void InitializeLanguagePacks()
Make a list of the available language packs.
Definition: strings.cpp:1937
NewGRFCache
Cached often queried (NewGRF) values.
Definition: vehicle_base.h:65
SetupColoursAndInitialWindow
void SetupColoursAndInitialWindow()
Initialise the default colours (remaps and the likes), and load the main windows.
Definition: main_gui.cpp:519
FileToSaveLoad::file_op
SaveLoadOperation file_op
File operation to perform.
Definition: saveload.h:341
ai_config.hpp
engine_func.h
StateGameLoop_LinkGraphPauseControl
void StateGameLoop_LinkGraphPauseControl()
Pause the game if in 2 _date_fract ticks, we would do a join with the next link graph job,...
Definition: linkgraphschedule.cpp:171
news_func.h
hotkeys.h
roadveh.h
AfterNewGRFScan::OnNewGRFsScanned
virtual void OnNewGRFsScanned()
Called whenever the NewGRF scan completed.
Definition: openttd.cpp:430
RunTileLoop
void RunTileLoop()
Gradually iterate over all tiles on the map, calling their TileLoopProcs once every 256 ticks.
Definition: landscape.cpp:802
SM_RESTARTGAME
@ SM_RESTARTGAME
Restart --> 'Random game' with current settings.
Definition: openttd.h:27
BaseMedia< GraphicsSet >::SetSet
static bool SetSet(const std::string &name)
Set the set to be used.
Definition: base_media_func.h:228
backup_type.hpp
Game::Initialize
static void Initialize()
Initialize the Game system.
Definition: game_core.cpp:57