tibia-client/src/otclient/core/outfit.h

71 lines
2.6 KiB
C
Raw Normal View History

2011-11-13 09:46:19 +01:00
/*
2012-01-02 17:58:37 +01:00
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
2011-11-13 09:46:19 +01:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef OUTFIT_H
#define OUTFIT_H
2012-01-05 02:28:29 +01:00
#include <framework/math/color.h>
2012-01-10 01:36:18 +01:00
#include <otclient/core/thingstype.h>
2011-11-13 09:46:19 +01:00
class Outfit
{
enum {
HSI_SI_VALUES = 7,
HSI_H_STEPS = 19
};
public:
2011-12-02 03:29:05 +01:00
Outfit();
static Color getColor(int color);
2012-01-10 01:36:18 +01:00
void setId(int id) { m_id = id; }
2011-11-14 23:47:36 +01:00
void setHead(int head) { m_head = head; m_headColor = getColor(head); }
void setBody(int body) { m_body = body; m_bodyColor = getColor(body); }
void setLegs(int legs) { m_legs = legs; m_legsColor = getColor(legs); }
void setFeet(int feet) { m_feet = feet; m_feetColor = getColor(feet); }
2011-11-13 09:46:19 +01:00
void setAddons(int addons) { m_addons = addons; }
2012-01-10 01:36:18 +01:00
void setCategory(ThingsType::Categories category) { m_category = category; }
2011-11-13 09:46:19 +01:00
2011-12-29 20:36:43 +01:00
void resetClothes();
2012-01-10 01:36:18 +01:00
int getId() const { return m_id; }
2011-11-14 23:47:36 +01:00
int getHead() const { return m_head; }
int getBody() const { return m_body; }
int getLegs() const { return m_legs; }
int getFeet() const { return m_feet; }
int getAddons() const { return m_addons; }
2012-01-10 01:36:18 +01:00
ThingsType::Categories getCategory() const { return m_category; }
2011-11-14 23:47:36 +01:00
Color getHeadColor() { return m_headColor; }
Color getBodyColor() { return m_bodyColor; }
Color getLegsColor() { return m_legsColor; }
Color getFeetColor() { return m_feetColor; }
2011-11-13 09:46:19 +01:00
private:
2012-01-10 01:36:18 +01:00
ThingsType::Categories m_category;
int m_id, m_head, m_body, m_legs, m_feet, m_addons;
2011-11-14 23:47:36 +01:00
Color m_headColor, m_bodyColor, m_legsColor, m_feetColor;
2011-11-13 09:46:19 +01:00
};
#endif