2
3
4
5
6
7
8
9
10
11
12
13
14
15
17
18
19
20
22#ifndef SIMULATION_VISUALS_MODEL_H
23#define SIMULATION_VISUALS_MODEL_H
27#include "architecture/Time.h"
28#include "architecture/Tasks.h"
29#include "simulation/SimulationSteps.h"
30#include "six_dof_dynamics/Frame.hpp"
35 const std::string OBJNAME =
"MSO";
36 const std::string JSONSTART =
"{";
37 const std::string JSONEND =
"}";
38 const std::string OBJSTART =
"[";
39 const std::string OBJEND =
"]";
40 const std::string FRAMESTART =
"{";
41 const std::string FRAMEEND =
"}";
42 const std::string QUOTEMARK =
"\'";
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
71
98 VisualsModel(clockwerk::
Executive &e,
int schedule_slot=END_STEP,
const std::string &m_name=
"visuals_model")
99 : clockwerk::
Task(e
, schedule_slot
, m_name
) {}
100 virtual ~VisualsModel();
122 int _client_socket = -9999;
125 FrameD* _reference_frame_ptr =
nullptr;
128 std::vector<
FrameD*> _tracked_frame_ptrs;
129 std::vector<std::string> _types;
132 std::string _pos_str;
133 std::string _att_str;
134 std::string _full_frame_str;
135 std::string _full_str;
143 clockwerk::
Time _step_size;
144 clockwerk::
Time _next_write;
DataIO(GraphTreeObject *data_parent, std::string data_name, T initial_value)
Constructor for the DataIO object.
Definition DataIO.hpp:134
Central control mechanism to run simulations and software.
Definition Executive.h:43
This is the base implementation of the task class.
Definition Tasks.h:68
Task(Executive &executive, int slot, const std::string &m_name="Unnamed")
Executive-based constructor for the task.
Definition Tasks.cpp:62
Wrapper to manage and convert time as timespce.
Definition Time.h:45
Class to write out frame information via socket using a standard interface as follows:
Definition VisualsModel.h:61
int execute()
Function to execute the task. All math and calculations should be here.
Definition VisualsModel.cpp:60
void _writeFrameRootPosition(clockwerk::Frame< double > *frame_ptr, std::string &str)
Function to write the frame root position in the appropriate format to str.
Definition VisualsModel.cpp:110
void _writeFrameRootAttitude(clockwerk::Frame< double > *frame_ptr, std::string &str)
Function to write the frame root attitude in the appropriate format to str.
Definition VisualsModel.cpp:124
int addVisualFrame(clockwerk::Frame< double > *frame_ptr, const std::string &type="SAT")
Function to add a simulation frame to the model as a visual output for 3D graphics.
Definition VisualsModel.cpp:99
void setVisualsReference(clockwerk::Frame< double > *frame_ptr)
Function to set the reference frame for the visuals. If not set, the default is the root frame.
Definition VisualsModel.cpp:106
void _writeFullFrameNameState(clockwerk::Frame< double > *frame_ptr, const std::string &type, std::string &str)
Function to write the full frame state in json format to string.
Definition VisualsModel.cpp:141
int start()
Function to perform task startup activities (step once after creation)
Definition VisualsModel.cpp:38
#define SIGNAL(NAME, TYPE, INITIAL_VALUE)
Definition macros.h:87
#define START_PARAMS
Definition macros.h:96
#define CartesianVector3D
Definition macros.h:54
#define END_OUTPUTS
Definition macros.h:90
#define END_PARAMS
Definition macros.h:98
#define DCMD
Definition macros.h:70
#define QuaternionD
Definition macros.h:78
#define START_OUTPUTS
Definition macros.h:88
#define FrameD
Definition macros.h:64
#define END_INPUTS
Definition macros.h:94
#define START_INPUTS
Definition macros.h:92
Class to propagate CR3BP dynamics in characteristic units.
Definition ConfigurationWriter.cpp:18
clockwerk::DataIO< std::string > socket_output
Definition VisualsModel.h:85
clockwerk::DataIO< std::string > ip
Definition VisualsModel.h:67
clockwerk::DataIO< int > max_frame_rate
Definition VisualsModel.h:72
clockwerk::DataIO< int > port
Definition VisualsModel.h:69