mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-14 17:40:26 -05:00
* Cleanup * CMake cleanups * Update current year * Update copyright header * Use script to return list of all modules * Update credits, license and ghoul
161 lines
5.6 KiB
C++
161 lines
5.6 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2019 *
|
|
* *
|
|
* 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 <openspace/rendering/dashboard.h>
|
|
|
|
#include <openspace/rendering/dashboarditem.h>
|
|
#include <openspace/scripting/scriptengine.h>
|
|
#include <ghoul/misc/assert.h>
|
|
|
|
#include "dashboard_lua.inl"
|
|
|
|
namespace {
|
|
constexpr openspace::properties::Property::PropertyInfo EnabledInfo = {
|
|
"IsEnabled",
|
|
"Enabled",
|
|
"If this value is 'false', this dashboard will be invisible, regardless of the "
|
|
"state of the individual components"
|
|
};
|
|
} // namespace
|
|
|
|
namespace openspace {
|
|
|
|
Dashboard::Dashboard()
|
|
: properties::PropertyOwner({ "Dashboard" })
|
|
, _isEnabled(EnabledInfo, true)
|
|
{
|
|
addProperty(_isEnabled);
|
|
}
|
|
|
|
void Dashboard::addDashboardItem(std::unique_ptr<DashboardItem> item) {
|
|
const std::string& originalIdentifier = item->identifier();
|
|
int suffix = 1;
|
|
while (true) {
|
|
auto it = std::find_if(
|
|
_items.begin(),
|
|
_items.end(),
|
|
[&item](const std::unique_ptr<DashboardItem>& i) {
|
|
return (i->identifier() == item->identifier());
|
|
}
|
|
);
|
|
|
|
if (it == _items.end()) {
|
|
// We found a unique name
|
|
break;
|
|
}
|
|
else {
|
|
item->setIdentifier(originalIdentifier + std::to_string(suffix));
|
|
item->setGuiName(originalIdentifier + " " + std::to_string(suffix));
|
|
++suffix;
|
|
}
|
|
}
|
|
|
|
addPropertySubOwner(item.get());
|
|
_items.push_back(std::move(item));
|
|
}
|
|
|
|
void Dashboard::removeDashboardItem(int index) {
|
|
ghoul_assert(index < static_cast<int>(_items.size()), "Invalid index");
|
|
|
|
removePropertySubOwner(_items[index].get());
|
|
_items.erase(_items.begin() + index);
|
|
}
|
|
|
|
void Dashboard::removeDashboardItem(const std::string& identifier) {
|
|
const auto it = std::find_if(
|
|
_items.begin(),
|
|
_items.end(),
|
|
[&identifier](const std::unique_ptr<DashboardItem>& i) {
|
|
return i->identifier() == identifier;
|
|
}
|
|
);
|
|
|
|
if (it == _items.end()) {
|
|
return;
|
|
}
|
|
|
|
removePropertySubOwner(it->get());
|
|
_items.erase(it);
|
|
}
|
|
|
|
bool Dashboard::hasItem(int index) const {
|
|
return (index >= 0) && (index < static_cast<int>(_items.size()));
|
|
}
|
|
|
|
const DashboardItem& Dashboard::item(int index) const {
|
|
ghoul_assert(index < static_cast<int>(_items.size()), "Invalid index");
|
|
|
|
return *_items[index];
|
|
}
|
|
|
|
void Dashboard::clearDashboardItems() {
|
|
for (const std::unique_ptr<DashboardItem>& item : _items) {
|
|
removePropertySubOwner(item.get());
|
|
}
|
|
_items.clear();
|
|
}
|
|
|
|
void Dashboard::render(glm::vec2& penPosition) {
|
|
if (!_isEnabled) {
|
|
return;
|
|
}
|
|
|
|
for (const std::unique_ptr<DashboardItem>& item : _items) {
|
|
if (item->isEnabled()) {
|
|
item->render(penPosition);
|
|
}
|
|
}
|
|
}
|
|
|
|
scripting::LuaLibrary Dashboard::luaLibrary() {
|
|
return {
|
|
"dashboard",
|
|
{
|
|
{
|
|
"addDashboardItem",
|
|
&luascriptfunctions::addDashboardItem,
|
|
{},
|
|
"table",
|
|
"Adds a new dashboard item to the main dashboard."
|
|
},
|
|
{
|
|
"removeDashboardItem",
|
|
&luascriptfunctions::removeDashboardItem,
|
|
{},
|
|
"string",
|
|
"Removes the dashboard item with the specified identifier."
|
|
},
|
|
{
|
|
"clearDashboardItems",
|
|
&luascriptfunctions::clearDashboardItems,
|
|
{},
|
|
"",
|
|
"Removes all dashboard items from the main dashboard."
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
} // namespace openspace
|