2013-11-15 22:26:44 +00:00
|
|
|
#include "CloudsDefinition.h"
|
|
|
|
|
|
|
|
#include "CloudLayerDefinition.h"
|
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
static DefinitionNode *_layerConstructor(Layers *parent) {
|
2013-11-15 22:26:44 +00:00
|
|
|
return new CloudLayerDefinition(parent);
|
|
|
|
}
|
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
CloudsDefinition::CloudsDefinition(DefinitionNode *parent) : Layers(parent, "clouds", _layerConstructor) {
|
2013-11-15 22:26:44 +00:00
|
|
|
}
|
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
void CloudsDefinition::applyPreset(CloudsPreset preset) {
|
2013-11-15 22:26:44 +00:00
|
|
|
clear();
|
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
if (preset == CLOUDS_PRESET_PARTLY_CLOUDY) {
|
|
|
|
CloudLayerDefinition *layer = new CloudLayerDefinition(this);
|
2013-12-04 21:52:18 +00:00
|
|
|
layer->type = CloudLayerDefinition::STRATOCUMULUS;
|
|
|
|
layer->setName("Strato-cumulus");
|
2013-11-15 22:26:44 +00:00
|
|
|
addLayer(layer);
|
|
|
|
}
|
|
|
|
}
|