summaryrefslogtreecommitdiff
path: root/src/resources
AgeCommit message (Collapse)AuthorFilesLines
2007-10-19Factored code between resource handlers. Implemented failure-friendly sprite ↵Guillaume Melquiond15-211/+156
loader.
2007-10-18Added automatic generation of description strings for item effects.Guillaume Melquiond1-23/+39
2007-10-18Removed unused slot field.Guillaume Melquiond2-11/+1
2007-10-18Removed player looks from generic beings. Prevented client termination on ↵Guillaume Melquiond5-29/+33
missing sprites. Merged weapon-type and attack-type fields for items.
2007-10-01Fixed inventory display with respect to empty slots.Guillaume Melquiond1-1/+1
2007-09-27Some formatting changes to align with the 0.0 branch.Bjørn Lindeijer1-3/+3
2007-09-19Merged 0.0 changes from revision 3362 to 3580 to trunk.Bjørn Lindeijer11-364/+271
2007-08-27Ported patch from 0.0, in order to support missing extensions and ↵Guillaume Melquiond1-7/+18
uncompressed maps.
2007-08-25Removed dependency on Guichan's OpenGL library. Taken over image loading and ↵Guillaume Melquiond8-173/+218
handling. Reduced memory usage when using OpenGL. (Up to 95% reduction for some textures.)
2007-08-13Fixed svn properties.Guillaume Melquiond9-658/+658
2007-08-06Fixed some header typos. Moved gettext.h to utils directory. Removed ↵Guillaume Melquiond1-46/+0
redundant HAS_CONFIG_H macro. Used autopoint for generating gettext environment. Removed auto-generated file from po directory.
2007-08-05Do not include config.h when the program has not been configured.Guillaume Melquiond1-0/+2
2007-08-05Added support for internationalization. Tested by translating a few gui ↵Guillaume Melquiond1-0/+44
strings to french.
2007-07-27Removed useless yet costly dynamic casts.Guillaume Melquiond1-1/+1
2007-06-16Set GL texture index to zero when an image uses the SDL backend.Guillaume Melquiond1-1/+5
2007-06-04Merged 0.0 changes from revision 3234 to 3317 to trunk.Bjørn Lindeijer5-14/+72
2007-04-22Made the itemdb parameter checks more terse and manageable.Björn Steinbrink1-44/+15
2007-04-22Added a macro for XML child node iterations to make the code more terse and ↵Björn Steinbrink5-50/+40
easier to read.
2007-03-24Merged 0.0 changes from revision 3177 to 3234 to trunk.Bjørn Lindeijer11-212/+193
2007-03-21Some spelling fixes.Bjørn Lindeijer1-1/+1
2007-03-11Merged 0.0 changes from revision 3065 to 3177 to trunk.Bjørn Lindeijer2-0/+35
2007-03-03Fixed auto-character-select and switch_character combination. Added ↵Rogier Polak5-4/+5
svn-properties keyword and eol-style, where appropriate.
2007-01-29Some trivial documentation work. Fixes all Doxygen warnings.Bjørn Lindeijer4-2/+6
2007-01-28Some work on documentation.Bjørn Lindeijer3-98/+104
2007-01-04Merged 0.0 changes from revision 2898 to 2988 to trunk.Bjørn Lindeijer15-32/+329
2007-01-03Modified handler for items on floor.Guillaume Melquiond1-1/+0
2006-12-11Merged 0.0 changes from revision 2825 to 2898 to trunk.Bjørn Lindeijer18-287/+1466
2006-11-05Merged 0.0 changes from revision 2800 to 2825 to trunk.Bjørn Lindeijer1-4/+4
2006-11-02Merged trunk changes from revision 2716 to 2756 into the 0.1.0 branch.Bjørn Lindeijer3-54/+204
2006-09-29Merged trunk changes from revision 2618 to 2716 into the 0.1.0 branch.Bjørn Lindeijer6-39/+71
2006-08-28Merged trunk development between revisions 2530 and 2618 to the 0.1.0 branch.Bjørn Lindeijer4-11/+88
2006-08-13Merged cleanups and content changes from the trunk. Also fixed compiling withBjørn Lindeijer4-120/+106
OpenGL enabled.
2006-08-01Fixed several compiler warnings and a linker error when compiling withoutBjørn Lindeijer1-0/+4
OpenGL support.
2006-07-30Updated TMW to be compatible with Guichan 0.5.0 (merged from guichan-0.5.0Bjørn Lindeijer6-53/+100
branch).
2006-07-25Added support for writing log to standard output.Bjørn Lindeijer1-1/+4
2006-07-24Implemented caching of spritesets, including a lot of cleanups to the newBjørn Lindeijer5-27/+190
animation system. Action now refers to the Spriteset directly and AnimatedSprite refers to the current Action directly instead of using the std::map with a std::string constantly. Some methods and parameters are marked as const. The READ_PROP macro was replaced by static methods. Warnings are logged when unnamed actions are defined or when actions refer to undefined imagesets. Code is more tolerant towards missing actions.
2006-07-19Implemented loading for the way Tiled saves properties since version 0.6.0 andBjørn Lindeijer2-17/+43
updated all current maps.
2006-07-19Merged new_animation branch until r2415 into trunk. Eugenio Favalli2-2/+3
2006-07-18Updated the updating system. It will now only load those updatesBjørn Lindeijer2-39/+6
specified in the downloaded resources.txt file, and in the order in which they are mentioned (the top one being the most significant).
2006-05-22A bunch of updates to the world and disabled art and type xml parser checks ↵Eugenio Favalli1-4/+4
since they're not used.
2006-03-19Removed some useless null pointer checks.Björn Steinbrink1-4/+2
2006-03-16A bunch of cosmetic changes.Björn Steinbrink1-5/+7
2006-03-09Made all class members named like mClassMember.Björn Steinbrink6-73/+57
2006-03-08Some fixes for compiling with pedantic compiler settings and const char* checks.Bjørn Lindeijer1-2/+2
2006-03-08Removed some conditional code.Björn Steinbrink1-16/+4
2006-03-05Merged new_playerset branch into trunk.Eugenio Favalli1-2/+2
2006-02-24Another bunch of cosmetic cleanups, ie mostly typedefs...Björn Steinbrink2-134/+109
2006-02-19Added warnings when parameters are missing in the items xml file.Yohann Ferreira1-3/+48
2006-02-05Fixed a gcc 4.0 issue in the tradehandler. Strengthened the xml parser in ↵Yohann Ferreira1-20/+35
the itemmanager so tmw doesn't crash anymore if an item lacks some parameters.
2006-01-31Various small cleanups.Björn Steinbrink1-1/+0