1
0
Fork 0

Commit Graph

  • d8215a1f59 (svn r4338) -Fix (FS#105): Bug introduced in r4290. IsLevelCrossing does NOT check the tile type, it assumes the tile type IS MP_STREET celestar 2006-04-09 18:01:06 +0000
  • 7246cab5ee (svn r4337) -Fix: A problem where GetRailType was called instead of GetRailTileType. Thanks to glx for noticing celestar 2006-04-09 17:50:00 +0000
  • dcde932043 (svn r4336) Fix units conversion of volume for SI peter1138 2006-04-09 14:49:45 +0000
  • 0a509a4c48 (svn r4333) Revert back to a direct map access in one case until the exact conditions for this piece of code are investigated. The IsRoad() function is causing me headaches... tron 2006-04-09 10:24:57 +0000
  • 8111eca43e (svn r4332) Turn a table lookup into a ternary operator tron 2006-04-09 09:29:50 +0000
  • fade7a5997 (svn r4331) Replace some direction calculation magic with DiagDirection to make a bit more clear what's going on tron 2006-04-09 08:25:43 +0000
  • 63e040966e (svn r4326) Only reduce the slot age of a vehicle if it has a slot assigned tron 2006-04-08 14:18:39 +0000
  • 4e577f689a (svn r4325) When updating the vehicle count for road stops after load use the slot pointer of the vehicle instead of recalculating the road stop using the destination tile of the vehicle. Apart from being more simple this could prevent a inconsistency of slot information in the edge case when the destination tile isn't the tile of the assigned slot. tron 2006-04-08 13:58:19 +0000
  • 90836a461d (svn r4324) Remove the unused road stop type attribute from struct RoadStop tron 2006-04-08 13:50:01 +0000
  • da60a82021 (svn r4323) -Regression: Clear the slot assignments of all vehicles heading twoards a road stop if that road stop gets removed This issue was fixed in r2210 and reintroduced in r4259 when the multistop handling was overhauled. tron 2006-04-08 13:32:38 +0000
  • ffadd91ca9 (svn r4322) - Codechange: Remove conversion of kmh to mph from gui code to within the units conversion system, in string.c. This means displaying kmh requires no conversion, instead of being convert from kmh to mph, and then back to kmh again. peter1138 2006-04-08 12:04:23 +0000
  • 5be2aa3e99 (svn r4321) For ships check the ship state, not the road state. This bug was harmless, because both states are at the same byte in the vehicle type specific union. tron 2006-04-08 06:55:43 +0000
  • fd10af66d7 (svn r4320) -Fix/Codechange: rs->num_vehicles is no longer saved or loaded, but computed on the fly. Partly fixes FS#101 celestar 2006-04-08 05:44:37 +0000
  • 9760d3dccf (svn r4319) -Codechange: Station map accessors celestar 2006-04-08 05:24:29 +0000
  • 4fdb25e65b (svn r4318) CodeChange : Remove last direct map access on ai/default/default.c belugas 2006-04-08 01:07:32 +0000
  • c0cb020c80 (svn r4317) -Codechange: More map accessors for ship_cmd. it is now map-access free, but still requires a huge cleanup celestar 2006-04-07 15:57:03 +0000
  • da095bc941 (svn r4316) -Codechange: finished r4257 (forgot one variable there) celestar 2006-04-07 09:37:04 +0000
  • 1440451a6b (svn r4315) Remove MAX_QUERYSTR_LEN, rather use lengthof() the real thing tron 2006-04-07 09:15:17 +0000
  • 10454a6dd1 (svn r4314) -Fix: a buffer overflow of the chat box introduced in r1263. Don't tell the Textbuf an arbitrary number as size of the string buffer, but the real lengthof() it tron 2006-04-07 09:07:53 +0000
  • 3ef6afdb4d (svn r4313) The parent window of the chat box is always the main toolbar (?!), therefore don't pass this information as parameter tron 2006-04-07 09:00:57 +0000
  • 7a7e7c82cf (svn r4312) Calculate the maximum pixel width of the entered text in the chat box from the "text box"-widget instead of hardcoding an arbitrary - and wrong - number tron 2006-04-07 08:57:03 +0000
  • fd097af20e (svn r4311) -Fix/Codechange: Clear the railtype when removing rail under a bridge. FS#103 exhibited this problem celestar 2006-04-07 08:42:30 +0000
  • dec2db09ee (svn r4310) The chat box has no visible window title, therefore remove the string tron 2006-04-07 08:37:39 +0000
  • fc8d7f18a0 (svn r4309) The initial string of the chat box is always the empty string, so don't jump through hoops to check if nothing was entered and simplify the code tron 2006-04-07 08:27:43 +0000
  • 025584ae26 (svn r4307) -Fix: Coding style in previous commit. Thanks to Tron for instant notice celestar 2006-04-07 07:40:44 +0000
  • 48b69f1344 (svn r4306) -Fix (103). Assertion when removing elrails under bridges. Thanks to Rubidium for reporting and fixing celestar 2006-04-07 07:39:03 +0000
  • cc51832917 (svn r4305) -Codechange: Minor elrail cleanup (Tron) celestar 2006-04-07 07:19:14 +0000
  • 04d6788bfd (svn r4304) The chat box' parent window (the main toolbar, wtf?) doesn't care for the WE_ON_EDIT_TEXT_CANCEL event, so don't send one. This code looks like it was mindlessly copy&pasted from the query box tron 2006-04-07 07:08:20 +0000
  • 3a1cef5af8 (svn r4302) - Fix: s/maxlength/maxwidth of course, the buffer size is always set. Comment-change only Darkvater 2006-04-06 19:16:39 +0000
  • b68b9b149a (svn r4301) - Fix: the maxlength parameter of Textbuf is supposed to be the size of the buffer (so length of string + '\0'), but in the code it was a mix of both. It didn't cause any problems though, only an occasionaly one-less character than allowed. (thanks Tron for noticing) Darkvater 2006-04-06 19:11:41 +0000
  • 558ecb1631 (svn r4292) - CodeChange: sprinkle some holy water on l'ugly code (braces, and pos is PacketSize not int) Darkvater 2006-04-05 20:12:54 +0000
  • a39f69b9bd (svn r4291) - Fix: validate all received strings for correctness. This fixes potential crashes on invalid clients/servers (thanks test for bringing this to our attention) Darkvater 2006-04-05 20:11:01 +0000
  • 07e4134ebd (svn r4290) -Fix: fixed power computation for mixed consists on level crossings (michi_cc) celestar 2006-04-05 19:08:09 +0000
  • fcedc458f1 (svn r4289) -Codechange: Make use of water_map accessors for ships. Make a mental note to clean ship_cmd celestar 2006-04-05 18:46:21 +0000
  • 38be3dbb58 (svn r4286) -Fix: Typo in 4280 celestar 2006-04-05 10:19:59 +0000
  • 6ddb58af6d (svn r4284) -Fix: Tunnel portals no longer have a pylon ON them if there is a track right above the portal celestar 2006-04-05 09:28:57 +0000
  • 0c3a0c7ec0 (svn r4283) -Cleanup: More elrail housekeeping, remove code dublication, more meaningful variable names, simplify control flow.. celestar 2006-04-05 09:17:43 +0000
  • 4ccbf2d807 (svn r4282) -Cleanup: Re-arranged the ignore groups into a more readable arrangement celestar 2006-04-05 08:45:29 +0000
  • 4acb8d5364 (svn r4281) -Cleanup: Begun cleaning up elrail code a bit, mostly comments and enum/array alignment celestar 2006-04-05 08:28:03 +0000
  • 8362990f8c (svn r4280) -Codechange: Add and make use of map accessors concerning railway waypoints celestar 2006-04-05 05:22:42 +0000
  • 99a6b9b8f2 (svn r4279) s/\<CL_/CLEAR_/ tron 2006-04-04 21:35:13 +0000
  • 52892863e5 (svn r4278) -Fix: changed char to uint8 because signedness of char is undefined. Thanks to KUDr and Tron for research and stuff. (FS#98) celestar 2006-04-04 19:46:18 +0000
  • 1be26a510c (svn r4276) -Codechange: Cleaned DrawCatenaryOnBridge a bit (requested by Tron) celestar 2006-04-04 12:31:29 +0000
  • a281b0ebd3 (svn r4275) -Codechange: Use of map accessor functions inside station_map.h when possible celestar 2006-04-04 11:51:16 +0000
  • 3ff5b879d0 (svn r4273) -Fix: Removed a problem where trains would stop in the middle of a platform if there were both elrails and convrails along the platform celestar 2006-04-04 11:45:54 +0000
  • 8b151d8faa (svn r4272) -Codechange: Moved the map-accessing stuff from station.h into station_map.h celestar 2006-04-04 11:35:52 +0000
  • cc0ffe6582 (svn r4271) s/\<TR_/TREE_/ resp. s/\<TR_/TREE_GROUND/ tron 2006-04-04 06:25:05 +0000
  • 5f7a0a748d (svn r4270) Rename some bogus map5 to gfx tron 2006-04-04 06:04:54 +0000
  • 2ecfed2fad (svn r4269) We don't use GNU indentation style tron 2006-04-04 06:01:45 +0000
  • 4e743232de (svn r4268) - Delete the network-copy of the Patches struct as it is not needed anymore. All relevant patch-settings that are changed by a network-game are those that are saved with a savegame, so these are not affected for loaded games (since Patches are saved with them). Also there is a distinction between in-game patch settings and default patch settings and this is not affected in MP. Thus this temp copy can be removed. Darkvater 2006-04-03 19:09:20 +0000
  • 7d232cf978 (svn r4267) - Fix (r4241): also validate the error number that a client receives from a server, and encapsulate this functionality into GetNetworkErrorMsg(). Darkvater 2006-04-03 18:31:01 +0000
  • ce19e9b570 (svn r4266) - Fix: compile warning on VS2005 (not all control paths return a value) Darkvater 2006-04-03 18:12:42 +0000
  • fc68881906 (svn r4265) - Fix: compile warning on VS2005 (parameter 2 different from declaration) Darkvater 2006-04-03 18:11:42 +0000
  • 857ccb97c9 (svn r4263) -Codechange: Road building no longer uses FindLandscapeHeight. Last occurence of FindLandscapeTile in the tile-specific functions gone. Thanks to Tron for doing lots of work in this direction celestar 2006-04-03 15:18:12 +0000
  • 1b51ad3dde (svn r4262) -Codechange: use IsClearWaterTile instead of some "home-brewn" marco. town_cmd is now map access free celestar 2006-04-03 15:11:17 +0000
  • f4bbce2c39 (svn r4261) CodeChange : Add and Use Accessor for Houses Construction. And cleaning on town.flags12 too belugas 2006-04-03 14:56:07 +0000
  • 5931b34aff (svn r4259) -[multistop] Fix/Feature/Codechange: 1) Improved the road vehicle allocation (aka slotting) for multistop. Stops can now accept unlimited, er... 256, vehicles. 2) Removed the "wait for stop" feature, because it did not work in practise. 3) Slotting now ignores unreachable stations. Uses NPF at the moment because the old pathfinder cannot do it (yet) 4) Now matter how many vehicles approach a station, they will always be distributed evenly over existing stops. 5) Hopefully the last fundamental change to multistop celestar 2006-04-03 14:25:32 +0000
  • 961b44e697 (svn r4258) -Codechange: Add and make use of map accessors dealing with road ground types (including roadworks). celestar 2006-04-03 13:35:19 +0000
  • 13812b08ec (svn r4257) -Codechange: Renamed the airport_map5_tiles_* variables into airport_sections_* celestar 2006-04-03 13:02:33 +0000
  • 9d5e052bbc (svn r4256) - Codechange: Replace lone map access in vehicle.c with its map accessor. peter1138 2006-04-03 12:41:31 +0000
  • e924ff84eb (svn r4255) -Codechange: Add and make use of more accessor functions concerning unmovables. unmovable_cmd is now map access free celestar 2006-04-03 12:20:55 +0000
  • c541a705f7 (svn r4254) -Codechange: Add and make use of map accessors for town lifts. celestar 2006-04-03 11:46:28 +0000
  • 89c145b14e (svn r4252) -Codechange: Make more use of map accessors. water_cmd is now map access free celestar 2006-04-03 10:50:54 +0000
  • b4d9a37acc (svn r4251) -Fix: Silence a warning in GetWaterTileType celestar 2006-04-03 10:31:02 +0000
  • 7d3827cf35 (svn r4250) -Codechange: Further use of map accessors for water tiles celestar 2006-04-03 10:28:16 +0000
  • cc87f682b9 (svn r4249) -Codechange: Replace more occurences of 16 by TILE_SIZE and of 8 by TILE_HEIGHT. Reverted one change from the previous commit because it was faulty celestar 2006-04-03 09:07:21 +0000
  • 3aa1e38be6 (svn r4246) -Codechange. Replaced about 100 occurences of '16' by TILE_SIZE celestar 2006-04-03 05:32:11 +0000
  • a6403bd50a (svn r4245) Simplify FindLengthOfTunnel() tron 2006-04-02 18:03:48 +0000
  • 1c5c32dd60 (svn r4243) Unbreak compilation tron 2006-04-02 14:36:51 +0000
  • 892a4c587d (svn r4242) Pass TileIndex and slope to GetSlopeTileh_*() instead of TileInfo tron 2006-04-02 12:49:18 +0000
  • e9a5ca70e2 (svn r4241) - Fix: Perform validation on the error number that a server receives from a client. An invalid value may cause the server to terminate. peter1138 2006-04-02 12:41:01 +0000
  • 82bfd0520f (svn r4231) Remove ModifyTile(), it's not used anymore, yay! tron 2006-04-02 07:30:01 +0000
  • f2087afbba (svn r4230) The road is asked for, not the rail. Undo part of r4164. (Pointed out by peter1138) tron 2006-04-02 07:05:35 +0000
  • 2039471d3c (svn r4229) [elrail & autoreplace] Always show compatible rail vehicles in the left list, and only the selected rail type in the right list, to allow converting electric engines to non-electric. peter1138 2006-04-01 15:19:16 +0000
  • 7c64aa4142 (svn r4228) -Fix: [autoreplace] allow replacement of wagons even when the engine fails to be replaced bjarni 2006-04-01 15:11:30 +0000
  • 96288ee39a (svn r4227) - Fix: Wagon replace nows checks if the cargo types are the same before seeing if it can refit. peter1138 2006-04-01 14:53:38 +0000
  • 8b1f971c1a (svn r4226) -Fix: [elrails] it's no longer possible to build electric engines in non-electric depots this prevents autoreplace to replace to electric engines before the line in question got catenary bjarni 2006-04-01 14:53:11 +0000
  • ca2270b3d9 (svn r4223) Correction of VC6 project file. belugas 2006-04-01 02:02:50 +0000
  • ebaafb9026 (svn r4220) - Fix (r4219): of course iconv is enabled on >= 10.3 not >; fixed comment (thanks Bjarni) Darkvater 2006-03-31 21:34:02 +0000
  • fdf4fa45ad (svn r4219) - Add support for WITH_ICONV. It is enabled by default for OSX > 10.3 for all others set it with WITH_ICONV in Makefile.config or with --with-iconv with configure. --with-config=/somedir will search for iconv include files somewhere (or in Makefile.config with WITH_ICONV_PATH). Custom library loading is not (yet) supported Darkvater 2006-03-31 21:22:41 +0000
  • f4b492fa1e (svn r4218) - Codechange: Try to make the rdtsc() not present warning message a bit more clear Darkvater 2006-03-31 21:13:53 +0000
  • 92c4d26a26 (svn r4217) Replace SDL-CONFIG and LIBPNG-CONFIG with SDL_CONFIG and LIBPNG_CONFIG peter1138 2006-03-31 21:06:55 +0000
  • ab1ecd7704 (svn r4216) -Fix: Fixed revision 4214, did a bad error there. Thanks MiHaMiX for pointing it out celestar 2006-03-31 19:14:17 +0000
  • 446493149c (svn r4215) -Codechange: Renamed *RoadStation* functions to *RoadStop* and moved them to station_map.h to keep consistency celestar 2006-03-31 19:10:54 +0000
  • 1f88ea4ec6 (svn r4214) -Fix: Do not try to obtain Trackbits for normal rails, bus stops, airports and other non-rail tiles celestar 2006-03-31 19:01:57 +0000
  • 736983a06d (svn r4212) -Codechange: Add and make use of an accessor that retrieves the type of a water tile. Add an enum describing the different water tiles celestar 2006-03-31 18:36:13 +0000
  • 949758e109 (svn r4211) - Removed measuring units from the names of two strings. - Use {POWER} and {WEIGHT_S} tags for all strings instead of "{COMMA}units". peter1138 2006-03-31 17:40:31 +0000
  • bd56042e1d (svn r4210) - Use new {WEIGHT} string tag for all cargo quantity strings. peter1138 2006-03-31 17:02:00 +0000
  • d441a12eb4 (svn r4209) Remove unused strings peter1138 2006-03-31 16:37:49 +0000
  • 40e02d4f53 (svn r4208) - Update OS/2 readme on trunk, sorry for all the commits! orudge 2006-03-31 16:19:58 +0000
  • 05b541f63a (svn r4207) - Fix: Update OS/2 on 0.4 branch, too orudge 2006-03-31 16:19:16 +0000
  • e44c175745 (svn r4206) - Add bridge_map.h and unmovable_map.h to MS VS project file peter1138 2006-03-31 16:11:51 +0000
  • e26f61b3d4 (svn r4205) Whoops, forgot to add os_timer.c to project orudge 2006-03-31 16:11:09 +0000
  • 0fe27c16af (svn r4204) - Get trunk compiling again on OS/2 orudge 2006-03-31 16:01:59 +0000
  • fa467d2f58 (svn r4203) - Fix compilation on mingw32 (stdint.h not included) orudge 2006-03-31 15:34:22 +0000
  • cd0a67dc65 (svn r4201) - Codechange: Do for _engine_info[] what we do for _*_vehicle_info[]; create and use a function to retrieve data, and ensure constness. peter1138 2006-03-31 12:59:43 +0000
  • 859fc1d7f0 (svn r4200) -Codechange: Make use of water map accessors when getting the Index of a Ship Depot. TODO: Store the depot index in the map celestar 2006-03-31 10:47:06 +0000
  • 43c86cf33f (svn r4199) - Codechange: Use industry map accessors to get industry graphics type. peter1138 2006-03-31 10:44:32 +0000
  • a6e1a1d372 (svn r4198) - NewGRF: Rename GetCallBackResult() to GetVehicleCallback(), as other types will exist later, and use separate parameters instead of bitshifting. peter1138 2006-03-31 10:14:25 +0000
  • 3b4b577107 (svn r4197) reentered STATIC_ZLIB_PATH (removed in 4183) since it turned out that it's used after all bjarni 2006-03-31 10:04:18 +0000