2013-12-18 10:12:15 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2013-11-09 04:06:39 +08:00
|
|
|
|
2013-12-18 10:12:15 +08:00
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2013-11-09 04:06:39 +08:00
|
|
|
|
2014-01-17 13:35:58 +08:00
|
|
|
#include "renderer/CCCustomCommand.h"
|
2013-11-09 04:06:39 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2013-12-03 11:17:21 +08:00
|
|
|
CustomCommand::CustomCommand()
|
2014-01-16 08:07:38 +08:00
|
|
|
: func(nullptr)
|
2013-12-03 11:17:21 +08:00
|
|
|
, _viewport(0)
|
|
|
|
, _depth(0)
|
2013-11-09 04:06:39 +08:00
|
|
|
{
|
2013-12-18 10:02:11 +08:00
|
|
|
_type = RenderCommand::Type::CUSTOM_COMMAND;
|
2013-11-09 04:06:39 +08:00
|
|
|
}
|
|
|
|
|
2013-12-03 11:17:21 +08:00
|
|
|
void CustomCommand::init(int viewport, int32_t depth)
|
|
|
|
{
|
|
|
|
_viewport = viewport;
|
|
|
|
_depth = depth;
|
|
|
|
}
|
|
|
|
|
2013-11-09 04:06:39 +08:00
|
|
|
CustomCommand::~CustomCommand()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t CustomCommand::generateID()
|
|
|
|
{
|
|
|
|
_id = 0;
|
|
|
|
|
|
|
|
_id = (int64_t)_viewport << 61
|
|
|
|
| (int64_t)1 << 60 // translucent
|
2013-11-11 16:14:29 +08:00
|
|
|
| (int64_t)_depth << 36;
|
2013-11-09 04:06:39 +08:00
|
|
|
|
|
|
|
return _id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CustomCommand::execute()
|
|
|
|
{
|
|
|
|
if(func)
|
|
|
|
{
|
|
|
|
func();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|