├── .dorpsgek.yml ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── stale.yml └── workflows │ └── commit-checker.yml ├── .gitignore ├── .gitmodules ├── .hgignore ├── COMPILING.md ├── CONTRIBUTING.md ├── COPYING.md ├── CREDITS.md ├── Doxyfile ├── Makefile.bundle.in ├── Makefile.grf.in ├── Makefile.in ├── Makefile.lang.in ├── Makefile.msvc ├── Makefile.setting.in ├── Makefile.src.in ├── README.md ├── azure-pipelines-ci.yml ├── azure-pipelines-release-stable.yml ├── azure-pipelines-release.yml ├── azure-pipelines ├── changelog.sh ├── manifest.sh └── templates │ ├── ci-git-rebase.yml │ ├── ci-opengfx.yml │ ├── linux-build.yml │ ├── linux-claim-bundles.yml │ ├── osx-build.yml │ ├── osx-dependencies.yml │ ├── release-bundles.yml │ ├── release-fetch-source.yml │ ├── release-manifest.yml │ ├── release-prepare-source.yml │ ├── release.yml │ ├── windows-build.yml │ ├── windows-dependencies.yml │ ├── windows-dependency-nsis.yml │ └── windows-dependency-zip.yml ├── backport.sh ├── bin ├── ai │ ├── compat_0.7.nut │ ├── compat_1.0.nut │ ├── compat_1.1.nut │ ├── compat_1.10.nut │ ├── compat_1.11.nut │ ├── compat_1.2.nut │ ├── compat_1.3.nut │ ├── compat_1.4.nut │ ├── compat_1.5.nut │ ├── compat_1.6.nut │ ├── compat_1.7.nut │ ├── compat_1.8.nut │ ├── compat_1.9.nut │ └── regression │ │ ├── completeness.sh │ │ ├── empty.sav │ │ ├── regression.cfg │ │ ├── regression_info.nut │ │ ├── run.sh │ │ ├── run.vbs │ │ ├── tst_regression │ │ ├── main.nut │ │ ├── require.nut │ │ └── result.txt │ │ └── tst_stationlist │ │ ├── main.nut │ │ ├── result.txt │ │ └── test.sav ├── baseset │ ├── openttd.grf │ ├── opntitle.dat │ └── orig_extra.grf ├── game │ ├── compat_1.10.nut │ ├── compat_1.11.nut │ ├── compat_1.2.nut │ ├── compat_1.3.nut │ ├── compat_1.4.nut │ ├── compat_1.5.nut │ ├── compat_1.6.nut │ ├── compat_1.7.nut │ ├── compat_1.8.nut │ └── compat_1.9.nut └── scripts │ ├── autoexec.scr.example │ ├── game_start.scr.example │ ├── on_client.scr.example │ ├── on_dedicated.scr.example │ ├── on_server.scr.example │ ├── on_server_connect.scr.example │ ├── pre_dedicated.scr.example │ ├── pre_server.scr.example │ └── readme.txt ├── changelog.txt ├── config.lib ├── configure ├── docs ├── admin_network.md ├── compiling_lang_files.md ├── debugging_desyncs.md ├── desync.md ├── directory_structure.md ├── elrail.svg ├── elrail_tile.png ├── elrail_track.png ├── landscape.html ├── landscape_externals.html ├── landscape_grid.html ├── linkgraph.md ├── logging_and_performance_metrics.md ├── multiplayer.md ├── obg_format.txt ├── obm_format.txt ├── obs_format.txt ├── openttd.6 ├── ottd-colourtext-palette.png ├── palettes │ ├── openttd.gpl │ └── palette.act └── tileh.png ├── findversion.sh ├── known-bugs.txt ├── media ├── baseset │ ├── no_music.obm │ ├── no_sound.obs │ ├── orig_dos.obg │ ├── orig_dos.obm │ ├── orig_dos.obs │ ├── orig_dos_de.obg │ ├── orig_tto.obm │ ├── orig_win.obg │ ├── orig_win.obm │ ├── orig_win.obs │ ├── translations.awk │ └── translations.vbs ├── extra_grf │ ├── 2ccmap.nfo │ ├── airport_preview.nfo │ ├── airport_preview.png │ ├── airports.nfo │ ├── airports.png │ ├── airports_orig_extra.nfo │ ├── aqueduct.nfo │ ├── aqueduct.png │ ├── assemble_nfo.awk │ ├── autorail.nfo │ ├── autorail.png │ ├── canal_locks.png │ ├── canals.nfo │ ├── canals.png │ ├── canals_extra.nfo │ ├── chars.nfo │ ├── chars.png │ ├── chars_orig_extra.nfo │ ├── elrails.nfo │ ├── elrails.png │ ├── fix_graphics.nfo │ ├── fix_graphics.png │ ├── flags.nfo │ ├── flags.png │ ├── foundations.nfo │ ├── foundations.png │ ├── mono.nfo │ ├── mono.png │ ├── oneway.nfo │ ├── oneway.png │ ├── openttd.nfo │ ├── openttdgui.nfo │ ├── openttdgui.png │ ├── openttdgui_build_tram.png │ ├── openttdgui_convert_road.png │ ├── openttdgui_convert_tram.png │ ├── openttdgui_group_livery.png │ ├── orig_extra.nfo │ ├── palette.nfo │ ├── rivers │ │ ├── arctic.nfo │ │ ├── arctic_brown.png │ │ ├── arctic_snowy.png │ │ ├── rapids.nfo │ │ ├── rapids.png │ │ ├── temperate.nfo │ │ ├── temperate.png │ │ ├── toyland.nfo │ │ ├── toyland.png │ │ ├── tropic.nfo │ │ ├── tropic_desert.png │ │ └── tropic_forest.png │ ├── roadstops.nfo │ ├── roadstops.png │ ├── shore.nfo │ ├── shore.png │ ├── signals.nfo │ ├── signals.png │ ├── sloped_tracks.nfo │ ├── sloped_tracks.png │ ├── tramtracks.nfo │ ├── tramtracks.png │ ├── tramtracks_bare_depot.png │ ├── tunnel_portals.nfo │ └── tunnel_portals.png ├── openttd.128.png ├── openttd.16.png ├── openttd.256.png ├── openttd.32.bmp ├── openttd.32.png ├── openttd.32.xpm ├── openttd.48.png ├── openttd.64.png ├── openttd.64.xpm ├── openttd.desktop.filter.awk ├── openttd.desktop.in ├── openttd.desktop.translation.awk ├── openttd.ico └── openttd.svg ├── os ├── debian │ ├── NEWS │ ├── README.Debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── gbp.conf │ ├── menu │ ├── openttd-wrapper │ ├── patches │ │ ├── run-openttd-wrapper.patch │ │ └── series │ ├── rules │ ├── source │ │ └── format │ └── watch ├── macosx │ ├── openttd.icns │ ├── plistgen.sh │ └── splash.png ├── morphos │ └── icons │ │ ├── OpenTTD.info │ │ ├── docs.info │ │ ├── document.info │ │ └── drawer.info ├── os2 │ ├── build_lang.cmd │ ├── dedicated.cmd │ ├── installer │ │ ├── download_nosound.cmd │ │ ├── download_opengfx.cmd │ │ ├── download_opensfx.cmd │ │ ├── make_installer.cmd │ │ ├── openttd.wis │ │ ├── remove_nosound.cmd │ │ ├── remove_opengfx.cmd │ │ └── remove_opensfx.cmd │ ├── openttd.wpj │ ├── svn_version.cmd │ ├── svnver1.c │ └── svnver2.c ├── rpm │ ├── openttd-rpmlintrc │ ├── openttd.changes │ └── openttd.spec └── windows │ └── installer │ ├── build_installers.bat │ ├── cdfinder.ini │ ├── install.nsi │ ├── top.bmp │ ├── version_win32.txt │ ├── version_win64.txt │ ├── version_win9x.txt │ └── welcome.bmp ├── projects ├── basesets_vs140.vcxproj ├── basesets_vs140.vcxproj.filters ├── basesets_vs140.vcxproj.filters.in ├── basesets_vs140.vcxproj.in ├── basesets_vs141.vcxproj ├── basesets_vs141.vcxproj.filters ├── basesets_vs141.vcxproj.filters.in ├── basesets_vs141.vcxproj.in ├── basesets_vs142.vcxproj ├── basesets_vs142.vcxproj.filters ├── basesets_vs142.vcxproj.filters.in ├── basesets_vs142.vcxproj.in ├── determineversion.vbs ├── dpi_aware.manifest ├── gen-kdev4.sh ├── generate ├── generate.vbs ├── generate_vs140.vcxproj ├── generate_vs141.vcxproj ├── generate_vs142.vcxproj ├── langs_vs140.vcxproj ├── langs_vs140.vcxproj.filters ├── langs_vs140.vcxproj.filters.in ├── langs_vs140.vcxproj.in ├── langs_vs141.vcxproj ├── langs_vs141.vcxproj.filters ├── langs_vs141.vcxproj.filters.in ├── langs_vs141.vcxproj.in ├── langs_vs142.vcxproj ├── langs_vs142.vcxproj.filters ├── langs_vs142.vcxproj.filters.in ├── langs_vs142.vcxproj.in ├── openttd_vs140.sln ├── openttd_vs140.vcxproj ├── openttd_vs140.vcxproj.filters ├── openttd_vs140.vcxproj.filters.in ├── openttd_vs140.vcxproj.in ├── openttd_vs141.sln ├── openttd_vs141.vcxproj ├── openttd_vs141.vcxproj.filters ├── openttd_vs141.vcxproj.filters.in ├── openttd_vs141.vcxproj.in ├── openttd_vs142.sln ├── openttd_vs142.vcxproj ├── openttd_vs142.vcxproj.filters ├── openttd_vs142.vcxproj.filters.in ├── openttd_vs142.vcxproj.in ├── os_versions.manifest ├── regression.bat ├── regression_vs140.vcxproj ├── regression_vs141.vcxproj ├── regression_vs142.vcxproj ├── settings_vs140.vcxproj ├── settings_vs140.vcxproj.filters ├── settings_vs140.vcxproj.filters.in ├── settings_vs140.vcxproj.in ├── settings_vs141.vcxproj ├── settings_vs141.vcxproj.filters ├── settings_vs141.vcxproj.filters.in ├── settings_vs141.vcxproj.in ├── settings_vs142.vcxproj ├── settings_vs142.vcxproj.filters ├── settings_vs142.vcxproj.filters.in ├── settings_vs142.vcxproj.in ├── settingsgen_vs140.vcxproj ├── settingsgen_vs140.vcxproj.filters ├── settingsgen_vs141.vcxproj ├── settingsgen_vs141.vcxproj.filters ├── settingsgen_vs142.vcxproj ├── settingsgen_vs142.vcxproj.filters ├── strgen_vs140.vcxproj ├── strgen_vs140.vcxproj.filters ├── strgen_vs141.vcxproj ├── strgen_vs141.vcxproj.filters ├── strgen_vs142.vcxproj ├── strgen_vs142.vcxproj.filters ├── version_vs140.vcxproj ├── version_vs141.vcxproj └── version_vs142.vcxproj ├── source.list └── src ├── 3rdparty ├── README.licensing ├── md5 │ ├── md5.cpp │ └── md5.h ├── os2 │ ├── getaddrinfo.c │ ├── getaddrinfo.h │ ├── getnameinfo.c │ └── getnameinfo.h └── squirrel │ ├── COPYRIGHT │ ├── README.OpenTTD │ ├── include │ ├── sqstdaux.h │ ├── sqstdmath.h │ ├── sqstdstring.h │ └── squirrel.h │ ├── sqstdlib │ ├── sqstdaux.cpp │ ├── sqstdmath.cpp │ ├── sqstdrex.cpp │ └── sqstdstring.cpp │ └── squirrel │ ├── sqapi.cpp │ ├── sqarray.h │ ├── sqbaselib.cpp │ ├── sqclass.cpp │ ├── sqclass.h │ ├── sqclosure.h │ ├── sqcompiler.cpp │ ├── sqcompiler.h │ ├── sqdebug.cpp │ ├── sqfuncproto.h │ ├── sqfuncstate.cpp │ ├── sqfuncstate.h │ ├── sqlexer.cpp │ ├── sqlexer.h │ ├── sqmem.cpp │ ├── sqobject.cpp │ ├── sqobject.h │ ├── sqopcodes.h │ ├── sqpcheader.h │ ├── sqstate.cpp │ ├── sqstate.h │ ├── sqstring.h │ ├── sqtable.cpp │ ├── sqtable.h │ ├── squserdata.h │ ├── squtils.h │ ├── sqvm.cpp │ └── sqvm.h ├── ai ├── ai.hpp ├── ai_config.cpp ├── ai_config.hpp ├── ai_core.cpp ├── ai_gui.cpp ├── ai_gui.hpp ├── ai_info.cpp ├── ai_info.hpp ├── ai_instance.cpp ├── ai_instance.hpp ├── ai_scanner.cpp └── ai_scanner.hpp ├── aircraft.h ├── aircraft_cmd.cpp ├── aircraft_gui.cpp ├── airport.cpp ├── airport.h ├── airport_gui.cpp ├── animated_tile.cpp ├── animated_tile_func.h ├── articulated_vehicles.cpp ├── articulated_vehicles.h ├── autoreplace.cpp ├── autoreplace_base.h ├── autoreplace_cmd.cpp ├── autoreplace_func.h ├── autoreplace_gui.cpp ├── autoreplace_gui.h ├── autoreplace_type.h ├── autoslope.h ├── base_consist.cpp ├── base_consist.h ├── base_media_base.h ├── base_media_func.h ├── base_station_base.h ├── bitmap_type.h ├── blitter ├── 32bpp_anim.cpp ├── 32bpp_anim.hpp ├── 32bpp_anim_sse2.cpp ├── 32bpp_anim_sse2.hpp ├── 32bpp_anim_sse4.cpp ├── 32bpp_anim_sse4.hpp ├── 32bpp_base.cpp ├── 32bpp_base.hpp ├── 32bpp_optimized.cpp ├── 32bpp_optimized.hpp ├── 32bpp_simple.cpp ├── 32bpp_simple.hpp ├── 32bpp_sse2.cpp ├── 32bpp_sse2.hpp ├── 32bpp_sse4.cpp ├── 32bpp_sse4.hpp ├── 32bpp_sse_func.hpp ├── 32bpp_sse_type.h ├── 32bpp_ssse3.cpp ├── 32bpp_ssse3.hpp ├── 8bpp_base.cpp ├── 8bpp_base.hpp ├── 8bpp_optimized.cpp ├── 8bpp_optimized.hpp ├── 8bpp_simple.cpp ├── 8bpp_simple.hpp ├── base.hpp ├── common.hpp ├── factory.hpp ├── null.cpp └── null.hpp ├── bmp.cpp ├── bmp.h ├── bootstrap_gui.cpp ├── bridge.h ├── bridge_gui.cpp ├── bridge_map.cpp ├── bridge_map.h ├── build_vehicle_gui.cpp ├── cargo_type.h ├── cargoaction.cpp ├── cargoaction.h ├── cargomonitor.cpp ├── cargomonitor.h ├── cargopacket.cpp ├── cargopacket.h ├── cargotype.cpp ├── cargotype.h ├── cheat.cpp ├── cheat_func.h ├── cheat_gui.cpp ├── cheat_type.h ├── clear_cmd.cpp ├── clear_func.h ├── clear_map.h ├── cmd_helper.h ├── command.cpp ├── command_func.h ├── command_type.h ├── company_base.h ├── company_cmd.cpp ├── company_func.h ├── company_gui.cpp ├── company_gui.h ├── company_manager_face.h ├── company_type.h ├── console.cpp ├── console_cmds.cpp ├── console_func.h ├── console_gui.cpp ├── console_gui.h ├── console_internal.h ├── console_type.h ├── core ├── alloc_func.cpp ├── alloc_func.hpp ├── alloc_type.hpp ├── backup_type.hpp ├── bitmath_func.cpp ├── bitmath_func.hpp ├── endian_func.hpp ├── endian_type.hpp ├── enum_type.hpp ├── geometry_func.cpp ├── geometry_func.hpp ├── geometry_type.hpp ├── kdtree.hpp ├── math_func.cpp ├── math_func.hpp ├── mem_func.hpp ├── multimap.hpp ├── overflowsafe_type.hpp ├── pool_func.cpp ├── pool_func.hpp ├── pool_type.hpp ├── random_func.cpp ├── random_func.hpp ├── smallmap_type.hpp ├── smallmatrix_type.hpp ├── smallstack_type.hpp ├── smallvec_type.hpp └── string_compare_type.hpp ├── cpu.cpp ├── cpu.h ├── crashlog.cpp ├── crashlog.h ├── currency.cpp ├── currency.h ├── date.cpp ├── date_func.h ├── date_gui.cpp ├── date_gui.h ├── date_type.h ├── debug.cpp ├── debug.h ├── dedicated.cpp ├── depend └── depend.cpp ├── depot.cpp ├── depot_base.h ├── depot_cmd.cpp ├── depot_func.h ├── depot_gui.cpp ├── depot_map.h ├── depot_type.h ├── direction_func.h ├── direction_type.h ├── disaster_vehicle.cpp ├── disaster_vehicle.h ├── dock_gui.cpp ├── driver.cpp ├── driver.h ├── economy.cpp ├── economy_base.h ├── economy_func.h ├── economy_type.h ├── effectvehicle.cpp ├── effectvehicle_base.h ├── effectvehicle_func.h ├── elrail.cpp ├── elrail_func.h ├── engine.cpp ├── engine_base.h ├── engine_func.h ├── engine_gui.cpp ├── engine_gui.h ├── engine_type.h ├── error.h ├── error_gui.cpp ├── fileio.cpp ├── fileio_func.h ├── fileio_type.h ├── fios.cpp ├── fios.h ├── fios_gui.cpp ├── fontcache.cpp ├── fontcache.h ├── fontdetection.cpp ├── fontdetection.h ├── framerate_gui.cpp ├── framerate_type.h ├── game ├── game.hpp ├── game_config.cpp ├── game_config.hpp ├── game_core.cpp ├── game_info.cpp ├── game_info.hpp ├── game_instance.cpp ├── game_instance.hpp ├── game_scanner.cpp ├── game_scanner.hpp ├── game_text.cpp └── game_text.hpp ├── gamelog.cpp ├── gamelog.h ├── gamelog_internal.h ├── genworld.cpp ├── genworld.h ├── genworld_gui.cpp ├── gfx.cpp ├── gfx_func.h ├── gfx_layout.cpp ├── gfx_layout.h ├── gfx_type.h ├── gfxinit.cpp ├── gfxinit.h ├── goal.cpp ├── goal_base.h ├── goal_gui.cpp ├── goal_type.h ├── graph_gui.cpp ├── graph_gui.h ├── ground_vehicle.cpp ├── ground_vehicle.hpp ├── group.h ├── group_cmd.cpp ├── group_gui.cpp ├── group_gui.h ├── group_type.h ├── gui.h ├── guitimer_func.h ├── heightmap.cpp ├── heightmap.h ├── highscore.cpp ├── highscore.h ├── highscore_gui.cpp ├── hotkeys.cpp ├── hotkeys.h ├── house.h ├── house_type.h ├── industry.h ├── industry_cmd.cpp ├── industry_gui.cpp ├── industry_map.h ├── industry_type.h ├── industrytype.h ├── ini.cpp ├── ini_load.cpp ├── ini_type.h ├── intro_gui.cpp ├── landscape.cpp ├── landscape.h ├── landscape_type.h ├── lang ├── afrikaans.txt ├── arabic_egypt.txt ├── basque.txt ├── belarusian.txt ├── brazilian_portuguese.txt ├── bulgarian.txt ├── catalan.txt ├── croatian.txt ├── czech.txt ├── danish.txt ├── dutch.txt ├── english.txt ├── english_AU.txt ├── english_US.txt ├── esperanto.txt ├── estonian.txt ├── faroese.txt ├── finnish.txt ├── french.txt ├── gaelic.txt ├── galician.txt ├── german.txt ├── greek.txt ├── hebrew.txt ├── hungarian.txt ├── icelandic.txt ├── indonesian.txt ├── irish.txt ├── italian.txt ├── japanese.txt ├── korean.txt ├── latin.txt ├── latvian.txt ├── lithuanian.txt ├── luxembourgish.txt ├── malay.txt ├── norwegian_bokmal.txt ├── norwegian_nynorsk.txt ├── polish.txt ├── portuguese.txt ├── romanian.txt ├── russian.txt ├── serbian.txt ├── simplified_chinese.txt ├── slovak.txt ├── slovenian.txt ├── spanish.txt ├── spanish_MX.txt ├── swedish.txt ├── tamil.txt ├── thai.txt ├── traditional_chinese.txt ├── turkish.txt ├── ukrainian.txt ├── unfinished │ ├── chuvash.txt │ ├── frisian.txt │ ├── ido.txt │ ├── macedonian.txt │ ├── maltese.txt │ ├── marathi.txt │ ├── persian.txt │ └── urdu.txt ├── vietnamese.txt └── welsh.txt ├── language.h ├── linkgraph ├── demands.cpp ├── demands.h ├── flowmapper.cpp ├── flowmapper.h ├── init.h ├── linkgraph.cpp ├── linkgraph.h ├── linkgraph_base.h ├── linkgraph_gui.cpp ├── linkgraph_gui.h ├── linkgraph_type.h ├── linkgraphjob.cpp ├── linkgraphjob.h ├── linkgraphjob_base.h ├── linkgraphschedule.cpp ├── linkgraphschedule.h ├── mcf.cpp ├── mcf.h ├── refresh.cpp └── refresh.h ├── livery.h ├── main_gui.cpp ├── map.cpp ├── map_func.h ├── map_type.h ├── metrics.cpp ├── metrics.h ├── misc.cpp ├── misc ├── array.hpp ├── binaryheap.hpp ├── blob.hpp ├── countedobj.cpp ├── countedptr.hpp ├── dbg_helpers.cpp ├── dbg_helpers.h ├── fixedsizearray.hpp ├── getoptdata.cpp ├── getoptdata.h ├── hashtable.hpp └── str.hpp ├── misc_cmd.cpp ├── misc_gui.cpp ├── mixer.cpp ├── mixer.h ├── music.cpp ├── music ├── allegro_m.cpp ├── allegro_m.h ├── bemidi.cpp ├── bemidi.h ├── cocoa_m.cpp ├── cocoa_m.h ├── dmusic.cpp ├── dmusic.h ├── extmidi.cpp ├── extmidi.h ├── fluidsynth.cpp ├── fluidsynth.h ├── midi.h ├── midifile.cpp ├── midifile.hpp ├── music_driver.hpp ├── null_m.cpp ├── null_m.h ├── os2_m.cpp ├── os2_m.h ├── qtmidi.cpp ├── qtmidi.h ├── win32_m.cpp └── win32_m.h ├── music_gui.cpp ├── network ├── core │ ├── address.cpp │ ├── address.h │ ├── config.h │ ├── core.cpp │ ├── core.h │ ├── game.h │ ├── host.cpp │ ├── host.h │ ├── os_abstraction.h │ ├── packet.cpp │ ├── packet.h │ ├── tcp.cpp │ ├── tcp.h │ ├── tcp_admin.cpp │ ├── tcp_admin.h │ ├── tcp_connect.cpp │ ├── tcp_content.cpp │ ├── tcp_content.h │ ├── tcp_game.cpp │ ├── tcp_game.h │ ├── tcp_http.cpp │ ├── tcp_http.h │ ├── tcp_listen.h │ ├── udp.cpp │ └── udp.h ├── network.cpp ├── network.h ├── network_admin.cpp ├── network_admin.h ├── network_base.h ├── network_chat_gui.cpp ├── network_client.cpp ├── network_client.h ├── network_command.cpp ├── network_content.cpp ├── network_content.h ├── network_content_gui.cpp ├── network_content_gui.h ├── network_func.h ├── network_gamelist.cpp ├── network_gamelist.h ├── network_gui.cpp ├── network_gui.h ├── network_internal.h ├── network_server.cpp ├── network_server.h ├── network_type.h ├── network_udp.cpp └── network_udp.h ├── newgrf.cpp ├── newgrf.h ├── newgrf_airport.cpp ├── newgrf_airport.h ├── newgrf_airporttiles.cpp ├── newgrf_airporttiles.h ├── newgrf_animation_base.h ├── newgrf_animation_type.h ├── newgrf_callbacks.h ├── newgrf_canal.cpp ├── newgrf_canal.h ├── newgrf_cargo.cpp ├── newgrf_cargo.h ├── newgrf_class.h ├── newgrf_class_func.h ├── newgrf_commons.cpp ├── newgrf_commons.h ├── newgrf_config.cpp ├── newgrf_config.h ├── newgrf_debug.h ├── newgrf_debug_gui.cpp ├── newgrf_engine.cpp ├── newgrf_engine.h ├── newgrf_generic.cpp ├── newgrf_generic.h ├── newgrf_gui.cpp ├── newgrf_house.cpp ├── newgrf_house.h ├── newgrf_industries.cpp ├── newgrf_industries.h ├── newgrf_industrytiles.cpp ├── newgrf_industrytiles.h ├── newgrf_object.cpp ├── newgrf_object.h ├── newgrf_profiling.cpp ├── newgrf_profiling.h ├── newgrf_properties.h ├── newgrf_railtype.cpp ├── newgrf_railtype.h ├── newgrf_roadtype.cpp ├── newgrf_roadtype.h ├── newgrf_sound.cpp ├── newgrf_sound.h ├── newgrf_spritegroup.cpp ├── newgrf_spritegroup.h ├── newgrf_station.cpp ├── newgrf_station.h ├── newgrf_storage.cpp ├── newgrf_storage.h ├── newgrf_text.cpp ├── newgrf_text.h ├── newgrf_town.cpp ├── newgrf_town.h ├── newgrf_townname.cpp ├── newgrf_townname.h ├── news_func.h ├── news_gui.cpp ├── news_gui.h ├── news_type.h ├── object.h ├── object_base.h ├── object_cmd.cpp ├── object_gui.cpp ├── object_map.h ├── object_type.h ├── openttd.cpp ├── openttd.h ├── order_backup.cpp ├── order_backup.h ├── order_base.h ├── order_cmd.cpp ├── order_func.h ├── order_gui.cpp ├── order_type.h ├── os ├── macosx │ ├── G5_detector.cpp │ ├── crashlog_osx.cpp │ ├── macos.h │ ├── macos.mm │ ├── osx_stdafx.h │ ├── splash.cpp │ ├── splash.h │ ├── string_osx.cpp │ └── string_osx.h ├── os2 │ └── os2.cpp ├── unix │ ├── crashlog_unix.cpp │ └── unix.cpp └── windows │ ├── crashlog_win.cpp │ ├── ottdres.rc.in │ ├── string_uniscribe.cpp │ ├── string_uniscribe.h │ ├── win32.cpp │ └── win32.h ├── osk_gui.cpp ├── pathfinder ├── follow_track.hpp ├── npf │ ├── aystar.cpp │ ├── aystar.h │ ├── npf.cpp │ ├── npf_func.h │ ├── queue.cpp │ └── queue.h ├── pathfinder_func.h ├── pathfinder_type.h ├── pf_performance_timer.hpp └── yapf │ ├── nodelist.hpp │ ├── yapf.h │ ├── yapf.hpp │ ├── yapf_base.hpp │ ├── yapf_cache.h │ ├── yapf_common.hpp │ ├── yapf_costbase.hpp │ ├── yapf_costcache.hpp │ ├── yapf_costrail.hpp │ ├── yapf_destrail.hpp │ ├── yapf_node.hpp │ ├── yapf_node_rail.hpp │ ├── yapf_node_road.hpp │ ├── yapf_node_ship.hpp │ ├── yapf_rail.cpp │ ├── yapf_road.cpp │ ├── yapf_ship.cpp │ └── yapf_type.hpp ├── pbs.cpp ├── pbs.h ├── progress.cpp ├── progress.h ├── querystring_gui.h ├── rail.cpp ├── rail.h ├── rail_cmd.cpp ├── rail_gui.cpp ├── rail_gui.h ├── rail_map.h ├── rail_type.h ├── rev.cpp.in ├── rev.h ├── road.cpp ├── road.h ├── road_cmd.cpp ├── road_cmd.h ├── road_func.h ├── road_gui.cpp ├── road_gui.h ├── road_internal.h ├── road_map.cpp ├── road_map.h ├── road_type.h ├── roadstop.cpp ├── roadstop_base.h ├── roadveh.h ├── roadveh_cmd.cpp ├── roadveh_gui.cpp ├── safeguards.h ├── saveload ├── afterload.cpp ├── ai_sl.cpp ├── airport_sl.cpp ├── animated_tile_sl.cpp ├── autoreplace_sl.cpp ├── cargomonitor_sl.cpp ├── cargopacket_sl.cpp ├── cheat_sl.cpp ├── company_sl.cpp ├── depot_sl.cpp ├── economy_sl.cpp ├── engine_sl.cpp ├── game_sl.cpp ├── gamelog_sl.cpp ├── goal_sl.cpp ├── group_sl.cpp ├── industry_sl.cpp ├── labelmaps_sl.cpp ├── linkgraph_sl.cpp ├── map_sl.cpp ├── misc_sl.cpp ├── newgrf_sl.cpp ├── newgrf_sl.h ├── object_sl.cpp ├── oldloader.cpp ├── oldloader.h ├── oldloader_sl.cpp ├── order_sl.cpp ├── saveload.cpp ├── saveload.h ├── saveload_filter.h ├── saveload_internal.h ├── signs_sl.cpp ├── station_sl.cpp ├── storage_sl.cpp ├── story_sl.cpp ├── strings_sl.cpp ├── subsidy_sl.cpp ├── town_sl.cpp ├── vehicle_sl.cpp └── waypoint_sl.cpp ├── screenshot.cpp ├── screenshot.h ├── screenshot_gui.cpp ├── screenshot_gui.h ├── script ├── api │ ├── Doxyfile_AI │ ├── Doxyfile_Game │ ├── ai │ │ ├── ai_accounting.hpp.sq │ │ ├── ai_airport.hpp.sq │ │ ├── ai_base.hpp.sq │ │ ├── ai_basestation.hpp.sq │ │ ├── ai_bridge.hpp.sq │ │ ├── ai_bridgelist.hpp.sq │ │ ├── ai_cargo.hpp.sq │ │ ├── ai_cargolist.hpp.sq │ │ ├── ai_company.hpp.sq │ │ ├── ai_controller.hpp.sq │ │ ├── ai_date.hpp.sq │ │ ├── ai_depotlist.hpp.sq │ │ ├── ai_engine.hpp.sq │ │ ├── ai_enginelist.hpp.sq │ │ ├── ai_error.hpp.sq │ │ ├── ai_event.hpp.sq │ │ ├── ai_event_types.hpp.sq │ │ ├── ai_execmode.hpp.sq │ │ ├── ai_gamesettings.hpp.sq │ │ ├── ai_group.hpp.sq │ │ ├── ai_grouplist.hpp.sq │ │ ├── ai_industry.hpp.sq │ │ ├── ai_industrylist.hpp.sq │ │ ├── ai_industrytype.hpp.sq │ │ ├── ai_industrytypelist.hpp.sq │ │ ├── ai_infrastructure.hpp.sq │ │ ├── ai_list.hpp.sq │ │ ├── ai_log.hpp.sq │ │ ├── ai_map.hpp.sq │ │ ├── ai_marine.hpp.sq │ │ ├── ai_order.hpp.sq │ │ ├── ai_rail.hpp.sq │ │ ├── ai_railtypelist.hpp.sq │ │ ├── ai_road.hpp.sq │ │ ├── ai_roadtypelist.hpp.sq │ │ ├── ai_sign.hpp.sq │ │ ├── ai_signlist.hpp.sq │ │ ├── ai_station.hpp.sq │ │ ├── ai_stationlist.hpp.sq │ │ ├── ai_subsidy.hpp.sq │ │ ├── ai_subsidylist.hpp.sq │ │ ├── ai_testmode.hpp.sq │ │ ├── ai_tile.hpp.sq │ │ ├── ai_tilelist.hpp.sq │ │ ├── ai_town.hpp.sq │ │ ├── ai_townlist.hpp.sq │ │ ├── ai_tunnel.hpp.sq │ │ ├── ai_vehicle.hpp.sq │ │ ├── ai_vehiclelist.hpp.sq │ │ ├── ai_waypoint.hpp.sq │ │ └── ai_waypointlist.hpp.sq │ ├── ai_changelog.hpp │ ├── doxygen_filter.awk │ ├── doxygen_filter.sh │ ├── game │ │ ├── game_accounting.hpp.sq │ │ ├── game_admin.hpp.sq │ │ ├── game_airport.hpp.sq │ │ ├── game_base.hpp.sq │ │ ├── game_basestation.hpp.sq │ │ ├── game_bridge.hpp.sq │ │ ├── game_bridgelist.hpp.sq │ │ ├── game_cargo.hpp.sq │ │ ├── game_cargolist.hpp.sq │ │ ├── game_cargomonitor.hpp.sq │ │ ├── game_client.hpp.sq │ │ ├── game_clientlist.hpp.sq │ │ ├── game_company.hpp.sq │ │ ├── game_companymode.hpp.sq │ │ ├── game_controller.hpp.sq │ │ ├── game_date.hpp.sq │ │ ├── game_depotlist.hpp.sq │ │ ├── game_engine.hpp.sq │ │ ├── game_enginelist.hpp.sq │ │ ├── game_error.hpp.sq │ │ ├── game_event.hpp.sq │ │ ├── game_event_types.hpp.sq │ │ ├── game_execmode.hpp.sq │ │ ├── game_game.hpp.sq │ │ ├── game_gamesettings.hpp.sq │ │ ├── game_goal.hpp.sq │ │ ├── game_industry.hpp.sq │ │ ├── game_industrylist.hpp.sq │ │ ├── game_industrytype.hpp.sq │ │ ├── game_industrytypelist.hpp.sq │ │ ├── game_infrastructure.hpp.sq │ │ ├── game_list.hpp.sq │ │ ├── game_log.hpp.sq │ │ ├── game_map.hpp.sq │ │ ├── game_marine.hpp.sq │ │ ├── game_news.hpp.sq │ │ ├── game_order.hpp.sq │ │ ├── game_rail.hpp.sq │ │ ├── game_railtypelist.hpp.sq │ │ ├── game_road.hpp.sq │ │ ├── game_roadtypelist.hpp.sq │ │ ├── game_sign.hpp.sq │ │ ├── game_signlist.hpp.sq │ │ ├── game_station.hpp.sq │ │ ├── game_stationlist.hpp.sq │ │ ├── game_story_page.hpp.sq │ │ ├── game_storypageelementlist.hpp.sq │ │ ├── game_storypagelist.hpp.sq │ │ ├── game_subsidy.hpp.sq │ │ ├── game_subsidylist.hpp.sq │ │ ├── game_testmode.hpp.sq │ │ ├── game_text.hpp.sq │ │ ├── game_tile.hpp.sq │ │ ├── game_tilelist.hpp.sq │ │ ├── game_town.hpp.sq │ │ ├── game_townlist.hpp.sq │ │ ├── game_tunnel.hpp.sq │ │ ├── game_vehicle.hpp.sq │ │ ├── game_vehiclelist.hpp.sq │ │ ├── game_viewport.hpp.sq │ │ ├── game_waypoint.hpp.sq │ │ ├── game_waypointlist.hpp.sq │ │ └── game_window.hpp.sq │ ├── game_changelog.hpp │ ├── generate_widget.awk │ ├── generate_widget.sh │ ├── generate_widget.vbs │ ├── script_accounting.cpp │ ├── script_accounting.hpp │ ├── script_admin.cpp │ ├── script_admin.hpp │ ├── script_airport.cpp │ ├── script_airport.hpp │ ├── script_base.cpp │ ├── script_base.hpp │ ├── script_basestation.cpp │ ├── script_basestation.hpp │ ├── script_bridge.cpp │ ├── script_bridge.hpp │ ├── script_bridgelist.cpp │ ├── script_bridgelist.hpp │ ├── script_cargo.cpp │ ├── script_cargo.hpp │ ├── script_cargolist.cpp │ ├── script_cargolist.hpp │ ├── script_cargomonitor.cpp │ ├── script_cargomonitor.hpp │ ├── script_client.cpp │ ├── script_client.hpp │ ├── script_clientlist.cpp │ ├── script_clientlist.hpp │ ├── script_company.cpp │ ├── script_company.hpp │ ├── script_companymode.cpp │ ├── script_companymode.hpp │ ├── script_controller.cpp │ ├── script_controller.hpp │ ├── script_date.cpp │ ├── script_date.hpp │ ├── script_depotlist.cpp │ ├── script_depotlist.hpp │ ├── script_engine.cpp │ ├── script_engine.hpp │ ├── script_enginelist.cpp │ ├── script_enginelist.hpp │ ├── script_error.cpp │ ├── script_error.hpp │ ├── script_event.cpp │ ├── script_event.hpp │ ├── script_event_types.cpp │ ├── script_event_types.hpp │ ├── script_execmode.cpp │ ├── script_execmode.hpp │ ├── script_game.cpp │ ├── script_game.hpp │ ├── script_gamesettings.cpp │ ├── script_gamesettings.hpp │ ├── script_goal.cpp │ ├── script_goal.hpp │ ├── script_group.cpp │ ├── script_group.hpp │ ├── script_grouplist.cpp │ ├── script_grouplist.hpp │ ├── script_industry.cpp │ ├── script_industry.hpp │ ├── script_industrylist.cpp │ ├── script_industrylist.hpp │ ├── script_industrytype.cpp │ ├── script_industrytype.hpp │ ├── script_industrytypelist.cpp │ ├── script_industrytypelist.hpp │ ├── script_info_docs.hpp │ ├── script_infrastructure.cpp │ ├── script_infrastructure.hpp │ ├── script_list.cpp │ ├── script_list.hpp │ ├── script_log.cpp │ ├── script_log.hpp │ ├── script_map.cpp │ ├── script_map.hpp │ ├── script_marine.cpp │ ├── script_marine.hpp │ ├── script_news.cpp │ ├── script_news.hpp │ ├── script_object.cpp │ ├── script_object.hpp │ ├── script_order.cpp │ ├── script_order.hpp │ ├── script_rail.cpp │ ├── script_rail.hpp │ ├── script_railtypelist.cpp │ ├── script_railtypelist.hpp │ ├── script_road.cpp │ ├── script_road.hpp │ ├── script_roadtypelist.cpp │ ├── script_roadtypelist.hpp │ ├── script_sign.cpp │ ├── script_sign.hpp │ ├── script_signlist.cpp │ ├── script_signlist.hpp │ ├── script_station.cpp │ ├── script_station.hpp │ ├── script_stationlist.cpp │ ├── script_stationlist.hpp │ ├── script_story_page.cpp │ ├── script_story_page.hpp │ ├── script_storypageelementlist.cpp │ ├── script_storypageelementlist.hpp │ ├── script_storypagelist.cpp │ ├── script_storypagelist.hpp │ ├── script_subsidy.cpp │ ├── script_subsidy.hpp │ ├── script_subsidylist.cpp │ ├── script_subsidylist.hpp │ ├── script_testmode.cpp │ ├── script_testmode.hpp │ ├── script_text.cpp │ ├── script_text.hpp │ ├── script_tile.cpp │ ├── script_tile.hpp │ ├── script_tilelist.cpp │ ├── script_tilelist.hpp │ ├── script_town.cpp │ ├── script_town.hpp │ ├── script_townlist.cpp │ ├── script_townlist.hpp │ ├── script_tunnel.cpp │ ├── script_tunnel.hpp │ ├── script_types.hpp │ ├── script_vehicle.cpp │ ├── script_vehicle.hpp │ ├── script_vehiclelist.cpp │ ├── script_vehiclelist.hpp │ ├── script_viewport.cpp │ ├── script_viewport.hpp │ ├── script_waypoint.cpp │ ├── script_waypoint.hpp │ ├── script_waypointlist.cpp │ ├── script_waypointlist.hpp │ ├── script_window.cpp │ ├── script_window.hpp │ ├── squirrel_export.awk │ ├── squirrel_export.sh │ ├── squirrel_export.vbs │ └── template │ │ ├── template_accounting.hpp.sq │ │ ├── template_admin.hpp.sq │ │ ├── template_airport.hpp.sq │ │ ├── template_base.hpp.sq │ │ ├── template_basestation.hpp.sq │ │ ├── template_bridge.hpp.sq │ │ ├── template_bridgelist.hpp.sq │ │ ├── template_cargo.hpp.sq │ │ ├── template_cargolist.hpp.sq │ │ ├── template_cargomonitor.hpp.sq │ │ ├── template_client.hpp.sq │ │ ├── template_clientlist.hpp.sq │ │ ├── template_company.hpp.sq │ │ ├── template_companymode.hpp.sq │ │ ├── template_date.hpp.sq │ │ ├── template_depotlist.hpp.sq │ │ ├── template_engine.hpp.sq │ │ ├── template_enginelist.hpp.sq │ │ ├── template_error.hpp.sq │ │ ├── template_event.hpp.sq │ │ ├── template_event_types.hpp.sq │ │ ├── template_execmode.hpp.sq │ │ ├── template_game.hpp.sq │ │ ├── template_gamesettings.hpp.sq │ │ ├── template_goal.hpp.sq │ │ ├── template_group.hpp.sq │ │ ├── template_grouplist.hpp.sq │ │ ├── template_industry.hpp.sq │ │ ├── template_industrylist.hpp.sq │ │ ├── template_industrytype.hpp.sq │ │ ├── template_industrytypelist.hpp.sq │ │ ├── template_infrastructure.hpp.sq │ │ ├── template_list.hpp.sq │ │ ├── template_log.hpp.sq │ │ ├── template_map.hpp.sq │ │ ├── template_marine.hpp.sq │ │ ├── template_news.hpp.sq │ │ ├── template_order.hpp.sq │ │ ├── template_rail.hpp.sq │ │ ├── template_railtypelist.hpp.sq │ │ ├── template_road.hpp.sq │ │ ├── template_roadtypelist.hpp.sq │ │ ├── template_sign.hpp.sq │ │ ├── template_signlist.hpp.sq │ │ ├── template_station.hpp.sq │ │ ├── template_stationlist.hpp.sq │ │ ├── template_story_page.hpp.sq │ │ ├── template_storypageelementlist.hpp.sq │ │ ├── template_storypagelist.hpp.sq │ │ ├── template_subsidy.hpp.sq │ │ ├── template_subsidylist.hpp.sq │ │ ├── template_testmode.hpp.sq │ │ ├── template_text.hpp.sq │ │ ├── template_tile.hpp.sq │ │ ├── template_tilelist.hpp.sq │ │ ├── template_town.hpp.sq │ │ ├── template_townlist.hpp.sq │ │ ├── template_tunnel.hpp.sq │ │ ├── template_vehicle.hpp.sq │ │ ├── template_vehiclelist.hpp.sq │ │ ├── template_viewport.hpp.sq │ │ ├── template_waypoint.hpp.sq │ │ ├── template_waypointlist.hpp.sq │ │ └── template_window.hpp.sq ├── script_config.cpp ├── script_config.hpp ├── script_fatalerror.hpp ├── script_info.cpp ├── script_info.hpp ├── script_info_dummy.cpp ├── script_instance.cpp ├── script_instance.hpp ├── script_scanner.cpp ├── script_scanner.hpp ├── script_storage.hpp ├── script_suspend.hpp ├── squirrel.cpp ├── squirrel.hpp ├── squirrel_class.hpp ├── squirrel_helper.hpp ├── squirrel_helper_type.hpp ├── squirrel_std.cpp └── squirrel_std.hpp ├── settings.cpp ├── settings_func.h ├── settings_gui.cpp ├── settings_gui.h ├── settings_internal.h ├── settings_type.h ├── settingsgen └── settingsgen.cpp ├── ship.h ├── ship_cmd.cpp ├── ship_gui.cpp ├── signal.cpp ├── signal_func.h ├── signal_type.h ├── signs.cpp ├── signs_base.h ├── signs_cmd.cpp ├── signs_func.h ├── signs_gui.cpp ├── signs_type.h ├── slope_func.h ├── slope_type.h ├── smallmap_gui.cpp ├── smallmap_gui.h ├── sortlist_type.h ├── sound.cpp ├── sound ├── allegro_s.cpp ├── allegro_s.h ├── cocoa_s.cpp ├── cocoa_s.h ├── null_s.cpp ├── null_s.h ├── sdl2_s.cpp ├── sdl_s.cpp ├── sdl_s.h ├── sound_driver.hpp ├── win32_s.cpp ├── win32_s.h ├── xaudio2_s.cpp └── xaudio2_s.h ├── sound_func.h ├── sound_type.h ├── sprite.cpp ├── sprite.h ├── spritecache.cpp ├── spritecache.h ├── spriteloader ├── grf.cpp ├── grf.hpp └── spriteloader.hpp ├── station.cpp ├── station_base.h ├── station_cmd.cpp ├── station_func.h ├── station_gui.cpp ├── station_gui.h ├── station_kdtree.h ├── station_map.h ├── station_type.h ├── statusbar_gui.cpp ├── statusbar_gui.h ├── stdafx.h ├── story.cpp ├── story_base.h ├── story_gui.cpp ├── story_type.h ├── strgen ├── strgen.cpp ├── strgen.h └── strgen_base.cpp ├── string.cpp ├── string_base.h ├── string_func.h ├── string_type.h ├── stringfilter.cpp ├── stringfilter_type.h ├── strings.cpp ├── strings_func.h ├── strings_type.h ├── subsidy.cpp ├── subsidy_base.h ├── subsidy_func.h ├── subsidy_gui.cpp ├── subsidy_type.h ├── table ├── airport_defaults.h ├── airport_movement.h ├── airporttile_ids.h ├── airporttiles.h ├── animcursors.h ├── autorail.h ├── bridge_land.h ├── build_industry.h ├── cargo_const.h ├── clear_land.h ├── company_settings.ini ├── control_codes.h ├── currency_settings.ini ├── elrail_data.h ├── engines.h ├── gameopt_settings.ini ├── genland.h ├── heightmap_colours.h ├── industry_land.h ├── landscape_sprite.h ├── misc_settings.ini ├── newgrf_debug_data.h ├── object_land.h ├── palette_convert.h ├── palettes.h ├── pricebase.h ├── railtypes.h ├── road_land.h ├── roadtypes.h ├── roadveh_movement.h ├── settings.h.postamble ├── settings.h.preamble ├── settings.ini ├── sprites.h ├── station_land.h ├── strgen_tables.h ├── string_colours.h ├── town_land.h ├── townname.h ├── track_land.h ├── train_cmd.h ├── tree_land.h ├── unicode.h ├── water_land.h ├── win32_settings.ini └── window_settings.ini ├── tar_type.h ├── terraform_cmd.cpp ├── terraform_gui.cpp ├── terraform_gui.h ├── textbuf.cpp ├── textbuf_gui.h ├── textbuf_type.h ├── texteff.cpp ├── texteff.hpp ├── textfile_gui.cpp ├── textfile_gui.h ├── textfile_type.h ├── tgp.cpp ├── tgp.h ├── thread.h ├── tile_cmd.h ├── tile_map.cpp ├── tile_map.h ├── tile_type.h ├── tilearea.cpp ├── tilearea_type.h ├── tilehighlight_func.h ├── tilehighlight_type.h ├── tilematrix_type.hpp ├── timetable.h ├── timetable_cmd.cpp ├── timetable_gui.cpp ├── toolbar_gui.cpp ├── toolbar_gui.h ├── town.h ├── town_cmd.cpp ├── town_gui.cpp ├── town_kdtree.h ├── town_map.h ├── town_type.h ├── townname.cpp ├── townname_func.h ├── townname_type.h ├── track_func.h ├── track_type.h ├── train.h ├── train_cmd.cpp ├── train_gui.cpp ├── transparency.h ├── transparency_gui.cpp ├── transparency_gui.h ├── transport_type.h ├── tree_cmd.cpp ├── tree_gui.cpp ├── tree_map.h ├── tunnel_map.cpp ├── tunnel_map.h ├── tunnelbridge.h ├── tunnelbridge_cmd.cpp ├── tunnelbridge_map.h ├── vehicle.cpp ├── vehicle_base.h ├── vehicle_cmd.cpp ├── vehicle_func.h ├── vehicle_gui.cpp ├── vehicle_gui.h ├── vehicle_gui_base.h ├── vehicle_type.h ├── vehiclelist.cpp ├── vehiclelist.h ├── video ├── allegro_v.cpp ├── allegro_v.h ├── cocoa │ ├── cocoa_keys.h │ ├── cocoa_v.h │ ├── cocoa_v.mm │ ├── event.mm │ ├── fullscreen.mm │ ├── wnd_quartz.mm │ └── wnd_quickdraw.mm ├── dedicated_v.cpp ├── dedicated_v.h ├── null_v.cpp ├── null_v.h ├── sdl2_v.cpp ├── sdl2_v.h ├── sdl_v.cpp ├── sdl_v.h ├── video_driver.hpp ├── win32_v.cpp └── win32_v.h ├── viewport.cpp ├── viewport_func.h ├── viewport_gui.cpp ├── viewport_kdtree.h ├── viewport_sprite_sorter.h ├── viewport_sprite_sorter_sse4.cpp ├── viewport_type.h ├── void_cmd.cpp ├── void_map.h ├── water.h ├── water_cmd.cpp ├── water_map.h ├── waypoint.cpp ├── waypoint_base.h ├── waypoint_cmd.cpp ├── waypoint_func.h ├── waypoint_gui.cpp ├── widget.cpp ├── widget_type.h ├── widgets ├── ai_widget.h ├── airport_widget.h ├── autoreplace_widget.h ├── bootstrap_widget.h ├── bridge_widget.h ├── build_vehicle_widget.h ├── cheat_widget.h ├── company_widget.h ├── console_widget.h ├── date_widget.h ├── depot_widget.h ├── dock_widget.h ├── dropdown.cpp ├── dropdown_func.h ├── dropdown_type.h ├── dropdown_widget.h ├── engine_widget.h ├── error_widget.h ├── fios_widget.h ├── framerate_widget.h ├── genworld_widget.h ├── goal_widget.h ├── graph_widget.h ├── group_widget.h ├── highscore_widget.h ├── industry_widget.h ├── intro_widget.h ├── link_graph_legend_widget.h ├── main_widget.h ├── misc_widget.h ├── music_widget.h ├── network_chat_widget.h ├── network_content_widget.h ├── network_widget.h ├── newgrf_debug_widget.h ├── newgrf_widget.h ├── news_widget.h ├── object_widget.h ├── order_widget.h ├── osk_widget.h ├── rail_widget.h ├── road_widget.h ├── screenshot_widget.h ├── settings_widget.h ├── sign_widget.h ├── smallmap_widget.h ├── station_widget.h ├── statusbar_widget.h ├── story_widget.h ├── subsidy_widget.h ├── terraform_widget.h ├── timetable_widget.h ├── toolbar_widget.h ├── town_widget.h ├── transparency_widget.h ├── tree_widget.h ├── vehicle_widget.h ├── viewport_widget.h └── waypoint_widget.h ├── window.cpp ├── window_func.h ├── window_gui.h ├── window_type.h ├── zoom_func.h └── zoom_type.h /.dorpsgek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/.dorpsgek.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.openttd.org/donate.html 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/.hgignore -------------------------------------------------------------------------------- /COMPILING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/COMPILING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/COPYING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/CREDITS.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/Doxyfile -------------------------------------------------------------------------------- /Makefile.bundle.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/Makefile.bundle.in -------------------------------------------------------------------------------- /Makefile.grf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/Makefile.grf.in -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/Makefile.in -------------------------------------------------------------------------------- /Makefile.lang.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/Makefile.lang.in -------------------------------------------------------------------------------- /Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/Makefile.msvc -------------------------------------------------------------------------------- /Makefile.setting.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/Makefile.setting.in -------------------------------------------------------------------------------- /Makefile.src.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/Makefile.src.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/azure-pipelines-ci.yml -------------------------------------------------------------------------------- /backport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/backport.sh -------------------------------------------------------------------------------- /bin/ai/compat_0.7.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_0.7.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.0.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.0.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.1.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.1.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.10.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.10.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.11.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.11.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.2.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.2.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.3.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.3.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.4.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.4.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.5.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.5.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.6.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.6.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.7.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.7.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.8.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.8.nut -------------------------------------------------------------------------------- /bin/ai/compat_1.9.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/compat_1.9.nut -------------------------------------------------------------------------------- /bin/ai/regression/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/regression/run.sh -------------------------------------------------------------------------------- /bin/ai/regression/run.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/ai/regression/run.vbs -------------------------------------------------------------------------------- /bin/ai/regression/tst_regression/require.nut: -------------------------------------------------------------------------------- 1 | print(" Required this file"); 2 | 3 | -------------------------------------------------------------------------------- /bin/baseset/openttd.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/baseset/openttd.grf -------------------------------------------------------------------------------- /bin/baseset/opntitle.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/baseset/opntitle.dat -------------------------------------------------------------------------------- /bin/baseset/orig_extra.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/baseset/orig_extra.grf -------------------------------------------------------------------------------- /bin/game/compat_1.10.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.10.nut -------------------------------------------------------------------------------- /bin/game/compat_1.11.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.11.nut -------------------------------------------------------------------------------- /bin/game/compat_1.2.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.2.nut -------------------------------------------------------------------------------- /bin/game/compat_1.3.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.3.nut -------------------------------------------------------------------------------- /bin/game/compat_1.4.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.4.nut -------------------------------------------------------------------------------- /bin/game/compat_1.5.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.5.nut -------------------------------------------------------------------------------- /bin/game/compat_1.6.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.6.nut -------------------------------------------------------------------------------- /bin/game/compat_1.7.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.7.nut -------------------------------------------------------------------------------- /bin/game/compat_1.8.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.8.nut -------------------------------------------------------------------------------- /bin/game/compat_1.9.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/game/compat_1.9.nut -------------------------------------------------------------------------------- /bin/scripts/game_start.scr.example: -------------------------------------------------------------------------------- 1 | start_ai MyAI 2 | 3 | -------------------------------------------------------------------------------- /bin/scripts/on_server_connect.scr.example: -------------------------------------------------------------------------------- 1 | # Show a MOTD 2 | say "Welcome..." 3 | -------------------------------------------------------------------------------- /bin/scripts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/bin/scripts/readme.txt -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/changelog.txt -------------------------------------------------------------------------------- /config.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/config.lib -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/configure -------------------------------------------------------------------------------- /docs/admin_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/admin_network.md -------------------------------------------------------------------------------- /docs/debugging_desyncs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/debugging_desyncs.md -------------------------------------------------------------------------------- /docs/desync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/desync.md -------------------------------------------------------------------------------- /docs/elrail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/elrail.svg -------------------------------------------------------------------------------- /docs/elrail_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/elrail_tile.png -------------------------------------------------------------------------------- /docs/elrail_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/elrail_track.png -------------------------------------------------------------------------------- /docs/landscape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/landscape.html -------------------------------------------------------------------------------- /docs/landscape_grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/landscape_grid.html -------------------------------------------------------------------------------- /docs/linkgraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/linkgraph.md -------------------------------------------------------------------------------- /docs/multiplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/multiplayer.md -------------------------------------------------------------------------------- /docs/obg_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/obg_format.txt -------------------------------------------------------------------------------- /docs/obm_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/obm_format.txt -------------------------------------------------------------------------------- /docs/obs_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/obs_format.txt -------------------------------------------------------------------------------- /docs/openttd.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/openttd.6 -------------------------------------------------------------------------------- /docs/palettes/openttd.gpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/palettes/openttd.gpl -------------------------------------------------------------------------------- /docs/palettes/palette.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/palettes/palette.act -------------------------------------------------------------------------------- /docs/tileh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/docs/tileh.png -------------------------------------------------------------------------------- /findversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/findversion.sh -------------------------------------------------------------------------------- /known-bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/known-bugs.txt -------------------------------------------------------------------------------- /media/baseset/no_music.obm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/no_music.obm -------------------------------------------------------------------------------- /media/baseset/no_sound.obs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/no_sound.obs -------------------------------------------------------------------------------- /media/baseset/orig_dos.obg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/orig_dos.obg -------------------------------------------------------------------------------- /media/baseset/orig_dos.obm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/orig_dos.obm -------------------------------------------------------------------------------- /media/baseset/orig_dos.obs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/orig_dos.obs -------------------------------------------------------------------------------- /media/baseset/orig_tto.obm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/orig_tto.obm -------------------------------------------------------------------------------- /media/baseset/orig_win.obg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/orig_win.obg -------------------------------------------------------------------------------- /media/baseset/orig_win.obm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/orig_win.obm -------------------------------------------------------------------------------- /media/baseset/orig_win.obs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/baseset/orig_win.obs -------------------------------------------------------------------------------- /media/extra_grf/2ccmap.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/2ccmap.nfo -------------------------------------------------------------------------------- /media/extra_grf/canals.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/canals.nfo -------------------------------------------------------------------------------- /media/extra_grf/canals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/canals.png -------------------------------------------------------------------------------- /media/extra_grf/chars.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/chars.nfo -------------------------------------------------------------------------------- /media/extra_grf/chars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/chars.png -------------------------------------------------------------------------------- /media/extra_grf/flags.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/flags.nfo -------------------------------------------------------------------------------- /media/extra_grf/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/flags.png -------------------------------------------------------------------------------- /media/extra_grf/mono.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/mono.nfo -------------------------------------------------------------------------------- /media/extra_grf/mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/mono.png -------------------------------------------------------------------------------- /media/extra_grf/oneway.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/oneway.nfo -------------------------------------------------------------------------------- /media/extra_grf/oneway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/oneway.png -------------------------------------------------------------------------------- /media/extra_grf/shore.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/shore.nfo -------------------------------------------------------------------------------- /media/extra_grf/shore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/extra_grf/shore.png -------------------------------------------------------------------------------- /media/openttd.128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.128.png -------------------------------------------------------------------------------- /media/openttd.16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.16.png -------------------------------------------------------------------------------- /media/openttd.256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.256.png -------------------------------------------------------------------------------- /media/openttd.32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.32.bmp -------------------------------------------------------------------------------- /media/openttd.32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.32.png -------------------------------------------------------------------------------- /media/openttd.32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.32.xpm -------------------------------------------------------------------------------- /media/openttd.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.48.png -------------------------------------------------------------------------------- /media/openttd.64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.64.png -------------------------------------------------------------------------------- /media/openttd.64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.64.xpm -------------------------------------------------------------------------------- /media/openttd.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.desktop.in -------------------------------------------------------------------------------- /media/openttd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.ico -------------------------------------------------------------------------------- /media/openttd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/media/openttd.svg -------------------------------------------------------------------------------- /os/debian/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/NEWS -------------------------------------------------------------------------------- /os/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/README.Debian -------------------------------------------------------------------------------- /os/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/changelog -------------------------------------------------------------------------------- /os/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /os/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/control -------------------------------------------------------------------------------- /os/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/copyright -------------------------------------------------------------------------------- /os/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/gbp.conf -------------------------------------------------------------------------------- /os/debian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/menu -------------------------------------------------------------------------------- /os/debian/openttd-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/openttd-wrapper -------------------------------------------------------------------------------- /os/debian/patches/series: -------------------------------------------------------------------------------- 1 | run-openttd-wrapper.patch 2 | -------------------------------------------------------------------------------- /os/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/rules -------------------------------------------------------------------------------- /os/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /os/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/debian/watch -------------------------------------------------------------------------------- /os/macosx/openttd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/macosx/openttd.icns -------------------------------------------------------------------------------- /os/macosx/plistgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/macosx/plistgen.sh -------------------------------------------------------------------------------- /os/macosx/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/macosx/splash.png -------------------------------------------------------------------------------- /os/morphos/icons/docs.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/morphos/icons/docs.info -------------------------------------------------------------------------------- /os/os2/build_lang.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/os2/build_lang.cmd -------------------------------------------------------------------------------- /os/os2/dedicated.cmd: -------------------------------------------------------------------------------- 1 | start /n /win openttd.exe -D %1 %2 %3 %4 %5 %6 %7 %8 %9 2 | -------------------------------------------------------------------------------- /os/os2/openttd.wpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/os2/openttd.wpj -------------------------------------------------------------------------------- /os/os2/svn_version.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/os2/svn_version.cmd -------------------------------------------------------------------------------- /os/os2/svnver1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/os2/svnver1.c -------------------------------------------------------------------------------- /os/os2/svnver2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/os2/svnver2.c -------------------------------------------------------------------------------- /os/rpm/openttd-rpmlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/rpm/openttd-rpmlintrc -------------------------------------------------------------------------------- /os/rpm/openttd.changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/rpm/openttd.changes -------------------------------------------------------------------------------- /os/rpm/openttd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/os/rpm/openttd.spec -------------------------------------------------------------------------------- /projects/gen-kdev4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/projects/gen-kdev4.sh -------------------------------------------------------------------------------- /projects/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/projects/generate -------------------------------------------------------------------------------- /projects/generate.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/projects/generate.vbs -------------------------------------------------------------------------------- /projects/openttd_vs140.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/projects/openttd_vs140.sln -------------------------------------------------------------------------------- /projects/openttd_vs141.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/projects/openttd_vs141.sln -------------------------------------------------------------------------------- /projects/openttd_vs142.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/projects/openttd_vs142.sln -------------------------------------------------------------------------------- /projects/regression.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/projects/regression.bat -------------------------------------------------------------------------------- /source.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/source.list -------------------------------------------------------------------------------- /src/3rdparty/md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/3rdparty/md5/md5.cpp -------------------------------------------------------------------------------- /src/3rdparty/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/3rdparty/md5/md5.h -------------------------------------------------------------------------------- /src/ai/ai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai.hpp -------------------------------------------------------------------------------- /src/ai/ai_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_config.cpp -------------------------------------------------------------------------------- /src/ai/ai_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_config.hpp -------------------------------------------------------------------------------- /src/ai/ai_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_core.cpp -------------------------------------------------------------------------------- /src/ai/ai_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_gui.cpp -------------------------------------------------------------------------------- /src/ai/ai_gui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_gui.hpp -------------------------------------------------------------------------------- /src/ai/ai_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_info.cpp -------------------------------------------------------------------------------- /src/ai/ai_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_info.hpp -------------------------------------------------------------------------------- /src/ai/ai_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_instance.cpp -------------------------------------------------------------------------------- /src/ai/ai_instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_instance.hpp -------------------------------------------------------------------------------- /src/ai/ai_scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_scanner.cpp -------------------------------------------------------------------------------- /src/ai/ai_scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ai/ai_scanner.hpp -------------------------------------------------------------------------------- /src/aircraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/aircraft.h -------------------------------------------------------------------------------- /src/aircraft_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/aircraft_cmd.cpp -------------------------------------------------------------------------------- /src/aircraft_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/aircraft_gui.cpp -------------------------------------------------------------------------------- /src/airport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/airport.cpp -------------------------------------------------------------------------------- /src/airport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/airport.h -------------------------------------------------------------------------------- /src/airport_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/airport_gui.cpp -------------------------------------------------------------------------------- /src/animated_tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/animated_tile.cpp -------------------------------------------------------------------------------- /src/animated_tile_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/animated_tile_func.h -------------------------------------------------------------------------------- /src/articulated_vehicles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/articulated_vehicles.h -------------------------------------------------------------------------------- /src/autoreplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/autoreplace.cpp -------------------------------------------------------------------------------- /src/autoreplace_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/autoreplace_base.h -------------------------------------------------------------------------------- /src/autoreplace_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/autoreplace_cmd.cpp -------------------------------------------------------------------------------- /src/autoreplace_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/autoreplace_func.h -------------------------------------------------------------------------------- /src/autoreplace_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/autoreplace_gui.cpp -------------------------------------------------------------------------------- /src/autoreplace_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/autoreplace_gui.h -------------------------------------------------------------------------------- /src/autoreplace_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/autoreplace_type.h -------------------------------------------------------------------------------- /src/autoslope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/autoslope.h -------------------------------------------------------------------------------- /src/base_consist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/base_consist.cpp -------------------------------------------------------------------------------- /src/base_consist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/base_consist.h -------------------------------------------------------------------------------- /src/base_media_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/base_media_base.h -------------------------------------------------------------------------------- /src/base_media_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/base_media_func.h -------------------------------------------------------------------------------- /src/base_station_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/base_station_base.h -------------------------------------------------------------------------------- /src/bitmap_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/bitmap_type.h -------------------------------------------------------------------------------- /src/blitter/32bpp_anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/32bpp_anim.cpp -------------------------------------------------------------------------------- /src/blitter/32bpp_anim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/32bpp_anim.hpp -------------------------------------------------------------------------------- /src/blitter/32bpp_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/32bpp_base.cpp -------------------------------------------------------------------------------- /src/blitter/32bpp_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/32bpp_base.hpp -------------------------------------------------------------------------------- /src/blitter/32bpp_sse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/32bpp_sse2.cpp -------------------------------------------------------------------------------- /src/blitter/32bpp_sse2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/32bpp_sse2.hpp -------------------------------------------------------------------------------- /src/blitter/32bpp_sse4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/32bpp_sse4.cpp -------------------------------------------------------------------------------- /src/blitter/32bpp_sse4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/32bpp_sse4.hpp -------------------------------------------------------------------------------- /src/blitter/8bpp_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/8bpp_base.cpp -------------------------------------------------------------------------------- /src/blitter/8bpp_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/8bpp_base.hpp -------------------------------------------------------------------------------- /src/blitter/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/base.hpp -------------------------------------------------------------------------------- /src/blitter/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/common.hpp -------------------------------------------------------------------------------- /src/blitter/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/factory.hpp -------------------------------------------------------------------------------- /src/blitter/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/null.cpp -------------------------------------------------------------------------------- /src/blitter/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/blitter/null.hpp -------------------------------------------------------------------------------- /src/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/bmp.cpp -------------------------------------------------------------------------------- /src/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/bmp.h -------------------------------------------------------------------------------- /src/bootstrap_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/bootstrap_gui.cpp -------------------------------------------------------------------------------- /src/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/bridge.h -------------------------------------------------------------------------------- /src/bridge_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/bridge_gui.cpp -------------------------------------------------------------------------------- /src/bridge_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/bridge_map.cpp -------------------------------------------------------------------------------- /src/bridge_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/bridge_map.h -------------------------------------------------------------------------------- /src/build_vehicle_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/build_vehicle_gui.cpp -------------------------------------------------------------------------------- /src/cargo_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargo_type.h -------------------------------------------------------------------------------- /src/cargoaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargoaction.cpp -------------------------------------------------------------------------------- /src/cargoaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargoaction.h -------------------------------------------------------------------------------- /src/cargomonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargomonitor.cpp -------------------------------------------------------------------------------- /src/cargomonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargomonitor.h -------------------------------------------------------------------------------- /src/cargopacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargopacket.cpp -------------------------------------------------------------------------------- /src/cargopacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargopacket.h -------------------------------------------------------------------------------- /src/cargotype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargotype.cpp -------------------------------------------------------------------------------- /src/cargotype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cargotype.h -------------------------------------------------------------------------------- /src/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cheat.cpp -------------------------------------------------------------------------------- /src/cheat_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cheat_func.h -------------------------------------------------------------------------------- /src/cheat_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cheat_gui.cpp -------------------------------------------------------------------------------- /src/cheat_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cheat_type.h -------------------------------------------------------------------------------- /src/clear_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/clear_cmd.cpp -------------------------------------------------------------------------------- /src/clear_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/clear_func.h -------------------------------------------------------------------------------- /src/clear_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/clear_map.h -------------------------------------------------------------------------------- /src/cmd_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cmd_helper.h -------------------------------------------------------------------------------- /src/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/command.cpp -------------------------------------------------------------------------------- /src/command_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/command_func.h -------------------------------------------------------------------------------- /src/command_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/command_type.h -------------------------------------------------------------------------------- /src/company_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/company_base.h -------------------------------------------------------------------------------- /src/company_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/company_cmd.cpp -------------------------------------------------------------------------------- /src/company_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/company_func.h -------------------------------------------------------------------------------- /src/company_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/company_gui.cpp -------------------------------------------------------------------------------- /src/company_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/company_gui.h -------------------------------------------------------------------------------- /src/company_manager_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/company_manager_face.h -------------------------------------------------------------------------------- /src/company_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/company_type.h -------------------------------------------------------------------------------- /src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/console.cpp -------------------------------------------------------------------------------- /src/console_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/console_cmds.cpp -------------------------------------------------------------------------------- /src/console_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/console_func.h -------------------------------------------------------------------------------- /src/console_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/console_gui.cpp -------------------------------------------------------------------------------- /src/console_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/console_gui.h -------------------------------------------------------------------------------- /src/console_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/console_internal.h -------------------------------------------------------------------------------- /src/console_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/console_type.h -------------------------------------------------------------------------------- /src/core/alloc_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/alloc_func.cpp -------------------------------------------------------------------------------- /src/core/alloc_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/alloc_func.hpp -------------------------------------------------------------------------------- /src/core/alloc_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/alloc_type.hpp -------------------------------------------------------------------------------- /src/core/backup_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/backup_type.hpp -------------------------------------------------------------------------------- /src/core/bitmath_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/bitmath_func.cpp -------------------------------------------------------------------------------- /src/core/bitmath_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/bitmath_func.hpp -------------------------------------------------------------------------------- /src/core/endian_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/endian_func.hpp -------------------------------------------------------------------------------- /src/core/endian_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/endian_type.hpp -------------------------------------------------------------------------------- /src/core/enum_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/enum_type.hpp -------------------------------------------------------------------------------- /src/core/geometry_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/geometry_func.cpp -------------------------------------------------------------------------------- /src/core/geometry_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/geometry_func.hpp -------------------------------------------------------------------------------- /src/core/geometry_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/geometry_type.hpp -------------------------------------------------------------------------------- /src/core/kdtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/kdtree.hpp -------------------------------------------------------------------------------- /src/core/math_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/math_func.cpp -------------------------------------------------------------------------------- /src/core/math_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/math_func.hpp -------------------------------------------------------------------------------- /src/core/mem_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/mem_func.hpp -------------------------------------------------------------------------------- /src/core/multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/multimap.hpp -------------------------------------------------------------------------------- /src/core/pool_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/pool_func.cpp -------------------------------------------------------------------------------- /src/core/pool_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/pool_func.hpp -------------------------------------------------------------------------------- /src/core/pool_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/pool_type.hpp -------------------------------------------------------------------------------- /src/core/random_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/random_func.cpp -------------------------------------------------------------------------------- /src/core/random_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/random_func.hpp -------------------------------------------------------------------------------- /src/core/smallmap_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/smallmap_type.hpp -------------------------------------------------------------------------------- /src/core/smallvec_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/core/smallvec_type.hpp -------------------------------------------------------------------------------- /src/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cpu.cpp -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/cpu.h -------------------------------------------------------------------------------- /src/crashlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/crashlog.cpp -------------------------------------------------------------------------------- /src/crashlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/crashlog.h -------------------------------------------------------------------------------- /src/currency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/currency.cpp -------------------------------------------------------------------------------- /src/currency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/currency.h -------------------------------------------------------------------------------- /src/date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/date.cpp -------------------------------------------------------------------------------- /src/date_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/date_func.h -------------------------------------------------------------------------------- /src/date_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/date_gui.cpp -------------------------------------------------------------------------------- /src/date_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/date_gui.h -------------------------------------------------------------------------------- /src/date_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/date_type.h -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/dedicated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/dedicated.cpp -------------------------------------------------------------------------------- /src/depend/depend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/depend/depend.cpp -------------------------------------------------------------------------------- /src/depot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/depot.cpp -------------------------------------------------------------------------------- /src/depot_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/depot_base.h -------------------------------------------------------------------------------- /src/depot_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/depot_cmd.cpp -------------------------------------------------------------------------------- /src/depot_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/depot_func.h -------------------------------------------------------------------------------- /src/depot_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/depot_gui.cpp -------------------------------------------------------------------------------- /src/depot_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/depot_map.h -------------------------------------------------------------------------------- /src/depot_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/depot_type.h -------------------------------------------------------------------------------- /src/direction_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/direction_func.h -------------------------------------------------------------------------------- /src/direction_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/direction_type.h -------------------------------------------------------------------------------- /src/disaster_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/disaster_vehicle.cpp -------------------------------------------------------------------------------- /src/disaster_vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/disaster_vehicle.h -------------------------------------------------------------------------------- /src/dock_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/dock_gui.cpp -------------------------------------------------------------------------------- /src/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/driver.cpp -------------------------------------------------------------------------------- /src/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/driver.h -------------------------------------------------------------------------------- /src/economy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/economy.cpp -------------------------------------------------------------------------------- /src/economy_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/economy_base.h -------------------------------------------------------------------------------- /src/economy_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/economy_func.h -------------------------------------------------------------------------------- /src/economy_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/economy_type.h -------------------------------------------------------------------------------- /src/effectvehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/effectvehicle.cpp -------------------------------------------------------------------------------- /src/effectvehicle_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/effectvehicle_base.h -------------------------------------------------------------------------------- /src/effectvehicle_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/effectvehicle_func.h -------------------------------------------------------------------------------- /src/elrail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/elrail.cpp -------------------------------------------------------------------------------- /src/elrail_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/elrail_func.h -------------------------------------------------------------------------------- /src/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/engine.cpp -------------------------------------------------------------------------------- /src/engine_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/engine_base.h -------------------------------------------------------------------------------- /src/engine_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/engine_func.h -------------------------------------------------------------------------------- /src/engine_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/engine_gui.cpp -------------------------------------------------------------------------------- /src/engine_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/engine_gui.h -------------------------------------------------------------------------------- /src/engine_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/engine_type.h -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/error.h -------------------------------------------------------------------------------- /src/error_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/error_gui.cpp -------------------------------------------------------------------------------- /src/fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fileio.cpp -------------------------------------------------------------------------------- /src/fileio_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fileio_func.h -------------------------------------------------------------------------------- /src/fileio_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fileio_type.h -------------------------------------------------------------------------------- /src/fios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fios.cpp -------------------------------------------------------------------------------- /src/fios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fios.h -------------------------------------------------------------------------------- /src/fios_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fios_gui.cpp -------------------------------------------------------------------------------- /src/fontcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fontcache.cpp -------------------------------------------------------------------------------- /src/fontcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fontcache.h -------------------------------------------------------------------------------- /src/fontdetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fontdetection.cpp -------------------------------------------------------------------------------- /src/fontdetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/fontdetection.h -------------------------------------------------------------------------------- /src/framerate_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/framerate_gui.cpp -------------------------------------------------------------------------------- /src/framerate_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/framerate_type.h -------------------------------------------------------------------------------- /src/game/game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game.hpp -------------------------------------------------------------------------------- /src/game/game_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_config.cpp -------------------------------------------------------------------------------- /src/game/game_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_config.hpp -------------------------------------------------------------------------------- /src/game/game_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_core.cpp -------------------------------------------------------------------------------- /src/game/game_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_info.cpp -------------------------------------------------------------------------------- /src/game/game_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_info.hpp -------------------------------------------------------------------------------- /src/game/game_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_instance.cpp -------------------------------------------------------------------------------- /src/game/game_instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_instance.hpp -------------------------------------------------------------------------------- /src/game/game_scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_scanner.cpp -------------------------------------------------------------------------------- /src/game/game_scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_scanner.hpp -------------------------------------------------------------------------------- /src/game/game_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_text.cpp -------------------------------------------------------------------------------- /src/game/game_text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/game/game_text.hpp -------------------------------------------------------------------------------- /src/gamelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gamelog.cpp -------------------------------------------------------------------------------- /src/gamelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gamelog.h -------------------------------------------------------------------------------- /src/gamelog_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gamelog_internal.h -------------------------------------------------------------------------------- /src/genworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/genworld.cpp -------------------------------------------------------------------------------- /src/genworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/genworld.h -------------------------------------------------------------------------------- /src/genworld_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/genworld_gui.cpp -------------------------------------------------------------------------------- /src/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gfx.cpp -------------------------------------------------------------------------------- /src/gfx_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gfx_func.h -------------------------------------------------------------------------------- /src/gfx_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gfx_layout.cpp -------------------------------------------------------------------------------- /src/gfx_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gfx_layout.h -------------------------------------------------------------------------------- /src/gfx_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gfx_type.h -------------------------------------------------------------------------------- /src/gfxinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gfxinit.cpp -------------------------------------------------------------------------------- /src/gfxinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gfxinit.h -------------------------------------------------------------------------------- /src/goal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/goal.cpp -------------------------------------------------------------------------------- /src/goal_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/goal_base.h -------------------------------------------------------------------------------- /src/goal_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/goal_gui.cpp -------------------------------------------------------------------------------- /src/goal_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/goal_type.h -------------------------------------------------------------------------------- /src/graph_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/graph_gui.cpp -------------------------------------------------------------------------------- /src/graph_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/graph_gui.h -------------------------------------------------------------------------------- /src/ground_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ground_vehicle.cpp -------------------------------------------------------------------------------- /src/ground_vehicle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ground_vehicle.hpp -------------------------------------------------------------------------------- /src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/group.h -------------------------------------------------------------------------------- /src/group_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/group_cmd.cpp -------------------------------------------------------------------------------- /src/group_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/group_gui.cpp -------------------------------------------------------------------------------- /src/group_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/group_gui.h -------------------------------------------------------------------------------- /src/group_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/group_type.h -------------------------------------------------------------------------------- /src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/gui.h -------------------------------------------------------------------------------- /src/guitimer_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/guitimer_func.h -------------------------------------------------------------------------------- /src/heightmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/heightmap.cpp -------------------------------------------------------------------------------- /src/heightmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/heightmap.h -------------------------------------------------------------------------------- /src/highscore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/highscore.cpp -------------------------------------------------------------------------------- /src/highscore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/highscore.h -------------------------------------------------------------------------------- /src/highscore_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/highscore_gui.cpp -------------------------------------------------------------------------------- /src/hotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/hotkeys.cpp -------------------------------------------------------------------------------- /src/hotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/hotkeys.h -------------------------------------------------------------------------------- /src/house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/house.h -------------------------------------------------------------------------------- /src/house_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/house_type.h -------------------------------------------------------------------------------- /src/industry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/industry.h -------------------------------------------------------------------------------- /src/industry_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/industry_cmd.cpp -------------------------------------------------------------------------------- /src/industry_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/industry_gui.cpp -------------------------------------------------------------------------------- /src/industry_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/industry_map.h -------------------------------------------------------------------------------- /src/industry_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/industry_type.h -------------------------------------------------------------------------------- /src/industrytype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/industrytype.h -------------------------------------------------------------------------------- /src/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ini.cpp -------------------------------------------------------------------------------- /src/ini_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ini_load.cpp -------------------------------------------------------------------------------- /src/ini_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ini_type.h -------------------------------------------------------------------------------- /src/intro_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/intro_gui.cpp -------------------------------------------------------------------------------- /src/landscape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/landscape.cpp -------------------------------------------------------------------------------- /src/landscape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/landscape.h -------------------------------------------------------------------------------- /src/landscape_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/landscape_type.h -------------------------------------------------------------------------------- /src/lang/afrikaans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/afrikaans.txt -------------------------------------------------------------------------------- /src/lang/arabic_egypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/arabic_egypt.txt -------------------------------------------------------------------------------- /src/lang/basque.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/basque.txt -------------------------------------------------------------------------------- /src/lang/belarusian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/belarusian.txt -------------------------------------------------------------------------------- /src/lang/bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/bulgarian.txt -------------------------------------------------------------------------------- /src/lang/catalan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/catalan.txt -------------------------------------------------------------------------------- /src/lang/croatian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/croatian.txt -------------------------------------------------------------------------------- /src/lang/czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/czech.txt -------------------------------------------------------------------------------- /src/lang/danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/danish.txt -------------------------------------------------------------------------------- /src/lang/dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/dutch.txt -------------------------------------------------------------------------------- /src/lang/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/english.txt -------------------------------------------------------------------------------- /src/lang/english_AU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/english_AU.txt -------------------------------------------------------------------------------- /src/lang/english_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/english_US.txt -------------------------------------------------------------------------------- /src/lang/esperanto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/esperanto.txt -------------------------------------------------------------------------------- /src/lang/estonian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/estonian.txt -------------------------------------------------------------------------------- /src/lang/faroese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/faroese.txt -------------------------------------------------------------------------------- /src/lang/finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/finnish.txt -------------------------------------------------------------------------------- /src/lang/french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/french.txt -------------------------------------------------------------------------------- /src/lang/gaelic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/gaelic.txt -------------------------------------------------------------------------------- /src/lang/galician.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/galician.txt -------------------------------------------------------------------------------- /src/lang/german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/german.txt -------------------------------------------------------------------------------- /src/lang/greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/greek.txt -------------------------------------------------------------------------------- /src/lang/hebrew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/hebrew.txt -------------------------------------------------------------------------------- /src/lang/hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/hungarian.txt -------------------------------------------------------------------------------- /src/lang/icelandic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/icelandic.txt -------------------------------------------------------------------------------- /src/lang/indonesian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/indonesian.txt -------------------------------------------------------------------------------- /src/lang/irish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/irish.txt -------------------------------------------------------------------------------- /src/lang/italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/italian.txt -------------------------------------------------------------------------------- /src/lang/japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/japanese.txt -------------------------------------------------------------------------------- /src/lang/korean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/korean.txt -------------------------------------------------------------------------------- /src/lang/latin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/latin.txt -------------------------------------------------------------------------------- /src/lang/latvian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/latvian.txt -------------------------------------------------------------------------------- /src/lang/lithuanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/lithuanian.txt -------------------------------------------------------------------------------- /src/lang/luxembourgish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/luxembourgish.txt -------------------------------------------------------------------------------- /src/lang/malay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/malay.txt -------------------------------------------------------------------------------- /src/lang/polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/polish.txt -------------------------------------------------------------------------------- /src/lang/portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/portuguese.txt -------------------------------------------------------------------------------- /src/lang/romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/romanian.txt -------------------------------------------------------------------------------- /src/lang/russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/russian.txt -------------------------------------------------------------------------------- /src/lang/serbian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/serbian.txt -------------------------------------------------------------------------------- /src/lang/slovak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/slovak.txt -------------------------------------------------------------------------------- /src/lang/slovenian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/slovenian.txt -------------------------------------------------------------------------------- /src/lang/spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/spanish.txt -------------------------------------------------------------------------------- /src/lang/spanish_MX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/spanish_MX.txt -------------------------------------------------------------------------------- /src/lang/swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/swedish.txt -------------------------------------------------------------------------------- /src/lang/tamil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/tamil.txt -------------------------------------------------------------------------------- /src/lang/thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/thai.txt -------------------------------------------------------------------------------- /src/lang/turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/turkish.txt -------------------------------------------------------------------------------- /src/lang/ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/ukrainian.txt -------------------------------------------------------------------------------- /src/lang/vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/vietnamese.txt -------------------------------------------------------------------------------- /src/lang/welsh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/lang/welsh.txt -------------------------------------------------------------------------------- /src/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/language.h -------------------------------------------------------------------------------- /src/linkgraph/demands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/demands.cpp -------------------------------------------------------------------------------- /src/linkgraph/demands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/demands.h -------------------------------------------------------------------------------- /src/linkgraph/flowmapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/flowmapper.h -------------------------------------------------------------------------------- /src/linkgraph/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/init.h -------------------------------------------------------------------------------- /src/linkgraph/linkgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/linkgraph.h -------------------------------------------------------------------------------- /src/linkgraph/mcf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/mcf.cpp -------------------------------------------------------------------------------- /src/linkgraph/mcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/mcf.h -------------------------------------------------------------------------------- /src/linkgraph/refresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/refresh.cpp -------------------------------------------------------------------------------- /src/linkgraph/refresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/linkgraph/refresh.h -------------------------------------------------------------------------------- /src/livery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/livery.h -------------------------------------------------------------------------------- /src/main_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/main_gui.cpp -------------------------------------------------------------------------------- /src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/map.cpp -------------------------------------------------------------------------------- /src/map_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/map_func.h -------------------------------------------------------------------------------- /src/map_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/map_type.h -------------------------------------------------------------------------------- /src/metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/metrics.cpp -------------------------------------------------------------------------------- /src/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/metrics.h -------------------------------------------------------------------------------- /src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc.cpp -------------------------------------------------------------------------------- /src/misc/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/array.hpp -------------------------------------------------------------------------------- /src/misc/binaryheap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/binaryheap.hpp -------------------------------------------------------------------------------- /src/misc/blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/blob.hpp -------------------------------------------------------------------------------- /src/misc/countedobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/countedobj.cpp -------------------------------------------------------------------------------- /src/misc/countedptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/countedptr.hpp -------------------------------------------------------------------------------- /src/misc/dbg_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/dbg_helpers.cpp -------------------------------------------------------------------------------- /src/misc/dbg_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/dbg_helpers.h -------------------------------------------------------------------------------- /src/misc/getoptdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/getoptdata.cpp -------------------------------------------------------------------------------- /src/misc/getoptdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/getoptdata.h -------------------------------------------------------------------------------- /src/misc/hashtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/hashtable.hpp -------------------------------------------------------------------------------- /src/misc/str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc/str.hpp -------------------------------------------------------------------------------- /src/misc_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc_cmd.cpp -------------------------------------------------------------------------------- /src/misc_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/misc_gui.cpp -------------------------------------------------------------------------------- /src/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/mixer.cpp -------------------------------------------------------------------------------- /src/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/mixer.h -------------------------------------------------------------------------------- /src/music.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music.cpp -------------------------------------------------------------------------------- /src/music/allegro_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/allegro_m.cpp -------------------------------------------------------------------------------- /src/music/allegro_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/allegro_m.h -------------------------------------------------------------------------------- /src/music/bemidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/bemidi.cpp -------------------------------------------------------------------------------- /src/music/bemidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/bemidi.h -------------------------------------------------------------------------------- /src/music/cocoa_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/cocoa_m.cpp -------------------------------------------------------------------------------- /src/music/cocoa_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/cocoa_m.h -------------------------------------------------------------------------------- /src/music/dmusic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/dmusic.cpp -------------------------------------------------------------------------------- /src/music/dmusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/dmusic.h -------------------------------------------------------------------------------- /src/music/extmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/extmidi.cpp -------------------------------------------------------------------------------- /src/music/extmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/extmidi.h -------------------------------------------------------------------------------- /src/music/fluidsynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/fluidsynth.cpp -------------------------------------------------------------------------------- /src/music/fluidsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/fluidsynth.h -------------------------------------------------------------------------------- /src/music/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/midi.h -------------------------------------------------------------------------------- /src/music/midifile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/midifile.cpp -------------------------------------------------------------------------------- /src/music/midifile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/midifile.hpp -------------------------------------------------------------------------------- /src/music/music_driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/music_driver.hpp -------------------------------------------------------------------------------- /src/music/null_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/null_m.cpp -------------------------------------------------------------------------------- /src/music/null_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/null_m.h -------------------------------------------------------------------------------- /src/music/os2_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/os2_m.cpp -------------------------------------------------------------------------------- /src/music/os2_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/os2_m.h -------------------------------------------------------------------------------- /src/music/qtmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/qtmidi.cpp -------------------------------------------------------------------------------- /src/music/qtmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/qtmidi.h -------------------------------------------------------------------------------- /src/music/win32_m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/win32_m.cpp -------------------------------------------------------------------------------- /src/music/win32_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music/win32_m.h -------------------------------------------------------------------------------- /src/music_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/music_gui.cpp -------------------------------------------------------------------------------- /src/network/core/address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/address.h -------------------------------------------------------------------------------- /src/network/core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/config.h -------------------------------------------------------------------------------- /src/network/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/core.cpp -------------------------------------------------------------------------------- /src/network/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/core.h -------------------------------------------------------------------------------- /src/network/core/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/game.h -------------------------------------------------------------------------------- /src/network/core/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/host.cpp -------------------------------------------------------------------------------- /src/network/core/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/host.h -------------------------------------------------------------------------------- /src/network/core/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/packet.h -------------------------------------------------------------------------------- /src/network/core/tcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/tcp.cpp -------------------------------------------------------------------------------- /src/network/core/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/tcp.h -------------------------------------------------------------------------------- /src/network/core/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/udp.cpp -------------------------------------------------------------------------------- /src/network/core/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/core/udp.h -------------------------------------------------------------------------------- /src/network/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/network.cpp -------------------------------------------------------------------------------- /src/network/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/network.h -------------------------------------------------------------------------------- /src/network/network_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/network_base.h -------------------------------------------------------------------------------- /src/network/network_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/network_func.h -------------------------------------------------------------------------------- /src/network/network_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/network_gui.h -------------------------------------------------------------------------------- /src/network/network_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/network_type.h -------------------------------------------------------------------------------- /src/network/network_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/network/network_udp.h -------------------------------------------------------------------------------- /src/newgrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf.cpp -------------------------------------------------------------------------------- /src/newgrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf.h -------------------------------------------------------------------------------- /src/newgrf_airport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_airport.cpp -------------------------------------------------------------------------------- /src/newgrf_airport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_airport.h -------------------------------------------------------------------------------- /src/newgrf_airporttiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_airporttiles.h -------------------------------------------------------------------------------- /src/newgrf_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_callbacks.h -------------------------------------------------------------------------------- /src/newgrf_canal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_canal.cpp -------------------------------------------------------------------------------- /src/newgrf_canal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_canal.h -------------------------------------------------------------------------------- /src/newgrf_cargo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_cargo.cpp -------------------------------------------------------------------------------- /src/newgrf_cargo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_cargo.h -------------------------------------------------------------------------------- /src/newgrf_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_class.h -------------------------------------------------------------------------------- /src/newgrf_class_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_class_func.h -------------------------------------------------------------------------------- /src/newgrf_commons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_commons.cpp -------------------------------------------------------------------------------- /src/newgrf_commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_commons.h -------------------------------------------------------------------------------- /src/newgrf_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_config.cpp -------------------------------------------------------------------------------- /src/newgrf_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_config.h -------------------------------------------------------------------------------- /src/newgrf_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_debug.h -------------------------------------------------------------------------------- /src/newgrf_debug_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_debug_gui.cpp -------------------------------------------------------------------------------- /src/newgrf_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_engine.cpp -------------------------------------------------------------------------------- /src/newgrf_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_engine.h -------------------------------------------------------------------------------- /src/newgrf_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_generic.cpp -------------------------------------------------------------------------------- /src/newgrf_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_generic.h -------------------------------------------------------------------------------- /src/newgrf_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_gui.cpp -------------------------------------------------------------------------------- /src/newgrf_house.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_house.cpp -------------------------------------------------------------------------------- /src/newgrf_house.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_house.h -------------------------------------------------------------------------------- /src/newgrf_industries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_industries.cpp -------------------------------------------------------------------------------- /src/newgrf_industries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_industries.h -------------------------------------------------------------------------------- /src/newgrf_industrytiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_industrytiles.h -------------------------------------------------------------------------------- /src/newgrf_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_object.cpp -------------------------------------------------------------------------------- /src/newgrf_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_object.h -------------------------------------------------------------------------------- /src/newgrf_profiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_profiling.cpp -------------------------------------------------------------------------------- /src/newgrf_profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_profiling.h -------------------------------------------------------------------------------- /src/newgrf_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_properties.h -------------------------------------------------------------------------------- /src/newgrf_railtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_railtype.cpp -------------------------------------------------------------------------------- /src/newgrf_railtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_railtype.h -------------------------------------------------------------------------------- /src/newgrf_roadtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_roadtype.cpp -------------------------------------------------------------------------------- /src/newgrf_roadtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_roadtype.h -------------------------------------------------------------------------------- /src/newgrf_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_sound.cpp -------------------------------------------------------------------------------- /src/newgrf_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_sound.h -------------------------------------------------------------------------------- /src/newgrf_spritegroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_spritegroup.cpp -------------------------------------------------------------------------------- /src/newgrf_spritegroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_spritegroup.h -------------------------------------------------------------------------------- /src/newgrf_station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_station.cpp -------------------------------------------------------------------------------- /src/newgrf_station.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_station.h -------------------------------------------------------------------------------- /src/newgrf_storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_storage.cpp -------------------------------------------------------------------------------- /src/newgrf_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_storage.h -------------------------------------------------------------------------------- /src/newgrf_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_text.cpp -------------------------------------------------------------------------------- /src/newgrf_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_text.h -------------------------------------------------------------------------------- /src/newgrf_town.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_town.cpp -------------------------------------------------------------------------------- /src/newgrf_town.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_town.h -------------------------------------------------------------------------------- /src/newgrf_townname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_townname.cpp -------------------------------------------------------------------------------- /src/newgrf_townname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/newgrf_townname.h -------------------------------------------------------------------------------- /src/news_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/news_func.h -------------------------------------------------------------------------------- /src/news_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/news_gui.cpp -------------------------------------------------------------------------------- /src/news_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/news_gui.h -------------------------------------------------------------------------------- /src/news_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/news_type.h -------------------------------------------------------------------------------- /src/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/object.h -------------------------------------------------------------------------------- /src/object_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/object_base.h -------------------------------------------------------------------------------- /src/object_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/object_cmd.cpp -------------------------------------------------------------------------------- /src/object_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/object_gui.cpp -------------------------------------------------------------------------------- /src/object_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/object_map.h -------------------------------------------------------------------------------- /src/object_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/object_type.h -------------------------------------------------------------------------------- /src/openttd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/openttd.cpp -------------------------------------------------------------------------------- /src/openttd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/openttd.h -------------------------------------------------------------------------------- /src/order_backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/order_backup.cpp -------------------------------------------------------------------------------- /src/order_backup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/order_backup.h -------------------------------------------------------------------------------- /src/order_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/order_base.h -------------------------------------------------------------------------------- /src/order_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/order_cmd.cpp -------------------------------------------------------------------------------- /src/order_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/order_func.h -------------------------------------------------------------------------------- /src/order_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/order_gui.cpp -------------------------------------------------------------------------------- /src/order_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/order_type.h -------------------------------------------------------------------------------- /src/os/macosx/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/macosx/macos.h -------------------------------------------------------------------------------- /src/os/macosx/macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/macosx/macos.mm -------------------------------------------------------------------------------- /src/os/macosx/osx_stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/macosx/osx_stdafx.h -------------------------------------------------------------------------------- /src/os/macosx/splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/macosx/splash.cpp -------------------------------------------------------------------------------- /src/os/macosx/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/macosx/splash.h -------------------------------------------------------------------------------- /src/os/macosx/string_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/macosx/string_osx.h -------------------------------------------------------------------------------- /src/os/os2/os2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/os2/os2.cpp -------------------------------------------------------------------------------- /src/os/unix/unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/unix/unix.cpp -------------------------------------------------------------------------------- /src/os/windows/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/windows/win32.cpp -------------------------------------------------------------------------------- /src/os/windows/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/os/windows/win32.h -------------------------------------------------------------------------------- /src/osk_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/osk_gui.cpp -------------------------------------------------------------------------------- /src/pathfinder/npf/npf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/pathfinder/npf/npf.cpp -------------------------------------------------------------------------------- /src/pathfinder/npf/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/pathfinder/npf/queue.h -------------------------------------------------------------------------------- /src/pathfinder/yapf/yapf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/pathfinder/yapf/yapf.h -------------------------------------------------------------------------------- /src/pbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/pbs.cpp -------------------------------------------------------------------------------- /src/pbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/pbs.h -------------------------------------------------------------------------------- /src/progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/progress.cpp -------------------------------------------------------------------------------- /src/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/progress.h -------------------------------------------------------------------------------- /src/querystring_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/querystring_gui.h -------------------------------------------------------------------------------- /src/rail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rail.cpp -------------------------------------------------------------------------------- /src/rail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rail.h -------------------------------------------------------------------------------- /src/rail_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rail_cmd.cpp -------------------------------------------------------------------------------- /src/rail_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rail_gui.cpp -------------------------------------------------------------------------------- /src/rail_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rail_gui.h -------------------------------------------------------------------------------- /src/rail_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rail_map.h -------------------------------------------------------------------------------- /src/rail_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rail_type.h -------------------------------------------------------------------------------- /src/rev.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rev.cpp.in -------------------------------------------------------------------------------- /src/rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/rev.h -------------------------------------------------------------------------------- /src/road.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road.cpp -------------------------------------------------------------------------------- /src/road.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road.h -------------------------------------------------------------------------------- /src/road_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_cmd.cpp -------------------------------------------------------------------------------- /src/road_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_cmd.h -------------------------------------------------------------------------------- /src/road_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_func.h -------------------------------------------------------------------------------- /src/road_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_gui.cpp -------------------------------------------------------------------------------- /src/road_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_gui.h -------------------------------------------------------------------------------- /src/road_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_internal.h -------------------------------------------------------------------------------- /src/road_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_map.cpp -------------------------------------------------------------------------------- /src/road_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_map.h -------------------------------------------------------------------------------- /src/road_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/road_type.h -------------------------------------------------------------------------------- /src/roadstop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/roadstop.cpp -------------------------------------------------------------------------------- /src/roadstop_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/roadstop_base.h -------------------------------------------------------------------------------- /src/roadveh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/roadveh.h -------------------------------------------------------------------------------- /src/roadveh_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/roadveh_cmd.cpp -------------------------------------------------------------------------------- /src/roadveh_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/roadveh_gui.cpp -------------------------------------------------------------------------------- /src/safeguards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/safeguards.h -------------------------------------------------------------------------------- /src/saveload/afterload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/afterload.cpp -------------------------------------------------------------------------------- /src/saveload/ai_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/ai_sl.cpp -------------------------------------------------------------------------------- /src/saveload/cheat_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/cheat_sl.cpp -------------------------------------------------------------------------------- /src/saveload/depot_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/depot_sl.cpp -------------------------------------------------------------------------------- /src/saveload/engine_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/engine_sl.cpp -------------------------------------------------------------------------------- /src/saveload/game_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/game_sl.cpp -------------------------------------------------------------------------------- /src/saveload/goal_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/goal_sl.cpp -------------------------------------------------------------------------------- /src/saveload/group_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/group_sl.cpp -------------------------------------------------------------------------------- /src/saveload/map_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/map_sl.cpp -------------------------------------------------------------------------------- /src/saveload/misc_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/misc_sl.cpp -------------------------------------------------------------------------------- /src/saveload/newgrf_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/newgrf_sl.cpp -------------------------------------------------------------------------------- /src/saveload/newgrf_sl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/newgrf_sl.h -------------------------------------------------------------------------------- /src/saveload/object_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/object_sl.cpp -------------------------------------------------------------------------------- /src/saveload/oldloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/oldloader.cpp -------------------------------------------------------------------------------- /src/saveload/oldloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/oldloader.h -------------------------------------------------------------------------------- /src/saveload/order_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/order_sl.cpp -------------------------------------------------------------------------------- /src/saveload/saveload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/saveload.cpp -------------------------------------------------------------------------------- /src/saveload/saveload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/saveload.h -------------------------------------------------------------------------------- /src/saveload/signs_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/signs_sl.cpp -------------------------------------------------------------------------------- /src/saveload/story_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/story_sl.cpp -------------------------------------------------------------------------------- /src/saveload/town_sl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/saveload/town_sl.cpp -------------------------------------------------------------------------------- /src/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/screenshot.cpp -------------------------------------------------------------------------------- /src/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/screenshot.h -------------------------------------------------------------------------------- /src/screenshot_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/screenshot_gui.cpp -------------------------------------------------------------------------------- /src/screenshot_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/screenshot_gui.h -------------------------------------------------------------------------------- /src/script/api/Doxyfile_AI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/script/api/Doxyfile_AI -------------------------------------------------------------------------------- /src/script/script_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/script/script_info.cpp -------------------------------------------------------------------------------- /src/script/script_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/script/script_info.hpp -------------------------------------------------------------------------------- /src/script/squirrel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/script/squirrel.cpp -------------------------------------------------------------------------------- /src/script/squirrel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/script/squirrel.hpp -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/settings_func.h -------------------------------------------------------------------------------- /src/settings_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/settings_gui.cpp -------------------------------------------------------------------------------- /src/settings_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/settings_gui.h -------------------------------------------------------------------------------- /src/settings_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/settings_internal.h -------------------------------------------------------------------------------- /src/settings_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/settings_type.h -------------------------------------------------------------------------------- /src/ship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ship.h -------------------------------------------------------------------------------- /src/ship_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ship_cmd.cpp -------------------------------------------------------------------------------- /src/ship_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/ship_gui.cpp -------------------------------------------------------------------------------- /src/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signal.cpp -------------------------------------------------------------------------------- /src/signal_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signal_func.h -------------------------------------------------------------------------------- /src/signal_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signal_type.h -------------------------------------------------------------------------------- /src/signs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signs.cpp -------------------------------------------------------------------------------- /src/signs_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signs_base.h -------------------------------------------------------------------------------- /src/signs_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signs_cmd.cpp -------------------------------------------------------------------------------- /src/signs_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signs_func.h -------------------------------------------------------------------------------- /src/signs_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signs_gui.cpp -------------------------------------------------------------------------------- /src/signs_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/signs_type.h -------------------------------------------------------------------------------- /src/slope_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/slope_func.h -------------------------------------------------------------------------------- /src/slope_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/slope_type.h -------------------------------------------------------------------------------- /src/smallmap_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/smallmap_gui.cpp -------------------------------------------------------------------------------- /src/smallmap_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/smallmap_gui.h -------------------------------------------------------------------------------- /src/sortlist_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sortlist_type.h -------------------------------------------------------------------------------- /src/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound.cpp -------------------------------------------------------------------------------- /src/sound/allegro_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/allegro_s.cpp -------------------------------------------------------------------------------- /src/sound/allegro_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/allegro_s.h -------------------------------------------------------------------------------- /src/sound/cocoa_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/cocoa_s.cpp -------------------------------------------------------------------------------- /src/sound/cocoa_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/cocoa_s.h -------------------------------------------------------------------------------- /src/sound/null_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/null_s.cpp -------------------------------------------------------------------------------- /src/sound/null_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/null_s.h -------------------------------------------------------------------------------- /src/sound/sdl2_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/sdl2_s.cpp -------------------------------------------------------------------------------- /src/sound/sdl_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/sdl_s.cpp -------------------------------------------------------------------------------- /src/sound/sdl_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/sdl_s.h -------------------------------------------------------------------------------- /src/sound/sound_driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/sound_driver.hpp -------------------------------------------------------------------------------- /src/sound/win32_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/win32_s.cpp -------------------------------------------------------------------------------- /src/sound/win32_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/win32_s.h -------------------------------------------------------------------------------- /src/sound/xaudio2_s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/xaudio2_s.cpp -------------------------------------------------------------------------------- /src/sound/xaudio2_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound/xaudio2_s.h -------------------------------------------------------------------------------- /src/sound_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound_func.h -------------------------------------------------------------------------------- /src/sound_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sound_type.h -------------------------------------------------------------------------------- /src/sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sprite.cpp -------------------------------------------------------------------------------- /src/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/sprite.h -------------------------------------------------------------------------------- /src/spritecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/spritecache.cpp -------------------------------------------------------------------------------- /src/spritecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/spritecache.h -------------------------------------------------------------------------------- /src/spriteloader/grf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/spriteloader/grf.cpp -------------------------------------------------------------------------------- /src/spriteloader/grf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/spriteloader/grf.hpp -------------------------------------------------------------------------------- /src/station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station.cpp -------------------------------------------------------------------------------- /src/station_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station_base.h -------------------------------------------------------------------------------- /src/station_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station_cmd.cpp -------------------------------------------------------------------------------- /src/station_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station_func.h -------------------------------------------------------------------------------- /src/station_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station_gui.cpp -------------------------------------------------------------------------------- /src/station_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station_gui.h -------------------------------------------------------------------------------- /src/station_kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station_kdtree.h -------------------------------------------------------------------------------- /src/station_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station_map.h -------------------------------------------------------------------------------- /src/station_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/station_type.h -------------------------------------------------------------------------------- /src/statusbar_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/statusbar_gui.cpp -------------------------------------------------------------------------------- /src/statusbar_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/statusbar_gui.h -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/story.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/story.cpp -------------------------------------------------------------------------------- /src/story_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/story_base.h -------------------------------------------------------------------------------- /src/story_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/story_gui.cpp -------------------------------------------------------------------------------- /src/story_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/story_type.h -------------------------------------------------------------------------------- /src/strgen/strgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/strgen/strgen.cpp -------------------------------------------------------------------------------- /src/strgen/strgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/strgen/strgen.h -------------------------------------------------------------------------------- /src/strgen/strgen_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/strgen/strgen_base.cpp -------------------------------------------------------------------------------- /src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/string.cpp -------------------------------------------------------------------------------- /src/string_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/string_base.h -------------------------------------------------------------------------------- /src/string_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/string_func.h -------------------------------------------------------------------------------- /src/string_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/string_type.h -------------------------------------------------------------------------------- /src/stringfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/stringfilter.cpp -------------------------------------------------------------------------------- /src/stringfilter_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/stringfilter_type.h -------------------------------------------------------------------------------- /src/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/strings.cpp -------------------------------------------------------------------------------- /src/strings_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/strings_func.h -------------------------------------------------------------------------------- /src/strings_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/strings_type.h -------------------------------------------------------------------------------- /src/subsidy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/subsidy.cpp -------------------------------------------------------------------------------- /src/subsidy_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/subsidy_base.h -------------------------------------------------------------------------------- /src/subsidy_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/subsidy_func.h -------------------------------------------------------------------------------- /src/subsidy_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/subsidy_gui.cpp -------------------------------------------------------------------------------- /src/subsidy_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/subsidy_type.h -------------------------------------------------------------------------------- /src/table/airporttiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/airporttiles.h -------------------------------------------------------------------------------- /src/table/animcursors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/animcursors.h -------------------------------------------------------------------------------- /src/table/autorail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/autorail.h -------------------------------------------------------------------------------- /src/table/bridge_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/bridge_land.h -------------------------------------------------------------------------------- /src/table/build_industry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/build_industry.h -------------------------------------------------------------------------------- /src/table/cargo_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/cargo_const.h -------------------------------------------------------------------------------- /src/table/clear_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/clear_land.h -------------------------------------------------------------------------------- /src/table/control_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/control_codes.h -------------------------------------------------------------------------------- /src/table/elrail_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/elrail_data.h -------------------------------------------------------------------------------- /src/table/engines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/engines.h -------------------------------------------------------------------------------- /src/table/genland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/genland.h -------------------------------------------------------------------------------- /src/table/industry_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/industry_land.h -------------------------------------------------------------------------------- /src/table/object_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/object_land.h -------------------------------------------------------------------------------- /src/table/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/palettes.h -------------------------------------------------------------------------------- /src/table/pricebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/pricebase.h -------------------------------------------------------------------------------- /src/table/railtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/railtypes.h -------------------------------------------------------------------------------- /src/table/road_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/road_land.h -------------------------------------------------------------------------------- /src/table/roadtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/roadtypes.h -------------------------------------------------------------------------------- /src/table/settings.h.postamble: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/table/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/settings.ini -------------------------------------------------------------------------------- /src/table/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/sprites.h -------------------------------------------------------------------------------- /src/table/station_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/station_land.h -------------------------------------------------------------------------------- /src/table/strgen_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/strgen_tables.h -------------------------------------------------------------------------------- /src/table/string_colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/string_colours.h -------------------------------------------------------------------------------- /src/table/town_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/town_land.h -------------------------------------------------------------------------------- /src/table/townname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/townname.h -------------------------------------------------------------------------------- /src/table/track_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/track_land.h -------------------------------------------------------------------------------- /src/table/train_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/train_cmd.h -------------------------------------------------------------------------------- /src/table/tree_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/tree_land.h -------------------------------------------------------------------------------- /src/table/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/unicode.h -------------------------------------------------------------------------------- /src/table/water_land.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/table/water_land.h -------------------------------------------------------------------------------- /src/tar_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tar_type.h -------------------------------------------------------------------------------- /src/terraform_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/terraform_cmd.cpp -------------------------------------------------------------------------------- /src/terraform_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/terraform_gui.cpp -------------------------------------------------------------------------------- /src/terraform_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/terraform_gui.h -------------------------------------------------------------------------------- /src/textbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/textbuf.cpp -------------------------------------------------------------------------------- /src/textbuf_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/textbuf_gui.h -------------------------------------------------------------------------------- /src/textbuf_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/textbuf_type.h -------------------------------------------------------------------------------- /src/texteff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/texteff.cpp -------------------------------------------------------------------------------- /src/texteff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/texteff.hpp -------------------------------------------------------------------------------- /src/textfile_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/textfile_gui.cpp -------------------------------------------------------------------------------- /src/textfile_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/textfile_gui.h -------------------------------------------------------------------------------- /src/textfile_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/textfile_type.h -------------------------------------------------------------------------------- /src/tgp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tgp.cpp -------------------------------------------------------------------------------- /src/tgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tgp.h -------------------------------------------------------------------------------- /src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/thread.h -------------------------------------------------------------------------------- /src/tile_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tile_cmd.h -------------------------------------------------------------------------------- /src/tile_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tile_map.cpp -------------------------------------------------------------------------------- /src/tile_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tile_map.h -------------------------------------------------------------------------------- /src/tile_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tile_type.h -------------------------------------------------------------------------------- /src/tilearea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tilearea.cpp -------------------------------------------------------------------------------- /src/tilearea_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tilearea_type.h -------------------------------------------------------------------------------- /src/tilehighlight_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tilehighlight_func.h -------------------------------------------------------------------------------- /src/tilehighlight_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tilehighlight_type.h -------------------------------------------------------------------------------- /src/tilematrix_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tilematrix_type.hpp -------------------------------------------------------------------------------- /src/timetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/timetable.h -------------------------------------------------------------------------------- /src/timetable_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/timetable_cmd.cpp -------------------------------------------------------------------------------- /src/timetable_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/timetable_gui.cpp -------------------------------------------------------------------------------- /src/toolbar_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/toolbar_gui.cpp -------------------------------------------------------------------------------- /src/toolbar_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/toolbar_gui.h -------------------------------------------------------------------------------- /src/town.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/town.h -------------------------------------------------------------------------------- /src/town_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/town_cmd.cpp -------------------------------------------------------------------------------- /src/town_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/town_gui.cpp -------------------------------------------------------------------------------- /src/town_kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/town_kdtree.h -------------------------------------------------------------------------------- /src/town_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/town_map.h -------------------------------------------------------------------------------- /src/town_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/town_type.h -------------------------------------------------------------------------------- /src/townname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/townname.cpp -------------------------------------------------------------------------------- /src/townname_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/townname_func.h -------------------------------------------------------------------------------- /src/townname_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/townname_type.h -------------------------------------------------------------------------------- /src/track_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/track_func.h -------------------------------------------------------------------------------- /src/track_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/track_type.h -------------------------------------------------------------------------------- /src/train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/train.h -------------------------------------------------------------------------------- /src/train_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/train_cmd.cpp -------------------------------------------------------------------------------- /src/train_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/train_gui.cpp -------------------------------------------------------------------------------- /src/transparency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/transparency.h -------------------------------------------------------------------------------- /src/transparency_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/transparency_gui.cpp -------------------------------------------------------------------------------- /src/transparency_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/transparency_gui.h -------------------------------------------------------------------------------- /src/transport_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/transport_type.h -------------------------------------------------------------------------------- /src/tree_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tree_cmd.cpp -------------------------------------------------------------------------------- /src/tree_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tree_gui.cpp -------------------------------------------------------------------------------- /src/tree_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tree_map.h -------------------------------------------------------------------------------- /src/tunnel_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tunnel_map.cpp -------------------------------------------------------------------------------- /src/tunnel_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tunnel_map.h -------------------------------------------------------------------------------- /src/tunnelbridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tunnelbridge.h -------------------------------------------------------------------------------- /src/tunnelbridge_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tunnelbridge_cmd.cpp -------------------------------------------------------------------------------- /src/tunnelbridge_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/tunnelbridge_map.h -------------------------------------------------------------------------------- /src/vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehicle.cpp -------------------------------------------------------------------------------- /src/vehicle_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehicle_base.h -------------------------------------------------------------------------------- /src/vehicle_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehicle_cmd.cpp -------------------------------------------------------------------------------- /src/vehicle_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehicle_func.h -------------------------------------------------------------------------------- /src/vehicle_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehicle_gui.cpp -------------------------------------------------------------------------------- /src/vehicle_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehicle_gui.h -------------------------------------------------------------------------------- /src/vehicle_gui_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehicle_gui_base.h -------------------------------------------------------------------------------- /src/vehicle_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehicle_type.h -------------------------------------------------------------------------------- /src/vehiclelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehiclelist.cpp -------------------------------------------------------------------------------- /src/vehiclelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/vehiclelist.h -------------------------------------------------------------------------------- /src/video/allegro_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/allegro_v.cpp -------------------------------------------------------------------------------- /src/video/allegro_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/allegro_v.h -------------------------------------------------------------------------------- /src/video/cocoa/cocoa_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/cocoa/cocoa_v.h -------------------------------------------------------------------------------- /src/video/dedicated_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/dedicated_v.h -------------------------------------------------------------------------------- /src/video/null_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/null_v.cpp -------------------------------------------------------------------------------- /src/video/null_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/null_v.h -------------------------------------------------------------------------------- /src/video/sdl2_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/sdl2_v.cpp -------------------------------------------------------------------------------- /src/video/sdl2_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/sdl2_v.h -------------------------------------------------------------------------------- /src/video/sdl_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/sdl_v.cpp -------------------------------------------------------------------------------- /src/video/sdl_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/sdl_v.h -------------------------------------------------------------------------------- /src/video/win32_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/win32_v.cpp -------------------------------------------------------------------------------- /src/video/win32_v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/video/win32_v.h -------------------------------------------------------------------------------- /src/viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/viewport.cpp -------------------------------------------------------------------------------- /src/viewport_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/viewport_func.h -------------------------------------------------------------------------------- /src/viewport_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/viewport_gui.cpp -------------------------------------------------------------------------------- /src/viewport_kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/viewport_kdtree.h -------------------------------------------------------------------------------- /src/viewport_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/viewport_type.h -------------------------------------------------------------------------------- /src/void_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/void_cmd.cpp -------------------------------------------------------------------------------- /src/void_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/void_map.h -------------------------------------------------------------------------------- /src/water.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/water.h -------------------------------------------------------------------------------- /src/water_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/water_cmd.cpp -------------------------------------------------------------------------------- /src/water_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/water_map.h -------------------------------------------------------------------------------- /src/waypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/waypoint.cpp -------------------------------------------------------------------------------- /src/waypoint_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/waypoint_base.h -------------------------------------------------------------------------------- /src/waypoint_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/waypoint_cmd.cpp -------------------------------------------------------------------------------- /src/waypoint_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/waypoint_func.h -------------------------------------------------------------------------------- /src/waypoint_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/waypoint_gui.cpp -------------------------------------------------------------------------------- /src/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/widget.cpp -------------------------------------------------------------------------------- /src/widget_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/widget_type.h -------------------------------------------------------------------------------- /src/widgets/ai_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/widgets/ai_widget.h -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/window.cpp -------------------------------------------------------------------------------- /src/window_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/window_func.h -------------------------------------------------------------------------------- /src/window_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/window_gui.h -------------------------------------------------------------------------------- /src/window_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/window_type.h -------------------------------------------------------------------------------- /src/zoom_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/zoom_func.h -------------------------------------------------------------------------------- /src/zoom_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grand-central-garbage/openttd-prometheus/HEAD/src/zoom_type.h --------------------------------------------------------------------------------