Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-09-16 | Add const to variables with type size_t. | Andrei Karas | 1 | -2/+2 | |
2012-09-04 | add const to more classes, | Andrei Karas | 1 | -1/+1 | |
fix other small style issues. | |||||
2012-09-04 | Add const to more classes. | Andrei Karas | 1 | -40/+46 | |
2012-06-28 | Add validation for some xml parameters. | Andrei Karas | 1 | -3/+4 | |
2012-06-04 | Fix default animation in actions with missing dead animation (for old servers) | Andrei Karas | 1 | -2/+4 | |
2012-05-31 | Add sittop sprites support. | Andrei Karas | 1 | -0/+1 | |
Add groundtop collision support (not collision but special selected tiles). | |||||
2012-04-25 | Improve iterators part 2. | Andrei Karas | 1 | -15/+12 | |
2012-04-01 | Last part of fixes. | Andrei Karas | 1 | -1/+1 | |
2012-03-29 | Replace vectors with strings to short names. | Andrei Karas | 1 | -3/+3 | |
2012-03-27 | Extend sequence animation tag. Allow set in attribute value any frame numbers. | Andrei Karas | 1 | -20/+98 | |
Examples what doing same: <sequence start="55" end="60" delay="75" /> <sequence value="55-60" delay="75" /> <sequence value="55,56,57,58,59,60" delay="75" /> Other examples: <sequence value="55,p,56,p,58,p,59,p,60" delay="75" /> p mean pause. | |||||
2012-03-27 | Add pause animation tag. | Andrei Karas | 1 | -0/+4 | |
Example: <pause delay="10"/> | |||||
2012-02-26 | Fix incorrect last dead frame delay for old servers. | Andrei Karas | 1 | -2/+20 | |
2012-01-10 | Replace xmlStrEqual to xmlNameEqual. | Andrei Karas | 1 | -12/+12 | |
2012-01-10 | Replace all xmlNodePtr to XmlNodePtr. | Andrei Karas | 1 | -7/+7 | |
2012-01-10 | Move libxml2 includes to xml.h | Andrei Karas | 1 | -2/+0 | |
2012-01-05 | Update copyrights year. | Andrei Karas | 1 | -1/+1 | |
2011-11-24 | Refactoring in spritedef after last commit. | Andrei Karas | 1 | -20/+16 | |
Add missing checks. | |||||
2011-11-24 | Prevented circular include in sprite definitions | Erik Schilling | 1 | -4/+15 | |
When including a file that already is included the client won't try to load it again and end in an endless loop but stops parsing and logs and warning. Reviewed-by: bjorn. Conflicts: src/resources/spritedef.cpp | |||||
2011-11-24 | Add ability to play different animation depend on monster hp. | Andrei Karas | 1 | -16/+62 | |
Disabled for legacy servers because monster hp unknown and compilated hp can be wrong (version <= 0). For usage need add to action tag attribute hp="xx" Example: <action name="stand" hp="50" imageset="base"> ... </action> Here 50 mean 50% of health or less. Default action tag mean hp=100 | |||||
2011-11-08 | Fix more gcc 4.7 warnings. | Andrei Karas | 1 | -2/+2 | |
2011-11-07 | Fix some warnings under gcc 4.7. | Andrei Karas | 1 | -2/+2 | |
2011-09-08 | Replace most iterator to const_iterator. | Andrei Karas | 1 | -1/+1 | |
Some other minor changes. | |||||
2011-08-12 | Rename file names log and chatlog to correct logger and chatlogger. | Andrei Karas | 1 | -1/+1 | |
2011-07-21 | Fix possible crash. Move unsafe initialisations from static members. | Andrei Karas | 1 | -2/+1 | |
2011-06-08 | Zero variables after calling decRef(). | Andrei Karas | 1 | -0/+3 | |
2011-05-30 | Fix memory leaks in being, socialwindow classes. | Andrei Karas | 1 | -1/+1 | |
2011-05-24 | Add simple memory leak detector. | Andrei Karas | 1 | -0/+2 | |
Can be enabled by configure option -enable-memdebug=yes. Known issue: not all memory allocations hooked with it. | |||||
2011-04-13 | Impliment new tags in sprites animations and random condition. | Andrei Karas | 1 | -4/+19 | |
Tags: <label>, <goto> | |||||
2011-04-03 | Change imageset offset work not like default offset, but as additional offset. | Andrei Karas | 1 | -4/+4 | |
2011-04-03 | Add default offsets in imageset tag for all animations. | Andrei Karas | 1 | -2/+6 | |
2011-04-03 | Add spawn animation to mobs. | Andrei Karas | 1 | -0/+5 | |
Also impliment sound events: SOUND_EVENT_MOVE, SOUND_EVENT_SIT, SOUND_EVENT_SPAWN | |||||
2011-03-31 | Add repeat attribute to xml sequence tag. | Andrei Karas | 1 | -11/+24 | |
2011-03-16 | Add checks and fix some code style. | Andrei Karas | 1 | -1/+2 | |
2011-02-19 | Update copyrights. | Andrei Karas | 1 | -2/+3 | |
2011-01-21 | Add diagonal animations. | Andrei Karas | 1 | -0/+8 | |
New animation names: upleft, upright, downleft, downright Tested atleast at mobs. | |||||
2011-01-02 | Initial commit. | Andrei Karas | 1 | -0/+339 | |
This code based on mana client http://www.gitorious.org/mana/mana and my private repository. |