src/build_vehicle_gui.cpp
Wed, 09 Jan 2008 09:45:45 +0000 rubidium (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
Wed, 09 Jan 2008 00:59:02 +0000 rubidium (svn r11785) -Codechange: remove some unneeded includes.
Mon, 07 Jan 2008 22:38:30 +0000 peter1138 (svn r11781) -Codechange: variable scope and initialization
Mon, 07 Jan 2008 00:57:19 +0000 rubidium (svn r11774) -Change: do not include variables.h in a header when it is not needed.
Thu, 27 Dec 2007 15:47:08 +0000 bjarni (svn r11710) -Feature: [build vehicles windows] added sorting for cost, running costs and speed to road vehicles and ships build windows
Thu, 27 Dec 2007 13:35:39 +0000 rubidium (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
Wed, 26 Dec 2007 13:50:40 +0000 rubidium (svn r11702) -Codechange: move all date related stuff to date*.
Tue, 25 Dec 2007 11:26:07 +0000 rubidium (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
Sat, 22 Dec 2007 23:30:28 +0000 rubidium (svn r11682) -Codechange: move some 'generic' geometry related types into a single file and do not include gfx.h everywhere to get a Point type.
Fri, 21 Dec 2007 21:50:46 +0000 rubidium (svn r11677) -Codechange: move price and command related types/functions to their respective places.
Fri, 21 Dec 2007 19:49:27 +0000 rubidium (svn r11675) -Codechange: split the string types from the string functions.
Wed, 19 Dec 2007 20:45:46 +0000 rubidium (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
Wed, 19 Dec 2007 19:44:29 +0000 rubidium (svn r11667) -Codechange: split window.h into a header that defines some 'global' window related types, on that defined 'global' window functions and one that defines functions and types only used by *_gui.cpps.
Sun, 02 Dec 2007 14:29:48 +0000 rubidium (svn r11555) -Codechange: use the new members introduced in r11551.
Mon, 19 Nov 2007 21:02:30 +0000 skidd13 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
Sun, 04 Nov 2007 00:08:57 +0000 belugas (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
Sat, 20 Oct 2007 14:51:09 +0000 rubidium (svn r11312) -Codechange: implement a overflow safe integer and use that for money and don't misuses CommandCost to have a overflow safe integer. Based on a patch by Noldo.
Fri, 05 Oct 2007 22:13:35 +0000 glx (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
Mon, 17 Sep 2007 04:23:03 +0000 rubidium (svn r11122) -Fix [FS#1234]: crash when building a NewGRF vehicle when the articulated build vehicle callback returneed a different value for the purchase window than the normal build. Thanks for Dalestan and _minime_ for pointers to possible causes.
Mon, 27 Aug 2007 21:33:26 +0000 rubidium (svn r10992) -Fix [FS#1132]: huge amount of vehicles in the "ungrouped" group. Patch by frosch.
Sun, 29 Jul 2007 22:58:59 +0000 rubidium (svn r10731) -Codechange: allow smaller initial "build <vehicle type>" windows.
Fri, 27 Jul 2007 12:49:04 +0000 rubidium (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
Tue, 17 Jul 2007 06:56:09 +0000 peter1138 (svn r10603) -Codechange: avoid direct access to _engine_info
Sat, 14 Jul 2007 23:10:27 +0000 rubidium (svn r10567) -Add [FS#915]: a "group" with ungrouped vehicles. Patch by Matthias Wolf.
Fri, 13 Jul 2007 19:06:12 +0000 truelight (svn r10552) -Fix [FS#1034, r10546]: opening Available Aircrafts segfaulted
Fri, 13 Jul 2007 14:51:55 +0000 truelight (svn r10546) -Fix [FS#1026]: you can now have both Available Train as Available Ship window open
Mon, 25 Jun 2007 14:46:32 +0000 peter1138 (svn r10324) -Codechange: reference engine names by index
Fri, 22 Jun 2007 10:57:53 +0000 truelight (svn r10265) -Feature: allow double-clicking on certain places: build-vehicle and town-action
Thu, 21 Jun 2007 17:25:17 +0000 rubidium (svn r10258) -Codechange: as we are now using int64 all over the place, it's better to use int64 variables in the string generating too instead of packing them into two int32s.
Thu, 21 Jun 2007 14:54:51 +0000 rubidium (svn r10247) -Fix (r10210): *always* call SetDParamMoney when you want to place money in some string.
Thu, 21 Jun 2007 14:32:27 +0000 rubidium (svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch.
Sat, 02 Jun 2007 15:47:38 +0000 bjarni (svn r10025) -Fix: [build windows] sorting planes for capacity didn't check mail capacity. Now mail capacity is used if passenger capacity is the same
Sat, 02 Jun 2007 15:41:37 +0000 bjarni (svn r10024) -Feature: [build windows] trains, road vehicles and ships can now be sorted by cargo capacity (planes already had this option)
Fri, 01 Jun 2007 11:41:02 +0000 maedhros (svn r10008) -Codechange: Move a couple of functions related to articulated vehicles to a file of their own.
Fri, 25 May 2007 08:13:01 +0000 rubidium (svn r9917) -Codechange: prepare some more areas for more road types.
Sat, 19 May 2007 09:40:18 +0000 rubidium (svn r9874) -Feature: advanced vehicle lists a.k.a. group interface. Now you can make groups of vehicles and perform all kinds of tasks on that given group. Original code by nycom and graphics by skidd13.
Fri, 18 May 2007 17:31:41 +0000 rubidium (svn r9869) -Codechange: replace some bytes with VehicleType, i.e. more type strictness.
Sat, 12 May 2007 07:05:34 +0000 peter1138 (svn r9828) -Codechange: [NewGRF] Add support for changing cargo capacity with callback 36. This is set on construction for ships and roadvehicles, and whenever carriages are attached for trains.
Mon, 07 May 2007 16:38:21 +0000 peter1138 (svn r9809) -Codechange: [NewGRF] Add callback 36 properties to purchase lists and add running cost changing for ships.
Mon, 07 May 2007 13:26:10 +0000 peter1138 (svn r9806) -Codechange: [NewGRF] Add callback 36 support for purchase cost, for all vehicle types.
Fri, 20 Apr 2007 21:42:06 +0000 peter1138 (svn r9703) -Codechange: support callback 36 in vehicle purchase lists
Wed, 18 Apr 2007 22:10:36 +0000 rubidium (svn r9672) -Cleanup: lots of coding style fixes around operands.
Mon, 26 Mar 2007 12:28:44 +0000 maedhros (svn r9476) -Codechange: Make build windows for all vehicle types the same width.
Mon, 26 Mar 2007 11:41:14 +0000 maedhros (svn r9475) -Codechange: Allow the purchase details widget to expand dynamically if there's still not enough room for the text.
Mon, 26 Mar 2007 08:55:45 +0000 maedhros (svn r9474) -Fix (r8378): Expand the details widget in the vehicle build windows again to make room for all the text.
Thu, 08 Mar 2007 16:27:54 +0000 rubidium (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
Tue, 06 Mar 2007 22:11:58 +0000 bjarni (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
Fri, 02 Mar 2007 12:01:24 +0000 celestar (svn r8973) -Feature/Codechange: Changed the internal unit for aircraft velocities to from 8mph to 1km/h (peter1138), also give aircraft realsitic velocities (so that 1km/h is 1km/h independent of vehicle type) (peter1138). Introduce a flag to reduce aircraft speed in holding patterns to some realistic velocity. Use this flag for the city airport for the time being and make use of the different entry points for this airport type.
Fri, 23 Feb 2007 11:50:43 +0000 belugas (svn r8859) -Cleanup: doxygen changes. Mostly @files missing tags and a few comments style.
Tue, 20 Feb 2007 22:09:21 +0000 peter1138 (svn r8826) -Codechange: Replace _cargoc's separate arrays with a regular struct array (with accessor) and implement new initialization method using cargo labels.
Tue, 20 Feb 2007 06:39:09 +0000 tron (svn r8822) -Fix
Sat, 17 Feb 2007 18:38:35 +0000 bjarni (svn r8787) -Change r8771: allow fast aircraft in small airports
Sat, 17 Feb 2007 16:07:45 +0000 bjarni (svn r8783) -Fix r8771: aircraft vehicle subtype and aircraft engine subtype aren't the same (even though they both tell if it's a plane or helicopter)
Sat, 17 Feb 2007 12:45:15 +0000 bjarni (svn r8771) -Fix r8343: build aircraft windows will no longer show aircraft that can't use the airport in question
Fri, 16 Feb 2007 09:38:43 +0000 tron (svn r8755) -Fix
Thu, 15 Feb 2007 20:58:45 +0000 bjarni (svn r8749) -Regression r8331: fixed signed/unsigned issue that could create too many lines in build vehicle windows and crash the game
Thu, 15 Feb 2007 20:16:33 +0000 tron (svn r8747) -Fix
Thu, 15 Feb 2007 17:51:39 +0000 bjarni (svn r8746) -Regression r8331: build train window could sort incorrectly by EngineID with certain newGRF sets
Wed, 07 Feb 2007 19:10:19 +0000 bjarni (svn r8621) -Codechange: assigned new numbers to the VEH_(type) enum so that VEH_Train is 0, VEH_Road is 1 and so on
Tue, 06 Feb 2007 11:11:12 +0000 bjarni (svn r8610) -Codechange/Feature: rewrote the list handling in the autoreplace window