Newer
Older
Grégoire Payen de La Garanderie
committed
#include "simul/robot.h"
#include <cmath>
#include "odometrie.h"
#include "asservissement.h"
#include "strategie.h"
#include <iostream>
Xavier CORBILLON
committed
Odometrie* Odometrie::odometrie = NULL;
Grégoire Payen de La Garanderie
committed
//Odometrie class implementation for the simulation
//Yes, it's ugly ! it should not be in this file.
//But in a separate file
Odometrie::Odometrie(Robot* robot) : robot(robot)
Grégoire Payen de La Garanderie
committed
{
Xavier CORBILLON
committed
Odometrie::odometrie = this;
Grégoire Payen de La Garanderie
committed
}
Grégoire Payen de La Garanderie
committed
Grégoire Payen de La Garanderie
committed
PositionPlusAngle Odometrie::getPos()
{
return robot->getPos();
Grégoire Payen de La Garanderie
committed
}
Grégoire Payen de La Garanderie
committed
Grégoire Payen de La Garanderie
committed
Distance Odometrie::getVitesseLineaire()
{
return robot->getVitesseLineaire();
Grégoire Payen de La Garanderie
committed
}
Grégoire Payen de La Garanderie
committed
Grégoire Payen de La Garanderie
committed
Angle Odometrie::getVitesseAngulaire()
{
return robot->getVitesseAngulaire();
Grégoire Payen de La Garanderie
committed
}
Grégoire Payen de La Garanderie
committed
Grégoire Payen de La Garanderie
committed
void Odometrie::setPos(PositionPlusAngle p)
{
robot->setPos(p);
Grégoire Payen de La Garanderie
committed
}
Grégoire Payen de La Garanderie
committed
Grégoire Payen de La Garanderie
committed
Robot::Robot(b2World & world) : world(world), olds(10000)
Grégoire Payen de La Garanderie
committed
{
manual = false;
Grégoire Payen de La Garanderie
committed
odometrie = new Odometrie(this);
Xavier Corbillon
committed
asservissement = new Asservissement(odometrie);
Xavier CORBILLON
committed
strategie = new Strategie(true, odometrie);
Xavier CORBILLON
committed
//asservissement->strategie = strategie;
Grégoire Payen de La Garanderie
committed
pos = odometrie->getPos();
deriv.position.x = 0;
deriv.position.y = 0;
deriv.angle = 0;
b2BodyDef bodyDef;
Grégoire Payen de La Garanderie
committed
#ifndef BOX2D_2_0_1
bodyDef.type = b2_dynamicBody;
#endif
bodyDef.position.Set(pos.position.x/100., pos.position.y/100.);
Grégoire Payen de La Garanderie
committed
bodyDef.angle = pos.angle;
body = world.CreateBody(&bodyDef);
Grégoire Payen de La Garanderie
committed
#ifdef BOX2D_2_0_1
Grégoire Payen de La Garanderie
committed
b2PolygonDef &fixture = box;
#define CreateFixture CreateShape
#else
b2PolygonShape box;
b2FixtureDef fixture;
fixture.shape = &box;
#endif
fixture.density = 10.0f;
fixture.friction = 1.0f;
Grégoire Payen de La Garanderie
committed
box.SetAsBox(.5f,1.40f,b2Vec2(-0.,0),0);
Grégoire Payen de La Garanderie
committed
body->CreateFixture(&fixture);
Grégoire Payen de La Garanderie
committed
Grégoire Payen de La Garanderie
committed
#ifdef BOX2D_2_0_1
b2Vec2* v = box.vertices;
box.vertexCount = 4;
Grégoire Payen de La Garanderie
committed
#else
b2Vec2 v[4];
#endif
Grégoire Payen de La Garanderie
committed
int inc = 0;
v[inc++].Set(2.08+0.5,1.40);
v[inc++].Set(0.0+.5,1.40);
v[inc++].Set(0+.5,1.1);
v[inc++].Set(1.40+.5,1.1);
Grégoire Payen de La Garanderie
committed
#ifndef BOX2D_2_0_1
box.Set(v, 4);
#endif
Grégoire Payen de La Garanderie
committed
body->CreateFixture(&fixture);
inc = 0;
v[inc++].Set(1.40+0.5,-1.1);
v[inc++].Set(0.+0.5,-1.1);
v[inc++].Set(.0+0.5,-1.40);
v[inc++].Set(2.08+0.5,-1.40);
Grégoire Payen de La Garanderie
committed
#ifndef BOX2D_2_0_1
box.Set(v, 4);
#endif
Grégoire Payen de La Garanderie
committed
body->CreateFixture(&fixture);
Grégoire Payen de La Garanderie
committed
#ifdef BOX2D_2_0_1
body->SetMassFromShapes();
#endif
Grégoire Payen de La Garanderie
committed
//Little hack so that linear and angular speed of the object
//are those of the local coord (0,0) of the robot.
//We don't really care of the mass center accuracy.
b2MassData md;
body->GetMassData(&md);
md.center = b2Vec2(0,0);
body->SetMassData(&md);
}
Robot::~Robot()
{
delete asservissement;
delete odometrie;
delete strategie;
world.DestroyBody(body);
}
void Robot::updateForces(int dt)
{
if(dt == 0)
return;
Position impulse;
Grégoire Payen de La Garanderie
committed
impulse.x = (deriv.position.x*(float)cos(pos.angle) - deriv.position.y*(float)sin(pos.angle));
impulse.y = (deriv.position.x*(float)sin(pos.angle) + deriv.position.y*(float)cos(pos.angle));
float32 rdt = 1000./(float)dt;
b2Vec2 bvelocity = 0.01*rdt*b2Vec2(impulse.x,impulse.y);
Grégoire Payen de La Garanderie
committed
float bangular = deriv.angle*rdt;
Grégoire Payen de La Garanderie
committed
//body->ApplyForce(10*body->GetMass()*(bimpulse - body->GetLinearVelocity()), body->GetWorldCenter());
//body->ApplyTorque((bangular - body->GetAngularVelocity())*body->GetInertia());
Grégoire Payen de La Garanderie
committed
body->SetLinearVelocity(bvelocity);
Grégoire Payen de La Garanderie
committed
body->SetAngularVelocity(bangular);
Grégoire Payen de La Garanderie
committed
}
Grégoire Payen de La Garanderie
committed
void Robot::paint(QPainter &p, int dt)
{
if(dt)
Grégoire Payen de La Garanderie
committed
pos.position.x = 100*body->GetPosition().x;
pos.position.y = 100*body->GetPosition().y;
pos.angle = body->GetAngle();
Grégoire Payen de La Garanderie
committed
float rdt = (float)dt/1000.;
deriv.angle = body->GetAngularVelocity()*rdt;
float derx = 100*body->GetLinearVelocity().x*rdt;
float dery = 100*body->GetLinearVelocity().y*rdt;
Grégoire Payen de La Garanderie
committed
deriv.position.x = derx*cos(pos.angle) + dery*sin(pos.angle);
Grégoire Payen de La Garanderie
committed
deriv.position.y = 0;
olds.push_back(pos);
if(manual)
{
keyPressEvent(NULL,false);
deriv.position.x = deriv.position.x* 0.97f;
deriv.angle = deriv.angle * 0.9;
}
else
{
Asservissement::asservissement->update();
deriv.position.x = asservissement->getLinearSpeed();
deriv.position.y = 0;
deriv.angle = asservissement->getAngularSpeed();
Grégoire Payen de La Garanderie
committed
Grégoire Payen de La Garanderie
committed
p.setWorldTransform(QTransform().translate(pos.position.x,-pos.position.y).rotateRadians(-pos.angle));
Grégoire Payen de La Garanderie
committed
p.setPen(QColor(Qt::black));
p.setBrush(QBrush(QColor(90,90,90)));
p.setOpacity(.3);
Grégoire Payen de La Garanderie
committed
QPoint po[10];
int inc = 0;
po[inc++] = QPoint(-100+50,140.);
po[inc++] = QPoint(-100+45,-140.);
po[inc++] = QPoint(208+50,-140);
po[inc++] = QPoint(140+50,-110);
po[inc++] = QPoint(0+50,-110);
po[inc++] = QPoint(0+50,110);
po[inc++] = QPoint(140+50,110);
po[inc++] = QPoint(208+50,140);
Xavier CORBILLON
committed
p.drawConvexPolygon(po, 8);
// p.drawChord(-103/2 + 104, -107, 2*103, 215, 16*90, 16*180);
Grégoire Payen de La Garanderie
committed
//p.drawRect(-268, -179.5, 268, 359);
//drawTriangle(p, 0, 0, 65, 0, 60, 0);
p.setOpacity(1);
Grégoire Payen de La Garanderie
committed
p.setPen(QColor(Qt::red));
p.drawLine(0,0,pos.position.x,0);
Grégoire Payen de La Garanderie
committed
p.drawLine(0,100*pos.angle,0,0);
Grégoire Payen de La Garanderie
committed
p.setWorldTransform(QTransform());
p.setPen(QColor(Qt::green));
for(unsigned int i=0; i+1 < olds.size(); i++)
p.drawLine(olds[i].position.x, -olds[i].position.y, olds[i+1].position.x, -olds[i+1].position.y);
Grégoire Payen de La Garanderie
committed
}
#define IF_KEYSWITCH(n,a) \
static bool n=false; \
if(evt) n= a ? press : n; if(n)
void Robot::keyPressEvent(QKeyEvent* evt, bool press)
{
if(evt && press && evt->text() == "e" && !evt->isAutoRepeat())
manual = !manual;
if(evt && press && evt->text() == "u" && !evt->isAutoRepeat())
{
level = (level != 100) ? 100 : 0;
#ifdef BOX2D_2_0_1
#define b2Filter b2FilterData
#define GetFixtureList GetShapeList
#endif
b2Filter filter;
if(level == 100)
{
filter.categoryBits = 0x4;
filter.maskBits = 0x3;
}
else
{
filter.maskBits = 0x3;
filter.categoryBits = 0x1;
}
}
if(manual)
{
float dinc = .5;
float ainc = 0.005;
IF_KEYSWITCH(avant,evt->key() == Qt::Key_Up)
deriv.position.x += dinc;
IF_KEYSWITCH(arriere,evt->key() == Qt::Key_Down)
deriv.position.x -= dinc;
IF_KEYSWITCH(gauche,evt->key() == Qt::Key_Right)
deriv.angle -= ainc;
Grégoire Payen de La Garanderie
committed
IF_KEYSWITCH(droite,evt->key() == Qt::Key_Left)
deriv.angle += ainc;
void Robot::setLevel()
{
level = (level != 100) ? 100 : 0;
#ifdef BOX2D_2_0_1
#define b2Filter b2FilterData
#define GetFixtureList GetShapeList
#endif
b2Filter filter;
if(level == 100)
{
filter.categoryBits = 0x4;
filter.maskBits = 0x3;
}
else
{
filter.maskBits = 0x3;
filter.categoryBits = 0x1;
PositionPlusAngle Robot::getPos()
Xavier Corbillon
committed
float alea1 = 0., alea2 = 0., alea3 = 0.;
//alea1 = 2.1*(rand() % 801 -400)/1000;
//alea2 = 2.1*(rand() % 801 -400)/1000;
//alea3 = 2.1*(rand() % 801 -400)/6000;
Xavier Corbillon
committed
PositionPlusAngle erreur(Position(alea1,alea2),Angle(alea3));
return (pos + erreur);
void Robot::setPos(PositionPlusAngle p)
pos = p;
return;
}
Angle Robot::getVitesseAngulaire()
{
return deriv.angle;
}
Distance Robot::getVitesseLineaire()
{
return deriv.position.getNorme();