mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-19 19:39:30 -06:00
88 lines
3.8 KiB
C++
88 lines
3.8 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2021 *
|
|
* *
|
|
* 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_SKYBROWSER___WWTCOMMUNICATOR___H__
|
|
#define __OPENSPACE_MODULE_SKYBROWSER___WWTCOMMUNICATOR___H__
|
|
|
|
#include <modules/skybrowser/include/browser.h>
|
|
#include <openspace/properties/vector/ivec3property.h>
|
|
#include <openspace/properties/scalar/floatproperty.h>
|
|
#include <openspace/documentation/documentation.h>
|
|
#include <deque>
|
|
#include <thread>
|
|
|
|
namespace openspace {
|
|
|
|
class ImageData;
|
|
|
|
class WwtCommunicator : public Browser {
|
|
|
|
public:
|
|
|
|
WwtCommunicator(const ghoul::Dictionary& dictionary);
|
|
WwtCommunicator(WwtCommunicator const&) = default;
|
|
virtual ~WwtCommunicator();
|
|
|
|
// WorldWide Telescope communication
|
|
void displayImage(const std::string& url, const int i);
|
|
void removeSelectedImage(const int i);
|
|
void setImageOrder(int i, int order);
|
|
void loadImageCollection(const std::string& collection);
|
|
void setImageOpacity(const int i, float opacity);
|
|
|
|
// Getters
|
|
const std::deque<int>& getSelectedImages();
|
|
glm::ivec3 borderColor() const;
|
|
float verticalFov() const;
|
|
glm::dvec2 fieldsOfView();
|
|
bool hasLoadedImages() const;
|
|
|
|
// Setters
|
|
void setHasLoadedImages(bool isLoaded);
|
|
void setVerticalFov(float vfov);
|
|
void setWebpageBorderColor(glm::ivec3 color);
|
|
|
|
// Display
|
|
void highlight(glm::ivec3 addition);
|
|
void removeHighlight(glm::ivec3 removal);
|
|
|
|
protected:
|
|
void sendMessageToWwt(const ghoul::Dictionary& msg);
|
|
// Web page communication
|
|
void setIdInBrowser(const std::string& id);
|
|
|
|
properties::FloatProperty _verticalFov;
|
|
properties::IVec3Property _borderColor;
|
|
|
|
std::deque<int> _selectedImages;
|
|
bool _hasLoadedImages{ false };
|
|
|
|
private:
|
|
void executeJavascript(const std::string& script) const;
|
|
};
|
|
|
|
} // namespace openspace
|
|
|
|
#endif // __OPENSPACE_MODULE_SKYBROWSER___WWTCOMMUNICATOR___H__
|