Experiments - 1.2.3
Utilities
Configuration
GA
NNFW
WorldSim
Total 99%
Experiments
Main Page
Modules
Classes
Files
File List
experiments
icubsimulator
include
icubsimulator.h
1
/********************************************************************************
2
* FARSA Experiments Library *
3
* Copyright (C) 2007-2012 *
4
* Gianluca Massera <emmegian@yahoo.it> *
5
* Stefano Nolfi <stefano.nolfi@istc.cnr.it> *
6
* Tomassino Ferrauto <tomassino.ferrauto@istc.cnr.it> *
7
* *
8
* This program is free software; you can redistribute it and/or modify *
9
* it under the terms of the GNU General Public License as published by *
10
* the Free Software Foundation; either version 2 of the License, or *
11
* (at your option) any later version. *
12
* *
13
* This program is distributed in the hope that it will be useful, *
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16
* GNU General Public License for more details. *
17
* *
18
* You should have received a copy of the GNU General Public License *
19
* along with this program; if not, write to the Free Software *
20
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
21
********************************************************************************/
22
23
#ifdef FARSA_USE_YARP_AND_ICUB
24
25
#ifndef ICUBSIMULATOR_H
26
#define ICUBSIMULATOR_H
27
28
#include "component.h"
29
#include "world.h"
30
#include "phyicub.h"
31
32
namespace
farsa {
33
40
class
FARSA_EXPERIMENTS_API
iCubSimulator
:
public
Component
{
41
Q_OBJECT
42
public
:
44
iCubSimulator
();
46
~
iCubSimulator
();
48
virtual
ParameterSettableUI
* getUIManager();
50
virtual
void
configure(
farsa::ConfigurationParameters
& params, QString prefix);
52
virtual
void
save(
farsa::ConfigurationParameters
& params, QString prefix);
54
virtual
void
postConfigureInitialization();
56
static
void
describe( QString type );
58
farsa::World
*
getWorld
()
const
{
59
return
world;
60
};
62
farsa::PhyiCub
*
getICub
()
const
{
63
return
icub;
64
};
65
public
slots:
67
void
start();
69
void
suspend();
71
void
step();
72
private
:
73
farsa::World
* world;
74
farsa::PhyiCub
* icub;
75
};
76
77
}
// end namespace farsa
78
79
#endif
80
81
#endif // FARSA_USE_YARP_AND_ICUB