diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-03 21:30:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-04 00:03:04 +0300 |
commit | e98927f4fe7e45d5494f32797e57b960b7be54b4 (patch) | |
tree | 320c8e8a00bcdadef87c22db5ca4b811addc0b57 /src/resources/db/horsedb.h | |
parent | 6bb63b931d7a141aa1483a09941fe9f81974faa4 (diff) | |
download | plus-e98927f4fe7e45d5494f32797e57b960b7be54b4.tar.gz plus-e98927f4fe7e45d5494f32797e57b960b7be54b4.tar.bz2 plus-e98927f4fe7e45d5494f32797e57b960b7be54b4.tar.xz plus-e98927f4fe7e45d5494f32797e57b960b7be54b4.zip |
Add basic horses db implimentation.
Diffstat (limited to 'src/resources/db/horsedb.h')
-rw-r--r-- | src/resources/db/horsedb.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/resources/db/horsedb.h b/src/resources/db/horsedb.h new file mode 100644 index 000000000..94809c337 --- /dev/null +++ b/src/resources/db/horsedb.h @@ -0,0 +1,57 @@ +/* + * The ManaPlus Client + * Copyright (C) 2009 Aethyra Development Team + * Copyright (C) 2011-2015 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef RESOURCES_DB_HORSEDB_H +#define RESOURCES_DB_HORSEDB_H + +#include <map> +#include <string> + +#include "localconsts.h" + +class AnimatedSprite; + +struct HorseInfo; + +typedef std::map<int, HorseInfo*> HorseInfos; + +/** + * Horse information database. + */ +namespace HorseDB +{ + void load(); + + void loadXmlFile(const std::string &fileName); + + void loadSpecialXmlFile(const std::string &fileName); + + void unload(); + + const HorseInfo *get(const int id, + const bool allowNull = false) A_WARN_UNUSED; + + int size(); + + typedef HorseInfos::iterator HorseInfosIterator; +} // namespace HorseDB + +#endif // RESOURCES_DB_HORSEDB_H |