NTRT Simulator  v1.1
 All Classes Namespaces Files Functions Variables Typedefs Friends Pages
VerticalSpineModel.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2012, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The NASA Tensegrity Robotics Toolkit (NTRT) v1 platform is licensed
7  * under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * http://www.apache.org/licenses/LICENSE-2.0.
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
15  * either express or implied. See the License for the specific language
16  * governing permissions and limitations under the License.
17 */
18 
19 #ifndef VERTICAL_SPINE_MODEL_H
20 #define VERTICAL_SPINE_MODEL_H
21 
29 // This library
30 #include "core/tgModel.h"
31 #include "core/tgSubject.h"
32 // The C++ Standard Library
33 #include <map>
34 #include <set>
35 #include <string>
36 #include <vector>
37 
38 // Forward declarations
39 class tgBasicActuator;
40 class tgStructure;
41 class tgStructureInfo;
42 
43 class VerticalSpineModel: public tgSubject<VerticalSpineModel>, public tgModel
44 {
45 public:
46 
50  typedef std::map<std::string, std::vector<tgBasicActuator*> > MuscleMap;
51 
58  VerticalSpineModel(size_t segments);
59 
64  {}
65 
74  virtual void setup(tgWorld& world);
75 
80  virtual void step(const double dt);
81 
89  const std::vector<tgBasicActuator*>& getMuscles (const std::string& key) const;
90 
91  const std::vector<tgBasicActuator*>& getAllMuscles() const;
92 
98  size_t getSegments() const
99  {
100  return m_segments;
101  }
102 
103 private:
104 
116  static void addNodes(tgStructure& tetra, double edge, double height);
117 
121  static void trace(const tgStructureInfo& structureInfo, tgModel& model);
122 
126  static void addPairs(tgStructure& tetra);
127 
131  static void addPairsB(tgStructure& tetra);
132 
137  static void addSegments(tgStructure& spine, const tgStructure& tetra, double
138  edge, size_t segmentCount);
139 
143  static void addMuscles(tgStructure& spine);
144 
148  static void mapMuscles(VerticalSpineModel::MuscleMap& muscleMap, tgModel&
149  model, size_t segmentCount);
150 
155  std::vector<tgBasicActuator*> allMuscles;
156 
161  MuscleMap muscleMap;
162 
166  const size_t m_segments;
167 };
168 
169 #endif
virtual void step(const double dt)
size_t getSegments() const
virtual void setup(tgWorld &world)
Definition of tgSubject class.
VerticalSpineModel(size_t segments)
std::map< std::string, std::vector< tgBasicActuator * > > MuscleMap
Contains the definition of class tgModel.
const std::vector< tgBasicActuator * > & getMuscles(const std::string &key) const