summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-10-22(svn r17841) -Codechange: move state changes from OnPaint to OnInvalidate ↵rubidium
for the content gui.
2009-10-21(svn r17840) -Codechange: use the new pool's concepts (caching + not ↵rubidium
zeroing). Improves average CargoPacket con/destruction time by ~20%, MoveTo/Append by 5-10% and application performance by up to 2%.
2009-10-21(svn r17839) -Codechange: implement the concept of 'caching' pool items to ↵rubidium
pools, that is instead of 'free' push the unused items in a linked list and use them on 'malloc'. Also add the concept of zeroing, or actually not zeroing, on new for pool items.
2009-10-21(svn r17838) -Document: the Pool struct's template parametersrubidium
2009-10-21(svn r17837) -Fix (r17812): comment erroneously mentioned feeder sharerubidium
2009-10-20(svn r17836) -Codechange: split the CargoPacket constructor for creating ↵rubidium
'real' new CargoPackets and saveload. For saveload we do not need to set anything except two variables (the rest is always overwritten by the load), for new 'real' cargo also pass the source_xy; dereferencing st before calling is easier than resolving st->index back to st and then dereferencing. Also don't set loaded_at_xy because that is of no importance when not loaded in a vehicle.
2009-10-20(svn r17835) -Codechange: constify few variablessmatz
2009-10-20(svn r17834) -Fix [FS#3274] (r17808): you got paid a bit too much... ↵rubidium
ofcourse the index of the source station generally doesn't equal the location of said station.
2009-10-20(svn r17833) -Codechange: Depot gui should use relative widget coordinates ↵alberth
for clicking.
2009-10-20(svn r17832) -Codechange: make Alberth happiersmatz
2009-10-20(svn r17831) -Codechange: move code used for adding map indicators of the ↵smatz
smallmap to separate functions
2009-10-20(svn r17830) -Fix [FS#3276]: Some windows already need their window_number ↵frosch
when setting up smallest size (e.g. for DParams). So assign it earlier in Window::InitializeData instead of dealing with each window separately.
2009-10-20(svn r17829) -Codechange: move code used for adding vehicles and town names ↵smatz
to minimap to separate functions
2009-10-20(svn r17828) -Codechange: Variable declaration code style, and a few comment ↵alberth
typo-ish fixes.
2009-10-20(svn r17827) -Codechange: Deduplicate some lines of code.frosch
2009-10-20(svn r17826) -Codechange: GetRoadVehLength() is only used in one file, make ↵frosch
it static.
2009-10-20(svn r17825) -Change: 'animate' the 'center to current position' button in ↵smatz
SmallMapWindow when pressed
2009-10-20(svn r17824) -Fix (r4594): _date_fract runs from 0 to 73 since r2041. ↵frosch
Variable 0x09 should not.
2009-10-20(svn r17823) -Codechange: Use top of the matrix widget as offset for row ↵alberth
calculation in autoreplace window.
2009-10-20(svn r17822) -Codechange: move 'extra viewport' code from smallmap_gui.cpp ↵smatz
to viewport_gui.cpp
2009-10-20(svn r17821) -Codechange: make more mathods of SmallMapWindow privatesmatz
2009-10-20(svn r17820) -Update from WebTranslator v3.0:translators
traditional_chinese - 6 changes by josesun indonesian - 1 changes by prof
2009-10-20(svn r17819) -Codechange: replace magic constant by symbolic constantsmatz
2009-10-20(svn r17818) -Codechange: iterate the cargo list from the back when trying ↵rubidium
to merge packets. Chances are higher that the last packet (in the FIFO-ish queue) is mergeable with the to be added package. If a train gets loaded packets get split up and put into the different carriages, at unload they are unloaded in the same order so the last in the FIFO-ish queue is likely the packet it can merge with. This results in a 5-10% performance improvement of CargoList's Append/MoveTo without performance degradation of AgeCargo.
2009-10-20(svn r17817) -Codechange: MakeWater actually made sea tiles, so rename it to ↵rubidium
MakeSea and unduplicate the code to make sea, rivers and canals.
2009-10-20(svn r17816) -Codechange: move the CargoList invalidation-after-saveload to ↵rubidium
the function that handles the CargoPackets instead of spreading it around over the saveload files. Also add some code to validate whether the caches are valid; to be removed later when no problems turn up
2009-10-19(svn r17815) -Fix [SDL]: asynchronious drawing caused extra unresponsiveness ↵rubidium
during map generation; disable the threading while generating a map
2009-10-19(svn r17814) -Codechange: there's no need to invalidate the cache in the ↵rubidium
constructor of a CargoList; the list is empty, the CargoList is calloc-ed so all caches are 0.
2009-10-19(svn r17813) -Codechange: unify the CargoPacket related coding stylerubidium
2009-10-19(svn r17812) -Codechange: move the feeder_share cache from CargoList to ↵rubidium
VehicleCargoList; saves 512 bytes per station and 1-2% on CargoList::MoveTo.
2009-10-18(svn r17811) -Codechange: make HasEditBoxFocus a private function of ↵rubidium
QueryString because it's not meant to be used for determining whether the given widget actually has focus (it also checks the OSK edit box)
2009-10-18(svn r17810) -Codechange/Fix: Add assert_tcompile() and use it.frosch
OTTD's traditional assert_compile() does not work inside templates for gcc compilers, static_assert() does though. The new assert_tcompile() resolves into static_assert() if present, or into a runtime assert() else.
2009-10-18(svn r17809) -Fix: MSVC compilation.frosch
2009-10-18(svn r17808) -Codechange: remove write 'access' from all of CargoPacket's ↵rubidium
variables
2009-10-18(svn r17807) -Codechange: move all 'updates' just after the 'load' ↵rubidium
constructor of CargoPackets to the constructor call itself
2009-10-18(svn r17806) -Codechange: split CargoPacket's 'afterload' to a separate functionrubidium
2009-10-18(svn r17805) -Update from WebTranslator v3.0:translators
norwegian_bokmal - 1 changes by Utvik norwegian_nynorsk - 1 changes by Utvik
2009-10-18(svn r17804) -Codechange: move the CargoPacket 'invalidation' when stations ↵rubidium
get removed to CargoPacket.
2009-10-18(svn r17803) -Codechange: Remove update_(left|right) in favour of the ↵frosch
rebuild flag of GUIList.
2009-10-18(svn r17802) -Feature(ette) [FS#1862]: [NewGRF] Textstack support for CB 37.frosch
2009-10-18(svn r17801) -Codechange: for StationCargoLists the 'loaded_at_xy' does not ↵rubidium
matter when merging CargoPackets
2009-10-18(svn r17800) -Codechange: first steps into making CargoList a templaterubidium
2009-10-18(svn r17799) -Codechange: industry view window uses pure nested widgets.alberth
2009-10-18(svn r17798) -Codechange: Introduce new constant WD_PAR_VSEP_WIDE for large ↵alberth
amount of space between text.
2009-10-18(svn r17797) -Codechange: Use parameters of new function, introduce ↵alberth
constants for hardcoded numbers.
2009-10-18(svn r17796) -Codechange: Move drawing of the industry info to its own function.alberth
2009-10-18(svn r17795) -Codechange: split cargolist into one for vehicles and one for ↵rubidium
stations.
2009-10-17(svn r17794) -Feature: [OSX] Implement automatic fallback font selection for ↵michi_cc
OSX.
2009-10-17(svn r17793) -Fix: [OSX] The splash image wasn't displayed if the Quartz ↵michi_cc
video driver was used.
2009-10-17(svn r17792) -Fix [FS#3261]: [OSX] Fix (bogus) compiler warnings related to ↵michi_cc
printf argument checking.