/**************************************************************************** Copyright (c) 2021-2023 Xiamen Yaji Software Co., Ltd. http://www.cocos.com 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. ****************************************************************************/ #pragma once #include "base/Macros.h" #include "base/Ptr.h" #include "base/RefCounted.h" #include "base/std/container/string.h" #include "base/std/container/vector.h" namespace cc { class Node; class SkinningModel; class BakedSkinningModel; namespace scene { class Model; class Camera; class Octree; class DrawBatch2D; class DirectionalLight; class LODGroup; class SphereLight; class SpotLight; class PointLight; class RangedDirectionalLight; class LodStateCache; struct IRaycastResult { Node *node{nullptr}; float distance{0.F}; }; struct IRenderSceneInfo { ccstd::string name; }; class RenderScene : public RefCounted { public: RenderScene(); ~RenderScene() override; bool initialize(const IRenderSceneInfo &info); void update(uint32_t stamp); void destroy(); void activate(); void addCamera(Camera *camera); void removeCamera(Camera *camera); void removeCameras(); void addLODGroup(LODGroup *group); void removeLODGroup(LODGroup *group); void removeLODGroups(); bool isCulledByLod(const Camera *camera, const Model *model) const; void unsetMainLight(DirectionalLight *dl); void addDirectionalLight(DirectionalLight *dl); void removeDirectionalLight(DirectionalLight *dl); void addSphereLight(SphereLight *); void removeSphereLight(SphereLight *); void removeSphereLights(); void addSpotLight(SpotLight *); void removeSpotLight(SpotLight *); void removeSpotLights(); void addPointLight(PointLight *); void removePointLight(PointLight *); void removePointLights(); void addRangedDirLight(RangedDirectionalLight *); void removeRangedDirLight(RangedDirectionalLight *); void removeRangedDirLights(); void addModel(Model *); void removeModel(Model *model); void removeModels(); void addBatch(DrawBatch2D *); void removeBatch(DrawBatch2D *); void removeBatches(); void onGlobalPipelineStateChanged(); inline DirectionalLight *getMainLight() const { return _mainLight.get(); } void setMainLight(DirectionalLight *dl); inline uint64_t generateModelId() { return _modelId++; } inline const ccstd::string &getName() const { return _name; } inline const ccstd::vector> &getCameras() const { return _cameras; } inline const ccstd::vector> &getLODGroups() const { return _lodGroups; } inline const ccstd::vector> &getSphereLights() const { return _sphereLights; } inline const ccstd::vector> &getSpotLights() const { return _spotLights; } inline const ccstd::vector> &getPointLights() const { return _pointLights; } inline const ccstd::vector> &getRangedDirLights() const { return _rangedDirLights; } inline const ccstd::vector> &getModels() const { return _models; } inline Octree *getOctree() const { return _octree; } void updateOctree(Model *model); inline const ccstd::vector &getBatches() const { return _batches; } private: ccstd::string _name; uint64_t _modelId{0}; IntrusivePtr _mainLight; IntrusivePtr _lodStateCache; ccstd::vector> _models; ccstd::vector> _cameras; ccstd::vector> _directionalLights; ccstd::vector> _lodGroups; ccstd::vector> _sphereLights; ccstd::vector> _spotLights; ccstd::vector> _pointLights; ccstd::vector> _rangedDirLights; ccstd::vector _batches; Octree *_octree{nullptr}; CC_DISALLOW_COPY_MOVE_ASSIGN(RenderScene); }; } // namespace scene } // namespace cc