mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-23 03:23:54 +00:00
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
|
/*!
|
|||
|
@file
|
|||
|
@author Albert Semenov
|
|||
|
@date 06/2009
|
|||
|
@module
|
|||
|
*/
|
|||
|
/*
|
|||
|
This file is part of MyGUI.
|
|||
|
|
|||
|
MyGUI is free software: you can redistribute it and/or modify
|
|||
|
it under the terms of the GNU Lesser General Public License as published by
|
|||
|
the Free Software Foundation, either version 3 of the License, or
|
|||
|
(at your option) any later version.
|
|||
|
|
|||
|
MyGUI 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 Lesser General Public License for more details.
|
|||
|
|
|||
|
You should have received a copy of the GNU Lesser General Public License
|
|||
|
along with MyGUI. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
*/
|
|||
|
#include "MyGUI_Precompiled.h"
|
|||
|
#include "MyGUI_ResourceImageSetPointer.h"
|
|||
|
#include "MyGUI_StaticImage.h"
|
|||
|
#include "MyGUI_ResourceManager.h"
|
|||
|
|
|||
|
namespace MyGUI
|
|||
|
{
|
|||
|
|
|||
|
ResourceImageSetPointer::ResourceImageSetPointer() :
|
|||
|
mImageSet(nullptr)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
void ResourceImageSetPointer::deserialization(xml::ElementPtr _node, Version _version)
|
|||
|
{
|
|||
|
Base::deserialization(_node, _version);
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>
|
|||
|
xml::ElementEnumerator info = _node->getElementEnumerator();
|
|||
|
while (info.next("Property"))
|
|||
|
{
|
|||
|
const std::string& key = info->findAttribute("key");
|
|||
|
const std::string& value = info->findAttribute("value");
|
|||
|
|
|||
|
if (key == "Point") mPoint = IntPoint::parse(value);
|
|||
|
else if (key == "Size") mSize = IntSize::parse(value);
|
|||
|
else if (key == "Resource") mImageSet = ResourceManager::getInstance().getByName(value)->castType<ResourceImageSet>();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void ResourceImageSetPointer::setImage(StaticImage* _image)
|
|||
|
{
|
|||
|
if (mImageSet != nullptr)
|
|||
|
_image->setItemResourceInfo(mImageSet->getIndexInfo(0, 0));
|
|||
|
}
|
|||
|
|
|||
|
void ResourceImageSetPointer::setPosition(StaticImage* _image, const IntPoint& _point)
|
|||
|
{
|
|||
|
_image->setCoord(_point.left - mPoint.left, _point.top - mPoint.top, mSize.width, mSize.height);
|
|||
|
}
|
|||
|
|
|||
|
} // namespace MyGUI
|