ModelSpace
All Classes Namespaces Functions Variables Enumerations Pages
VisualsModel.h
1/******************************************************************************
2* Copyright (c) ATTX LLC 2024. All Rights Reserved.
3*
4* This software and associated documentation (the "Software") are the
5* proprietary and confidential information of ATTX, LLC. The Software is
6* furnished under a license agreement between ATTX and the user organization
7* and may be used or copied only in accordance with the terms of the agreement.
8* Refer to 'license/attx_license.adoc' for standard license terms.
9*
10* EXPORT CONTROL NOTICE: THIS SOFTWARE MAY INCLUDE CONTENT CONTROLLED UNDER THE
11* INTERNATIONAL TRAFFIC IN ARMS REGULATIONS (ITAR) OR THE EXPORT ADMINISTRATION
12* REGULATIONS (EAR99). No part of the Software may be used, reproduced, or
13* transmitted in any form or by any means, for any purpose, without the express
14* written permission of ATTX, LLC.
15******************************************************************************/
16/*
17Visuals model header file
18
19Author: Alex Reynolds
20*/
21
22#ifndef SIMULATION_VISUALS_MODEL_H
23#define SIMULATION_VISUALS_MODEL_H
24
25#include <string>
26
27#include "architecture/Time.h"
28#include "architecture/Tasks.h"
29#include "simulation/SimulationSteps.h"
30#include "six_dof_dynamics/Frame.hpp"
31
32namespace modelspace {
33
34 // Variables to control socket output from ModelSpace
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 = "\'";
43
44 /**
45 * @brief Class to write out frame information via socket using a standard interface as follows:
46 *
47 * INTERFACE DEFINITION
48 * Data is written to the interface in JSON format with any number of named objects, which correspond
49 * to the frame names, and expected fields (x,y,z)pos and (x,y,z,w)rot for each named object. Quaternions
50 * are written in scalar-last format.
51 *
52 * Full example: {'Mickey':[]'xpos':<value>,'ypos':<value>,'zpos':<value>,'xrot':<value>,'yrot':<value>,'zrot':<value>,'wrot':<value>]}
53 *
54 * This interface is designed to communicate frame state information in a
55 * frame-agnostic way across a socket interface. Every step, based on real
56 * time timing, this model will broadcast frame state information across a
57 * socket via the interface definition above.
58 *
59 * Alex Reynolds <alex.reynolds@attx.tech>
60 */
61 class VisualsModel : public clockwerk::Task {
62 public:
63 // Model params
64 // NAME TYPE DEFAULT VALUE
66 /** The IP address on which the visuals client socket will bind. Default is 127.0.0.1 (local)*/
67 SIGNAL(ip, std::string, "127.0.0.1")
68 /** The port to which the visuals client socket will bind. Default is 25001*/
69 SIGNAL(port, int, 25001)
70 /** The maximum rate at which ModelSpace will write out updates -- should correspond roughly to framerate.
71 * ModelSpace will not output updates any faster than this rate, but may output slower.*/
72 SIGNAL(max_frame_rate, int, 35)
74
75 // Model inputs
76 // NAME TYPE DEFAULT VALUE
78
80
81 // Model outputs
82 // NAME TYPE DEFAULT VALUE
84 /** An exact mirror of the data written out to the visuals socket for testing */
85 SIGNAL(socket_output, std::string, "")
87
88 /// @brief Function to add a simulation frame to the model as a visual output for 3D graphics
89 /// @param frame_ptr The frame to be added as a visual output
90 /// @param type The type of object being output. Valid choices are: [SAT]
91 int addVisualFrame(FrameD* frame_ptr, const std::string &type="SAT");
92
93 /// @brief Function to set the reference frame for the visuals. If not set, the default is the root frame
94 /// @param frame_ptr Pointer to the reference frame for the visuals
95 void setVisualsReference(FrameD* frame_ptr);
96
97 // Model-specific implementations of startup and derivative
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();
101 protected:
102 int start();
103 int execute();
104
105 /// @brief Function to write the frame root position in the appropriate format to str
106 /// @param frame_ptr Frame to write position of
107 /// @param str Implicit return of state string
108 void _writeFrameRootPosition(FrameD* frame_ptr, std::string &str);
109
110 /// @brief Function to write the frame root attitude in the appropriate format to str
111 /// @param frame_ptr Frame to write attitude of
112 /// @param str Implicit return of state string
113 void _writeFrameRootAttitude(FrameD* frame_ptr, std::string &str);
114
115 /// @brief Function to write the full frame state in json format to string
116 /// @param frame_ptr Frame to write state of
117 /// @param type The type of frame
118 /// @param str Implicit return of state string
119 void _writeFullFrameNameState(FrameD* frame_ptr, const std::string &type, std::string &str);
120
121 // The socket to which all data will be written
122 int _client_socket = -9999;
123
124 // The reference frame relative to which visuals states are defined
125 FrameD* _reference_frame_ptr = nullptr;
126
127 // Vector of frames which will be "tracked" by the visuals model and written out across the socket
128 std::vector<FrameD*> _tracked_frame_ptrs;
129 std::vector<std::string> _types;
130
131 // Strings to which various frame parameters will be written
132 std::string _pos_str;
133 std::string _att_str;
134 std::string _full_frame_str;
135 std::string _full_str;
136
137 // Temporary variables
138 CartesianVector3D _tmp_vec;
139 QuaternionD _tmp_quat;
140 DCMD _tmp_dcm;
141
142 // Timing variables.
143 clockwerk::Time _step_size;
144 clockwerk::Time _next_write;
145 };
146
147}
148
149#endif
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