tibia-client/src/client/thingstype.h

68 lines
2.2 KiB
C
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
* Copyright (c) 2010-2013 OTClient <https://github.com/edubart/otclient>
2011-08-28 15:17:58 +02: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.
*/
2011-08-15 23:02:52 +02:00
#ifndef DATMANAGER_H
#define DATMANAGER_H
#include <framework/global.h>
#include <framework/core/declarations.h>
2011-08-31 17:03:33 +02:00
#include "thingtype.h"
2011-08-15 23:02:52 +02:00
2012-06-22 05:14:13 +02:00
//@bindsingleton g_thingsType
2011-08-31 17:03:33 +02:00
class ThingsType
2011-08-15 23:02:52 +02:00
{
public:
2011-11-12 07:24:32 +01:00
enum Categories {
Item = 0,
Creature,
Effect,
Missile,
LastCategory
};
bool load(const std::string& file);
2011-08-15 23:02:52 +02:00
void unload();
bool parseThingType(const FileStreamPtr& fin, ThingType& thingType);
2011-08-15 23:02:52 +02:00
2011-12-02 04:01:56 +01:00
ThingType *getEmptyThingType() { return &m_emptyThingType; }
2011-12-02 03:29:05 +01:00
ThingType *getThingType(uint16 id, Categories category);
2011-08-15 23:02:52 +02:00
uint32 getSignature() { return m_signature; }
2012-01-05 02:28:29 +01:00
bool isLoaded() { return m_loaded; }
2011-08-15 23:02:52 +02:00
uint16 getFirstItemId() { return 100; }
uint16 getMaxItemid() { return m_things[Item].size() + 99; }
2012-02-08 22:23:15 +01:00
bool isValidItemId(int id) { return id >= getFirstItemId() && id <= getMaxItemid(); }
2012-02-01 04:47:00 +01:00
2011-08-15 23:02:52 +02:00
private:
uint32 m_signature;
2012-07-29 12:32:44 +02:00
stdext::boolean<false> m_loaded;
2011-11-12 07:24:32 +01:00
ThingTypeList m_things[LastCategory];
2011-12-02 04:01:56 +01:00
static ThingType m_emptyThingType;
2011-08-15 23:02:52 +02:00
};
2011-08-31 17:03:33 +02:00
extern ThingsType g_thingsType;
2011-08-15 23:02:52 +02:00
#endif