summaryrefslogtreecommitdiff
path: root/src/script
AgeCommit message (Collapse)Author
2019-03-31Codechange: Remove ship max order distance from script API.peter1138
2019-03-31Fix 6fc60d8c4f: forgot to update API changelogglx
2019-03-30Codechange: Check airport layout would fit within map bounds before ↵PeterN
iterating tiles. (#7429)
2019-03-29Codechange: Distance between town and airport has already just been found, ↵PeterN
so use it. (#7427) Previously the distance was thrown away, only to be expensively recalculated again.
2019-03-28Fix: MSVC warnings (#7423)glx22
2019-03-26Codechange: Use range-based for-loop in Auto[Free|Delete]SmallVectorHenry Wilson
2019-03-26Codechange: Removed SmallVector completelyHenry Wilson
2019-03-26Codechange: Replaced SmallVector::[Begin|End]() with std alternativesHenry Wilson
2019-03-26Codechange: Replaced SmallVector::Append() with ↵Henry Wilson
std::vector::[push|emplace]_back()
2019-03-26Codechange: Replace SmallVector::Length() with std::vector::size()Henry Wilson
2019-03-26Codechange: [core] Implement SmallVector using std::vectorHenry Wilson
The public and protected interface to SmallVector are unchanged SmallVector now requires that items be default constructible This isn't an issue since some contained items were previously created uninitialized. Temporary default constructors are added to the following structs - SmallPair - SmallStackItem - GRFPresence Where vector<bool> is required, transition immediately to std::vector to avoid returning proxy object references.
2019-03-24Add: script API functions for build with refit featureglx
2019-03-24Feature: When filtering purchase list by cargo type, make buy button perform ↵peter1138
a refit if required.
2019-03-24Codechange: Use override specifer for overriding member declarationsHenry Wilson
This is a C++11 feature that allows the compiler to check that a virtual member declaration overrides a base-class member with the same signature. Also src/blitter/32bpp_anim_sse4.hpp +38 is no longer erroneously marked as virtual despite being a template.
2019-03-20Remove: ENABLE_NETWORK switchPatric Stout
This switch has been a pain for years. Often disabling broke compilation, as no developer compiles OpenTTD without, neither do any of our official binaries. Additionaly, it has grown so hugely in our codebase, that it clearly shows that the current solution was a poor one. 350+ instances of "#ifdef ENABLE_NETWORK" were in the code, of which only ~30 in the networking code itself. The rest were all around the code to do the right thing, from GUI to NewGRF. A more proper solution would be to stub all the functions, and make sure the rest of the code can simply assume network is available. This was also partially done, and most variables were correct if networking was disabled. Despite that, often the #ifdefs were still used. With the recent removal of DOS, there is also no platform anymore which we support where networking isn't working out-of-the-box. All in all, it is time to remove the ENABLE_NETWORK switch. No replacement is planned, but if you feel we really need this option, we welcome any Pull Request which implements this in a way that doesn't crawl through the code like this diff shows we used to.
2019-03-09Feature: Non-rectangular sparse station catchment area.Peter Nelson
2019-03-09Codechange: Convert StationList from SmallVector to std::set.peter1138
2019-03-08Fix 13962a847, 00d28a500: forgotten squirrel_export run (#7345)glx22
2019-03-08Add: AI API for vehicle group colours (#7336)PeterN
2019-03-03Change: Heading for 1.10 now (#7319)frosch
2019-03-03Add: Add parent_group_id parameter to CreateGroup()Peter Nelson
2019-03-03Add: AI function to get current usage of a group.Peter Nelson
2019-03-03Add: AI functions to get/set company colours.Peter Nelson
2019-03-03Add: AI functions to get current and last year profit of a group.Peter Nelson
2019-03-03Add: AI functions to set/get vehicle group parent.Peter Nelson
2019-02-23Change: Framerate window can now scroll and resizeNiels Martin Hansen
2019-02-23Change: Add scrollbar to cargo legend in cargo payment rates window.Peter Nelson
2019-02-23Feature: Add option to adjust font size separately from GUI size. (#7003)Greg Carlin
Adds an option in the "Game Options" next to "Interface Size" called "Font Size". Available options are normal, double, and quad.
2019-02-19Doc: [AI] UnshareOrders empties the orders list of the vehicle.Samu
2019-02-15Fix #7224: AI could no longer create groups. (#7233)PeterN
2019-02-10Fix: line ending issues with MSYS2glx
2019-02-06Fix #7108: Missed generate_widget script run for livery changes.Peter Nelson
2019-02-02Change: Allow AI companies to start immediately.Samu
Allow multiple AIs to possibly start in the same tick. start_date = 0 becomes a special case, where random deviation does not occur. If start_date was not already 0, then a minimum value of 1 must apply.
2019-01-31Change: Give AI/GSBridge::GetName an extra parameter to refer the vehicle ↵SamuXarick
type (#6988)
2019-01-31Feature: Group liveries, and livery window usability enhancements. (#7108)PeterN
* Change: Replace checkbox in livery selection window with Default option in drop down selection. This reduces clutter in the UI and allows for primary/secondary colours to independently follow the default scheme if desired. * Feature: Add vehicle group liveries.
2019-01-28Fix #7112, fef8b831a9: incorrect precondition check (#7127)glx22
2019-01-23Add: generate_widget.vbs to allow script_window.hpp enums generation for ↵glx
users unable to run bash/gawk scripts
2019-01-23Fix: keep the line ending when generating widget enums with bash/gawk on windowsglx
2019-01-14Fix: BSD find used by OSX requires explicit pathglx
2019-01-14Add: squirrel_export.vbs for users unable to run bash/gawk scriptsglx
2019-01-14Cleanup: remove svn references in squirrel_export.shglx
2019-01-14Fix: remove manual single file generation in squirrel_export.sh as it's brokenglx
2019-01-14Fix: keep line endings when running squirrel_export.sh on windowsglx
2019-01-05Add: Conditional order for max. reliability (patch by Cirdan, #6360) (#7017)Eddi-z
2019-01-05Fix 6accbf9: Silence warnings about unused fread() resultNiels Martin Hansen
2018-12-29Fix #6966: Only allow switching to a valid company.Alberth
2018-12-27Fix: [Win32] WIN32 may not be defined, always prefer the compiler predefined ↵glx
macro _WIN32
2018-12-27Fix #6974: Add save-load filter widget to apiJoan Josep
2018-11-28Fix: Spelling in code comment (#6984)comicsads
2018-11-17Fix #6969: Account for BOM when reading script filesCharles Pigott