summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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 copiestron
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 filespeter1138
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 tilestron
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 tilestron
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 _mixertron
2006-02-05(svn r3551) Add directives to allow Visual Studio 2005 compilation.peter1138
2006-02-04(svn r3550) - [Patches]: fix GCC warning, sorryDarkvater
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 wagonsbjarni
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 faulttron
2006-02-03(svn r3530) - NewGRF: Move station resolver to newgrf_stationpeter1138
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 thempeter1138
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 functionstron
2006-02-01(svn r3516) Fix embarrassing bug in r3514tron
2006-02-01(svn r3515) Fix copy&pasto in r3514tron
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 parenthesestron
2006-02-01(svn r3509) Now -p is really gone (fix r3508)tron
2006-02-01(svn r3508) Completly remove the deprecated -p parameter (is superseded by -n)tron
2006-02-01(svn r3507) - Fix: [Makefile] Make sure the ICON_DIR gets created before ↵matthijs
copying files there. - Fix: Fix small syntactic error in the manpage.
2006-01-31(svn r3505) - Update known-bugs and delete scenarios from SVN.Darkvater
2006-01-31(svn r3502) - Update appropiate files with release information for 0.4.5Darkvater
2006-01-31(svn r3501) - Load the lobby-window with up-to-date data upon openingDarkvater
2006-01-31(svn r3500) - Workaround the inaccurate count of spectators/companies that ↵Darkvater
can happen in certain border-cases. For now just dynamically get this value when requested so it is always right. To do properly all player/client creation/destruction needs a hook for networking.