mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-22 19:29:04 -05:00
d0fcec569c
* Change spline curve parameter interval from [0,1] to [0,nSegments], for slightly increased precision * Use linear paths whenever precision isn't enough/paths are too long (and traverse linear paths differently, to make them less depending on the distance) * Remove OrbitalNavigator.LinearFlight and instead add "Zoom to" helper functions (closes #1837 ) * Add check to prevent triggering awkward short paths, for example when flying to the current target or to the same geo position twice * Refactor speed code and handle speed when path is shorter than start+closeup distance * Add easing to speed dampening * Add topic for engine mode (to be used for UI later) * Cleaner log when creating paths (some previous info messages are now debug messages) Related PR: OpenSpace/OpenSpace-WebGuiFrontend#70
56 lines
2.8 KiB
C++
56 lines
2.8 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2022 *
|
|
* *
|
|
* 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_SERVER___ENGINE_MODE_TOPIC___H__
|
|
#define __OPENSPACE_MODULE_SERVER___ENGINE_MODE_TOPIC___H__
|
|
|
|
#include <modules/server/include/topics/topic.h>
|
|
|
|
#include <openspace/engine/openspaceengine.h>
|
|
|
|
namespace openspace {
|
|
|
|
class EngineModeTopic : public Topic {
|
|
public:
|
|
EngineModeTopic();
|
|
virtual ~EngineModeTopic();
|
|
|
|
void handleJson(const nlohmann::json& json) override;
|
|
bool isDone() const override;
|
|
|
|
private:
|
|
static const int UnsetOnChangeHandle = -1;
|
|
|
|
// Provides the mode int value in json message
|
|
void sendJsonData();
|
|
|
|
OpenSpaceEngine::Mode _lastMode;
|
|
int _modeCallbackHandle = UnsetOnChangeHandle;
|
|
bool _isDone = false;
|
|
};
|
|
|
|
} // namespace openspace
|
|
|
|
#endif // __OPENSPACE_MODULE_SERVER___ENGINE_MODE_TOPIC___H__
|