Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-08-23 | (svn r6081) -Fix(6054) : Silenced a MSVC warning on compiling (thanks ↵ | belugas | |
MaulinMonkey) | |||
2006-08-22 | (svn r6055) -Codechange: added GetXXXArraySize, which returns HighestID + 1 ↵ | truelight | |
(or, will do that). It isn't the best name, but we couldn't find any better. This unifies the pool-system even more. | |||
2006-08-22 | (svn r6054) Change the sign sorter in a similar way as the other sorters: ↵ | tron | |
Remember a list of pointers to signs instead of a list of SignIDs - This removes a layer of indirection Also make the sign list static | |||
2006-08-22 | (svn r6050) -Codechange: mass-renamed SignStruct -> Sign and ss -> si. Now ↵ | truelight | |
functions and variables all match eachother | |||
2006-08-22 | (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips ↵ | truelight | |
invalid ones -Codechange: use IsValidXXX where ever possible Note: both changes to prepare for new pool system, which needs those changes. For every pool there are 2 ugly lines, which will be removed when done implementing new pool system. Based on FS#13 by blathijs, partly implemented. | |||
2006-08-22 | (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. ↵ | rubidium | |
whitespace fixes only except for a few comments to make them uniform for the whole enum/struct. | |||
2006-08-16 | (svn r5926) -Codechange: make _cur_year contain the full year, instead of ↵ | rubidium | |
the offset since 1920 -Codechange: store all year related variables that are _not_ stored in a savegame/transported over the network in the same format as _cur_year | |||
2006-08-15 | (svn r5916) -Cleanup: use MIN_YEAR/MAX_YEAR for the year boundaries and ↵ | rubidium | |
BASE_YEAR when comparing _cur_year with a 'full' year. -Cleanup: replace some magic '1920' values with BASE_YEAR. | |||
2006-08-14 | (svn r5887) -Cleanup: move date related functions, defines and variables to ↵ | rubidium | |
date.[ch] -Cleanup: fix whitespace related coding style issues in date.[ch] -Cleanup: make original comments doxygen compatible and remove/change outdated comments | |||
2006-05-09 | (svn r4809) Codechange : Merged two loops in only one. | belugas | |
2006-05-03 | (svn r4713) - Fix: random crashes when opening some GUI (i.e. cheats window) ↵ | KUDr | |
on Win32 debug build. | |||
2006-03-26 | (svn r4128) - CodeChange: Add proper semantics for CargoID for such ↵ | Darkvater | |
variables instead of using the general byte-type. | |||
2006-02-18 | (svn r3613) Some more const, indentation, whitespace and similar stuff | tron | |
2006-02-16 | (svn r3607) - Fix indenting of PerformanceRatingDetailWndProc() | peter1138 | |
2006-02-01 | (svn r3511) More whitespace ([FS#46] by Rubidium) | tron | |
2006-01-22 | (svn r3417) - Make company league table window pinnable. | peter1138 | |
2005-12-07 | (svn r3270) Correct all (mis)uses of WWT_CLOSEBOX / WWT_TEXTBTN to reflect ↵ | peter1138 | |
their actual use, and add "Close Window" tooltip where missing. | |||
2005-11-17 | (svn r3215) - Fix: warning on VS.NET 2003 complaining about constness ↵ | Darkvater | |
reintroduced by revision 3192 | |||
2005-11-16 | (svn r3198) Rewrite the company league drawing routine for better readability | tron | |
2005-11-14 | (svn r3181) -Bracing | tron | |
-Indentation -Whitespace -DeMorgan's Law -Test with NULL or 0 for non-booleans -'\0' instead of 0 for chars -Remove redundantly redundant comments (like DoFoo(); // Do foo) -Join multiple short lines with a single statement -Split single lines with multiple statements -Avoid assignments in if | |||
2005-10-02 | (svn r3008) [ 1247535 ] Native Support for Win64 (compile&run only) (michi_cc) | Darkvater | |
Fix warning in graph_gui.c with const problem | |||
2005-09-30 | (svn r3001) s/Player*/const Player*/ | tron | |
s/byte/PlayerID/ s/int/PlayerID/ and related changes | |||
2005-09-25 | (svn r2984) Use adequate types, this should aid portability a bit | tron | |
2005-09-18 | (svn r2962) - const correctness for all Get* functions and most Draw* ↵ | Darkvater | |
functions that don't change their pointer parameters - change a lot of byte player types to PlayerID - beautify header files, same "#endif /* filename */" ending | |||
2005-08-01 | (svn r2781) Fix some of the issues with variables in .h files. | ludde | |
2005-07-31 | (svn r2766) Remove string and make use of the plural feature | tron | |
2005-07-24 | (svn r2702) -Codechange: Cleaned up the sprite code and replaced many magic ↵ | celestar | |
numbers by enums. There remains work in gfx.c to move the "transparency" and "recolor" bits around to make space for more sprites. However, 2800 additional sprites can now be loaded. There also remains cleanup and Doxygen work on many of the header files. | |||
2005-07-24 | (svn r2701) Insert Id tags into all source files | tron | |
2005-07-22 | (svn r2673) Include functions.h directly, not globally via openttd.h | tron | |
2005-07-21 | (svn r2669) Shuffle some more stuff around to reduce dependencies | tron | |
2005-07-19 | (svn r2645) Fix (useless)warning in graph_gui and add brackets around HASBIT ↵ | Darkvater | |
in an if statement | |||
2005-07-19 | (svn r2643) Get rid of some unnecessary casts | tron | |
2005-07-15 | (svn r2572) - Codechange: [string] Changed string system so it's not as ↵ | ludde | |
dependent on decode_parameters - Feature: [strgen] Allow changing the order of parameters in translated strings. - Use {1:TOWN} syntax to set the order. - Codechange: [strgen] Rewrote lots of strgen internals. | |||
2005-06-25 | (svn r2486) Turn TILE_FROM_XY into an inline function and rename it to ↵ | tron | |
TileVirtXY | |||
2005-06-21 | (svn r2468) -Codechange: Got rid of DEREF_PLAYER and replaced it by GetPlayer | celestar | |
2005-06-02 | (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files. | Darkvater | |
2005-03-26 | (svn r2079) -Add: signlist, shows all signs in the map. Clicking on them, ↵ | truelight | |
and you go to the sign. Very needed for coop. You can find it under World Map. | |||
2005-01-23 | (svn r1631) A couple of fixes for the signed/unsigned warnings. Only ↵ | dominik | |
train_cmd.c remains to need fixing... | |||
2005-01-22 | (svn r1594) Convert all undefined parameter lists to (void) and add the ↵ | tron | |
appropriate warning flags in the Makefile | |||
2005-01-22 | (svn r1587) -CodeChange: fixed up the graph loop a little..numd now shows ↵ | darkvater | |
the exact amount, no +1 needed -CodeMotion: moved 'Company performancerating detail' to the end of the file; it fits there | |||
2005-01-22 | (svn r1586) Fix: [ 1107340 ] Graphs don't show comapany info for company #8 | dominik | |
2005-01-21 | (svn r1580) Fix: [ 1106354 ] Graph's keys get confused | dominik | |
Fix: Graphs were not updated correctly when one graph with a certain selection was already open and another graph window was opened | |||
2005-01-11 | (svn r1479) -Added highscore chart (accessible from the difficulty window) ↵ | darkvater | |
with top5 companies for a given difficulty (select the difficulty in the menu) -Added endgame score on 1 jan 2051 where you are added to the highscore if sufficiently large points have been accumulated. Game is paused while -These values are saved in hs.dat; added read/write functions for it -Added code to delete all windows to show charts. There is one issue left: somehow a news-gui pops up in front of the the chart at the end of the game. | |||
2005-01-10 | (svn r1475) Fix some more signed/unsigned comparison warnings | tron | |
2005-01-10 | (svn r1465) -Fix: [1099101] starting year patch goes out of range. Clamped ↵ | darkvater | |
year between 1920-2090 as wel as adding defines for it. | |||
2005-01-03 | (svn r1348) -Feature: resizable windows. Read the comment in window.h to ↵ | truelight | |
find out how the system works. All useful windows are already made resizable. Enjoy :) -Fix: fixed some GUI-glitches and flaws along the way | |||
2004-12-02 | (svn r901) Small step in the process to clean up the DPARAM mess: | tron | |
- reduce to 2 sizes (*DParam64 for 64bit values, *DParam for the rest) - use inline functions instead of macros - add assert()s to check for buffer overruns | |||
2004-11-28 | (svn r844) Fix some typos ([ 1074329 ]) and use a bigger font in the ↵ | tron | |
detailed performance rating window | |||
2004-11-25 | (svn r815) Include strings.h only in the files which need it. | tron | |
This should reduce the compile time after altering english.txt by about 1/3, because "only" 62 instead of 90 .c files must be recompiled. | |||
2004-11-14 | (svn r607) -Patch: [ 985102 ] static cleanup | tron | |
Thanks to lvoge |