mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-03 01:59:35 -06:00
97 lines
4.5 KiB
C++
97 lines
4.5 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2017 *
|
|
* *
|
|
* 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 __OPENSPACE_MODULE_GLOBEBROWSING___LAYER___H__
|
|
#define __OPENSPACE_MODULE_GLOBEBROWSING___LAYER___H__
|
|
|
|
#include <modules/globebrowsing/tile/chunktile.h>
|
|
|
|
#include <modules/globebrowsing/rendering/layer/layeradjustment.h>
|
|
#include <modules/globebrowsing/rendering/layer/layergroupid.h>
|
|
#include <modules/globebrowsing/rendering/layer/layerrendersettings.h>
|
|
|
|
#include <openspace/properties/optionproperty.h>
|
|
#include <openspace/properties/propertyowner.h>
|
|
#include <openspace/properties/scalar/boolproperty.h>
|
|
#include <openspace/properties/triggerproperty.h>
|
|
#include <openspace/properties/vectorproperty.h>
|
|
|
|
namespace openspace::globebrowsing {
|
|
|
|
namespace tileprovider { class TileProvider; }
|
|
|
|
class Layer : public properties::PropertyOwner {
|
|
public:
|
|
/**
|
|
* Properties used when the layer type is not a tile type layer. These properties
|
|
* can be added or removed depending on the layer type.
|
|
*/
|
|
struct OtherTypesProperties {
|
|
properties::Vec3Property color;
|
|
};
|
|
|
|
Layer(layergroupid::GroupID id, const ghoul::Dictionary& layerDict);
|
|
|
|
ChunkTilePile getChunkTilePile(const TileIndex& tileIndex, int pileSize) const;
|
|
Tile::Status getTileStatus(const TileIndex& index) const;
|
|
|
|
layergroupid::TypeID type() const;
|
|
layergroupid::BlendModeID blendMode() const;
|
|
TileDepthTransform depthTransform() const;
|
|
bool enabled() const;
|
|
tileprovider::TileProvider* tileProvider() const;
|
|
const OtherTypesProperties& otherTypesProperties() const;
|
|
const LayerRenderSettings& renderSettings() const;
|
|
const LayerAdjustment& layerAdjustment() const;
|
|
|
|
void onChange(std::function<void(void)> callback);
|
|
|
|
void update();
|
|
|
|
private:
|
|
layergroupid::TypeID parseTypeIdFromDictionary(const ghoul::Dictionary& initDict) const;
|
|
void initializeBasedOnType(layergroupid::TypeID typeId, ghoul::Dictionary initDict);
|
|
void addVisibleProperties();
|
|
void removeVisibleProperties();
|
|
|
|
properties::OptionProperty _typeOption;
|
|
properties::OptionProperty _blendModeOption;
|
|
properties::BoolProperty _enabled;
|
|
properties::TriggerProperty _reset;
|
|
|
|
layergroupid::TypeID _type;
|
|
std::shared_ptr<tileprovider::TileProvider> _tileProvider;
|
|
OtherTypesProperties _otherTypesProperties;
|
|
LayerRenderSettings _renderSettings;
|
|
LayerAdjustment _layerAdjustment;
|
|
|
|
const layergroupid::GroupID _layerGroupId;
|
|
|
|
std::function<void(void)> _onChangeCallback;
|
|
};
|
|
|
|
} // namespace openspace::globebrowsing
|
|
|
|
#endif // __OPENSPACE_MODULE_GLOBEBROWSING___LAYER___H__
|