Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-03-30 | (svn r2112) -Fix: ExtMidi no longer halts the game while starting a song | tron | |
-Fix: Redirect stdin/stdout/stderr of the ExtMidi process to /dev/null, to prevent it from writing to the terminal While here give the ExtMidi functions canonical names | |||
2005-03-26 | (svn r2074) MouseLoop -> InputLoop(), factor out a real mouse-specific ↵ | pasky | |
MouseLoop from the new InitLoop() (more in the spirit of HandleKeypress()). | |||
2005-03-24 | (svn r2046) -Codechange: moved all waypoint code to waypoint.c/waypoint.h | truelight | |
-Codechange: rewrote some functions while moving waypoint-stuff -Add: added support for 64k waypoints -Fix: made the waypoint struct a bit more logic (no bit-fucking) | |||
2005-03-13 | (svn r2005) - Fix: fix previous commit. Using 'New Game (scenario)' will use ↵ | Darkvater | |
YOUR difficulty settings but ingame options (eg townnames, currency). Also settings are correctly saved when closing the difficulty window now. | |||
2005-03-12 | (svn r2004) - Fix: [ 1149487 ] Autosave ignoring settings | Darkvater | |
- Fix: [ 1153926 ] All my settings in vain... IGNORED! - Change: I hope I got it all right. Pressing 'New Game' (either choosing random or a preset scenario) and 'Create Scenario' will start a new game with the settings and difficulty in the intro menu. Using 'Load Game' and 'Play Scenario' will take the values from the savegame/scenario itself. | |||
2005-03-12 | (svn r2000) Split the sound system into backend (mixer.[ch]) and frontend ↵ | tron | |
(sound.[ch]) | |||
2005-03-10 | (svn r1986) - Fix: free _config_file when shutting down openttd. Strange ↵ | Darkvater | |
that Valgrind didn't catch this, kudos to TrueLight - Feature (small): new command-line option -c <config_file>. You can have OpenTTD load alternative config files with this setup, handy for servers, or for saves from other players if you don't want to rename your own config. This will have to do until all game-related settings are saved ingame. Couldn't find the SF patch, so credits to the guy that wrote it. | |||
2005-03-10 | (svn r1982) -Fix: also windows has no 'fork' option | truelight | |
2005-03-09 | (svn r1978) - Fix: Plug some memleaks; thanks Valgrind | Darkvater | |
2005-03-06 | (svn r1944) Make --help output for -d at least somewhat useful. | pasky | |
2005-03-06 | (svn r1940) TODO about usrerror(). | pasky | |
2005-02-23 | (svn r1910) Move two variables out of variables.h which are only used locally | tron | |
2005-02-22 | (svn r1901) - Fix: unwanted behaviour of the savegame dialog, as well as a ↵ | Darkvater | |
bug with a sloppy termination of a string. When any editbox is open, scrolling is disabled. If any new types of editboxes come up, please use SET/CLRBIT of _no_scroll with its unique identifier (ttd.h) | |||
2005-02-18 | (svn r1889) -Fix: [ 1108637 ] 'Play scenario' now loads game options and ↵ | celestar | |
difficulty, 'Load game' starts game with user-selected values. | |||
2005-02-17 | (svn r1881) -Fix: [ 1119308 ] Max passengers / mail variables are now 32 bit | celestar | |
2005-02-10 | (svn r1853) Move spritecache function declarations into a header of their ↵ | tron | |
own and use SpriteID as parameter type where appropriate | |||
2005-02-06 | (svn r1833) byte -> char transition: the rest | tron | |
2005-02-06 | (svn r1821) Move generic string handling functions to string.[ch] and ↵ | tron | |
introduce stre{cpy,cat}, see string.h for their semantics | |||
2005-02-06 | (svn r1818) -Add: Dynamic orders (up to 64k orders) | truelight | |
2005-02-06 | (svn r1817) -Codechange: Moved depot-functions to depot.c | truelight | |
-Codechange: Added wrappers around depot-access (GetDepot no exists) -Codechange: Made depot-functions a bit more logic (no longer GetDepotByTile crashes your game when you request it on a non-depot tile) -Add: made depots dynamic (yes, 64k depots are possible now) | |||
2005-02-06 | (svn r1814) Let ReadFileToMem() return void* (instead of byte*) because we ↵ | tron | |
don't know what the caller wants to do with the data | |||
2005-02-06 | (svn r1813) Declare functions implemented in strings.c in their own shiny ↵ | tron | |
new header (though i think some of these function don't belong into strings.c) | |||
2005-02-05 | (svn r1805) Teach the driver layer a few things about const correctness | tron | |
2005-02-05 | (svn r1803) Move debugging stuff into files of it's own | tron | |
2005-02-05 | (svn r1800) Make adding new debug categories to the command line parser easier | tron | |
2005-02-05 | (svn r1799) -Codechange: [ Multistop ] Added debug class "ms" and more debugging | celestar | |
output for multistops | |||
2005-02-04 | (svn r1788) -Add: Made RoadStops dynamic. You can now create up to 64k ↵ | truelight | |
roadstops. | |||
2005-02-04 | (svn r1787) -Add: Dynamic signs (euh.. yeah, this means you can built 64k signs) | truelight | |
2005-02-04 | (svn r1783) -Add: Dynamic vehicles (now up to 64k of vehicles) | truelight | |
2005-02-03 | (svn r1776) -Add: Dynamic stations. You can now have up to 64k of stations | truelight | |
2005-02-02 | (svn r1772) -Fix: [ 1114100 ] Dedicated server boots again | truelight | |
2005-02-02 | (svn r1771) -Add: Industries are now dynamic (up to 64k industries). Generating | truelight | |
1kx1k maps should now be much faster, and give more than just oil-stuff ;) | |||
2005-02-02 | (svn r1768) -Codechange: Store town index in _map2 of town tiles | celestar | |
Moved house type from _map2 to _map3_hi for MP_HOUSE Moved foundation and roadworks from _map2 to _map3 for MP_STREET This increases game speed by a factor of around 15(!) if many cities are around. Converting an old game is done automagically, but can take a while | |||
2005-02-01 | (svn r1764) -Add: dynamic towns, you can now have up to 64k towns (let me ↵ | truelight | |
know when you have that amount of towns in a map ;)) | |||
2005-01-31 | (svn r1750) - Feature: [ 1093261 ] Saving vehicle sorting criteria for each ↵ | darkvater | |
vehicle type (bociusz) | |||
2005-01-31 | (svn r1747) - Fix: [network] ottd should compile when networking is disabled. | darkvater | |
- Change: change strgen project file to get rid of warning. | |||
2005-01-30 | (svn r1737) Add DEBUG category "map" and use it to print the map size when ↵ | tron | |
allocating the map | |||
2005-01-29 | (svn r1722) -Feature: Bigger maps - anyone? | tron | |
2005-01-29 | (svn r1721) -Feature: It is now possible to build multiple road stations (up ↵ | celestar | |
to 8) on a single station. Thanks to: Truelight for the saveload code, Darkvater and Hackykid for network testing and Tron for proof-reading 1500 lines of diff. | |||
2005-01-29 | (svn r1713) Split off several functions which query/set information about a ↵ | tron | |
single tile from map.h and put them into a seperate file tile.h | |||
2005-01-28 | (svn r1703) - Fix: Scrolling with the arrow keys is now smooth and it now ↵ | dominik | |
also scrolls exactly in tile direction if e.g. up and left are pressed | |||
2005-01-26 | (svn r1683) Fix placement of MP_VOID tiles. On square maps it accidently ↵ | tron | |
works, but on non-square maps the wrong tiles would get marked as MP_VOID | |||
2005-01-25 | (svn r1667) - Feature: Signs are now shown in the color of the player who ↵ | dominik | |
created them (Note: The player information is currently not stored in savegames. Upon loading a game the signs will all be gray again) | |||
2005-01-23 | (svn r1616) Introduce ttd_strlcat() and use it to de-uglify some piece of ↵ | tron | |
code in misc_cmd. While here rename the len parameter of ttd_strlcpy() to size, because it is a buffer size and not a string length. Also add -Wwrite-strings to the Makefile, because the above mentioned piece of code was the only part which triggered this warning. | |||
2005-01-23 | (svn r1610) Remove trailing whitespace (last time ever, i hope) | tron | |
2005-01-23 | (svn r1606) Fix some bogus casts | tron | |
2005-01-22 | (svn r1596) Add some more statics | tron | |
2005-01-22 | (svn r1594) Convert all undefined parameter lists to (void) and add the ↵ | tron | |
appropriate warning flags in the Makefile | |||
2005-01-16 | (svn r1537) -Fix: Close all and any open filehandles open at shutdown (tamlin) | darkvater | |
2005-01-16 | (svn r1536) Move GET_TILEHEIGHT, GET_TILETYPE and IS_TILETYPE to map.h, turn ↵ | tron | |
them into inline functions and add some asserts |