summaryrefslogtreecommitdiff
path: root/vehicle_gui.c
AgeCommit message (Collapse)Author
2006-10-02(svn r6612) -Codechange: Use accessors for hidden_state.belugas
Another step toward merging XTDwidget. The only two files not converted (window.h and widget.c) will be done at the very last commit)
2006-10-01(svn r6608) - Fix (r6601): The scroll bar could fall out of the window... ↵peter1138
more gui-fu needed...
2006-10-01(svn r6607) - Fix (r6601): Fix selection of refit type when the list is ↵peter1138
scrolled.
2006-10-01(svn r6602) - Feature: we now support NewGRF livery refits, as used by ↵peter1138
DBsetXL, amongst others. This requires a savegame bump to save the cargo subtype.
2006-10-01(svn r6601) - Codechange: Support cargo subtypes in the refit window. The ↵peter1138
refit window has been altered to support resizing and scrolling. Note that the cargo subtype isn't yet passed for actual refitting yet. (Based on mart3p's patch)
2006-09-30(svn r6591) -Codechange: changed strings that used the word "depot" into one ↵bjarni
for each vehicle type This is a request from translators as depot is not valid for all vehicle types in all translations This will cause a lot of warnings when generating the lang files. MiHaMiX will fix them in a moment (hopefully)
2006-09-30(svn r6586) -Feature: [depot window] added a vehicle list window with all ↵bjarni
vehicles having a certain depot in their orders It got one known issue though. The top bar got a plural issue so expect to see stuff like "1 trains" until we figure out why it behaves this way Added the button to the depot windows. Made the autoreplace button bigger while I was moving some widgets anyway Made road vehicle depot windows start with one more row to make room for the buttons
2006-09-29(svn r6582) -Codechange: changed GenerateVehicleSortList() to reuse the same ↵bjarni
allocation over and over if possible (like BuildDepotVehicleList() ) This will prevent some reallocations when sorting vehicle list windows It also prevents moving the whole array into a new one each time the list is generated/updated (it used to make the list in one array and then move it into another one each time) Also ensured that neither GenerateVehicleSortList() or BuildDepotVehicleList() will never allocate lists longer than the total number of vehicles in the game
2006-09-29(svn r6581) -Fix r6562: [vehicle list windows] fixed an off by one issue ↵bjarni
when drawing the bottom row of buttons
2006-09-29(svn r6570) -Feature: added "start all" and "stop all" buttons to the ↵bjarni
vehicle lists
2006-09-29(svn r6565) - Fix (r6562): Missing newline at EOF caused a compiler warningpeter1138
2006-09-28(svn r6562) -Codechange: merged the vehicle list window widget arraysbjarni
It made no sense to maintain 8 nearly identically arrays when a single one can do the job Also made the two buttons always use half of the bottom width each, even when resizing
2006-09-28(svn r6559) -Codechange: [vehicle list windows] moved creation and drawing ↵bjarni
code into two new functions to make it easier to see what goes on where
2006-09-28(svn r6544) - Codechange: Rename CmdReplaceVehicle to CmdSetAutoReplace, to ↵peter1138
reflect what it does.
2006-09-27(svn r6519) -Code cleanup r6518: changed a line to apply to the coding stylebjarni
2006-09-27(svn r6518) -Codechange: unified the vehicle refit windowsbjarni
This was requested by peter1138
2006-09-23(svn r6499) -Codechange: Finally, got "byte event" outside of the union ↵belugas
WindowEvent, which is now a struct
2006-09-08(svn r6431) -Fix r6424: removed a declaration after statement in ↵bjarni
ReplaceVehicleWndProc()
2006-09-08(svn r6429) -Fix: [autoreplace GUI] selecting an empty line will now ↵bjarni
deselect the engine instead of selecting the first in the list (consistent with all other windows) -Fix: [autoreplace GUI] engine info is now drawn in the right side even if the left list is empty
2006-09-08(svn r6428) -Codechange: [autoreplace] removed duplicated code to draw the ↵bjarni
info text in the autoreplace window
2006-09-08(svn r6424) -Codechange: [autoreplace] removed a loop though all vehicles ↵bjarni
from each time the window is redrawn To do this, the player struct contains an array, that contains the count of each engine type that the player owns Those arrays are updated each time a vehicle is build or deleted and is calculated on load (it's not saved) It's possible to access the arrays outside of the autoreplace GUI, so feel free to read from them in other patches as well
2006-09-07(svn r6418) -Fix: [autoreplace] now multiheaded engines and other ↵bjarni
locomotives consisting of more than one unit will only be counted once This also cleaned up the counting loop alot and it will also (hopefully) be faster (didn't benchmark it)
2006-09-04(svn r6381) -Cleanup: make the '/* */' comments that span multiple lines ↵rubidium
more uniform. -Cleanup: whitespace alignment of a few tables.
2006-09-04(svn r6379) -Codechange: cast 'remove babel' on widget's unkA and rename it ↵Darkvater
to 'data'.
2006-09-04(svn r6378) -Codechange: Rename VLW_FLAGS to VLW_MASK as it is a maskDarkvater
2006-09-04(svn r6377) -Codechange: Set up the widgets in the WE_CREATE instead of on ↵Darkvater
every WE_PAINT -Codechange: Initialize sorting-type on WE_CREATE instead of checking every time. -Codechange: Update custom vehiclelist_d with standard list_d struct, more static
2006-09-03(svn r6372) -Codechange: static, unneeded decleration in headers, ↵Darkvater
superfluous header includes -Codechange: Unify the Sorting struct both for vehicle-lists and network-lists.
2006-09-03(svn r6370) -Codechange: moved all the remaining setup for ↵bjarni
PlayerVehWndProc() into WE_CREATE
2006-09-02(svn r6350) -Codechange: moved some setup stuff into WE_CREATE in ↵bjarni
PlayerVehWndProc() This is possible now that the window number is known when running WE_CREATE and it's a nicer solution
2006-09-01(svn r6291) -Feature: Vehicle lists from the station window now also got the ↵bjarni
goto depot button -Codechange: unified the code for mass goto depot to avoid duplicated code -Fix: Vehicles already on the way to depots will not be cancelled by mass goto depot (made it really hard to send all vehicles at once)
2006-08-31(svn r6283) -Code cleanup: fixed wrong indent in PlayerVehWndProc()bjarni
2006-08-31(svn r6282) -Codechange: made a function to create the vehicle list for ↵bjarni
vehicle list windows this list is also used by mass goto depot to ensure that they use the same vehicles right now only the list of all vehicles use this for goto depot, but eventually all the types will use this
2006-08-31(svn r6271) Remove stale commenttron
2006-08-31(svn r6270) Remove the "unsorted" vehicle sorter, because it's plain uselesstron
2006-08-31(svn r6269) -Fix r6240: fixed incorrect row count in vehicle lists when ↵bjarni
resizing to smaller windows (AsterixMG)
2006-08-31(svn r6261) -Fix r6246: fixed sprite related crash related to other player's ↵bjarni
vehicle list windows (spotted by Darkvater)
2006-08-30(svn r6249) -Fix: fixed assert when pressing goto depot in an empty list ↵bjarni
(forgot to disable the button in this condition) -Code cleanup r6246: simplified SendAllVehiclesToDepot() and moved an { in PlayerVehWndProc()
2006-08-30(svn r6246) -Feature: added the many times requested "send all vehicle to ↵bjarni
depot" button it's located in the vehicle list screen and does the same as in the shared orders window (send all vehicles in list to a depot) it will still not inform the player if a vehicle failed to find a depot, so don't take for granted that all of them go
2006-08-30(svn r6243) -Codechange: made SortVehicleList() static as well since that ↵bjarni
one is not used in any other files either (Thanks Tron for pointing this out)
2006-08-30(svn r6242) -Codechange: made BuildVehicleList static as it is not used in ↵bjarni
any other files anymore added window_type to arguments and used it to replace an if cascade with a switch case
2006-08-30(svn r6241) -Fix r6240: missed altering one line in last commitbjarni
2006-08-30(svn r6240) -Code cleanup: in PlayerVehWndProc: replaced size_of_row with ↵bjarni
w->resize.step_height it was only used twice, so there was no reason to calculate it for each event
2006-08-30(svn r6239) -Code cleanup: cleaned up PlayerVehWndProcbjarni
code to delete an empty shared orders list is now much simpler cleaned up the code to handle button clicks fixed an assert if widget 9 was pressed on a list with vehicles for another company
2006-08-29(svn r6229) -Feature: Shared order lists now got a "goto depot" buttonbjarni
this will try to send all vehicles in the list to depots/hangars currently if one fails to find a depot, it will not tell the player
2006-08-29(svn r6228) -Fix: redrawing an empty list of shared vehicles will now close ↵bjarni
the window Since the order is no more, the player will not need that particular window anymore this could happen if the player opened the window and then sold all the vehicles (or crashed them) A crash could happen if a new order gets the same (now freed) OrderID and the vehicle using it is not of the same type as the window expect
2006-08-29(svn r6227) -Codechange: added window type flags to use with PlayerVehWndProcbjarni
this makes the list type detection much easier and allowed an if cascade to be turned into a switch case this also makes it easier to add more list types
2006-08-29(svn r6215) -Codechange: [vehicle list windows] unified ↵bjarni
Player(vehicle)WndProc into PlayerVehWndProc Those 4 unified functions were really much alike, so there was no reason to have so much dublicated code
2006-08-28(svn r6204) -Cleanup: replace non-indentation with spaces; like '}<TAB>else ↵rubidium
{' -> '} else {', tabs between code and comment, etc.
2006-08-28(svn r6195) -Codechange: do not use '//' in '/* ... */' style comments and ↵rubidium
'/*' or '*/' in '//' style comments.
2006-08-27(svn r6167) -Code cleanup r6161: replaced some uint16 with OrderID and (1 << ↵bjarni
8) with SHARE_FLAG