summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-10-08(svn r6686) -Fix r6684: Intro Date is now called Introduction Datebjarni
2006-10-08(svn r6685) -Fix (r6672): Hide the 'sell chain' panel instead of the ↵peter1138
horizontal scroll bar twice...
2006-10-07(svn r6684) -Feature: [train build window] added sorting options for the enginesbjarni
2006-10-07(svn r6683) -Fix: '<' signed unsigned mismatch produced by VC8KUDr
2006-10-07(svn r6682) WebTranslator2 update to 2006-10-07 19:35:57miham
danish - 7 fixed, 44 changed by ThomasA (51) french - 6 fixed by glx (6) hungarian - 6 fixed by miham (6) polish - 6 fixed by meush (6)
2006-10-07(svn r6681) -Fix: when vehicles never expire they will stay at peak ↵bjarni
reliability instead of the lowest to make them useful even when old -Fix: when retiring an engine design, invalidate the build windows and invalidate the build window data -Fix: mark build windows dirty when engine reliability changes
2006-10-07(svn r6680) -Codechange r6679: [train build window] only generate the list ↵bjarni
when the window data is invalidated or the window is generated, not on each redraw
2006-10-07(svn r6679) -Feature: [train build window] added filter for wagons, engines ↵bjarni
or both in the display -Codechange: [train build window] to get rid of a really ugly hack, the train build list is now generated in one loop and stored in an array
2006-10-07(svn r6678) -Code cleanup: [train build window] made an enum with widget ↵bjarni
names and fixed some incorrect indents
2006-10-07(svn r6677) -Codechange r6651: [depot window] disabled the check for the ↵bjarni
correct cache in the depot window Nobody had problems so far, so we can assume that InvalidateWindowData() is used everywhere where it's needed The check is just disabled, not deleted so it's quick to reenable if we change some code and wants to check this again
2006-10-07(svn r6676) -Fix: [vehicle list windows] mass start/stop now works correctly ↵bjarni
in shared orders and station lists
2006-10-07(svn r6675) WebTranslator2 update to 2006-10-07 09:24:13miham
bulgarian - 17 fixed by kokobongo (17) norwegian - 76 fixed, 511 changed by jhsoby (587) slovak - 46 fixed by lengyel (46) spanish - 3 fixed by eusebio (3)
2006-10-06(svn r6674) -Fix r6631: two loops had incorrect behaviour (out of bound ↵glx
access in widget arrays)
2006-10-06(svn r6673) -Codechange: [depot window] replaced a piece of code to ↵bjarni
calculate max number of vehicles in a row with a simple read of the matrix grid
2006-10-06(svn r6672) -Codechange: [depot & vehicle windows] applied ↵bjarni
SetWindowWidgetsDisabledState() and SetWindowWidgetsHiddenState() to depot and vehicle windows
2006-10-06(svn r6671) -Fix r6670: typo :Pglx
2006-10-06(svn r6670) -Fix r6669: SetWindowWidgetsDisableState() should disable ↵glx
widgets, not hide them
2006-10-06(svn r6669) -Add: vararg functions to set hidden/disabled/lowered state of ↵glx
multiple widgets in one call
2006-10-06(svn r6668) -Codechange: [depot window] simplified the engine drawing loop ↵bjarni
in the depot window
2006-10-06(svn r6667) - Codechange: The vehicle list has no horizontal scroll bar, so ↵peter1138
don't use it to store data; instead, just get the widget's width.
2006-10-06(svn r6666) WebTranslator2 update to 2006-10-06 08:47:45miham
brazilian_portuguese - 3 fixed, 2 changed by tucalipe (5) turkish - 6 fixed by jnmbk (6)
2006-10-06(svn r6664) -Fix (r6513): use svn:eol-style instead of eol-stylerubidium
2006-10-06(svn r6663) -Codechange: Remove the 32 widgets limit on landscape generator.belugas
2006-10-06(svn r6661) Feature: Windows are not restricted to 32 widget items anymore. belugas
The functions required to do so are to be found in window.h. Rather then use the old deprecated disabled_state, hidden_state and click_state uint32 variables, we now need to use accessors like SetWindowWidgetDisabledState, SetWindowWidgetHiddenState or SetWindowWidgetLoweredState. This is the final commit for the merge of XTDwidget branch.
2006-10-06(svn r6660) -Fix(r6631): Prevent the fast-foward button to toggle up and ↵belugas
down when pressing shift. The _fastforward and _pause bool are not exactly used as bool. So, when doing test with them, amek it so that the will appear as such
2006-10-05(svn r6659) -Fix r6619: Fix widget state setting of the rail toolbar when ↵glx
using global hotkeys.
2006-10-05(svn r6658) -CodeChange: cleaned up the PlayerCompanyWindow codeglx
2006-10-05(svn r6657) -Change: [depot window] sell all vehicles in depot confirm ↵bjarni
window now opens on top of depot window instead of in the middle of the screen
2006-10-05(svn r6656) -Fix r6631: keep gender button lowered when clicking on 'New Face'glx
2006-10-05(svn r6655) WebTranslator2 update to 2006-10-05 20:34:35miham
dutch - 3 fixed, 2 changed by habell (5) german - 3 fixed, 2 changed by Neonox (5) italian - 3 fixed by sidew (3) ukrainian - 17 fixed, 2 changed by znikoz (19)
2006-10-05(svn r6654) - Codechange: If no 2cc vehicles are available, hide the ↵peter1138
secondary colour choice.
2006-10-05(svn r6653) -Fix r6624: [autoreplace] autoreplace will no longer replace a ↵bjarni
vehicle if the old type can refit to the cargo types being used in the refit orders and the new one lacks one or more of those refit capabilities
2006-10-05(svn r6652) -Feature: [depot window] depot lists are now sorted, so vehicle ↵bjarni
1 is always first and so on This should not be a big slowdown as it's only called each time the list is generated and will normally be much faster than the list generation itself (only a small % of the total number of vehicles is in the depot)
2006-10-05(svn r6651) -Coding feature: added the windowevent WE_INVALIDATE_DATAbjarni
This gives the ability to invalidate some window data and recalculate as needed instead of doing it for each WE_PAINT This event is called right away when using InvalidateWindowData(), so it may be a good idea to set a bool or similar in the window or similar and then act on that bool in WE_PAINT instead of doing a lot of stuff in WE_INVALIDATE_DATA as it might be called more than once before WE_PAINT is called InvalidateWindowData() will not automatically repaint the window, so if you want to repaint it as well, you need to mark it dirty as well. Made the depot windows use WE_INVALIDATE_DATA to set when to generate the engine and wagon lists instead of at each redraw It makes no sense to regenerate the list when say using the scrollbar if we know that no vehicle have entered or left the list NOTE: currently there is a piece of code to generate the list when it's not needed and compare it to the stored list and assert if they mismatch This check is somewhat slow and kills the whole idea of WE_INVALIDATE_DATA, so it's a short lived one to verify that InvalidateWindowData() is used everywhere where it's needed
2006-10-05(svn r6650) - Fix (r6619): Fix widget state setting of the rail toolbar when ↵peter1138
using hotkeys.
2006-10-05(svn r6649) - Codechange: Show more correct capacity of articulated wagons ↵peter1138
in the train purchase list.
2006-10-05(svn r6648) -Codechange: simplified CmdDepotMassAutoReplace() by changing a ↵bjarni
switch-case into using a function, that was added in r6647
2006-10-05(svn r6647) -Fix: [vehicle list windows] Lists of shared orders are now no ↵bjarni
longer closed by a window event if the list is empty The window is now closed when the order is deleted. This is because removing windows from a window event is asking for problems
2006-10-05(svn r6646) -Codechange: [vehicle list window] Cleaned up the drawing codebjarni
This moved a few of the strings and sprites a few pixels. Hopefully this will work out ok.
2006-10-05(svn r6645) -Fix(r6631): Forgot two click_state occurencesbelugas
2006-10-05(svn r6644) -Fix(r6637): remove inline to allow MSVC compilationbelugas
-Fix(r5124): Add aircraft.h to MSVC projects
2006-10-05(svn r6643) -Fix(r6631): Adjust proper disabled and lowered states of ↵belugas
removal button on railtoolbar
2006-10-04(svn r6642) -Fix r6639: 2 conversions missedglx
2006-10-04(svn r6641) -Fix(6639): Wongly converted SetWidgetLoweredStatebelugas
2006-10-04(svn r6640) -Fix: [autoreplace] autoreplace can now use the money for ↵bjarni
selling the old vehicle to build the new one Say we got 40k for selling the old one and the new one costs 60k, then the player only needs 20k to replace The new engine is still built before selling the old one for various reasons, but now the player gets a loan of the sell value, which is always repaid when replace fails or the old engine is sold. The player will never notice this loan.
2006-10-04(svn r6639) -CodeChange : Conversion of SetWidgetLoweredState to ↵belugas
SetWindowWidgetLoweredState, in order to follow pre-established standard
2006-10-04(svn r6638) -Fix r5652: restored each vehicle list type to their type ↵bjarni
classes, so it's possible to redraw all lists of one vehicle type again (instead of all types)
2006-10-04(svn r6637) -Codechange: merged all (vehicle type)EnterDepot into ↵bjarni
VehicleEnterDepot() This revealed duplicated code like aircraft lists got invalidated twice Moved invalidation of the vehicle detail window to VehicleServiceInDepot() as it should always be updated when serviced
2006-10-04(svn r6636) WebTranslator2 update to 2006-10-04 09:10:08miham
french - 24 changed by glx (24) icelandic - 6 changed by scrooge (6)
2006-10-04(svn r6635) -Fix r6634: incomplete/incorrect assignmentglx