NTRT Simulator  v1.1
 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 #include "T6TensionController.h"
29 // This library
31 #include "core/tgModel.h"
32 #include "core/tgSimViewGraphics.h"
33 #include "core/tgSimulation.h"
34 #include "core/tgWorld.h"
35 // Bullet Physics
36 #include "LinearMath/btVector3.h"
37 // The C++ Standard Library
38 #include <iostream>
39 
46 int main(int argc, char** argv)
47 {
48  std::cout << "AppSUPERball" << std::endl;
49 
50  // First create the ground and world
51 
52  // Determine the angle of the ground in radians. All 0 is flat
53  const double yaw = 0.0;
54  const double pitch = M_PI/15.0;
55  //const double pitch = 0.0;
56  const double roll = 0.0;
57  const tgBoxGround::Config groundConfig(btVector3(yaw, pitch, roll));
58  // the world will delete this
59  tgBoxGround* ground = new tgBoxGround(groundConfig);
60 
61  const tgWorld::Config config(98.1); // gravity, cm/sec^2 Use this to adjust length scale of world.
62  // Note, by changing the setting below from 981 to 98.1, we've
63  // scaled the world length scale to decimeters not cm.
64 
65  tgWorld world(config, ground);
66 
67  // Second create the view
68  const double timestep_physics = 0.001; // Seconds
69  const double timestep_graphics = 1.f/60.f; // Seconds
70  tgSimViewGraphics view(world, timestep_physics, timestep_graphics);
71 
72  // Third create the simulation
73  tgSimulation simulation(view);
74 
75  // Fourth create the models with their controllers and add the models to the
76  // simulation
77  T6Model* const myModel = new T6Model();
78 
79  // Fifth, select the controller to use. Uncomment desired controller.
80 
81  // For the T6TensionController,
82  // Set the tension of the controller units of kg * length / s^2
83  // So 10000 units at this scale is 1000 N
84 
85  //T6TensionController* const pTC = new T6TensionController(10000);
86 
87  //myModel->attach(pTC);
88  simulation.addModel(myModel);
89 
90  // Run until the user stops
91  simulation.run();
92 
93  //Teardown is handled by delete, so that should be automatic
94  return 0;
95 }
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$.
Contains the definition of class tgBoxGround.
Contains the definition of class T6TensionController.
int main(int argc, char **argv)