Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-02-08 | (svn r3579) v->u.rail.first_engine holds an engine type, not a vehicle ↵ | peter1138 | |
index, so use INVALID_ENGINE. | |||
2006-02-08 | (svn r3576) - Allow unused wagons have their ->first set. This fixes the ↵ | peter1138 | |
faulty cache warning message, and noticably speeds up depot operations in large games. | |||
2006-02-07 | (svn r3574) - [Merge] [GPMI] -Fix: finally OTTD doesn't compile if you do a ↵ | Darkvater | |
'make mrproper' (TrueLight) | |||
2006-02-07 | (svn r3573) - Replace assert(0) with NOT_REACHED(). This commit sponsored by ↵ | peter1138 | |
"giving Darkvater credit for the last three". | |||
2006-02-07 | (svn r3572) - Rewrite GetFreeUnitNumber() so that only one loop of vehicles ↵ | peter1138 | |
is required. Instead a list of used/unused numbers is created and the first unused number is chosen. This significantly improves performance in large games. | |||
2006-02-07 | (svn r3571) - When loading a game, call TrainConsistChanged() for each train ↵ | peter1138 | |
head separately before updating images, as v->first is used extensively in GetTrainImage() for custom graphics. This gives a significant speed improvement on loading a game. | |||
2006-02-07 | (svn r3570) - Explicitly update v->first in TrainConsistChanged() if ↵ | peter1138 | |
necessary, as this is far faster than brute forcing it later. | |||
2006-02-06 | (svn r3568) - Fix: constantizing side-effect of qsort in r3563. Ugly? Yes. ↵ | Darkvater | |
Makes MSVC happy? Yes. | |||
2006-02-06 | (svn r3567) -Fix: for once and for all, use 'unsigned long' if you want to ↵ | truelight | |
cast something from int-like to void *... we fixed that not too long ago, and the code below this changed line clearly tells you do to that :p | |||
2006-02-06 | (svn r3565) - Fix: On loading a game, GetPlayerRailtypes() didn't account ↵ | peter1138 | |
for the fact that vehicles are introduced a year after their introduction date. This will also relieve possible (rare) network desyncs. | |||
2006-02-06 | (svn r3564) Several smaller changes: | tron | |
- Don't treat non-booleans as booleans - Reduce variable scope - Bracing - Use DeMorgan's law to make conditionals easier to read - if cascade -> switch - Replace some magic numbers by symbolic names - Avoid assignments within other statements | |||
2006-02-06 | (svn r3563) Simplify the code for calculating the highscore table in network ↵ | tron | |
games and saving of old ecenomy data | |||
2006-02-06 | (svn r3562) Remove pointless buffer copies | tron | |
2006-02-06 | (svn r3561) Don't use FindLandscapeHeightByTile() when it's overkill. Also ↵ | tron | |
use a sprite enum instead of a magic number. | |||
2006-02-06 | (svn r3560) Restore plural forms of cargo types for several languages. | tron | |
I extracted the info from 2614:2615. If you speak one of the languages, please check if the changes are correct. | |||
2006-02-05 | (svn r3559) - CodeChange: simplify MKCOLOR(x) macro for smallmap_gui.c by ↵ | Darkvater | |
adding a TO_LE32X() macro next to TO_BE32X(). The 'X' signifies them as macros and not-inline functions so they can be used in variable declarations. | |||
2006-02-05 | (svn r3558) Add newgrf_callbacks.h to VS project files | peter1138 | |
2006-02-05 | (svn r3557) - NewGRF: move callback enums to a new file as more than just ↵ | peter1138 | |
engines will use them | |||
2006-02-05 | (svn r3556) Add accessors for handling tree tiles | tron | |
See tree.h for details | |||
2006-02-05 | (svn r3555) -Codechange: [Big Endian] removed defining OTTD_ALIGNMENT by ↵ | bjarni | |
default on Big Endian CPUs this increased speed when reading unaligned data (like strings) test showed this to increase speed by 5,6% when drawing the mini map on PPC OSX the tradeoff is that now it will crash if a Big Endian computer don't support unaligned reading but it should easily fixable in stdafx.h if it turns out to be a problem | |||
2006-02-05 | (svn r3554) Add accessors for the field type and fences of clear tiles | tron | |
2006-02-05 | (svn r3553) - Revert r3549 "Change the behaviour of OTTD_ALIGNMENT". Some ↵ | Darkvater | |
tests showed that forcing aligned reads slowed down the code (drawing smallmap) by 14%. Change back to the old behaviour. | |||
2006-02-05 | (svn r3552) Remove the global variable _mixer | tron | |
2006-02-05 | (svn r3551) Add directives to allow Visual Studio 2005 compilation. | peter1138 | |
2006-02-04 | (svn r3550) - [Patches]: fix GCC warning, sorry | Darkvater | |
2006-02-04 | (svn r3549) - Change the behaviour of OTTD_ALIGNMENT. Force aligned reading ↵ | Darkvater | |
as default, undefine it if unwanted/unneeded for some reason. I undeffed windows and watcom for now as they were like this. | |||
2006-02-04 | (svn r3548) - [Patches]: rework two loops in make_oneofmany() and ↵ | Darkvater | |
make_manyofmany() | |||
2006-02-04 | (svn r3547) - [Patches]: do some general cleanup, commentarization before ↵ | Darkvater | |
starting actual work. This patch contains no functional changes (I hope). It might break GPMI-builds though when trying to join a trunk/ network game or vice versa. To solve, you can change the order of the first 8 enums in SettingDescType. I think that'll work. | |||
2006-02-04 | (svn r3546) - NewGRF feature: Implement rail vehicle 'property' 0x1A: allows ↵ | peter1138 | |
shuffling order of rail vehicle purchase list (and replace vehicle list) | |||
2006-02-04 | (svn r3535) -Feature: [autoreplace] allow autoreplacing of train wagons | bjarni | |
currently ALL available wagons are displayed in the right menu in the replace window however the replacement will only be done if the new wagon can be refitted to carry same cargo as the old one is currently carrying Since the standard vehicles do not have any valid wagon replacements, this feature can only be used when using newgrf sets | |||
2006-02-04 | (svn r3534) - Codechange: remove unused savedump patch-settings. | Darkvater | |
2006-02-04 | (svn r3532) Revert r3467, was total nonesense, my fault | tron | |
2006-02-03 | (svn r3530) - NewGRF: Move station resolver to newgrf_station | peter1138 | |
2006-02-03 | (svn r3529) - Fix: [ 1415782 ] crash in string code with openbsd/zaurus; ↵ | Darkvater | |
alignment issues (thanks Tron for the help) | |||
2006-02-03 | (svn r3528) - Feature: Allow sorting of vehicle lists by model or value ↵ | peter1138 | |
(based on meush's work) | |||
2006-02-03 | (svn r3527) - Codechange: merge change from branch/0.4.5/. It should be ↵ | Darkvater | |
other way, but ok :S | |||
2006-02-03 | (svn r3525) - Rename station_newgrf.[ch] to newgrf_station.[ch], and update ↵ | peter1138 | |
project files. | |||
2006-02-03 | (svn r3524) - Split newgrf features from engine.[ch] into ↵ | peter1138 | |
newgrf_engine.[ch], and add the new files to project files. | |||
2006-02-03 | (svn r3523) Undefine helper macros after using them | peter1138 | |
2006-02-03 | (svn r3522) - Wrap the vehicle info tables with a macro to simplify adding ↵ | peter1138 | |
new fields in the future. | |||
2006-02-02 | (svn r3521) - Feature: Allow trains details view to be resized. | peter1138 | |
2006-02-02 | (svn r3520) Remove unused parameters from some functions | tron | |
2006-02-01 | (svn r3516) Fix embarrassing bug in r3514 | tron | |
2006-02-01 | (svn r3515) Fix copy&pasto in r3514 | tron | |
2006-02-01 | (svn r3514) -Codechange: Replace direct fiddling of bits for the ground type ↵ | tron | |
and density of clear tiles with symbolic names and accessors. See clear.h for details | |||
2006-02-01 | (svn r3513) Fix strange typo in last commit ... | peter1138 | |
2006-02-01 | (svn r3512) Yet more whitespace fixes (mostly by Rubidium) | peter1138 | |
2006-02-01 | (svn r3511) More whitespace ([FS#46] by Rubidium) | tron | |
2006-02-01 | (svn r3510) Fiddle with whitespace and parentheses | tron | |
2006-02-01 | (svn r3509) Now -p is really gone (fix r3508) | tron | |