summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
2007-01-13(svn r8101) -Fix (runknown): Plug potential memleaks when calling ↵Darkvater
UnInitWindowSystem. The function directly deleted all windows instead of calling their respective deallocators which could then in turn any used memory.
2007-01-13(svn r8098) -Fix (r6964): For editboxen, always fill the background with ↵Darkvater
black, and not only after a valid call to FillDrawPixelInfo. This solves some graphics glitches with background widget-colour showing through on frequent redraws.
2007-01-13(svn r8097) Replace strlen() {==,!=,>} 0 by the more concise {,!}StrEmpty(). ↵tron
Additionally the test takes O(1) instead of O(n) now
2007-01-13(svn r8096) -Codechange: Invert the check if you are allowed to clear a road ↵Darkvater
tile so there are not so many negations (too confusing) and added some comments to further clarify what happens.
2007-01-13(svn r8095) -Codechange: stuff that is not related to HAL moved from hal.h ↵KUDr
to gfx.h
2007-01-13(svn r8094) -Feature/Fix (r7523): Show the activated status of the GRF list ↵Darkvater
after pressing 'apply' in the newgrf window, instead of the local list.
2007-01-13(svn r8093) -Codechange: Add a function to get a string representation of an ↵Darkvater
MD5SUM and use it.
2007-01-13(svn r8092) -Codechange: header files with miscellaneous template classes ↵KUDr
(smart pointers, blob, array, hashtable, etc.) moved from src/yapf to src/misc as they can now be used anywhere.
2007-01-13(svn r8090) -[win32] Fix (r8089): for *nprintf 'ret = count' NOT 'ret = 0'...Darkvater
2007-01-13(svn r8089) -[win32] MS-borkedness: All *nprintf functions are broken, but ↵Darkvater
we didn't test to fix it ourselves when 'len = count'.
2007-01-13(svn r8088) -Regression (r8087): Fix japanese translation by adding missing ↵tron
{ and removing spurious 0
2007-01-13(svn r8087) [Translations] Japanese translation manually updated by ickoonitemiham
2007-01-13(svn r8086) WebTranslator2 update to 2007-01-13 08:18:52miham
brazilian_portuguese - 203 changed by fukumori (203) norwegian_nynorsk - 9 changed by pollux (9)
2007-01-12(svn r8085) [Translations] fixed the filenames to the scheme the others use, ↵miham
updated projectfile, sorry
2007-01-12(svn r8084) [Translations] Added nynorsk translation (pollux), renamed ↵miham
norwegian to norwegian bokmal, moved nynorsk to finished languages, and updated project files. Strings pending to nynorsk will be preserved if they are differ from the current translation
2007-01-12(svn r8083) -Codechange: make a NetworkSocketHandler as base for all sockets ↵rubidium
and move a little of NetworkClientState functionality to the NetworkSocketHandler. Move the rest of the NetworkClientState to the new NetworkTCPSocketHandler class/struct, which is not yet implemented in an object oriented manner. The UDP socket handler now extends the NetworkSocketHandler instead of having a reference to a NetworkClientState.
2007-01-12(svn r8082) WebTranslator2 update to 2007-01-12 19:31:14miham
brazilian_portuguese - 62 changed by fukumori (62) croatian - 86 fixed, 2 changed by knovak (88) esperanto - 1 changed by LaPingvino (1)
2007-01-12(svn r8081) -Fix (r8075): Use a copy of the resolver object instead of the ↵peter1138
using the existing one. This fixes problems with the object scope setting.
2007-01-12(svn r8080) -Codechange (r8079): Move the *WHOLE* performance code into the ↵Darkvater
#ifndef and some style changes.
2007-01-12(svn r8079) -Fix [YAPF]: float division by zero when calculating stats (YAPF ↵KUDr
cache hit ratio). Caused BSOD on Win9x. (thanks 3iff for report, Darkvater for help)
2007-01-12(svn r8078) -Codechange: rewrite UDP part of the network code to make use ↵rubidium
classes. This is only one of the many steps to really cleanup the network code.
2007-01-12(svn r8077) -Cleanup: Restructure some switch() statements' default case ↵Darkvater
when they're unreachable
2007-01-12(svn r8075) -Feature: Add support for variable 7E - subroutines. (peter1138)maedhros
2007-01-12(svn r8074) -Fix (FS#537, r7555, r5749): revert r7555 because it was really ↵rubidium
wrong and fix the off-by-one error due to truncation that was supposedly fixed by r7555.
2007-01-12(svn r8073) WebTranslator2 update to 2007-01-12 08:35:48miham
brazilian_portuguese - 92 changed by fukumori (92)
2007-01-12(svn r8071) -Fix (r5999): [FS#536] Merging 32bit dates broke the ↵Darkvater
inauguration date of companies in oldloader: "The year the company was inaugurated (full value, not base-1920)" (Marcin Grzegorczyk's TTD internals site)
2007-01-11(svn r8070) -Fix r5815: missing initialisation could cause crash when ↵glx
loading 24bpp BMP heightmap
2007-01-11(svn r8069) [Translations] Moved japanese from unfinished, good job translatorsmiham