------------------------------------------------------------------------ r3556 | tron | 2006-02-05 14:47:15 +0000 (Sun, 05 Feb 2006) | 3 lines Add accessors for handling tree tiles See tree.h for details ------------------------------------------------------------------------ r3555 | bjarni | 2006-02-05 14:18:28 +0000 (Sun, 05 Feb 2006) | 7 lines -Codechange: [Big Endian] removed defining OTTD_ALIGNMENT by 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 ------------------------------------------------------------------------ r3554 | tron | 2006-02-05 11:54:25 +0000 (Sun, 05 Feb 2006) | 1 line Add accessors for the field type and fences of clear tiles ------------------------------------------------------------------------ r3553 | Darkvater | 2006-02-05 11:10:31 +0000 (Sun, 05 Feb 2006) | 1 line - Revert r3549 "Change the behaviour of OTTD_ALIGNMENT". Some tests showed that forcing aligned reads slowed down the code (drawing smallmap) by 14%. Change back to the old behaviour. ------------------------------------------------------------------------ r3552 | tron | 2006-02-05 09:56:04 +0000 (Sun, 05 Feb 2006) | 1 line Remove the global variable _mixer ------------------------------------------------------------------------ r3551 | peter1138 | 2006-02-05 09:28:06 +0000 (Sun, 05 Feb 2006) | 2 lines Add directives to allow Visual Studio 2005 compilation. ------------------------------------------------------------------------ r3550 | Darkvater | 2006-02-04 23:09:33 +0000 (Sat, 04 Feb 2006) | 1 line - [Patches]: fix GCC warning, sorry ------------------------------------------------------------------------ r3549 | Darkvater | 2006-02-04 23:03:35 +0000 (Sat, 04 Feb 2006) | 1 line - Change the behaviour of OTTD_ALIGNMENT. Force aligned reading as default, undefine it if unwanted/unneeded for some reason. I undeffed windows and watcom for now as they were like this. ------------------------------------------------------------------------ r3548 | Darkvater | 2006-02-04 22:52:30 +0000 (Sat, 04 Feb 2006) | 1 line - [Patches]: rework two loops in make_oneofmany() and make_manyofmany() ------------------------------------------------------------------------ r3547 | Darkvater | 2006-02-04 22:48:57 +0000 (Sat, 04 Feb 2006) | 1 line - [Patches]: do some general cleanup, commentarization before 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. ------------------------------------------------------------------------ r3546 | peter1138 | 2006-02-04 21:48:46 +0000 (Sat, 04 Feb 2006) | 1 line - NewGRF feature: Implement rail vehicle 'property' 0x1A: allows shuffling order of rail vehicle purchase list (and replace vehicle list) ------------------------------------------------------------------------ r3535 | bjarni | 2006-02-04 18:25:07 +0000 (Sat, 04 Feb 2006) | 6 lines -Feature: [autoreplace] allow autoreplacing of train wagons 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 ------------------------------------------------------------------------ r3534 | Darkvater | 2006-02-04 15:28:30 +0000 (Sat, 04 Feb 2006) | 1 line - Codechange: remove unused savedump patch-settings. ------------------------------------------------------------------------ r3532 | tron | 2006-02-04 11:53:31 +0000 (Sat, 04 Feb 2006) | 1 line Revert r3467, was total nonesense, my fault ------------------------------------------------------------------------ r3530 | peter1138 | 2006-02-03 23:02:01 +0000 (Fri, 03 Feb 2006) | 1 line - NewGRF: Move station resolver to newgrf_station ------------------------------------------------------------------------ r3529 | Darkvater | 2006-02-03 21:51:42 +0000 (Fri, 03 Feb 2006) | 1 line - Fix: [ 1415782 ] crash in string code with openbsd/zaurus; alignment issues (thanks Tron for the help) ------------------------------------------------------------------------ r3528 | peter1138 | 2006-02-03 18:32:59 +0000 (Fri, 03 Feb 2006) | 2 lines - Feature: Allow sorting of vehicle lists by model or value (based on meush's work) ------------------------------------------------------------------------ r3527 | Darkvater | 2006-02-03 17:31:24 +0000 (Fri, 03 Feb 2006) | 1 line - Codechange: merge change from branch/0.4.5/. It should be other way, but ok :S ------------------------------------------------------------------------ r3525 | peter1138 | 2006-02-03 15:51:00 +0000 (Fri, 03 Feb 2006) | 2 lines - Rename station_newgrf.[ch] to newgrf_station.[ch], and update project files. ------------------------------------------------------------------------ r3524 | peter1138 | 2006-02-03 12:55:21 +0000 (Fri, 03 Feb 2006) | 2 lines - Split newgrf features from engine.[ch] into newgrf_engine.[ch], and add the new files to project files. ------------------------------------------------------------------------ r3523 | peter1138 | 2006-02-03 07:45:58 +0000 (Fri, 03 Feb 2006) | 2 lines Undefine helper macros after using them ------------------------------------------------------------------------ r3522 | peter1138 | 2006-02-03 07:42:49 +0000 (Fri, 03 Feb 2006) | 2 lines - Wrap the vehicle info tables with a macro to simplify adding new fields in the future. ------------------------------------------------------------------------ r3521 | peter1138 | 2006-02-02 08:03:10 +0000 (Thu, 02 Feb 2006) | 2 lines - Feature: Allow trains details view to be resized. ------------------------------------------------------------------------ r3520 | tron | 2006-02-02 07:15:46 +0000 (Thu, 02 Feb 2006) | 1 line Remove unused parameters from some functions ------------------------------------------------------------------------ r3516 | tron | 2006-02-01 19:53:17 +0000 (Wed, 01 Feb 2006) | 1 line Fix embarrassing bug in r3514 ------------------------------------------------------------------------ r3515 | tron | 2006-02-01 16:17:08 +0000 (Wed, 01 Feb 2006) | 1 line Fix copy&pasto in r3514 ------------------------------------------------------------------------ r3514 | tron | 2006-02-01 15:31:21 +0000 (Wed, 01 Feb 2006) | 3 lines -Codechange: Replace direct fiddling of bits for the ground type and density of clear tiles with symbolic names and accessors. See clear.h for details ------------------------------------------------------------------------ r3513 | peter1138 | 2006-02-01 09:11:31 +0000 (Wed, 01 Feb 2006) | 2 lines Fix strange typo in last commit ... ------------------------------------------------------------------------ r3512 | peter1138 | 2006-02-01 09:08:25 +0000 (Wed, 01 Feb 2006) | 2 lines Yet more whitespace fixes (mostly by Rubidium) ------------------------------------------------------------------------ r3511 | tron | 2006-02-01 07:36:15 +0000 (Wed, 01 Feb 2006) | 1 line More whitespace ([FS#46] by Rubidium) ------------------------------------------------------------------------ r3510 | tron | 2006-02-01 06:32:03 +0000 (Wed, 01 Feb 2006) | 1 line Fiddle with whitespace and parentheses ------------------------------------------------------------------------ r3509 | tron | 2006-02-01 06:12:02 +0000 (Wed, 01 Feb 2006) | 1 line Now -p is really gone (fix r3508) ------------------------------------------------------------------------ r3508 | tron | 2006-02-01 06:09:37 +0000 (Wed, 01 Feb 2006) | 1 line Completly remove the deprecated -p parameter (is superseded by -n) ------------------------------------------------------------------------ r3507 | matthijs | 2006-02-01 01:36:18 +0000 (Wed, 01 Feb 2006) | 3 lines - Fix: [Makefile] Make sure the ICON_DIR gets created before copying files there. - Fix: Fix small syntactic error in the manpage. ------------------------------------------------------------------------ r3505 | Darkvater | 2006-01-31 23:38:58 +0000 (Tue, 31 Jan 2006) | 1 line - Update known-bugs and delete scenarios from SVN. ------------------------------------------------------------------------ r3502 | Darkvater | 2006-01-31 22:26:00 +0000 (Tue, 31 Jan 2006) | 1 line - Update appropiate files with release information for 0.4.5 ------------------------------------------------------------------------ r3501 | Darkvater | 2006-01-31 22:24:02 +0000 (Tue, 31 Jan 2006) | 1 line - Load the lobby-window with up-to-date data upon opening ------------------------------------------------------------------------ r3500 | Darkvater | 2006-01-31 22:16:15 +0000 (Tue, 31 Jan 2006) | 1 line - Workaround the inaccurate count of spectators/companies that 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. ------------------------------------------------------------------------ r3499 | Darkvater | 2006-01-31 20:05:44 +0000 (Tue, 31 Jan 2006) | 4 lines - Fix: a few gui glitches in the network window: 1. disable widgets also when the active companies/spectators is bigger than the max. This can happen if the server has changed the settings. 2. updated scroll-count in the lobby as the window is higher. ------------------------------------------------------------------------ r3498 | tron | 2006-01-31 19:06:02 +0000 (Tue, 31 Jan 2006) | 1 line Fix the edge case for r3419/r3488: when a vehicle just enters a tile, the height difference can be 8 ------------------------------------------------------------------------ r3497 | Darkvater | 2006-01-31 18:31:05 +0000 (Tue, 31 Jan 2006) | 1 line - Update some more language files (thanks ln- (finnish), egladil (swedish)) ------------------------------------------------------------------------ r3496 | peter1138 | 2006-01-31 12:08:49 +0000 (Tue, 31 Jan 2006) | 2 lines - Validate filename titles before they get displayed. This avoids crashes with UTF-8 encoded or bad filenames by replacing undisplayable characters with a '?' ------------------------------------------------------------------------ r3495 | tron | 2006-01-31 06:53:32 +0000 (Tue, 31 Jan 2006) | 2 lines Rename the string handles for cargo names with a quantity and abbreviated cargo names to something sensible, i.e. STR_QUANTITY_$NAME and STR_ABBREV_$NAME ------------------------------------------------------------------------ r3494 | Darkvater | 2006-01-30 22:36:35 +0000 (Mon, 30 Jan 2006) | 2 lines - Update several languages. Thanks all translators online atm (Bjarni, glx, MeusH, Tron, me, my sister) - Remove the most blatant of untranslated or wrongly-outdated strings. ------------------------------------------------------------------------ r3493 | bjarni | 2006-01-30 19:31:02 +0000 (Mon, 30 Jan 2006) | 1 line -docs: [OSX] forgot to add Cocoa drivers and universal binaries as supported (thanks to Tobin for noticing) ------------------------------------------------------------------------ r3492 | bjarni | 2006-01-30 19:17:48 +0000 (Mon, 30 Jan 2006) | 1 line -docs: [OSX] Updated readme regarding compiling universal binaries ------------------------------------------------------------------------ r3491 | peter1138 | 2006-01-30 18:42:46 +0000 (Mon, 30 Jan 2006) | 2 lines - NewGRF Fix: Handle loading of rail vehicle flags (unimplemented) ------------------------------------------------------------------------ r3490 | tron | 2006-01-30 17:18:45 +0000 (Mon, 30 Jan 2006) | 1 line -Fix: A bunch (10) of off-by-one errors when checking if a TileIndex points to a tile on the map ------------------------------------------------------------------------ r3489 | tron | 2006-01-30 16:58:05 +0000 (Mon, 30 Jan 2006) | 1 line Remove an unused declaration ------------------------------------------------------------------------ r3488 | tron | 2006-01-30 16:57:47 +0000 (Mon, 30 Jan 2006) | 1 line Simplify the check in r3419 ------------------------------------------------------------------------ r3487 | tron | 2006-01-30 16:48:24 +0000 (Mon, 30 Jan 2006) | 1 line -Fix: Price for demolishing a bridge was dependent on orientation and map size ------------------------------------------------------------------------ r3486 | peter1138 | 2006-01-30 14:50:55 +0000 (Mon, 30 Jan 2006) | 2 lines - NewGRF fix: Always reinitialize the ttdpatch flags as patch settings may have changed. ------------------------------------------------------------------------ r3485 | Darkvater | 2006-01-30 14:03:34 +0000 (Mon, 30 Jan 2006) | 1 line - [Post-PBS]: when reverting PBS and removing station-tile reservations a station can of course not be a crossing as well. Thanks glx. ------------------------------------------------------------------------ r3484 | bjarni | 2006-01-29 23:04:51 +0000 (Sun, 29 Jan 2006) | 1 line -fix: fixed issue in last commit where loading savegame versions 18 and 19 didn't init the multiheaded engine pointers ------------------------------------------------------------------------ r3483 | truelight | 2006-01-29 22:42:17 +0000 (Sun, 29 Jan 2006) | 3 lines -Fix: fixed warning about setjmp (tnx Bjarni for testing, and tnx for taking the effort to commit it) ------------------------------------------------------------------------ r3482 | Darkvater | 2006-01-29 22:40:51 +0000 (Sun, 29 Jan 2006) | 1 line - Fix: since multiheaded links are not saved anymore do NOT save them anymore at all, return the extra space. Since Bjarni's fix for this was abominable, the weird situation arises of 2 NULL structs of free space, of which the first isn't usable. ------------------------------------------------------------------------ r3481 | Darkvater | 2006-01-29 21:38:24 +0000 (Sun, 29 Jan 2006) | 2 lines - Try and fix an svn discrepancy of trolly.h #2 ------------------------------------------------------------------------ r3480 | Darkvater | 2006-01-29 21:37:39 +0000 (Sun, 29 Jan 2006) | 2 lines - Try and fix an svn discrepancy of trolly.h ------------------------------------------------------------------------ r3479 | truelight | 2006-01-29 20:32:30 +0000 (Sun, 29 Jan 2006) | 3 lines -Fix: fixed warnings on 64bit platforms (anyway, most 64bit platforms) (tnx to qball and DarkVater for testing) ------------------------------------------------------------------------ r3478 | Darkvater | 2006-01-29 20:24:18 +0000 (Sun, 29 Jan 2006) | 1 line - Fix: In the network game list do the default sorting on connectivity (so servers which you can join are on top) and sort on names as a second criteria on clients and connectivity. ------------------------------------------------------------------------ r3477 | truelight | 2006-01-29 20:06:26 +0000 (Sun, 29 Jan 2006) | 2 lines -Fix: a fix that fixed the last commit.. I shouldn't be committing here :) ------------------------------------------------------------------------ r3476 | truelight | 2006-01-29 20:03:50 +0000 (Sun, 29 Jan 2006) | 2 lines -Fix: fixed a warning from the OSX compiler, it is bogus, but oh well ------------------------------------------------------------------------ r3475 | Darkvater | 2006-01-29 19:50:01 +0000 (Sun, 29 Jan 2006) | 1 line - Fix: you couldn't remove an item from a list-type of config ingame from the configuration file. Whatever you did, upon restart of OpenTTD those items were still there. To fix this we initialize the first item to NULL in SaveList as it is rebuilt anyways fully. ------------------------------------------------------------------------ r3474 | truelight | 2006-01-29 19:49:15 +0000 (Sun, 29 Jan 2006) | 2 lines -Fix: don't use CXXFLAGS for DEP and CFLAGS for Compile, gives funny results ;) ------------------------------------------------------------------------ r3473 | Darkvater | 2006-01-29 19:01:13 +0000 (Sun, 29 Jan 2006) | 1 line - [PBS] forgot to delete pbs.[ch] ------------------------------------------------------------------------