Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-19 | (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming ↵ | skidd13 | |
style | |||
2007-10-20 | (svn r11312) -Codechange: implement a overflow safe integer and use that for ↵ | rubidium | |
money and don't misuses CommandCost to have a overflow safe integer. Based on a patch by Noldo. | |||
2007-10-19 | (svn r11303) -Fix: EnsureNoVehicle and EnsureNoVehicleOnGround were both ↵ | rubidium | |
used to check whether there was no vehicle on the ground, except that the former didn't take care of aircraft shadows. So now we only use EnsureNoVehicleOnGround. | |||
2007-09-27 | (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C | glx | |
2007-08-10 | (svn r10838) -Fix [FS#1119] (r10698): double negation where only single ↵ | rubidium | |
negation was needed. Patch by frosch. | |||
2007-07-29 | (svn r10733) -Codechange: change MP_STREET into MP_ROAD as we use the word ↵ | rubidium | |
"road" everywhere except in the tile type. | |||
2007-07-26 | (svn r10698) -Codechange [FS#1082]: simplify the code related to ↵ | rubidium | |
foundations. Primarily removal of (duplicated|magic) code and introduction of few helper functions to ease foundation determination. Patch by frosch. | |||
2007-07-24 | (svn r10672) -Codechange: typify some parameters/variables. | rubidium | |
2007-07-23 | (svn r10657) -Fix r10655: commit didn't comply with coding style (tnx glx :)) | truelight | |
2007-07-23 | (svn r10655) -Fix [FS#1070]: Trolly AI didn't know about steep slopes, and ↵ | truelight | |
used wrong tileh in some cases (frosch) | |||
2007-06-22 | (svn r10266) -Codechange: keep track of the origin, time of travel and ↵ | rubidium | |
accumulated feeder share (transfers) of individual pieces of cargo. This means that cargo isn't thrown on a big pile when it's put in a station or unloaded at a station, however the GUI does not reflect these changes yet so you will not actually see it. | |||
2007-06-21 | (svn r10246) -Fix (r10297): some forgotten money conversions and truncation ↵ | rubidium | |
issues. Thanks to benc for providing the patch. | |||
2007-06-18 | (svn r10205) -Codechange: refactor returning of cost, so it can be more ↵ | rubidium | |
easily modified. | |||
2007-06-18 | (svn r10200) -Codechange: add "shortcut" for !CmdFailed (CmdSucceeded). | rubidium | |
2007-06-18 | (svn r10197) -Codechange: replace int32 with CommandCost where appropriate. | rubidium | |
2007-06-17 | (svn r10177) -Fix: Passengers has one A and two Es (ln) | peter1138 | |
2007-06-07 | (svn r10058) -Codechange: give some industry variable sensible names (like ↵ | rubidium | |
not telling "last_mo_production" when it is the production of the current month). | |||
2007-06-04 | (svn r10033) -Feature [FS#760]: skip to the selected order in the order list ↵ | rubidium | |
when clicking on the "skip" button while pressing CTRL. | |||
2007-05-27 | (svn r9954) -Fix [FS#811]: trolley AI crashed when trying to determine what ↵ | rubidium | |
the roadbits are. | |||
2007-05-24 | (svn r9912) -Fix: the AIs could build any road(station)s. | rubidium | |
2007-05-18 | (svn r9867) -Codechange: Remove data duplication. The exact same values can ↵ | belugas | |
be found in the industry spec, so take it from there instead. | |||
2007-04-18 | (svn r9672) -Cleanup: lots of coding style fixes around operands. | rubidium | |
2007-03-08 | (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the ↵ | rubidium | |
coding style (and rest of the code). | |||
2007-03-07 | (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {}; | rubidium | |
2007-02-14 | (svn r8732) -Codechange/Fix(r8705): Turned the bit-handling macros into ↵ | celestar | |
template functions. Fixes a problem with MSVC and 64-bit shifts. | |||
2007-01-25 | (svn r8402) -Codechange: Move RoadStop-specific enums to the RoadStop class, ↵ | celestar | |
and changed a one-member enum into a static const. Simplify their naming and add some doxygen-comments to RoadStop | |||
2007-01-14 | (svn r8116) Undo r8113 | tron | |
2007-01-14 | (svn r8113) Fix the #include path to table/strings.h | tron | |
2007-01-10 | (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, ↵ | rubidium | |
stillunknown and pv2b. | |||
2007-01-10 | (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files ↵ | KUDr | |
renamed to .cpp) | |||
2007-01-02 | (svn r7759) -Merge: makefile rewrite. This merge features: | rubidium | |
- A proper ./configure, so everything needs to be configured only once, not for every make. - Usage of makedepend when available. This greatly reduces the time needed for generating the dependencies. - A generator for all project files. There is a single file with sources, which is used to generate Makefiles and the project files for MSVC. - Proper support for OSX universal binaries. - Object files for non-MSVC compiles are also placed in separate directories, making is faster to switch between debug and release compiles and it does not touch the directory with the source files. - Functionality to make a bundle of all needed files for for example a nightly or distribution of a binary with all needed GRFs and language files. Note: as this merge moves almost all files, it is recommended to make a backup of your working copy before updating your working copy. |