mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-02 05:15:33 +00:00
155 lines
3.8 KiB
C++
155 lines
3.8 KiB
C++
/*!
|
|
@file
|
|
@author Albert Semenov
|
|
@date 02/2008
|
|
@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_LayerItem.h"
|
|
#include "MyGUI_SharedLayer.h"
|
|
#include "MyGUI_LayerNode.h"
|
|
#include "MyGUI_RenderManager.h"
|
|
|
|
namespace MyGUI
|
|
{
|
|
|
|
SharedLayer::SharedLayer() :
|
|
mIsPick(false),
|
|
mChildItem(nullptr)
|
|
{
|
|
}
|
|
|
|
SharedLayer::~SharedLayer()
|
|
{
|
|
MYGUI_ASSERT(mChildItem == nullptr, "Layer '" << getName() << "' must be empty before destroy");
|
|
}
|
|
|
|
void SharedLayer::deserialization(xml::ElementPtr _node, Version _version)
|
|
{
|
|
mName = _node->findAttribute("name");
|
|
if (_version >= Version(1, 2))
|
|
{
|
|
MyGUI::xml::ElementEnumerator propert = _node->getElementEnumerator();
|
|
while (propert.next("Property"))
|
|
{
|
|
const std::string& key = propert->findAttribute("key");
|
|
const std::string& value = propert->findAttribute("value");
|
|
if (key == "Pick") mIsPick = utility::parseValue<bool>(value);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
mIsPick = utility::parseBool(_version < Version(1, 0) ? _node->findAttribute("peek") : _node->findAttribute("pick"));
|
|
}
|
|
}
|
|
|
|
ILayerNode* SharedLayer::createChildItemNode()
|
|
{
|
|
if (mChildItem == nullptr)
|
|
{
|
|
mChildItem = new SharedLayerNode(this);
|
|
}
|
|
|
|
mChildItem->addUsing();
|
|
return mChildItem;
|
|
}
|
|
|
|
void SharedLayer::destroyChildItemNode(ILayerNode* _item)
|
|
{
|
|
// àéòåì ðóòîâûé, ìû óäàëÿåì
|
|
if (mChildItem == _item)
|
|
{
|
|
mChildItem->removeUsing();
|
|
if (0 == mChildItem->countUsing())
|
|
{
|
|
delete mChildItem;
|
|
mChildItem = nullptr;
|
|
}
|
|
return;
|
|
}
|
|
//MYGUI_EXCEPT("item node not found");
|
|
}
|
|
|
|
void SharedLayer::upChildItemNode(ILayerNode* _item)
|
|
{
|
|
// åñëè åñòü îòåö, òî ïóñòü ñàì ðóëèò
|
|
ILayerNode * parent = _item->getParent();
|
|
if (parent != nullptr)
|
|
{
|
|
parent->upChildItemNode(_item);
|
|
}
|
|
}
|
|
|
|
ILayerItem * SharedLayer::getLayerItemByPoint(int _left, int _top)
|
|
{
|
|
if (!mIsPick) return nullptr;
|
|
if (mChildItem != nullptr)
|
|
{
|
|
ILayerItem * item = mChildItem->getLayerItemByPoint(_left, _top);
|
|
if (item != nullptr) return item;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
IntPoint SharedLayer::getPosition(int _left, int _top) const
|
|
{
|
|
return IntPoint(_left, _top);
|
|
}
|
|
|
|
void SharedLayer::renderToTarget(IRenderTarget* _target, bool _update)
|
|
{
|
|
if (mChildItem != nullptr) mChildItem->renderToTarget(_target, _update);
|
|
}
|
|
|
|
EnumeratorILayerNode SharedLayer::getEnumerator()
|
|
{
|
|
static VectorILayerNode nodes;
|
|
if (mChildItem == nullptr)
|
|
{
|
|
nodes.clear();
|
|
}
|
|
else
|
|
{
|
|
if (nodes.empty()) nodes.push_back(mChildItem);
|
|
else nodes[0] = mChildItem;
|
|
}
|
|
|
|
return EnumeratorILayerNode(nodes);
|
|
}
|
|
|
|
void SharedLayer::dumpStatisticToLog()
|
|
{
|
|
static const char* spacer = " ";
|
|
MYGUI_LOG(Info, spacer);
|
|
MYGUI_LOG(Info, "Layer name='" << getName() << "'" << " type='" << getTypeName() << "'" << spacer);
|
|
MYGUI_LOG(Info, "Count root nodes : " << (mChildItem == nullptr ? 0 : 1) << spacer);
|
|
|
|
if (mChildItem != nullptr)
|
|
{
|
|
mChildItem->dumpStatisticToLog(0);
|
|
}
|
|
}
|
|
|
|
const IntSize& SharedLayer::getSize() const
|
|
{
|
|
return RenderManager::getInstance().getViewSize();
|
|
}
|
|
|
|
} // namespace MyGUI
|