Commit Graph

29345 Commits (master)
 

Author SHA1 Message Date
André Cheng fd80a1ec66 Fix #11345: Use correct default button value for vehicle service interval setting 1 month ago
André Cheng a4071b78d7 Codechange: Add callback to IntSettingDesc to support more default values 1 month ago
translators e8d25d68b9 Update: Translations from eints
russian: 2 changes by George-VB
1 month ago
Peter Nelson e8249e9075
Codechange: Pass buffers for TarFile's ExtractString as span. (#12567)
ExtractString does not need to find a string terminator as StrMakeValid already does this, so simply pass the full bounds of the buffer.

Removes lengthof, array indices, and needs only the buffer as a parameter.
1 month ago
Peter Nelson 5159aa81d4
Codechange: Use iterators when enabling industries. (#12569)
Removes lengthof and array indices.
1 month ago
Peter Nelson 26bb87ebf1
Codechange: Replace SaveLoad var length arrays with switch block and sizeof. (#12570)
SlCalcConvMemLen(), SlCalcConfFileLen() and CalcOldVarLen() follow a pattern of looking up part of a value in an array.

These function returns the size of bytes of a variable type, but is not very clear. Replace with a switch block instead.

Removes lengthof, array indices, and magic numbers.
1 month ago
Peter Nelson 1dc94d0670
Codechange: Construct string_view with first+last. (#12568)
Avoids needing to calculate size when we already have last.
1 month ago
Peter Nelson 6a3f50aa72
Codechange: Replace separate EffectVehicle arrays. (#12565)
Combine 3 separate arrays into a single struct. This keeps related data together, and avoids needing to check that each array is same length.

Use of constexpr construct ensures data in the array is not default-initialised.

Removes lengthof.
1 month ago
Peter Nelson e20f48799e
Codechange: Make StringToContentType() clearer. (#12566)
Decouples string to ContentType mapping from position within enum.

Slightly less efficient, but removes lengthof, array indices, and casting.
1 month ago
Peter Nelson 5e689ce25e
Codechange: Store cursor sprites in vector. (#12564)
Combine two separate fixed length arrays to allow simpler iteration.

No need to check that arrays are all the same length.
No need to separately store the number of sprites to draw.
Removes the upper limit of the number of sprites that can be drawn.

Removes lengthof and array indices.
1 month ago
translators 9121770582 Update: Translations from eints
korean: 3 changes by telk5093
catalan: 3 changes by J0anJosep
french: 7 changes by ottdfevr
polish: 7 changes by pAter-exe
1 month ago
Peter Nelson ac6a945e26
Revert 2408a68910: Remove work around for an MSVC bug from 17 years ago. (#12557) 1 month ago
Koen Bussemaker bef11941c6 Change: Allow rail and road depot overbuilding in current orientation in order to connect to rail or road 1 month ago
translators 95de90dd4e Update: Translations from eints
norwegian (bokmal): 7 changes by eriksorngard
danish: 7 changes by bscargo
portuguese (brazilian): 4 changes by pasantoro
1 month ago
Peter Nelson 3814adaba8
Codechange: Simplify GetScrolledItemFromWidget() (#12556)
Return `auto`, which allows working with const containers, and use std::next instead of std::advance.
1 month ago
translators c82a2575d7 Update: Translations from eints
english (au): 3 changes by krysclarke
english (us): 3 changes by 2TallTyler
greek: 3 changes by gh658804
russian: 3 changes by Ln-Wolf
finnish: 5 changes by hpiirai
turkish: 7 changes by BeratSJ
portuguese: 3 changes by azulcosta
portuguese (brazilian): 3 changes by pasantoro
1 month ago
Rubidium ded4d63db2 Codechange: simplify access to the current screenshot format 1 month ago
Peter Nelson d465257dd0
Fix 952d111: Houses and industry tiles could accept incorrect cargo. (#12547)
Default cargo label was not cleared (set to CT_INVALID) when using older 3-slot acceptance properties for house and industry tiles.

Missed in #12053 and #12062.
1 month ago
Peter Nelson 3b01d31280
Fix 8746be8: Reinstate current order test when removing road stop. (#12552)
#12144 replaced pool iteration with FindVehiclesWithOrder, however the test for current_order being OT_GOTO_STATION was erroneously removed.
1 month ago
translators c073165e34 Update: Translations from eints
greek: 5 changes by gh658804
finnish: 2 changes by hpiirai
catalan: 4 changes by J0anJosep
1 month ago
Rubidium aa895535e6 Fix 5008706: improved scenario editor tooltips in map generation stages are out of place 1 month ago
Peter Nelson 959ced71bb
Codechange: Add constants for original input/output cargo counts. (#12548)
This replaces some magic 3s and 2s.
1 month ago
Peter Nelson b4e00fa738
Codechange: Replace C-casts in pool functions. (#12541) 1 month ago
Loïc Guilloux c5ef47ee09
Codechange: [Script] Use std::unique_ptr for Company::ai_instance (#12544) 1 month ago
Rubidium 1dfd0c19f4 Fix: allow only 255 league tables, as 255 is the invalid id sentinel 1 month ago
Rubidium c377c4740d Codechange: replace cpp_lengthof with safe alternatives 1 month ago
Peter Nelson a1a01e21cf
Change: Use std::make_unique instead of passing new() (#12539) 1 month ago
Rubidium fc7f184dbd Codechange: move knowledge about 'packed' orders to the saveload code 1 month ago
Rubidium 1691b41b54 Codechange: use C++ containers for parsing the settings int lists 1 month ago
Rubidium 434c49a1f8 Codechange: remove now unused endof macro 1 month ago
Rubidium 8fe5fdf122 Codechange: use std::none_of to express clearer what the code does 1 month ago
Rubidium 8986fb0385 Codechange: replace C-style array-pointer methods with the appropriate C++ methods 1 month ago
Peter Nelson 2114888485
Change: De-template BaseSetTextfileWindow. (#12536)
The BaseSet type is not needed after the window is constructed, only the filename and name are required, which can be passed as parameters from `ShowBaseSetTextfileWindow()` instead.

This avoids compiling three instances of `BaseSetTextfileWindow`.
1 month ago
Rubidium e441033d68 Codechange: use std::array instead of C-style array for produced/accepts cargo 1 month ago
Peter Nelson 40fa45a76a Codechange: Emplace std::pair into vectors.
This creates the pair in the vector, instead of creating it then copying it in.
1 month ago
Peter Nelson ed2db80990 Codechange: Use map.emplace() instead of map.insert(std::pair).
This avoids a copy of the pair into the map.
1 month ago
Peter Nelson 57d7359b1a
Codechange: Remove old group liveries savegame conversion. (#12537)
Conversion to set default group livery is in the wrong place (not in `AfterLoadGame()`), however it is not necessary any more as `AfterLoadGame()` always calls the function `UpdateCompanyLiveries()` which will do the same thing.
1 month ago
Peter Nelson 699c7e4c9d
Fix 3de8853e29: Industries accept/produce no cargo for pre-SLV_78 saves. (#12508)
Industry accepted/produced was trimmed too early for original and pre-SLV_78 saves, as cargo type was not stored per slot so all slots look invalid to the trim function.
1 month ago
Peter Nelson 1c31e4b68c
Change: Disallow using Action A to load sprites above the baseset unless reserved. (#12435)
Using Action A above the baseset is error prone as the sprites are not fixed and can be moved around.

Any NewGRF doing so is likely to break in the future, so force it to break instead.
1 month ago
Peter Nelson e028c15555
Codechange: Use std::accumulate to get infrastructure total rail/road pieces. (#12442) 1 month ago
translators 08140fdca3 Update: Translations from eints
dutch: 4 changes by Afoklala
1 month ago
Peter Nelson 6cbb8d02cf Change: Use aspect ratio for shared order list button. 1 month ago
Peter Nelson 5df5e3f45c Change: Use aspect ratio for file home button. 1 month ago
Peter Nelson 2a833a8968 Change: Use aspect ratio for rail station platforms/tracks buttons. 1 month ago
Peter Nelson 7e049aa2b1 Change: Use aspect ratio for common left/right buttons. 1 month ago
Peter Nelson 16eb17418b Change: Use aspect ratios for some common widgets. 1 month ago
Peter Nelson 61c6ebaacc Change: Automatically set aspect ratio of common window decorations. 1 month ago
Peter Nelson d43ff8dc49 Change: Ability to set aspect ratio of a widget.
This allows setting the shape of a widget without dealing with absolute pixel sizes.
1 month ago
Peter Nelson f267b37a33
Codechange: Use std::initializer_list/array in framerate window. (#12441) 1 month ago
Peter Nelson a28ab8cac2
Codechange: Replace C-style casts to size_t with static_cast. (#12455)
* Codechange: Replace C-style casts to size_t with static_cast.

This touches only simple value-type casts.

* Codechange: Replace static_cast<size_t>(-1) with SIZE_MAX

Co-authored-by: Rubidium <rubidium@openttd.org>
1 month ago