------------------------------------------------------------------------ r4531 | Darkvater | 2006-04-22 14:06:46 +0000 (Sat, 22 Apr 2006) | 1 line - Fix [NewGRF]: overzealous fixing, reset num_params to 0 from -1 when parsing the parameter list fails. ------------------------------------------------------------------------ r4530 | Darkvater | 2006-04-22 13:59:21 +0000 (Sat, 22 Apr 2006) | 1 line - Fix [NewGRF]: don't spew a warning when a grf file has no parameters. ------------------------------------------------------------------------ r4529 | Darkvater | 2006-04-22 13:56:16 +0000 (Sat, 22 Apr 2006) | 1 line - Codechange: Use proper naming for hex numbers in debug prints eg. 0xF3A6. Use fixed lengths where applicable (newgrf). Unfortunately '%#X' is unusable since it gives 0XFF3 and '%#x' gives 0xff3 while we want 0xFF3 :P ------------------------------------------------------------------------ r4528 | Darkvater | 2006-04-22 13:42:09 +0000 (Sat, 22 Apr 2006) | 1 line - Fix: fix idiotic gcc warning ------------------------------------------------------------------------ r4527 | Darkvater | 2006-04-22 13:17:13 +0000 (Sat, 22 Apr 2006) | 1 line - Feature [NewGRF]: Add support for specifying parameters to GRF files. Usage: "mygrf = 1". You can pass up to 128 parameters, each one seperated by a comma or a space-character. Big thanks to peter1138 for the inspiration and examples. ------------------------------------------------------------------------ r4526 | Darkvater | 2006-04-22 12:55:57 +0000 (Sat, 22 Apr 2006) | 1 line - CodeChange: do some more cleanup, mainly changing the OldChunkTypes from full bitmasks into segmented values like in SaveLoad. ------------------------------------------------------------------------ r4525 | Darkvater | 2006-04-22 12:53:35 +0000 (Sat, 22 Apr 2006) | 1 line - Codechange: Do a little cleanup; also fix a typo while here: _old_vehicle_multipler should be _old_vehicle_multiplier ------------------------------------------------------------------------ r4524 | Darkvater | 2006-04-22 12:40:25 +0000 (Sat, 22 Apr 2006) | 1 line - Codechange: Use GB() macros for getting the saveload file/memory types ------------------------------------------------------------------------ r4522 | truelight | 2006-04-22 10:12:14 +0000 (Sat, 22 Apr 2006) | 2 lines -Fix: include stdio before stddef; some targets don't like the other way around. ------------------------------------------------------------------------ r4521 | Darkvater | 2006-04-22 09:46:31 +0000 (Sat, 22 Apr 2006) | 1 line - Fix: be consistent about the size of the player-name in MP. This hopefully fixes a crash on lesser OS's (eg Win98). Use ttd_strlcpy() to just copy over strings and properly terminate them because different implementations of snprintf() behave differently. Courtesy of TrueLight ------------------------------------------------------------------------ r4520 | celestar | 2006-04-22 09:25:36 +0000 (Sat, 22 Apr 2006) | 2 lines -Fix: Did last commit in the wrong branch. Repair and shame on me. ------------------------------------------------------------------------ r4518 | Darkvater | 2006-04-22 08:45:58 +0000 (Sat, 22 Apr 2006) | 1 line - Fix: specify the 'stopall' console command as a debug command. Mostly because stopped airplanes in mid-air 1. look funny 2. won't ever budge again. (change of r2449) ------------------------------------------------------------------------ r4517 | peter1138 | 2006-04-22 06:54:25 +0000 (Sat, 22 Apr 2006) | 2 lines - NewGRF: fix and complete the feature list ------------------------------------------------------------------------ r4516 | celestar | 2006-04-22 05:42:54 +0000 (Sat, 22 Apr 2006) | 1 line -Fix: Committed one file too much. Thanks egladil for immidiate spotting ------------------------------------------------------------------------ r4515 | celestar | 2006-04-22 05:36:22 +0000 (Sat, 22 Apr 2006) | 2 lines -Codechange: TPFMode2 is currently only used for TRANSPORT_WATER. So remove all stuff that deals with other transport types and assert TRANSPORT_WATER ------------------------------------------------------------------------ r4514 | belugas | 2006-04-22 01:42:51 +0000 (Sat, 22 Apr 2006) | 1 line Cleanup of a cleanup ... lines left behind ------------------------------------------------------------------------ r4513 | belugas | 2006-04-22 01:37:31 +0000 (Sat, 22 Apr 2006) | 1 line Codechange : Assemble a bit the scattered parts of Cargo types. ------------------------------------------------------------------------ r4512 | Darkvater | 2006-04-22 00:10:38 +0000 (Sat, 22 Apr 2006) | 1 line - Codechange: Sprinkle some doxygen magic over settings.c ------------------------------------------------------------------------ r4510 | peter1138 | 2006-04-21 20:59:04 +0000 (Fri, 21 Apr 2006) | 4 lines - NewGRF bounds checking: - check Engine ID is within range - don't try setting a vehicle name if the string id is not a valid Engine ID ------------------------------------------------------------------------ r4508 | celestar | 2006-04-21 20:25:34 +0000 (Fri, 21 Apr 2006) | 2 lines -Fix: (FS#125) Fixed a problem that caused DeliverGoodsToIndustry to not work as intended. Note: write something better for this entire function ------------------------------------------------------------------------ r4507 | celestar | 2006-04-21 20:10:53 +0000 (Fri, 21 Apr 2006) | 2 lines Just a comment ------------------------------------------------------------------------ r4506 | celestar | 2006-04-21 20:08:25 +0000 (Fri, 21 Apr 2006) | 2 lines -Fix: (FS#95) Use the tile hash when pathfinding to a depot. Eats a tiny bit of performance, but the likelihood that the depot is found is greatly increased ------------------------------------------------------------------------ r4505 | celestar | 2006-04-21 19:47:52 +0000 (Fri, 21 Apr 2006) | 2 lines -Fix (FS#94) Ships can now be used to set up feeders as well. ------------------------------------------------------------------------ r4502 | celestar | 2006-04-21 17:51:01 +0000 (Fri, 21 Apr 2006) | 2 lines -Cleanup: Remove code unused since rev1. (Rubidium) ------------------------------------------------------------------------ r4501 | celestar | 2006-04-21 17:15:05 +0000 (Fri, 21 Apr 2006) | 2 lines -Fix: (FS#129) When, in a train that head multiple engines in front, the _first_ of those engines is sold, all the orders are copied to the second engine (to ensure "seamless" operation). However, during this operation, it was forgotten to update the prev_shared and next_shared pointers of the new head engine AND the next_shared and prev_shared of the share partners. ------------------------------------------------------------------------ r4500 | peter1138 | 2006-04-21 17:02:51 +0000 (Fri, 21 Apr 2006) | 2 lines - NewGRF: When running a callback with no vehicle, use the purchase list 'cargo' type first, and then fallback to the default if needed. ------------------------------------------------------------------------ r4498 | peter1138 | 2006-04-21 09:18:39 +0000 (Fri, 21 Apr 2006) | 2 lines - Use an item's name instead of value when parsing configuration lists. ------------------------------------------------------------------------ r4497 | peter1138 | 2006-04-21 08:11:50 +0000 (Fri, 21 Apr 2006) | 5 lines - NewGRF minor fixes: (Rubidium) - Remove a define in favour of using the lengthof() an array. - Fix typos in language names enum. - Add Brazilian ISO code. ------------------------------------------------------------------------ r4496 | peter1138 | 2006-04-21 07:06:31 +0000 (Fri, 21 Apr 2006) | 3 lines - NewGRF: switch custom engine names from storing a char* to using the new StringID based text system. Vehicle name translations now work. ------------------------------------------------------------------------ r4495 | peter1138 | 2006-04-21 07:03:37 +0000 (Fri, 21 Apr 2006) | 2 lines - NewGRF: Implement conversion from old language IDs (bitmask) to new language IDs (value) ------------------------------------------------------------------------ r4494 | peter1138 | 2006-04-21 06:55:47 +0000 (Fri, 21 Apr 2006) | 2 lines - NewGRF: Clean up and reset custom texts ------------------------------------------------------------------------ r4493 | belugas | 2006-04-21 03:00:20 +0000 (Fri, 21 Apr 2006) | 4 lines Newgrf : Action 04. Beginning of implementation. Some TODOs left, but the core is there. Thanks to Peter1138 for code, advice and patience And to Patchman for letting us define a lot of langids :) ------------------------------------------------------------------------ r4491 | Darkvater | 2006-04-20 22:09:49 +0000 (Thu, 20 Apr 2006) | 1 line - Codechange: handle IGT_LIST types just as the other types with a proper name and value setting (for example for newgrf parameters). ------------------------------------------------------------------------ r4490 | Darkvater | 2006-04-20 22:09:12 +0000 (Thu, 20 Apr 2006) | 1 line - Feature: The integer-list parser now accepts a space character as an item seperator next to the comma. ------------------------------------------------------------------------ r4489 | Darkvater | 2006-04-20 22:08:20 +0000 (Thu, 20 Apr 2006) | 1 line - Codechange: some small cleanups in the settings-parser code, mainly substituting terminating 0 characters with '\0'. ------------------------------------------------------------------------ r4488 | peter1138 | 2006-04-20 21:19:20 +0000 (Thu, 20 Apr 2006) | 2 lines - Add newgrf_spritegroup.[ch] to MS VS project files ------------------------------------------------------------------------ r4487 | peter1138 | 2006-04-20 21:13:08 +0000 (Thu, 20 Apr 2006) | 2 lines - Codechange: replace the custom currency magic number 23 with a define ------------------------------------------------------------------------ r4486 | peter1138 | 2006-04-20 20:51:57 +0000 (Thu, 20 Apr 2006) | 4 lines - NewGRF: Create and use a memory pool to manage sprite groups. This reduces the amount of house keeping we do and the chance of memory leaks. ------------------------------------------------------------------------ r4484 | peter1138 | 2006-04-20 17:04:08 +0000 (Thu, 20 Apr 2006) | 2 lines - Newstations: Use StringIDs instead of char*s to reference our custom names. ------------------------------------------------------------------------ r4483 | peter1138 | 2006-04-20 13:33:40 +0000 (Thu, 20 Apr 2006) | 2 lines - NewGRF: Dynamically allocate memory for 'real' spritegroups. This removes the limit of 16 loading/unloading states, although will result in less memory usage as most of the time the full fixed allocation wasn't used. ------------------------------------------------------------------------ r4482 | miham | 2006-04-20 08:33:42 +0000 (Thu, 20 Apr 2006) | 6 lines WebTranslator2 update to 2006-04-20 10:29:39 german - 2 fixed, 22 changed by moewe2 (22), Neonox (2) italian - 76 changed by sidew (76) norwegian - 38 fixed by oletk (38) polish - 3 fixed, 10 changed by meush (13) slovenian - 84 fixed, 1 deleted, 45 changed by christooss (130) ------------------------------------------------------------------------ r4481 | peter1138 | 2006-04-20 05:57:47 +0000 (Thu, 20 Apr 2006) | 2 lines - Fix: Validate the given sprite ID when loading a sprite. ------------------------------------------------------------------------ r4479 | celestar | 2006-04-19 16:10:17 +0000 (Wed, 19 Apr 2006) | 4 lines -Fix (FS#90) electric engines (or rather their pantographs) no longer emit sparks when engine is pulled on convrail (MeusH) P.S. Credit for previous commit goes to the bug reporter, nycom, who submitted the fix as well. ------------------------------------------------------------------------ r4478 | celestar | 2006-04-19 16:02:07 +0000 (Wed, 19 Apr 2006) | 2 lines -Fix (FS#107) In the cheat menu, don't hard-code the player icon, but compute its position from the length of the string. ------------------------------------------------------------------------ r4474 | peter1138 | 2006-04-19 07:50:16 +0000 (Wed, 19 Apr 2006) | 2 lines - NewGRF: Skip non-fatal errors when not in stage 2. ------------------------------------------------------------------------ r4473 | peter1138 | 2006-04-19 07:17:00 +0000 (Wed, 19 Apr 2006) | 4 lines - Newstations: - Alter parameters of CMD_BUILD_RAILROAD_STATION to accept a custom station class and id. - Add a dynamically allocated list of custom stations that the SpecIndex (m4) references. ------------------------------------------------------------------------ r4472 | miham | 2006-04-18 21:17:54 +0000 (Tue, 18 Apr 2006) | 1 line WebTranslator2 commit2 system precheck failed, fix in progress ------------------------------------------------------------------------ r4471 | peter1138 | 2006-04-18 18:48:50 +0000 (Tue, 18 Apr 2006) | 2 lines - Pools: Add a facility for calling a custom function during pool block clean up. ------------------------------------------------------------------------ r4470 | KUDr | 2006-04-18 18:02:52 +0000 (Tue, 18 Apr 2006) | 3 lines -Fix: FS#97 — Possible bug in Win64 versions (by michi_cc) Doesn't fix any known bug, but the code is now bit cleaner. The proper result of subtraction of two pointers is ptrdiff_t. ------------------------------------------------------------------------ r4469 | miham | 2006-04-18 17:44:24 +0000 (Tue, 18 Apr 2006) | 8 lines WebTranslator2 update to 2006-04-18 portuguese - 21 strings updated spanish - 50 strings updated german - 35 strings updated italian - 54 strings updated turkish - 52 strings updated polish - 113 strings updated ------------------------------------------------------------------------ r4468 | celestar | 2006-04-18 13:55:11 +0000 (Tue, 18 Apr 2006) | 2 lines -Fix: (FS#45) correct declaration of NORETURN for gcc (egladil) ------------------------------------------------------------------------ r4467 | celestar | 2006-04-18 13:16:00 +0000 (Tue, 18 Apr 2006) | 2 lines -Fix: New plantations now cause the correct ".. being planted .." news item (MeusH) ------------------------------------------------------------------------ r4466 | celestar | 2006-04-18 08:50:17 +0000 (Tue, 18 Apr 2006) | 4 lines -Fix: (FS#71) Game no longer crashes when the last vehicle serving a station has been deleted. -Negative side effect: upon loading old games, stations whose last vehicle was a station have (temporarily) lower ratings. -Positive side effect: station.h no longer includes vehicle.h (breaks the station.h->vehicle.h->rail.h chain) ------------------------------------------------------------------------ r4465 | celestar | 2006-04-18 07:20:37 +0000 (Tue, 18 Apr 2006) | 1 line -Codechange (FS#60): Remove a variable no one really needs. (DaleStan) ------------------------------------------------------------------------ r4464 | celestar | 2006-04-18 06:42:14 +0000 (Tue, 18 Apr 2006) | 1 line -Codechange: Oops, forgot one file in last commit ------------------------------------------------------------------------ r4463 | celestar | 2006-04-18 05:16:13 +0000 (Tue, 18 Apr 2006) | 1 line -Codechange. Include vehicle.h directly instead of implicitly via station.h in a number of source files ------------------------------------------------------------------------ r4462 | peter1138 | 2006-04-17 19:26:18 +0000 (Mon, 17 Apr 2006) | 2 lines - Newstations: ensure the chosen tile layout is available from a custom station ------------------------------------------------------------------------ r4461 | celestar | 2006-04-17 19:09:30 +0000 (Mon, 17 Apr 2006) | 1 line -Codechange: Add and make use of map accessor functions for signal drawing. Includes some basic cleanup of the drawing functions ------------------------------------------------------------------------ r4460 | peter1138 | 2006-04-17 18:47:50 +0000 (Mon, 17 Apr 2006) | 3 lines - Newstations: remove unused class_id / stat_id variables from the Station struct. ------------------------------------------------------------------------ r4459 | peter1138 | 2006-04-17 18:35:44 +0000 (Mon, 17 Apr 2006) | 2 lines - Newstations: check pointer for NULL before using it. ------------------------------------------------------------------------ r4458 | miham | 2006-04-17 17:59:42 +0000 (Mon, 17 Apr 2006) | 1 line [WT2 quickcommit w/o stats] ------------------------------------------------------------------------ r4453 | peter1138 | 2006-04-16 20:24:10 +0000 (Sun, 16 Apr 2006) | 2 lines - NewGRF: fix two compile warnings. ------------------------------------------------------------------------ r4452 | peter1138 | 2006-04-16 18:57:07 +0000 (Sun, 16 Apr 2006) | 2 lines - NewGRF: switch to unsigned ints for array indices. ------------------------------------------------------------------------ r4451 | miham | 2006-04-16 17:48:40 +0000 (Sun, 16 Apr 2006) | 4 lines WebTranslator2 daily commit [dutch] 49 strings fixed by Zr40 [polish] 152 strings fixed by MeusH ------------------------------------------------------------------------ r4450 | peter1138 | 2006-04-16 17:29:37 +0000 (Sun, 16 Apr 2006) | 2 lines - NewStations, rename *CustomStationSprite() to *CustomStationSpecIndex() to reflect their use, and alter the test for determining if a station has customised graphics. ------------------------------------------------------------------------ r4449 | peter1138 | 2006-04-16 17:05:45 +0000 (Sun, 16 Apr 2006) | 3 lines - NewStations, remove parameter to use first custom station when building a railway station. The parameters will be changing. ------------------------------------------------------------------------ r4447 | Darkvater | 2006-04-16 11:33:26 +0000 (Sun, 16 Apr 2006) | 1 line - NewGRF: It seems I committed printing action NOP Action 0x0C which is mainly used for comments. So leave it in, but fix the created warning. Use proper action name for check_length() in Action 0x10 ------------------------------------------------------------------------ r4446 | peter1138 | 2006-04-16 11:26:23 +0000 (Sun, 16 Apr 2006) | 2 lines - Add function to determine if a Sprite ID exists. ------------------------------------------------------------------------ r4445 | bjarni | 2006-04-16 10:26:46 +0000 (Sun, 16 Apr 2006) | 3 lines -Fix: FS#108 Danish name generator bug this was actually not a bug in the generator, but rather it saved/loaded the setting danish as swiss (the previous in the list) ------------------------------------------------------------------------ r4444 | miham | 2006-04-16 10:03:15 +0000 (Sun, 16 Apr 2006) | 1 line [WebTranslator2 commir] Dutch, Polish affected ------------------------------------------------------------------------ r4440 | Darkvater | 2006-04-15 22:16:47 +0000 (Sat, 15 Apr 2006) | 1 line - Fix: Yoyo-effect of rail in desert/snow introduced by r4379. When a special groundtype below the track is encountered in the tileloop, always return even if groundtype hasn't changed. ------------------------------------------------------------------------ r4439 | Darkvater | 2006-04-15 21:27:59 +0000 (Sat, 15 Apr 2006) | 1 line - NewGRF: Add support for Action 0x10. This also required an extra pre-stage (before initialize and activation) to scan the GRF file for GOTO labels. Big thanks for peter1138 for the guidance and answers, as well as parts of the code. ------------------------------------------------------------------------ r4435 | Darkvater | 2006-04-15 20:07:42 +0000 (Sat, 15 Apr 2006) | 1 line - Fix: an assertion triggered when trying to remove a bridge with the remove-tool (r4348 surfaced this). In CmdRemoveRoad tiletype was not checked for ownership. Intorudce IsLevelCrossingTile() which checks if a tile is a crossing without knowing the type. Suggested by peter1138 and Tron. ------------------------------------------------------------------------ r4434 | Darkvater | 2006-04-15 19:52:58 +0000 (Sat, 15 Apr 2006) | 1 line - Codechange: use str_validate for the console as well instead of custom function doing the same. ------------------------------------------------------------------------ r4432 | tron | 2006-04-15 18:57:58 +0000 (Sat, 15 Apr 2006) | 1 line Make use of map access functions ------------------------------------------------------------------------