2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2015-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-07-09 22:23:34 +08:00
|
|
|
https://axis-project.github.io/
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +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:
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
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 __SKYBOX_H__
|
|
|
|
#define __SKYBOX_H__
|
|
|
|
|
|
|
|
#include "base/ccTypes.h"
|
|
|
|
#include "platform/CCPlatformMacros.h"
|
|
|
|
#include "renderer/CCCustomCommand.h"
|
|
|
|
#include "2d/CCNode.h"
|
|
|
|
#include "renderer/backend/ProgramState.h"
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup _3d
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
class TextureCube;
|
|
|
|
|
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* Sky box technology is usually used to simulate infinity sky, mountains and other phenomena.
|
|
|
|
*/
|
2022-07-15 19:44:31 +08:00
|
|
|
class CC_DLL Skybox : public Node
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(Skybox);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/** create skybox from 6 textures.
|
|
|
|
@param positive_x texture for the right side of the texture cube face.
|
|
|
|
@param negative_x texture for the left side of the texture cube face.
|
|
|
|
@param positive_y texture for the top side of the texture cube face
|
|
|
|
@param negative_y texture for the bottom side of the texture cube face
|
|
|
|
@param positive_z texture for the forward side of the texture cube face.
|
|
|
|
@param negative_z texture for the rear side of the texture cube face.
|
|
|
|
@return A new skybox inited with given parameters.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
static Skybox* create(std::string_view positive_x,
|
|
|
|
std::string_view negative_x,
|
|
|
|
std::string_view positive_y,
|
|
|
|
std::string_view negative_y,
|
|
|
|
std::string_view positive_z,
|
|
|
|
std::string_view negative_z);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**texture getter and setter*/
|
|
|
|
void setTexture(TextureCube*);
|
|
|
|
|
|
|
|
/** draw Skybox object */
|
|
|
|
virtual void draw(Renderer* renderer, const Mat4& transform, uint32_t flags) override;
|
|
|
|
|
|
|
|
/** reload sky box after GLESContext reconstructed.*/
|
|
|
|
void reload();
|
|
|
|
|
2022-03-18 21:46:07 +08:00
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
|
|
|
Skybox();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* Destructor.
|
|
|
|
*/
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual ~Skybox();
|
|
|
|
|
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* init Skybox.
|
|
|
|
*/
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual bool init() override;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* initialize with texture path
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
bool init(std::string_view positive_x,
|
|
|
|
std::string_view negative_x,
|
|
|
|
std::string_view positive_y,
|
|
|
|
std::string_view negative_y,
|
|
|
|
std::string_view positive_z,
|
|
|
|
std::string_view negative_z);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* init internal buffers for Skybox.
|
|
|
|
*/
|
2019-11-23 20:27:39 +08:00
|
|
|
void initBuffers();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
CustomCommand _customCommand;
|
2021-12-25 10:04:45 +08:00
|
|
|
TextureCube* _texture;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
private:
|
2022-07-15 19:44:31 +08:00
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(Skybox);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
backend::UniformLocation _uniformColorLoc;
|
|
|
|
backend::UniformLocation _uniformCameraRotLoc;
|
|
|
|
backend::UniformLocation _uniformEnvLoc;
|
|
|
|
|
|
|
|
void onBeforeDraw();
|
|
|
|
void onAfterDraw();
|
|
|
|
|
|
|
|
bool _rendererDepthTestEnabled;
|
|
|
|
backend::CompareFunction _rendererDepthCmpFunc;
|
|
|
|
backend::CullMode _rendererCullMode;
|
|
|
|
};
|
|
|
|
|
|
|
|
// end of 3d group
|
|
|
|
/// @}
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif // __SKYBOX_H__
|