2017-03-21 20:43:42 +00:00
|
|
|
#include "fake_sgSky.hxx"
|
|
|
|
|
2017-04-05 16:49:58 +00:00
|
|
|
static const std::string sEmptyString;
|
|
|
|
|
2017-03-21 20:43:42 +00:00
|
|
|
void SGSky::add_cloud_layer(SGCloudLayer *layer)
|
|
|
|
{
|
|
|
|
_cloudLayers.push_back(layer);
|
|
|
|
}
|
|
|
|
|
|
|
|
SGCloudLayer *SGSky::get_cloud_layer(int i)
|
|
|
|
{
|
|
|
|
return _cloudLayers.at(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SGSky::get_cloud_layer_count() const
|
|
|
|
{
|
|
|
|
return _cloudLayers.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SGSky::set_clouds_enabled(bool enabled)
|
|
|
|
{
|
|
|
|
_3dcloudsEnabled = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string &SGCloudLayer::getCoverageString() const
|
|
|
|
{
|
2017-04-05 16:49:58 +00:00
|
|
|
return sEmptyString;
|
2017-03-21 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string &SGCloudLayer::getCoverageString(SGCloudLayer::Coverage coverage)
|
|
|
|
{
|
2017-04-05 16:49:58 +00:00
|
|
|
return sEmptyString;
|
2017-03-21 20:43:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SGCloudLayer::setCoverageString(const std::string &coverage)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SGCloudLayer::set_enable3dClouds(bool enable)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|