diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2012-01-18 19:20:34 +0100 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2012-02-02 15:31:41 +0100 |
commit | f5de9ae444f1bca1f6ba6969214e9a8cacb15f68 (patch) | |
tree | f9b9c699c52d279cdc4d93b09f48dd3b24403f5b /src/net/charhandler.h | |
parent | 7cc504d993fa948ae2e10848993f4552b2d6daaa (diff) | |
download | mana-f5de9ae444f1bca1f6ba6969214e9a8cacb15f68.tar.gz mana-f5de9ae444f1bca1f6ba6969214e9a8cacb15f68.tar.bz2 mana-f5de9ae444f1bca1f6ba6969214e9a8cacb15f68.tar.xz mana-f5de9ae444f1bca1f6ba6969214e9a8cacb15f68.zip |
Fix to the hair colors and styles handling.
- I made the charCreatedialog handle a possible
max permitted color Id and a minimum hair style id for tA.
- Added a foundation to later load the styles and colors from
the same file, to handle the Mana-issue #224 for manaserv.
- Support for non-contiguous hair color and style ids
has also been added.
- I also replaced the < and > arrow signs with images.
Reviewed-by: Ben Longbons, Thorbjørn Lindeijer
Diffstat (limited to 'src/net/charhandler.h')
-rw-r--r-- | src/net/charhandler.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/charhandler.h b/src/net/charhandler.h index 60c332f9..1835ceb9 100644 --- a/src/net/charhandler.h +++ b/src/net/charhandler.h @@ -83,6 +83,18 @@ class CharHandler virtual unsigned int maxSprite() const = 0; + /** + * Returns the max permitted hair color Id at character creation time, + * or 0 if no limit should be applied. + */ + virtual int getCharCreateMaxHairColorId() const = 0; + + /** + * Returns the max permitted hair style Id at character creation time, + * or 0 if no limit should be applied. + */ + virtual int getCharCreateMaxHairStyleId() const = 0; + protected: CharHandler(): mSelectedCharacter(0), |