NTRT Simulator  Version: Master
 All Classes Namespaces Files Functions Variables Typedefs Friends Pages
ContactTestController.h
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 CONTACT_TEST_CONTROLLER_H
20 #define CONTACT_TEST_CONTROLLER_H
21 
22 #include "core/tgObserver.h"
23 
24 //This should probably be a forward declaration
25 #include "ContactTestModel.h"
26 #include "dev/btietz/tgRBString.h"
27 #include "core/ImpedanceControl.h"
28 
29 class ContactTestController : public tgObserver<ContactTestModel>
30 {
31 public:
32 
33  ContactTestController() : m_control(0.0, 200000.0, 0.0)
34  {
35  }
36 
37  virtual void onStep(ContactTestModel& subject, double dt)
38  {
39 
40  const std::vector<tgRBString*> muscles =
41  subject.getAllMuscles();
42 
43  for(int i = 0; i < muscles.size(); i++)
44  {
45  std::cout << "Ctens: " <<
46  m_control.control(muscles[i], dt, 10.0) << std::endl;
47  }
48  }
49 
50 private:
51  ImpedanceControl m_control;
52 };
53 
54 #endif // MY_MODEL_CONTROLLER_H
Definition of tgObserver class.
virtual void onStep(ContactTestModel &subject, double dt)
Contains the definition of class tgRBString. A string with small rigid bodies to create contact dynam...