2014-07-29 10:49:06 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "3d/CCSubMeshState.h"
|
2014-07-30 18:32:34 +08:00
|
|
|
#include "3d/CCMeshSkin.h"
|
|
|
|
#include "3d/CCSubMesh.h"
|
2014-07-29 10:49:06 +08:00
|
|
|
|
|
|
|
#include "base/ccMacros.h"
|
|
|
|
#include "base/CCEventCustom.h"
|
|
|
|
#include "base/CCEventListenerCustom.h"
|
|
|
|
#include "base/CCEventDispatcher.h"
|
|
|
|
#include "base/CCEventType.h"
|
|
|
|
#include "base/CCDirector.h"
|
|
|
|
#include "renderer/ccGLStateCache.h"
|
|
|
|
#include "renderer/CCTexture2D.h"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
SubMeshState::SubMeshState()
|
|
|
|
: _visible(true)
|
|
|
|
, _texture(nullptr)
|
2014-07-30 18:32:34 +08:00
|
|
|
, _skin(nullptr)
|
2014-07-29 10:49:06 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
SubMeshState::~SubMeshState()
|
|
|
|
{
|
|
|
|
CC_SAFE_RELEASE(_texture);
|
2014-07-30 18:32:34 +08:00
|
|
|
CC_SAFE_RELEASE(_skin);
|
2014-07-29 10:49:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SubMeshState* SubMeshState::create()
|
|
|
|
{
|
|
|
|
auto state = new SubMeshState();
|
|
|
|
state->autorelease();
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SubMeshState::setTexture(Texture2D* tex)
|
|
|
|
{
|
|
|
|
if (tex != _texture)
|
|
|
|
{
|
|
|
|
CC_SAFE_RETAIN(tex);
|
|
|
|
CC_SAFE_RELEASE(_texture);
|
|
|
|
_texture = tex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-30 18:32:34 +08:00
|
|
|
void SubMeshState::setSkin(MeshSkin* skin)
|
|
|
|
{
|
|
|
|
if (_skin != skin)
|
|
|
|
{
|
|
|
|
CC_SAFE_RETAIN(skin);
|
|
|
|
CC_SAFE_RELEASE(_skin);
|
|
|
|
_skin = skin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 10:49:06 +08:00
|
|
|
NS_CC_END
|