mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-04 18:51:17 -06:00
118 lines
4.5 KiB
C++
118 lines
4.5 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2015 *
|
|
* *
|
|
* 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. *
|
|
****************************************************************************************/
|
|
#include <modules/iswa/rendering/iswagroup.h>
|
|
|
|
#include <fstream>
|
|
#include <modules/iswa/ext/json/json.hpp>
|
|
|
|
#include <modules/iswa/util/dataprocessortext.h>
|
|
#include <modules/iswa/util/dataprocessorjson.h>
|
|
#include <modules/iswa/util/dataprocessorkameleon.h>
|
|
|
|
#include <modules/iswa/rendering/dataplane.h>
|
|
#include <modules/iswa/rendering/datasphere.h>
|
|
#include <modules/iswa/rendering/kameleonplane.h>
|
|
|
|
#include <modules/onscreengui/include/gui.h>
|
|
|
|
namespace {
|
|
const std::string _loggerCat = "IswaBaseGroup";
|
|
using json = nlohmann::json;
|
|
}
|
|
|
|
namespace openspace {
|
|
IswaBaseGroup::IswaBaseGroup(std::string name, std::string type)
|
|
:_enabled("enabled", "Enabled", true)
|
|
,_alpha("alpha", "Alpha", 0.9f, 0.0f, 1.0f)
|
|
,_delete("delete", "Delete")
|
|
,_registered(false)
|
|
,_type(type)
|
|
,_dataProcessor(nullptr)
|
|
{
|
|
setName(name);
|
|
|
|
addProperty(_enabled);
|
|
addProperty(_alpha);
|
|
addProperty(_delete);
|
|
|
|
_groupEvent = std::make_shared<ghoul::Event<ghoul::Dictionary> >();
|
|
registerProperties();
|
|
}
|
|
|
|
IswaBaseGroup::~IswaBaseGroup(){}
|
|
|
|
bool IswaBaseGroup::isType(std::string type){
|
|
return (_type == type);
|
|
}
|
|
|
|
void IswaBaseGroup::updateGroup(){
|
|
LDEBUG("Group " + name() + " published updateGroup");
|
|
_groupEvent->publish("updateGroup", ghoul::Dictionary());
|
|
|
|
}
|
|
|
|
void IswaBaseGroup::clearGroup(){
|
|
_groupEvent->publish("clearGroup", ghoul::Dictionary());
|
|
LDEBUG("Group " + name() + " published clearGroup");
|
|
unregisterProperties();
|
|
}
|
|
|
|
std::shared_ptr<DataProcessor> IswaBaseGroup::dataProcessor(){
|
|
return _dataProcessor;
|
|
}
|
|
|
|
std::shared_ptr<ghoul::Event<ghoul::Dictionary> > IswaBaseGroup::groupEvent(){
|
|
return _groupEvent;
|
|
};
|
|
|
|
|
|
void IswaBaseGroup::registerProperties(){
|
|
OsEng.gui()._iswa.registerProperty(&_enabled);
|
|
OsEng.gui()._iswa.registerProperty(&_alpha);
|
|
|
|
_enabled.onChange([this]{
|
|
LDEBUG("Group " + name() + " published enabledChanged");
|
|
_groupEvent->publish("enabledChanged", ghoul::Dictionary({{"enabled", _enabled.value()}}));
|
|
});
|
|
|
|
_alpha.onChange([this]{
|
|
LDEBUG("Group " + name() + " published alphaChanged");
|
|
_groupEvent->publish("alphaChanged", ghoul::Dictionary({{"alpha", _alpha.value()}}));
|
|
});
|
|
|
|
|
|
OsEng.gui()._iswa.registerProperty(&_delete);
|
|
_delete.onChange([this]{
|
|
clearGroup();
|
|
});
|
|
|
|
_registered = true;
|
|
}
|
|
|
|
void IswaBaseGroup::unregisterProperties(){
|
|
OsEng.gui()._iswa.unregisterProperties(name());
|
|
_registered = false;
|
|
}
|
|
|
|
} //namespace openspace
|