Files
OpenSpace/modules/fieldlinessequence/util/fieldlinesstate.h
T

72 lines
3.4 KiB
C++

/*****************************************************************************************
* *
* OpenSpace *
* *
* Copyright (c) 2014-2017 *
* *
* 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_FIELDLINESSEQUENCE___FIELDLINESSTATE___H__
#define __OPENSPACE_MODULE_FIELDLINESSEQUENCE___FIELDLINESSTATE___H__
#include <ghoul/opengl/ghoul_gl.h>
#include <ghoul/glm.h>
#include <string>
#include <vector>
namespace openspace {
class FieldlinesState {
public:
enum Model : int {
batsrus = 0,
enlil = 1,
pfss = 2
};
FieldlinesState();
FieldlinesState(const std::string& PATH_TO_OSFLS_FILE, bool& loadSucessful);
bool loadStateFromOsfls(const std::string& PATH_TO_OSFLS_FILE);
// Getters
double triggerTime() { return _triggerTime; }
Model model() { return _model; }
const std::vector<glm::vec3>& vertexPositions() { return _vertexPositions; }
const std::vector<GLint>& lineStart() { return _lineStart; }
const std::vector<GLsizei>& lineCount() { return _lineCount; }
private:
bool _isMorphable = false;
double _triggerTime = -1.0;
Model _model;
std::vector<glm::vec3> _vertexPositions;
std::vector<GLint> _lineStart;
std::vector<GLsizei> _lineCount;
std::vector<std::vector<float>> _extraVariables;
std::vector<std::string> _extraVariableNames;
// TODO: Maybe introduce a vector containing seed point indices
};
} // namespace openspace
#endif // __OPENSPACE_MODULE_FIELDLINESSEQUENCE___FIELDLINESSTATE___H__