2011-11-13 09:46:19 +01:00
|
|
|
/*
|
2014-04-01 07:36:42 +02:00
|
|
|
* Copyright (c) 2010-2014 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-05-28 15:06:26 +02:00
|
|
|
#include <framework/util/color.h>
|
2012-07-14 03:10:24 +02:00
|
|
|
#include "thingtypemanager.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();
|
|
|
|
|
2011-11-13 23:23:21 +01:00
|
|
|
static Color getColor(int color);
|
|
|
|
|
2012-01-10 01:36:18 +01:00
|
|
|
void setId(int id) { m_id = id; }
|
2012-08-21 03:02:05 +02:00
|
|
|
void setAuxId(int id) { m_auxId = 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-07-15 13:49:28 +02:00
|
|
|
void setMount(int mount) { m_mount = mount; }
|
2012-07-20 07:45:11 +02:00
|
|
|
void setCategory(ThingCategory 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; }
|
2012-08-21 03:02:05 +02:00
|
|
|
int getAuxId() const { return m_auxId; }
|
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-07-15 13:49:28 +02:00
|
|
|
int getMount() const { return m_mount; }
|
2012-07-20 07:45:11 +02:00
|
|
|
ThingCategory getCategory() const { return m_category; }
|
2011-11-14 23:47:36 +01:00
|
|
|
|
2012-06-17 17:21:46 +02:00
|
|
|
Color getHeadColor() const { return m_headColor; }
|
|
|
|
Color getBodyColor() const { return m_bodyColor; }
|
|
|
|
Color getLegsColor() const { return m_legsColor; }
|
|
|
|
Color getFeetColor() const { return m_feetColor; }
|
2011-11-13 09:46:19 +01:00
|
|
|
|
|
|
|
private:
|
2012-07-20 07:45:11 +02:00
|
|
|
ThingCategory m_category;
|
2012-08-21 03:02:05 +02:00
|
|
|
int m_id, m_auxId, m_head, m_body, m_legs, m_feet, m_addons, m_mount;
|
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
|