Fri, 03 Aug 2007 12:16:06 +0000(svn r10764) -Documentation: [FS#1099]: of road.h. Based on a patch by Progman.
rubidium [Fri, 03 Aug 2007 12:16:06 +0000] rev 7395
(svn r10764) -Documentation: [FS#1099]: of road.h. Based on a patch by Progman.

Fri, 03 Aug 2007 12:10:07 +0000(svn r10763) -Documentation [FS#1098]: document direction.h. Patch by Progman.
rubidium [Fri, 03 Aug 2007 12:10:07 +0000] rev 7394
(svn r10763) -Documentation [FS#1098]: document direction.h. Patch by Progman.

Fri, 03 Aug 2007 09:08:49 +0000(svn r10762) -Codechange: Change enum StringIDEnum { to static const StringID = for
peter1138 [Fri, 03 Aug 2007 09:08:49 +0000] rev 7393
(svn r10762) -Codechange: Change enum StringIDEnum { to static const StringID = for
each STR_ entry. This avoids the need for a cast to StringID in some
places and thus better type-safety.

Fri, 03 Aug 2007 02:21:10 +0000(svn r10761) -Fix (FS#1101, r10216): _pal_last_dirty changed to _pal_count_dirty without updating, so it was of by one
glx [Fri, 03 Aug 2007 02:21:10 +0000] rev 7392
(svn r10761) -Fix (FS#1101, r10216): _pal_last_dirty changed to _pal_count_dirty without updating, so it was of by one

Thu, 02 Aug 2007 23:40:19 +0000(svn r10760) -Codechange: make the order struct use the pool item class as super class.
rubidium [Thu, 02 Aug 2007 23:40:19 +0000] rev 7391
(svn r10760) -Codechange: make the order struct use the pool item class as super class.

Thu, 02 Aug 2007 23:21:52 +0000(svn r10759) -Codechange: make the industry struct use the pool item class as super class.
rubidium [Thu, 02 Aug 2007 23:21:52 +0000] rev 7390
(svn r10759) -Codechange: make the industry struct use the pool item class as super class.

Thu, 02 Aug 2007 22:33:53 +0000(svn r10758) -Codechange: make the depot struct use the pool item class as super class.
rubidium [Thu, 02 Aug 2007 22:33:53 +0000] rev 7389
(svn r10758) -Codechange: make the depot struct use the pool item class as super class.

Thu, 02 Aug 2007 22:32:47 +0000(svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.
rubidium [Thu, 02 Aug 2007 22:32:47 +0000] rev 7388
(svn r10757) -Codechange: make the engine renew struct use the pool item class as super class.

Thu, 02 Aug 2007 21:19:07 +0000(svn r10756) -Codechange: use vehicle->IsValid in favour of IsValidVehicle(vehicle).
rubidium [Thu, 02 Aug 2007 21:19:07 +0000] rev 7387
(svn r10756) -Codechange: use vehicle->IsValid in favour of IsValidVehicle(vehicle).

Thu, 02 Aug 2007 21:05:54 +0000(svn r10755) -Codechange: make the town struct use the pool item class as super class.
rubidium [Thu, 02 Aug 2007 21:05:54 +0000] rev 7386
(svn r10755) -Codechange: make the town struct use the pool item class as super class.

Thu, 02 Aug 2007 21:02:57 +0000(svn r10754) -Fix: MorphOS does not like sizeof in the templated pool item class, so use the item size that is set in the pool.
rubidium [Thu, 02 Aug 2007 21:02:57 +0000] rev 7385
(svn r10754) -Fix: MorphOS does not like sizeof in the templated pool item class, so use the item size that is set in the pool.

Thu, 02 Aug 2007 13:27:45 +0000(svn r10753) -Codechange: make the sign struct use the pool item class as super class.
rubidium [Thu, 02 Aug 2007 13:27:45 +0000] rev 7384
(svn r10753) -Codechange: make the sign struct use the pool item class as super class.

Thu, 02 Aug 2007 13:18:57 +0000(svn r10752) -Fix: apparantly const on function pointers is ignored.
rubidium [Thu, 02 Aug 2007 13:18:57 +0000] rev 7383
(svn r10752) -Fix: apparantly const on function pointers is ignored.

Thu, 02 Aug 2007 12:51:57 +0000(svn r10751) -Codechange: make the group struct use the pool item class as super class.
rubidium [Thu, 02 Aug 2007 12:51:57 +0000] rev 7382
(svn r10751) -Codechange: make the group struct use the pool item class as super class.

Thu, 02 Aug 2007 12:22:40 +0000(svn r10750) -Codechange: make the waypoint struct use the new poolitem class as super class.
rubidium [Thu, 02 Aug 2007 12:22:40 +0000] rev 7381
(svn r10750) -Codechange: make the waypoint struct use the new poolitem class as super class.

Thu, 02 Aug 2007 10:49:24 +0000(svn r10749) -Codechange: use the generic pool item class as super class for cargo packets, which results in a nice reduction of code duplication.
rubidium [Thu, 02 Aug 2007 10:49:24 +0000] rev 7380
(svn r10749) -Codechange: use the generic pool item class as super class for cargo packets, which results in a nice reduction of code duplication.

Thu, 02 Aug 2007 10:47:43 +0000(svn r10748) -Codechange: call the pool cleanup functions for stations directly instead of using the wrapper functions.
rubidium [Thu, 02 Aug 2007 10:47:43 +0000] rev 7379
(svn r10748) -Codechange: call the pool cleanup functions for stations directly instead of using the wrapper functions.

Thu, 02 Aug 2007 10:47:00 +0000(svn r10747) -Codechange: add a variable that points to some index in the pool that is not beyond the first free pool item. It does not necessarily point to the first free item, but it reduces allocation time as it does not have to start at the first item in the pool to find the first free item.
rubidium [Thu, 02 Aug 2007 10:47:00 +0000] rev 7378
(svn r10747) -Codechange: add a variable that points to some index in the pool that is not beyond the first free pool item. It does not necessarily point to the first free item, but it reduces allocation time as it does not have to start at the first item in the pool to find the first free item.

Thu, 02 Aug 2007 08:47:56 +0000(svn r10746) -Codechange: add a generic superclass for almost all pool items so we do not have to duplicate code for each of the pool item classes and use it for the station and roadstop classes.
rubidium [Thu, 02 Aug 2007 08:47:56 +0000] rev 7377
(svn r10746) -Codechange: add a generic superclass for almost all pool items so we do not have to duplicate code for each of the pool item classes and use it for the station and roadstop classes.

Wed, 01 Aug 2007 23:49:06 +0000(svn r10745) -Codechange: generalize the pool cleanup/initialize functions for stations (in such a manner that they can be used for other pools too).
rubidium [Wed, 01 Aug 2007 23:49:06 +0000] rev 7376
(svn r10745) -Codechange: generalize the pool cleanup/initialize functions for stations (in such a manner that they can be used for other pools too).

Wed, 01 Aug 2007 22:10:54 +0000(svn r10744) -Codechange: make the pool a little more OO, so it can be easier in other places.
rubidium [Wed, 01 Aug 2007 22:10:54 +0000] rev 7375
(svn r10744) -Codechange: make the pool a little more OO, so it can be easier in other places.

Wed, 01 Aug 2007 19:13:42 +0000(svn r10743) -Fix: some typos introduces by copy-pasting.
rubidium [Wed, 01 Aug 2007 19:13:42 +0000] rev 7374
(svn r10743) -Fix: some typos introduces by copy-pasting.

Mon, 30 Jul 2007 17:33:33 +0000(svn r10737) -Update: WebTranslator2 update to 2007-07-30 19:33:14
miham [Mon, 30 Jul 2007 17:33:33 +0000] rev 7373
(svn r10737) -Update: WebTranslator2 update to 2007-07-30 19:33:14
catalan - 51 changed by arnaullv (51)
german - 3 changed by chu (3)
polish - 5 fixed by meush (5)

Mon, 30 Jul 2007 13:36:09 +0000(svn r10736) -Fix: Correct all mispellings of 'successful'.
peter1138 [Mon, 30 Jul 2007 13:36:09 +0000] rev 7372
(svn r10736) -Fix: Correct all mispellings of 'successful'.

Mon, 30 Jul 2007 08:49:41 +0000(svn r10734) -Fix [FS#1030]: Revert r10513) and add special cases for collision detection on bridges/tunnels.
peter1138 [Mon, 30 Jul 2007 08:49:41 +0000] rev 7371
(svn r10734) -Fix [FS#1030]: Revert r10513) and add special cases for collision detection on bridges/tunnels.

Sun, 29 Jul 2007 23:42:59 +0000(svn r10733) -Codechange: change MP_STREET into MP_ROAD as we use the word "road" everywhere except in the tile type.
rubidium [Sun, 29 Jul 2007 23:42:59 +0000] rev 7370
(svn r10733) -Codechange: change MP_STREET into MP_ROAD as we use the word "road" everywhere except in the tile type.

Sun, 29 Jul 2007 23:25:17 +0000(svn r10732) -Codechange: lower the minimum size for the extra viewport window.
rubidium [Sun, 29 Jul 2007 23:25:17 +0000] rev 7369
(svn r10732) -Codechange: lower the minimum size for the extra viewport window.

Sun, 29 Jul 2007 22:58:59 +0000(svn r10731) -Codechange: allow smaller initial "build <vehicle type>" windows.
rubidium [Sun, 29 Jul 2007 22:58:59 +0000] rev 7368
(svn r10731) -Codechange: allow smaller initial "build <vehicle type>" windows.

Sun, 29 Jul 2007 22:57:40 +0000(svn r10730) -Codechange: allow (some) arbitrary data to be send to the WE_CREATE event.
rubidium [Sun, 29 Jul 2007 22:57:40 +0000] rev 7367
(svn r10730) -Codechange: allow (some) arbitrary data to be send to the WE_CREATE event.

Sun, 29 Jul 2007 22:21:26 +0000(svn r10729) -Fix: some hardware (PS(P|3)) seems to loose the non-blocking state of UDP sockets.
rubidium [Sun, 29 Jul 2007 22:21:26 +0000] rev 7366
(svn r10729) -Fix: some hardware (PS(P|3)) seems to loose the non-blocking state of UDP sockets.