Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 style | rubidium | |
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 function | rubidium | |
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 template | rubidium | |
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. | |||
2009-10-17 | (svn r17791) -Codechange: Highscore and endgame windows use pure nested widgets. | alberth | |
2009-10-17 | (svn r17790) -Feature: translatable base sound/graphics set descriptions | rubidium | |
2009-10-17 | (svn r17789) -Update from WebTranslator v3.0: | translators | |
basque - 79 changes by Thadah greek - 11 changes by fumantsu norwegian_bokmal - 78 changes by Utvik norwegian_nynorsk - 1 changes by Utvik swedish - 233 changes by accatyyc | |||
2009-10-17 | (svn r17788) -Fix [FS#3268] (r16702): don't fail hard when no soundcard ↵ | rubidium | |
could be detected; just fall back on the null-driver | |||
2009-10-17 | (svn r17787) -Codechange: be a bit more verbose about while allegro failed ↵ | rubidium | |
with some actions. | |||
2009-10-17 | (svn r17786) -Fix [FS#3265]: graphical glitches (matrices/scrollbars with ↵ | rubidium | |
wrong 'size') upon reiniting windows | |||
2009-10-17 | (svn r17785) -Codechange: autoreplace window uses pure nested widgets. | alberth | |
2009-10-17 | (svn r17784) -Codechange: Replace 'i' with 'side' when side is intended in ↵ | alberth | |
the autoreplace window. | |||
2009-10-17 | (svn r17783) -Codechange: Remove local pointer variable 'widget' from ↵ | alberth | |
autoreplace window. | |||
2009-10-17 | (svn r17782) -Fix [FS#3270]: animation wasn't removed from station tiles ↵ | rubidium | |
when keeping the rail during removal | |||
2009-10-17 | (svn r17781) -Codechange: Remove local variable 'selected_group' from ↵ | alberth | |
autoreplace window. | |||
2009-10-17 | (svn r17780) -Codechange: A bit more code style in the autoreplace window. | alberth | |
2009-10-16 | (svn r17779) -Update from WebTranslator v3.0: | translators | |
basque - 5 changes by Thadah hungarian - 1 changes by Petert vietnamese - 31 changes by nglekhoi | |||
2009-10-15 | (svn r17778) -Fix: remove unneeded newline from 'TOC' debug lines. | rubidium | |
2009-10-15 | (svn r17777) -Update from WebTranslator v3.0: | translators | |
basque - 7 changes by Thadah danish - 8 changes by krak greek - 47 changes by fumantsu thai - 43 changes by sf_alpha | |||
2009-10-15 | (svn r17776) -Codechange: [SDL] make "update the video card"-process ↵ | rubidium | |
asynchronious. Profiling with gprof etc. hasn't shown us that DrawSurfaceToScreen takes a significant amount of CPU; only using TIC/TOC it became apparant that it was a heavy CPU-cycle user or that it was waiting for something. The benefit of making this function asynchronious ranges from 2%-25% (real time) during fast forward on dual core/hyperthreading-enabled CPUs; 8bpp improvements are, in my test cases, significantly smaller than 32bpp improvements. On single core non-hyperthreading-enabled CPUs the extra locking/scheduling costs up to 1% extra realtime in fast forward. You can use -v sdl:no_threads to disable threading and undo this loss. During normal non-fast-forwarded games the benefit/costs are negligable except when the gameloop takes more than about 90% of the time of a tick. Note that allegro's performance does not improve with this system, likely due to their way of getting data to the video card. It is not implemented for the OS X/Windows video backends, unless (ofcourse) SDL is used there. Funny is that the performance of the 32bpp(-anim) blitter is, at least in some test cases, significantly faster (more than 10%) than the 8bpp(-optimized) blitter when looking at real time in fast forward on a dual core CPU; it was slower. The idea comes from a paper/report by Idar Borlaug and Knut Imar Hagen. | |||
2009-10-14 | (svn r17775) -Update from WebTranslator v3.0: | translators | |
basque - 119 changes by Thadah danish - 2 changes by krak brazilian_portuguese - 1 changes by Tucalipe | |||
2009-10-14 | (svn r17774) -Codechange: show the version of the (dynamically) linked ↵ | rubidium | |
library instead of the one we compiled against in the crash log | |||
2009-10-14 | (svn r17773) -Cleanup: sdl.h isn't needed for allegro | rubidium | |
2009-10-13 | (svn r17772) -Fix [FS#3264]: CJK languages don't have spaces, so for adding ↵ | rubidium | |
newlines (multi line strings) we need to (properly) handle the case when there are no spaces instead of truncating the string. | |||
2009-10-13 | (svn r17771) -Codechange: use the 'StringID' function instead of the 'const ↵ | rubidium | |
char *' function + custom code to resolve the 'const char *' from the 'StringID' | |||
2009-10-13 | (svn r17770) -Update from WebTranslator v3.0: | translators | |
basque - 20 changes by Thadah vietnamese - 21 changes by nglekhoi | |||
2009-10-12 | (svn r17769) -Update from WebTranslator v3.0: | translators | |
basque - 292 changes by Thadah greek - 73 changes by fumantsu | |||
2009-10-12 | (svn r17768) -Fix (r17715): [OSX] Newer GCC versions don't like jumping over ↵ | michi_cc | |
variable definitions with goto's. (planetmaker) | |||
2009-10-12 | (svn r17767) -Fix [FS#3190]: [OSX] Don't check 64bit-ness when compiling strgen. | michi_cc | |