Commit Graph

44542 Commits

Author SHA1 Message Date
Patric Stout
90859fbe25 Codechange: prevent out-of-bound read (even if the result is never used) (#11853)
(cherry picked from commit fe035c306e)
2024-01-27 14:56:12 +00:00
Peter Nelson
be147651d4 Codechange: Replace GroupStatistics' num_engines with std::map. (#11849)
This removes manual memory management with calloc/free calls, and prevents potentially large arrays being allocated for each group.

(cherry picked from commit 8797cc7ef2)
2024-01-27 14:56:12 +00:00
Peter Nelson
fef0bfcfd3 Fix: TextfileWindow called virtual methods before constructor completed. (#11889)
SetStringParameters() was called during widget tree init in the constructor.

Calls within a constructor cannot call the derived classes methods. This would result in invalid data being passed to the string system, which could then crash.
2024-01-27 14:45:37 +00:00
Kuhnovic
8a4a99b7e8 Fix #5713: FindClosestShipDepot only considers depots that are actually reachable (#11768) 2024-01-27 15:06:14 +01:00
Peter Nelson
17934bcc90 Fix #11827: Make Layouter::GetCharPosition() aware of ligatures. (#11831)
When ligatures happen the precise individual character position is not known, so instead return the previous position (which is that of the ligature.)

(cherry picked from commit d6ccfdbbd9)
2024-01-27 14:01:13 +00:00
Patric Stout
89520f5665 Add: show in multiplayer the amount of hours a game has been unpaused (#11886) 2024-01-27 12:35:09 +01:00
Patric Stout
2bbc95cac3 Fix: update server as offline when unexpected disconnect during refresh (#11891) 2024-01-27 11:23:25 +01:00
Richard Wheeler
8770ef6bd9 Change: Make street lights transparent with houses (#11828) 2024-01-27 09:25:13 +00:00
Rubidium
7916e97c62 Update: opengl; glext header to 20231129, wglext header to 20231018 2024-01-27 09:57:25 +01:00
Rubidium
a23cd4aef7 Update: nlohmann/json to 3.11.3 2024-01-27 09:57:25 +01:00
Rubidium
79b684b8ac Update: fmt to 10.2.0 2024-01-27 09:57:25 +01:00
Patric Stout
80ebcc72fb Change: rebrand Cheats as Sandbox Options (#11874) 2024-01-26 19:56:01 +01:00
Jonathan G Rennison
911ccc16fb Script: Add compatibility layer for old cargo scaling settings 2024-01-26 18:30:11 +00:00
Jonathan G Rennison
e0699c15b6 Add function to turn a percentage into a quantity scaling factor 2024-01-26 18:23:53 +00:00
Tyler Trahan
28716548d2 Feature: Setting to automatically restart server based on hours played (#11142) 2024-01-26 10:25:25 -05:00
Jonathan G Rennison
c26ca5369e Unconditionally use FindFirstBit in SetBitIterator
Add simple tests
2024-01-25 22:36:01 +00:00
Jonathan G Rennison
5404be172c Merge branch 'master' into jgrpp
# Conflicts:
#	src/core/bitmath_func.cpp
#	src/core/bitmath_func.hpp
#	src/core/geometry_type.hpp
#	src/game/game_text.hpp
#	src/graph_gui.cpp
#	src/pathfinder/npf/npf.cpp
#	src/script/api/script_text.cpp
#	src/spritecache.cpp
#	src/track_func.h
2024-01-25 22:36:01 +00:00
Loïc Guilloux
09b66751cf Fix b38d3c2208: missing water regions invalidation when building locks (#11879) 2024-01-25 22:18:26 +00:00
Jonathan G Rennison
78e08fdd18 Script: Move old-style/lenient text param encode to separate function 2024-01-25 17:35:08 +00:00
Jonathan G Rennison
822ecae85d Merge branch 'master' into jgrpp
# Conflicts:
#	src/cargotype.h
#	src/core/CMakeLists.txt
#	src/core/span_type.hpp
#	src/fileio.cpp
#	src/fios.cpp
#	src/misc/endian_buffer.hpp
#	src/misc_gui.cpp
#	src/saveload/saveload.h
#	src/saveload/vehicle_sl.cpp
#	src/screenshot.cpp
#	src/settings.cpp
#	src/settings_internal.h
#	src/stdafx.h
#	src/string_func.h
#	src/strings.cpp
#	src/strings_func.h
#	src/strings_internal.h
2024-01-25 18:37:23 +00:00
Patric Stout
36579dd18b Change: set smooth-scrolling on by default (#11860) 2024-01-25 11:07:36 +01:00
Patric Stout
ea8c1d8597 Change: make for smooth-scrolling based on actual time
This means if rendering takes a bit longer, scrolling goes a bit
quicker, making travel time always about the same time for the
same distance.
2024-01-25 10:29:48 +01:00
Jonathan G Rennison
49eb40bc4f Change various _network_dedicated tests to use IsHeadless 2024-01-24 23:31:35 +00:00
Jonathan G Rennison
ced17a74e8 Do not update viewport signs when running headlessly 2024-01-24 23:26:02 +00:00
Jonathan G Rennison
04e47eca9a Do not create text effects when running headlessly 2024-01-24 23:20:45 +00:00
Jonathan G Rennison
fa003ebda3 Disable vehicle sounds entirely when running headlessly 2024-01-24 23:20:45 +00:00
Jonathan G Rennison
f0ec7a7693 Add function for whether OpenTTD is running headlessly
Always returns true for dedicated builds
Returns _network_dedicated otherwise
2024-01-24 23:17:53 +00:00
Jonathan G Rennison
c871464285 Split bit numbers from values in RailTypeFlags, RoadTypeFlags enums 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
dc9f322478 Use [[no_unique_address]] for space in end of NewGRFCache 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
df9fc6d1cf Use comparison operator for NewGRFCache instead of memcmp 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
c8f5585ba7 Use [[no_unique_address]] in CargoList
Re-use tail padding of ring_buffer for count
2024-01-24 23:17:53 +00:00
Jonathan G Rennison
0d0357bd40 stdafx: Add macro for [[no_unique_address]] 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
b01fd1607a Re-order various structs to reduce holes/padding 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
b64a51876a Set sizes for various enum types 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
ba5d3588aa Link graph: Fix typo in method name 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
3017660e5d Reduce the size of VehicleSpriteSeq (and Vehicle) in dedicated builds 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
770915ccc2 Remove networking test from UpdateStateChecksum in dedicated builds 2024-01-24 23:17:53 +00:00
Jonathan G Rennison
628106d182 Scheduled dispatch: Show start date button as start time when using minutes 2024-01-24 23:12:40 +00:00
Jonathan G Rennison
39e7a9252c Link graph: Use non-sparse matrix for accumulating demand totals 2024-01-24 23:12:40 +00:00
Jonathan G Rennison
cbb24b5d71 Codechange: Split bit numbers from values in RailTypeFlags, RoadTypeFlags enums (#11877) 2024-01-24 22:24:34 +01:00
Tyler Trahan
21581b6ab3 Feature: Setting for minutes per calendar year (#11428) 2024-01-23 18:33:54 -05:00
translators
be8ed26db6 Update: Translations from eints
norwegian (nynorsk): 5 changes by translators
slovenian: 5 changes by translators
faroese: 5 changes by translators
hebrew: 5 changes by translators
afrikaans: 5 changes by translators
urdu: 5 changes by translators
persian: 5 changes by translators
bulgarian: 5 changes by translators
belarusian: 5 changes by translators
basque: 5 changes by translators
russian: 23 changes by Ln-Wolf
finnish: 1 change by hpiirai
malay: 5 changes by translators
scottish gaelic: 5 changes by translators
croatian: 5 changes by translators
latin: 5 changes by translators
french: 49 changes by glx22, 8 changes by ottdfevr
portuguese (brazilian): 80 changes by pasantoro
icelandic: 5 changes by translators
2024-01-23 18:40:53 +00:00
Tyler Trahan
fd9e72a7e7 Feature: Use real-time "wallclock" timekeeping units (#11341) 2024-01-23 11:36:09 -05:00
Tyler Trahan
bbdbf9a589 Add: AI/GS Time Mode to choose between economy (default) and calendar time (#11603) 2024-01-23 10:42:10 -05:00
Patric Stout
a1487ce620 Add: list_[scenario|heightmap] and load_[scenario|height] console commands (#11867) 2024-01-23 14:01:25 +01:00
Jonathan G Rennison
5bd4e96347 Fix crash when rendering linkgraph overlay in smallmap window
See: #633
2024-01-23 00:09:03 +00:00
Tyler Trahan
76499b96fb Fix fa479c4: Typo in vehicle list tooltip (#11871) 2024-01-22 23:17:26 +00:00
Patric Stout
090616b4c9 Add: allow loading heightmaps from command-line (#11870)
If you want to load a file from tar, you have to give the file
inside the tar in order for it to work:

<tar-file>/<dir-in-tar>/<file>.png
2024-01-22 22:35:25 +00:00
Kuhnovic
bf3fd6526b Fix: use correct size parameter type in TileArea constructors (#11869) 2024-01-22 22:06:42 +00:00
Patric Stout
11d4f1b2bd Fix d3b2a576: LOAD_HEIGHTMAP / LOAD_SCENARIO are Scenario Editor modes (#11868) 2024-01-22 21:28:00 +00:00