NTRT Simulator  Version: Master
 All Classes Namespaces Files Functions Variables Typedefs Friends Pages
AppSUPERball.cpp
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 
26 // This application
27 #include "T6Model.h"
28 // This library
30 #include "core/tgModel.h"
31 #include "core/tgSimViewGraphics.h"
32 #include "core/tgSimulation.h"
33 #include "core/tgWorld.h"
34 // Bullet Physics
35 #include "LinearMath/btVector3.h"
36 // The C++ Standard Library
37 #include <iostream>
38 
39 tgBoxGround *createGround();
40 tgWorld *createWorld();
43 void simulate(tgSimulation *simulation);
44 
51 int main(int argc, char** argv)
52 {
53  std::cout << "AppSUPERball" << std::endl;
54 
55  // First create the ground and world
56  tgWorld *world = createWorld();
57 
58  // Second create the view
59  tgSimViewGraphics *view = createGraphicsView(world); // For visual experimenting on one tensegrity
60 // tgSimView *view = createView(world); // For running multiple episodes
61 
62  // Third create the simulation
63  tgSimulation *simulation = new tgSimulation(*view);
64 
65  // Fourth create the models with their controllers and add the models to the
66  // simulation
67  T6Model* const myModel = new T6Model();
68 
69  // Fifth, select the controller to use. Uncomment desired controller.
70 
71 
72 // myModel->attach(pTC);
73  simulation->addModel(myModel);
74 
75  // Run specified times within function call
76  simulate(simulation);
77 
78  // Run until the user stops
79 // simulation->run();
80 
81  //Teardown is handled by delete, so that should be automatic
82  return 0;
83 }
84 
85 tgBoxGround *createGround() {
86  // Determine the angle of the ground in radians. All 0 is flat
87  const double yaw = 0.0;
88  const double pitch = 0.0;
89  const double roll = 0.0;
90  const btVector3 eulerAngles = btVector3(yaw, pitch, roll); // Default: (0.0, 0.0, 0.0)
91  const double friction = 0.5; // Default: 0.5
92  const double restitution = 0.0; // Default: 0.0
93  const btVector3 size = btVector3(10000.0, 2, 10000.0); // Default: (500.0, 1.5, 500.0)
94  const btVector3 origin = btVector3(0.0, 0.0, 0.0); // Default: (0.0, 0.0, 0.0)
95  const tgBoxGround::Config groundConfig(eulerAngles, friction, restitution,
96  size, origin);
97  // the world will delete this
98  return new tgBoxGround(groundConfig);
99 }
100 
101 tgWorld *createWorld() {
102  const tgWorld::Config config(98.1); // gravity, cm/sec^2 Use this to adjust length scale of world.
103  // NB: by changing the setting below from 981 to 98.1, we've
104  // scaled the world length scale to decimeters not cm.
105 
106  tgBoxGround* ground = createGround();
107  return new tgWorld(config, ground);
108 }
109 
112  const double timestep_physics = 1.0 / 60.0 / 10.0; // Seconds
113  const double timestep_graphics = 1.f /60.f; // Seconds, AKA render rate. Leave at 1/60 for real-time viewing
114  return new tgSimViewGraphics(*world, timestep_physics, timestep_graphics);
115 }
116 
118 tgSimView *createView(tgWorld *world) {
119  const double timestep_physics = 1.0 / 60.0 / 10.0; // Seconds
120  const double timestep_graphics = 1.f /60.f; // Seconds, AKA render rate. Leave at 1/60 for real-time viewing
121  return new tgSimView(*world, timestep_physics, timestep_graphics);
122 }
123 
125 void simulate(tgSimulation *simulation) {
126  int nEpisodes = 1; // Number of episodes ("trial runs")
127  int nSteps = 60000; // Number of steps in each episode, 60k is 100 seconds (timestep_physics*nSteps)
128  for (int i=0; i<nEpisodes; i++) {
129  simulation->run(nSteps);
130  simulation->reset();
131  }
132 }
int main(int argc, char **argv)
tgSimViewGraphics * createGraphicsView(tgWorld *world)
void addModel(tgModel *pModel)
tgSimView * createView(tgWorld *world)
Contains the definition of class tgSimulation.
Contains the definition of class tgModel.
Contains the definition of class tgSimViewGraphics.
Contains the definition of class tgWorld $Id$.
void simulate(tgSimulation *simulation)
void run() const
Contains the definition of class tgBoxGround.