axmol/extensions/cocostudio/DecorativeDisplay.h

96 lines
3.0 KiB
C
Raw Normal View History

2022-02-24 18:51:36 +08:00
/****************************************************************************
2020-10-17 16:32:16 +08:00
Copyright (c) 2013-2017 Chukong Technologies Inc.
2013-06-06 12:02:54 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2013-06-06 12:02:54 +08:00
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.
****************************************************************************/
#ifndef __CCDECORATIVEDISPLAY_H__
#define __CCDECORATIVEDISPLAY_H__
#include "ArmatureDefine.h"
#include "DisplayFactory.h"
#include "Datas.h"
#include "CocosStudioExport.h"
2013-06-06 12:02:54 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT || ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
# include "ColliderDetector.h"
2013-06-06 12:02:54 +08:00
#endif
NS_AX_BEGIN
2021-12-25 10:04:45 +08:00
class Node;
NS_AX_END
2021-12-25 10:04:45 +08:00
namespace cocostudio
{
/**
* @js NA
* @lua NA
*/
2022-08-08 18:02:17 +08:00
class CCS_DLL DecorativeDisplay : public ax::Ref
2013-06-06 12:02:54 +08:00
{
public:
2021-12-25 10:04:45 +08:00
static DecorativeDisplay* create();
2013-06-06 12:02:54 +08:00
public:
2020-10-17 16:32:16 +08:00
DecorativeDisplay(void);
~DecorativeDisplay(void);
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
virtual bool init();
2013-06-06 12:02:54 +08:00
2022-08-08 18:02:17 +08:00
virtual void setDisplay(ax::Node* display);
virtual ax::Node* getDisplay() const { return _display; }
2013-11-05 19:53:38 +08:00
2021-12-25 10:04:45 +08:00
virtual void setDisplayData(DisplayData* data)
2013-11-05 19:53:38 +08:00
{
if (_displayData != data)
{
2022-07-15 19:17:01 +08:00
AX_SAFE_RETAIN(data);
AX_SAFE_RELEASE(_displayData);
2021-12-25 10:04:45 +08:00
_displayData = data;
2013-11-05 19:53:38 +08:00
}
}
2021-12-25 10:04:45 +08:00
virtual DisplayData* getDisplayData() const { return _displayData; }
2013-06-06 12:02:54 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT || ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
2021-12-25 10:04:45 +08:00
virtual void setColliderDetector(ColliderDetector* detector)
2013-11-05 19:53:38 +08:00
{
if (_colliderDetector != detector)
{
2022-07-15 19:17:01 +08:00
AX_SAFE_RETAIN(detector);
AX_SAFE_RELEASE(_colliderDetector);
2021-12-25 10:04:45 +08:00
_colliderDetector = detector;
2013-11-05 19:53:38 +08:00
}
}
2021-12-25 10:04:45 +08:00
virtual ColliderDetector* getColliderDetector() const { return _colliderDetector; }
2013-11-05 19:53:38 +08:00
#endif
protected:
2022-08-08 18:02:17 +08:00
ax::Node* _display;
2021-12-25 10:04:45 +08:00
DisplayData* _displayData;
2013-06-06 12:02:54 +08:00
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT || ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
2021-12-25 10:04:45 +08:00
ColliderDetector* _colliderDetector;
2013-06-06 12:02:54 +08:00
#endif
};
2021-12-25 10:04:45 +08:00
} // namespace cocostudio
2013-06-06 12:02:54 +08:00
2013-06-07 10:52:32 +08:00
#endif /*__CCDECORATIVEDISPLAY_H__*/