summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-01-16(svn r8160) -Fix (r8151): Do not use HasSignals on tiles without railways.maedhros
2007-01-16(svn r8159) -Cleanup: Sprinkle some coding-style and comments on the ↵Darkvater
disaster code.
2007-01-16(svn r8158) -Fix: The submarine disaster failed to move at all due to wrong ↵Darkvater
masking of trackbits
2007-01-16(svn r8157) -Fix (r3136): moving cargo during auto replaces did not update ↵rubidium
the cached vehicle weight for trains properly. This caused (in network games) the server to have a different cached vehicle weight than newly joined clients would have, which causes desyncs.
2007-01-16(svn r8155) -Fix: fixed compilation when --disable-network is in usebjarni
2007-01-16(svn r8154) -Codechange: Water can no longer be under bridge tiles, so don't ↵peter1138
check for it.
2007-01-16(svn r8153) -Codechange: Change UpdateStationAcceptance() and ↵peter1138
ShowRejectOrAcceptNews() to work with cargo IDs instead of cargo names, and explicitly list the different strings to use.
2007-01-16(svn r8152) Fix a off-by-one error in the placement of the sticky box of the ↵tron
road build toolbar in the scenario editor
2007-01-15(svn r8151) -Feature: Automatically build semaphores before a configurable ↵maedhros
date, which can be set by each network player seperately.
2007-01-15(svn r8148) WebTranslator2 update to 2007-01-15 19:25:31miham
brazilian_portuguese - 4 fixed by fukumori (4) bulgarian - 1 fixed, 48 changed by groupsky (49) croatian - 163 fixed, 60 changed by Ydobon (223) danish - 23 changed by MiR (23) esperanto - 2 changed by LaPingvino (2) italian - 4 fixed by sidew (4) japanese - 5 fixed by ickoonite (5) norwegian_bokmal - 4 fixed by brygge_2 (4) norwegian_nynorsk - 830 changed by khaavik (822), Eikje3 (8) portuguese - 4 fixed by izhirahider (4) slovenian - 4 fixed, 64 changed by Necrolyte (68)
2007-01-15(svn r8147) -Fix: [autoreplace] v->leave_depot_instantly was not always ↵bjarni
reset correctly While it's not certain if this would have any serious sideeffects (or any at all), it's reset when intended now
2007-01-15(svn r8146) -Fix (FS#552, r8038): a C/C++ linkage problem on some very few ↵celestar
incarnations of gcc
2007-01-15(svn r8145) -Featurette: Allow for Tropic Farm to plant fields after ↵belugas
producing cargo, like its counterpart in temperate climate.
2007-01-15(svn r8144) -Fix: [FS#163] When a station is removed, vehicles do not get ↵celestar
excessive payment any longer, as the origin TILE is now stored as long as the origin STATION for the transported cargos. Basically this is only a temporary fix until cargopackets are implemented, but it fixes one of the oldest known bugs (Special Thanks to Darkvater for lots of testing)
2007-01-15(svn r8143) Remove the landscaping button from the build toolbars.tron
The landscaping toolbar can be reached at least as easy directly from the main toolbar. Further two of the four toolbars uses 'l' as keyboard shortcut for this button, which plain does not work (The letter has to be uppercase). This was covered by the fact there is a global shortcut 'L' to open the landscaping toolbar, so the individual checks in the four build toolbars were redundant anyway.
2007-01-15(svn r8141) -Fix r8128: [OSX] now OSX can compile again.bjarni
Note: this is again another not so nice workaround as Objective C fails to include C++ code in the headers We should move to Objective C++ as soon as possible, but such a change is not done overnight and this quick fix will allow OSX to compile until the prober solution is done
2007-01-15(svn r8140) -Fix [FS#54]: Combat helicopter flies past factory before it ↵Darkvater
shoots. Chopper comes from the north-east, so it looks in +15 direction (forward), not -15 direction. Probably bad copy-paste from airplane-destroys-oil-refinery disaster.
2007-01-14(svn r8139) -Cleanup: simplify auto_ptr initialization (Tron)KUDr
2007-01-14(svn r8138) -Cleanup: comment style correctionsKUDr
2007-01-14(svn r8137) -Fix (FS#551, r4259, r4320): roadstop->num_vehicles was wrong ↵rubidium
for savegames with version 24 or lower and do not calculate roadstop->num_vehicles when reading the roadstops as the vehicles might not be loaded at that moment.
2007-01-14(svn r8136) -Codechange: Station spread rectangle manipulators turned into ↵KUDr
StationRect::methods.
2007-01-14(svn r8135) -Fix (r7582): Don't assert on duplicate non-static grfs when ↵Darkvater
removing duplicates as the PEBKAC effect can result in the user adding the same grf's in the config file.
2007-01-14(svn r8134) -Fix (r8013): Add a newline after the ShowInfo console outputDarkvater
2007-01-14(svn r8133) -Fix [FS#535]: "out of sprite memory" warning messages due to ↵Darkvater
incorrect assumption of requested memory for sprites (smatz)
2007-01-14(svn r8132) -Fix (r6824): The game could crash when the chat key (<ENTER>) ↵Darkvater
is pressed too vehemently during the join of the game. Your client's id does not exist in the clients list yet, and returns NULL.
2007-01-14(svn r8131) -Fix (r8125): g++ warning: 'invalid access to non-static data ↵KUDr
member ‘<class>::<member>’ of NULL object'. It is weird, but renaming the 'offsetof' macro helped.
2007-01-14(svn r8130) Provide struct GoodsEntry with a constructortron
2007-01-14(svn r8129) -Codechange: Change data tables to use split off palette map. And peter1138
include a file missed last time...
2007-01-14(svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit ↵peter1138
values. This lets us increase the sprite width from 14 to up to 29 bits, effectively nulling the old sprite limit. Table changes in next commit.
2007-01-14(svn r8127) -Fix (r8125): removed redundant free() call which is also in ↵KUDr
Station destructor (Tron)
2007-01-14(svn r8126) -Fix (r8125): missing #include fixes compilation error on g++ ↵KUDr
(still some warnings, working on it)
2007-01-14(svn r8125) -Codechange: Station is now constructed/destroyed using ↵KUDr
new/delete operators (don't worry, they still use the same memory pool). Few station related functions turned into Station::methods (just first step). All this new stuff moved from station_cmd.cpp to the new file (station.cpp).
2007-01-14(svn r8124) -Add [DEBUG]: _debug_station_levelKUDr
2007-01-14(svn r8123) -Fix (r117): FindFirstBit now really returns the first bit. ↵maedhros
Fixes bug FS#538.
2007-01-14(svn r8122) -Fix[LANG]: terror in czech lang file (again)KUDr
2007-01-14(svn r8121) WebTranslator2 update to 2007-01-14 19:39:35miham
american - 4 fixed by WhiteRabbit (4) bulgarian - 4 fixed by groupsky (4) catalan - 4 fixed by arnaullv (4) croatian - 379 fixed, 32 changed by Ydobon (411) czech - 4 fixed by joeprusa (4) danish - 4 fixed, 24 changed by ThomasA (20), MiR (8) dutch - 4 fixed by habell (1), Zr40 (3) esperanto - 4 fixed by LaPingvino (4) estonian - 4 fixed, 2 changed by kristjans (6) finnish - 7 fixed by pallokala (7) german - 4 fixed by Neonox (3), chu (1) hungarian - 4 fixed by miham (4) japanese - 14 fixed by ickoonite (14) lithuanian - 4 fixed, 3 changed by Domas (7) norwegian_nynorsk - 4 fixed, 119 changed by khaavik (123) romanian - 4 fixed by kneekoo (4) slovak - 4 fixed by lengyel (4) spanish - 4 fixed, 2 changed by eusebio (6) swedish - 4 fixed by ChrillDeVille (4)
2007-01-14(svn r8120) -Fix (r8055): Station cargo waiting value clamp should be signed ↵peter1138
not unsigned. This resulted in cargo magically appearing...
2007-01-14(svn r8119) -Fix (r8101): Uninitializing windows should be called before ↵Darkvater
freeing dynamic variables as windows could use those variables during cleanup (eg WE_DESTROY calling GetStation(w->window_number). -Merged UnInitializeGame with UnInitializeAirports and UnInitializeDynamicVariables
2007-01-14(svn r8118) -Codechange: change the ordering of the network list a little:rubidium
- servers we have information about go above servers we do not have information about. - servers that are version compatible go above servers we are not version compatible with. - servers we have all required NewGRFs for go above servers we miss NewGRFs for. - unpassworded servers go above passworded servers.
2007-01-14(svn r8117) -Fix (r8114): 'no matching operator delete found' warning on VC8KUDr
2007-01-14(svn r8116) Undo r8113tron
2007-01-14(svn r8114) Allocate struct GRFText in the C++ waytron
2007-01-14(svn r8113) Fix the #include path to table/strings.htron
2007-01-13(svn r8111) -Fix r8106: silence warningsglx
2007-01-13(svn r8110) -Codechange: direct Vehicle::current_order.type changes (to ↵KUDr
OT_LOADING and OT_LEAVESTATION) replaced by v->BeginLoading() and v->LeaveStation() calls. This should allow easy hooking of those state transitions in order to maintain vehicle loading queue.
2007-01-13(svn r8108) WebTranslator2 update to 2007-01-13 19:32:03miham
danish - 56 changed by MiR (56) french - 4 fixed by glx (4) japanese - 77 fixed, 23 changed by ickoonite (100) norwegian_nynorsk - 5 fixed, 1 changed by pollux (6) turkish - 4 fixed by jnmbk (4)
2007-01-13(svn r8107) -Codechange (r8106): Show the MD5SUM of the original GRF (saved ↵Darkvater
in savegame) instead of that of the replacement so a user can still go hunt for the original GRF if needed.
2007-01-13(svn r8106) -Feature/Fix: Add the ability to load savegames when you don't ↵Darkvater
have the exact GRF files in your list. GRF files that are found based on GRFID (but not on matching md5sum) are used instead of disabling them. This does not affect MP games, there you still need an exact match. -GRF Window colour-codes changed a bit: Static is now grey, and compatible GRF (found locally only based on GRFID) are shown in orange. Compatible GRF's also have an orange status/warning text saying they're not the original the game was saved with. -Loaded games with something amiss regarding GRF's will show an appropiate warning message.
2007-01-13(svn r8105) -Codechange: Change FindGRFConfig so that if md5sum parameter is ↵Darkvater
omitted (or NULL) only a check for GRFID is done and not on md5sum as well. Remove blanksum in the function as it's obsoleted
2007-01-13(svn r8102) -Cleanup: Remove unreachable code (r8096), useless castDarkvater