1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 3 of the License, or
* (at your option) 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/>.
*
*/
/*
* This code is based on the CRAB engine
*
* Copyright (c) Arvind Raja Yadav
*
* Licensed under MIT
*
*/
#include "crab/crab.h"
#include "crab/stat/StatDrawHelper.h"
namespace Crab {
using namespace pyrodactyl::text;
using namespace pyrodactyl::stat;
using namespace pyrodactyl::people;
void StatInfo::load(rapidxml::xml_node<char> *node) {
if (nodeValid(node)) {
loadBool(_active, "active", node);
_desc.load(node->first_node("info"));
loadStr(_text, "text", node->first_node("info"));
if (nodeValid("value", node)) {
rapidxml::xml_node<char> *valuenode = node->first_node("value");
_dim.load(valuenode);
loadImgKey(_full, "full", valuenode);
loadImgKey(_empty, "empty", valuenode);
}
}
}
void StatInfo::draw(const int &val, const int &max) {
if (_active) {
using namespace pyrodactyl::image;
_desc.draw(_text);
int i = 0;
for (; i < val; ++i)
g_engine->_imageManager->draw(_dim.x + i * _dim.w, _dim.y + i * _dim.h, _full);
for (; i < max; ++i)
g_engine->_imageManager->draw(_dim.x + i * _dim.w, _dim.y + i * _dim.h, _empty);
}
}
void StatDrawHelper::load(rapidxml::xml_node<char> *node) {
if (nodeValid(node)) {
_info[STAT_HEALTH].load(node->first_node(STATNAME_HEALTH));
_info[STAT_ATTACK].load(node->first_node(STATNAME_ATTACK));
_info[STAT_DEFENSE].load(node->first_node(STATNAME_DEFENSE));
_info[STAT_SPEED].load(node->first_node(STATNAME_SPEED));
/*info[STAT_CHARISMA].load(node->first_node(STATNAME_CHARISMA));
info[STAT_INTELLIGENCE].load(node->first_node(STATNAME_INTELLIGENCE));*/
}
}
void StatDrawHelper::drawInfo(const pyrodactyl::people::Person &obj) {
for (int i = 0; i < STAT_TOTAL; i++)
_info[i].draw(obj._stat._val[i]._cur, obj._stat._val[i]._max);
}
} // End of namespace Crab
|