/usr/include/enki/robots/s-bot/Sbot.h is in libenki-dev 1:1.6.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | /*
Enki - a fast 2D robot simulator
Copyright (C) 1999-2016 Stephane Magnenat <stephane at magnenat dot net>
Copyright (C) 2004-2005 Markus Waibel <markus dot waibel at epfl dot ch>
Copyright (c) 2004-2005 Antoine Beyeler <abeyeler at ab-ware dot com>
Copyright (C) 2005-2006 Laboratory of Intelligent Systems, EPFL, Lausanne
Copyright (C) 2006-2008 Laboratory of Robotics Systems, EPFL, Lausanne
See AUTHORS for details
This program is free software; the authors of any publication
arising from research using this software are asked to add the
following reference:
Enki - a fast 2D robot simulator
http://home.gna.org/enki
Stephane Magnenat <stephane at magnenat dot net>,
Markus Waibel <markus dot waibel at epfl dot ch>
Laboratory of Intelligent Systems, EPFL, Lausanne.
You can redistribute this program and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __ENKI_SBOT_H
#define __ENKI_SBOT_H
#include <enki/robots/DifferentialWheeled.h>
#include <enki/interactions/CircularCam.h>
#include <enki/interactions/Microphone.h>
#include <enki/interactions/ActiveSoundSource.h>
#include <enki/robots/s-bot/SbotObject.h>
/*! \file Sbot.h
\brief Header of the Sbot robot
*/
namespace Enki
{
//! Interaction sound between all Sbots.
/*! The Sbots are supposed to emit sound at a sufficiently high intensity such as everyone hears it.
\ingroup interaction
*/
class SbotGlobalSound : public GlobalInteraction
{
protected:
// FIXME: ugly and not re-entrant, will be removed by ECS refactor
//! The world frequencies state, mask of all frequencies
static unsigned worldFrequenciesState;
public:
//! The frequencies state of this robot, mask of all frequencies
unsigned frequenciesState;
public:
//! Constructor
SbotGlobalSound (Robot *me) { this->owner = me; }
//! Initialisation, set world frequencies to zero. Called one time for each robot, which could be optimised.
virtual void init() { worldFrequenciesState = 0; }
//! Emit our frequencies to the world
virtual void step(double dt, World *w) { worldFrequenciesState |= frequenciesState; }
// FIXME: ugly and not re-entrant, will be removed by ECS refactor
//! Return state of the frequencies in the world
static unsigned getWorldFrequenciesState(void);
};
//! Specific microphone for S-bots
/*! This microphone checks whether there are sounds coming from
sound-emitting objects, and also other s-bots
\ingroup interaction
*/
class SbotMicrophone : public FourWayMic
{
public:
//! Constructor
//! e.g.: FourWayMic(this, 0.5, 5, micStepModel, 20);
//! meaning: the 4 mics are 0.5 away from robot center, can
//! hear sounds up to ! 5 units away, uses a step model to
//! detect sounds and can distinguish 20 frequencies
SbotMicrophone(Robot *owner, double micDist, double range,
MicrophoneResponseModel micModel, unsigned channels) :
FourWayMic(owner, micDist, range, micModel, channels) {}
//! Check for local interactions with other physical objects
void objectStep(double dt, PhysicalObject *po, World *w);
};
//! A very simplified model of the Sbot mobile robot.
/*! Only implement a subset of the camera
\ingroup robot
*/
class Sbot : public DifferentialWheeled
{
public:
//! The omnidirectional linear camera
OmniCam camera;
//! the sound interaction, based on global frequencies
SbotGlobalSound globalSound;
public:
//! Constructor
Sbot();
//! Destructor
~Sbot() {}
};
//! An "improved" Sbot that can interact with SbotActiveObject.
/*! It is a hack for my experiments, should be removed one day.
\ingroup robot
*/
class FeedableSbot : public Sbot
{
public:
//! The actual energy of the Sbot
double energy;
//! The actual energy difference
double dEnergy;
//! The previous energy difference
double lastDEnergy;
//! Constructor
FeedableSbot() { energy=0; dEnergy=0; lastDEnergy=0; }
//! Call DifferentialWheeled::step and compute the new energy
virtual void controlStep(double dt) ;
};
//! This Sbot version has sound capabilities inherited from
//! ActiveSoundObject, as well as the feeding and usual capabilities
//! of an Sbot.
/*! \ingroup robot */
class SoundSbot : public FeedableSbot
{
public:
//! 4 microphones
SbotMicrophone mic;
//! 1 speaker
ActiveSoundSource speaker;
virtual void step(double dt) = 0;
public:
//! Constructor, initialises microphones and speaker
SoundSbot();
};
}
#endif
|