]> rtime.felk.cvut.cz Git - eurobot/public.git/blob - src/robomon/RobomonAtlantis.cpp
robomon: Add TODO for intersection calculation
[eurobot/public.git] / src / robomon / RobomonAtlantis.cpp
1 /*
2  * RobomonAtlantis.cpp                  07/10/31
3  *
4  * Robot`s visualization and control GUI for robot of the
5  * Eurobot 2008 (Mission to Mars).
6  *
7  * Copyright: (c) 2008 CTU Dragons
8  *            CTU FEE - Department of Control Engineering
9  * Authors: Martin Zidek, Michal Sojka, Tran Duy Khanh
10  * License: GNU GPL v.2
11  */
12
13 #include <QtGui>
14 #include <queue>
15 #include <cstdlib>
16 #include <sys/shm.h>
17 #include <sys/stat.h>
18 #include <sys/socket.h>
19 #include <netinet/in.h>
20 #include <arpa/inet.h>
21 #include <stdio.h>
22 #include <unistd.h>
23 #include <math.h>
24 #include <errno.h>
25
26 #include <orte.h>
27 #include <path_planner.h>
28 #include <robodim.h>
29 #include <sharp.h>
30 #include <trgen.h>
31 #include <map.h>
32 #include <robomath.h>
33 #include <hokuyo.h>
34 #include <actuators.h>
35 #include "PlaygroundScene.h"
36 #include "MiscGui.h"
37 #include "robomon_orte.h"
38 #include "RobomonAtlantis.h"
39 #include "playgroundview.h"
40 #include "trail.h"
41
42 #include <QCoreApplication>
43 #include <QEvent>
44 #include <QKeyEvent>
45 #include <QDebug>
46 #include <QMessageBox>
47
48 RobomonAtlantis::RobomonAtlantis(QWidget *parent)
49         : QWidget(parent)
50 {
51         QFont font;
52         font.setPointSize(7);
53         setFont(font);
54
55         debugWindowEnabled = false;
56
57         createLeftLayout();
58         createRightLayout();
59
60         QHBoxLayout *mainLayout = new QHBoxLayout;
61         mainLayout->addLayout(leftLayout);
62         mainLayout->addLayout(rightLayout);
63         setLayout(mainLayout);
64
65         createOrte();
66         createRobots();
67         createActions();
68         createMap();
69
70 //      connect(vidle, SIGNAL(valueChanged(int)),
71 //              robotEstPosBest, SLOT(setVidle(int)));
72
73         setFocusPolicy(Qt::StrongFocus);
74         sharedMemoryOpened = false;
75         WDBG("Youuuhouuuu!!");
76 }
77
78 /**********************************************************************
79  * GUI
80  **********************************************************************/
81 void RobomonAtlantis::createLeftLayout()
82 {
83         leftLayout = new QVBoxLayout();
84
85         createDebugGroupBox();
86         debugWindowEnabled = true;
87         createPlaygroundGroupBox();
88         leftLayout->addWidget(playgroundGroupBox);
89         //leftLayout->addWidget(debugGroupBox); // FIXME: move this to separate tab
90 }
91
92 void RobomonAtlantis::createRightLayout()
93 {
94         rightLayout = new QVBoxLayout();
95
96         createPositionGroupBox();
97         createMiscGroupBox();
98         createFSMGroupBox();
99         createActuatorsGroupBox();
100         createPowerGroupBox();
101
102         rightLayout->addWidget(positionGroupBox);
103         rightLayout->addWidget(miscGroupBox);
104         rightLayout->addWidget(fsmGroupBox);
105         rightLayout->addWidget(powerGroupBox);
106         rightLayout->addWidget(actuatorsGroupBox);
107 }
108
109 void RobomonAtlantis::createPlaygroundGroupBox()
110 {
111         playgroundGroupBox = new QGroupBox(tr("Playground"));
112         QHBoxLayout *layout = new QHBoxLayout();
113
114         playgroundScene = new PlaygroundScene();
115         playgroundSceneView = new PlaygroundView(playgroundScene);
116         //playgroundSceneView->setMinimumWidth(630);
117         //playgroundSceneView->setMinimumHeight(445);
118         playgroundSceneView->setMatrix(QMatrix(1,0,0,-1,0,0), true);
119         playgroundSceneView->fitInView(playgroundScene->itemsBoundingRect());
120         playgroundSceneView->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
121         playgroundSceneView->setMouseTracking(true);
122         layout->addWidget(playgroundSceneView);
123
124         playgroundGroupBox->setLayout(layout);
125 }
126
127 void RobomonAtlantis::createPositionGroupBox()
128 {
129         positionGroupBox = new QGroupBox(tr("Position state"));
130         positionGroupBox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
131         QGridLayout *layout = new QGridLayout();
132
133         actPosX = new QLineEdit();
134         actPosY = new QLineEdit();
135         actPosPhi = new QLineEdit();
136
137         estPosX = new QLineEdit();
138         estPosY = new QLineEdit();
139         estPosPhi = new QLineEdit();
140
141         actPosX->setReadOnly(true);
142         actPosY->setReadOnly(true);
143         actPosPhi->setReadOnly(true);
144
145         estPosX->setReadOnly(true);
146         estPosY->setReadOnly(true);
147         estPosPhi->setReadOnly(true);
148
149         layout->addWidget(MiscGui::createLabel("X"), 1, 0);
150         layout->addWidget(MiscGui::createLabel("Y"), 2, 0);
151         layout->addWidget(MiscGui::createLabel("Phi"), 3, 0);
152
153         layout->addWidget(MiscGui::createLabel("X"), 5, 0);
154         layout->addWidget(MiscGui::createLabel("Y"), 6, 0);
155         layout->addWidget(MiscGui::createLabel("Phi"), 7, 0);
156
157         layout->addWidget(MiscGui::createLabel("Reference", Qt::AlignLeft), 0, 1);
158         layout->addWidget(actPosX, 1, 1);
159         layout->addWidget(actPosY, 2, 1);
160         layout->addWidget(actPosPhi, 3, 1);
161
162         layout->addWidget(MiscGui::createLabel("Estimated (indep. odo.)", Qt::AlignLeft), 4, 1);
163         layout->addWidget(estPosX, 5, 1);
164         layout->addWidget(estPosY, 6, 1);
165         layout->addWidget(estPosPhi, 7, 1);
166
167         positionGroupBox->setLayout(layout);
168 }
169
170 void RobomonAtlantis::createMiscGroupBox()
171 {
172         miscGroupBox = new QGroupBox(tr("Miscellaneous"));
173         miscGroupBox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
174         QGridLayout *layout = new QGridLayout();
175
176         obstacleSimulationCheckBox = new QCheckBox(tr("&Obstacle simulation"));
177         obstacleSimulationCheckBox->setShortcut(tr("o"));
178         layout->addWidget(obstacleSimulationCheckBox);
179
180         startPlug = new QCheckBox("&Start plug");
181         layout->addWidget(startPlug);
182
183         colorChoser = new QCheckBox("&Team color");
184         layout->addWidget(colorChoser);
185
186         miscGroupBox->setLayout(layout);
187 }
188
189 void RobomonAtlantis::createFSMGroupBox()
190 {
191         fsmGroupBox = new QGroupBox(tr("FSM"));
192         fsmGroupBox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
193         QGridLayout *layout = new QGridLayout();
194
195         layout->addWidget(MiscGui::createLabel("Main:"), 1, 0);
196         fsm_main_state = new QLabel();
197         fsm_main_state->setMinimumWidth(100);
198         fsm_main_state->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
199         layout->addWidget(fsm_main_state, 1, 1);
200
201         layout->addWidget(MiscGui::createLabel("Act:"), 2, 0);
202         fsm_act_state = new QLabel();
203         layout->addWidget(fsm_act_state, 2, 1);
204
205         layout->addWidget(MiscGui::createLabel("Motion:"), 3, 0);
206         fsm_motion_state = new QLabel();
207         layout->addWidget(fsm_motion_state, 3, 1);
208
209         fsmGroupBox->setLayout(layout);
210 }
211
212 void RobomonAtlantis::createDebugGroupBox()
213 {
214         debugGroupBox = new QGroupBox(tr("Debug window"));
215         debugGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum);
216         QHBoxLayout *layout = new QHBoxLayout();
217
218         debugWindow = new QTextEdit();
219         debugWindow->setReadOnly(true);
220
221         layout->addWidget(debugWindow);
222         debugGroupBox->setLayout(layout);
223 }
224
225 void RobomonAtlantis::createActuatorsGroupBox()
226 {
227         actuatorsGroupBox = new QGroupBox(tr("Actuators"));
228         actuatorsGroupBox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Preferred);
229         QHBoxLayout *layout = new QHBoxLayout();
230 //      vidle = new QDial();
231
232 //      vidle->setMinimum(VIDLE_VYSIP);
233 //      vidle->setMaximum((VIDLE_UP-VIDLE_VYSIP)+VIDLE_VYSIP);
234 //      vidle->setEnabled(true);
235
236         //createMotorsGroupBox();
237
238         layout->setAlignment(Qt::AlignLeft);
239 //      layout->addWidget(vidle);
240         //layout->addWidget(enginesGroupBox);
241         actuatorsGroupBox->setLayout(layout);
242 }
243
244 void RobomonAtlantis::createPowerGroupBox()
245 {
246         powerGroupBox = new QGroupBox(tr("Power management"));
247         powerGroupBox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
248         QGridLayout *layout = new QGridLayout();
249
250         voltage33CheckBox = new QCheckBox(tr("&3.3V"));
251         voltage50CheckBox = new QCheckBox(tr("&5.0V"));
252         voltage80CheckBox = new QCheckBox(tr("&8.0V"));
253
254         voltage33CheckBox->setShortcut(tr("3"));
255         voltage50CheckBox->setShortcut(tr("5"));
256         voltage80CheckBox->setShortcut(tr("8"));
257
258         layout->addWidget(voltage33CheckBox, 0, 0);
259         layout->addWidget(voltage50CheckBox, 1, 0);
260         layout->addWidget(voltage80CheckBox, 2, 0);
261         layout->addWidget(MiscGui::createLabel("BAT"), 3, 0);
262
263         voltage33LineEdit = new QLineEdit();
264         voltage50LineEdit = new QLineEdit();
265         voltage80LineEdit = new QLineEdit();
266         voltageBATLineEdit = new QLineEdit();
267
268         voltage33LineEdit->setReadOnly(true);
269         voltage50LineEdit->setReadOnly(true);
270         voltage80LineEdit->setReadOnly(true);
271         voltageBATLineEdit->setReadOnly(true);
272
273         layout->addWidget(voltage33LineEdit, 0, 1);
274         layout->addWidget(voltage50LineEdit, 1, 1);
275         layout->addWidget(voltage80LineEdit, 2, 1);
276         layout->addWidget(voltageBATLineEdit, 3, 1);
277
278         powerGroupBox->setLayout(layout);
279 }
280
281 void RobomonAtlantis::createRobots()
282 {
283         robotRefPos = new Robot("Ref", QPen(Qt::darkBlue), QBrush(Qt::NoBrush));
284         robotRefPos->setZValue(11);
285         trailRefPos = new Trail(QPen(Qt::darkBlue));
286         trailRefPos->setZValue(11);
287
288         robotEstPosBest = new Robot("Est", QPen(), QBrush(Qt::darkGray));
289         robotEstPosBest->setZValue(10);
290         trailEstPosBest = new Trail(QPen());
291         trailEstPosBest->setZValue(10);
292
293         robotEstPosOdo = new Robot("Mot", QPen(Qt::white), QBrush(Qt::darkRed));
294         robotEstPosOdo->setZValue(10);
295         trailOdoPos = new Trail(QPen(Qt::red));
296         trailOdoPos->setZValue(10);
297
298         robotEstPosIndepOdo = new Robot("Odo", QPen(Qt::white), QBrush(Qt::darkGreen));
299         robotEstPosIndepOdo->setZValue(10);
300         trailPosIndepOdo = new Trail(QPen(Qt::green));
301         trailPosIndepOdo->setZValue(10);
302
303         playgroundScene->addItem(robotRefPos);
304         playgroundScene->addItem(robotEstPosBest);
305         playgroundScene->addItem(robotEstPosIndepOdo);
306         playgroundScene->addItem(robotEstPosOdo);
307
308         showTrails(false);
309
310         playgroundScene->addItem(trailRefPos);
311         playgroundScene->addItem(trailPosIndepOdo);
312         playgroundScene->addItem(trailOdoPos);
313
314         hokuyoScan = new HokuyoScan();
315         hokuyoScan->setZValue(10);
316         playgroundScene->addItem(hokuyoScan);
317
318 }
319
320 void RobomonAtlantis::createMap()
321 {
322         mapImage = new Map();
323         mapImage->setZValue(5);
324         mapImage->setTransform(QTransform().scale(MAP_CELL_SIZE_MM, MAP_CELL_SIZE_MM), true);
325
326
327         playgroundScene->addItem(mapImage);
328 }
329
330 /**********************************************************************
331  * GUI actions
332  **********************************************************************/
333 void RobomonAtlantis::createActions()
334 {
335         /* power management */
336         connect(voltage33CheckBox, SIGNAL(stateChanged(int)),
337                         this, SLOT(setVoltage33(int)));
338         connect(voltage50CheckBox, SIGNAL(stateChanged(int)),
339                         this, SLOT(setVoltage50(int)));
340         connect(voltage80CheckBox, SIGNAL(stateChanged(int)),
341                         this, SLOT(setVoltage80(int)));
342
343         /* motors */
344 //      connect(leftMotorSlider, SIGNAL(valueChanged(int)),
345 //                      this, SLOT(setLeftMotor(int)));
346 //      connect(rightMotorSlider, SIGNAL(valueChanged(int)),
347 //                      this, SLOT(setRightMotor(int)));
348 //      connect(stopMotorsPushButton, SIGNAL(clicked()),
349 //                      this, SLOT(stopMotors()));
350
351         connect(startPlug, SIGNAL(stateChanged(int)), this, SLOT(sendStart(int)));
352         connect(colorChoser, SIGNAL(stateChanged(int)), this, SLOT(setTeamColor(int)));
353
354         /* obstacle simulation */
355         simulationEnabled = 0;
356         connect(obstacleSimulationCheckBox, SIGNAL(stateChanged(int)),
357                         this, SLOT(setSimulation(int)));
358         connect(obstacleSimulationCheckBox, SIGNAL(stateChanged(int)),
359                         this, SLOT(setObstacleSimulation(int)));
360         connect(obstacleSimulationCheckBox, SIGNAL(stateChanged(int)),
361                         playgroundScene, SLOT(showObstacle(int)));
362         connect(playgroundScene, SIGNAL(obstacleChanged(QPointF)),
363                         this, SLOT(changeObstacle(QPointF)));
364 }
365
366 void RobomonAtlantis::setVoltage33(int state)
367 {
368         if (state)
369                 orte.pwr_ctrl.voltage33 = true;
370         else
371                 orte.pwr_ctrl.voltage33 = false;
372 }
373
374 void RobomonAtlantis::setVoltage50(int state)
375 {
376         if (state)
377                 orte.pwr_ctrl.voltage50 = true;
378         else
379                 orte.pwr_ctrl.voltage50 = false;
380 }
381
382 void RobomonAtlantis::setVoltage80(int state)
383 {
384         if (state)
385                 orte.pwr_ctrl.voltage80 = true;
386         else
387                 orte.pwr_ctrl.voltage80 = false;
388 }
389
390 // void RobomonAtlantis::setLeftMotor(int value)
391 // {
392 //      short int leftMotor;
393 //      short int rightMotor;
394
395 //      if(bothMotorsCheckBox->isChecked())
396 //              rightMotorSlider->setValue(value);
397
398 //      leftMotor = (short int)(MOTOR_LIMIT * (leftMotorSlider->value()/100.0));
399 //      rightMotor = (short int)(MOTOR_LIMIT * (rightMotorSlider->value()/100.0));
400
401 //      orte.motion_speed.left = leftMotor;
402 //      orte.motion_speed.right = rightMotor;
403
404 // }
405
406 // void RobomonAtlantis::setRightMotor(int value)
407 // {
408 //      short int leftMotor;
409 //      short int rightMotor;
410
411 //      if(bothMotorsCheckBox->isChecked())
412 //              leftMotorSlider->setValue(value);
413
414 //      leftMotor = (short int)(MOTOR_LIMIT * (leftMotorSlider->value()/100.0));
415 //      rightMotor = (short int)(MOTOR_LIMIT * (rightMotorSlider->value()/100.0));
416
417 //      orte.motion_speed.left = leftMotor;
418 //      orte.motion_speed.right = rightMotor;
419
420 // }
421
422 // void RobomonAtlantis::stopMotors()
423 // {
424 //      leftMotorSlider->setValue(0);
425 //      rightMotorSlider->setValue(0);
426 // }
427
428 void RobomonAtlantis::useOpenGL(bool use)
429 {
430         playgroundSceneView->useOpenGL(&use);
431 }
432
433 void RobomonAtlantis::showMap(bool show)
434 {
435         openSharedMemory();
436
437         if (sharedMemoryOpened == false)
438                 return;
439
440         if (show) {
441                 mapTimer = new QTimer(this);
442                 connect(mapTimer, SIGNAL(timeout()), this, SLOT(paintMap()));
443                 mapTimer->start(200);
444         } else {
445                 if(mapTimer != NULL) {
446                         mapTimer->stop();
447                         disconnect(mapTimer, SIGNAL(timeout()), this, SLOT(paintMap()));
448                 }
449         }
450         mapImage->setVisible(show);
451 }
452
453 void RobomonAtlantis::paintMap()
454 {
455         using namespace Qt;
456         struct map *map = ShmapIsMapInit();
457
458         if (!map) return;
459
460         for(int i = 0; i < MAP_WIDTH; i++) {
461                 for(int j = 0; j < MAP_HEIGHT; j++) {
462                         QColor color;
463
464                         struct map_cell *cell = &map->cells[j][i];
465                         color = lightGray;
466
467                         if ((cell->flags & MAP_FLAG_WALL) &&
468                             (cell->flags & MAP_FLAG_INVALIDATE_WALL) == 0)
469                                 color = darkYellow;
470                         if (cell->flags & MAP_FLAG_IGNORE_OBST)
471                                 color = darkGreen;
472                         if (cell->flags & MAP_FLAG_SIMULATED_WALL)
473                                 color = yellow;
474                         if (cell->flags & MAP_FLAG_PATH)
475                                 color = darkRed;
476                         if (cell->flags & MAP_FLAG_START)
477                                 color = red;
478                         if (cell->flags & MAP_FLAG_GOAL)
479                                 color = green;
480                         if (cell->flags & MAP_FLAG_PLAN_MARGIN) {
481                                 QColor c(240, 170, 50); /* orange */
482                                 color = c;
483                         }
484                         if (cell->detected_obstacle) {
485                                 QColor c1(color), c2(blue);
486                                 double f = (double)cell->detected_obstacle/MAP_NEW_OBSTACLE*0.7;
487                                 QColor c(c1.red()   + (int)(f*(c2.red()   - c1.red())),
488                                          c1.green() + (int)(f*(c2.green() - c1.green())),
489                                          c1.blue()  + (int)(f*(c2.blue()  - c1.blue())));
490                                 color = c;
491                         }
492                         if (cell->flags & MAP_FLAG_DET_OBST)
493                                 color = cyan;
494
495                         color.setAlpha(200);
496                         mapImage->setPixelColor(i, MAP_HEIGHT - j - 1, color);
497                 }
498         }
499 }
500
501 void RobomonAtlantis::setSimulation(int state)
502 {
503         if(state) {
504                 robottype_publisher_hokuyo_scan_create(&orte, NULL, this);
505         } else {
506                 if (!simulationEnabled)
507                         return;
508                 robottype_publisher_hokuyo_scan_destroy(&orte);
509         }
510         simulationEnabled = state;
511 }
512
513 /*!
514         \fn RobomonAtlantis::setObstacleSimulation(int state)
515  */
516 void RobomonAtlantis::setObstacleSimulation(int state)
517 {
518         if (state) {
519                 /* TODO Maybe it is possible to attach only once to Shmap */
520                 ShmapInit(0);
521                 obstacleSimulationTimer = new QTimer(this);
522                 connect(obstacleSimulationTimer, SIGNAL(timeout()),
523                         this, SLOT(simulateObstaclesHokuyo()));
524                 obstacleSimulationTimer->start(100);
525                 setMouseTracking(true);
526         } else {
527                 if (obstacleSimulationTimer)
528                         delete obstacleSimulationTimer;
529                 //double distance = 0.8;
530         }
531 }
532
533
534 void RobomonAtlantis::simulateObstaclesHokuyo()
535 {
536         double distance, wall_distance;
537         unsigned int i;
538         uint16_t *hokuyo = orte.hokuyo_scan.data;
539
540         for (i=0; i<HOKUYO_ARRAY_SIZE; i++) {
541                 wall_distance = distanceToWallHokuyo(i);
542
543                 // TODO: Replace with function to calculate the real distance to the simulated cylinder
544                 distance = distanceToObstacleHokuyo(i, simulatedObstacle, SIM_OBST_SIZE_M/*meters*/);
545                 if (wall_distance < distance)
546                         distance = wall_distance;
547                 hokuyo[i] = distance*1000;
548         }
549         ORTEPublicationSend(orte.publication_hokuyo_scan);
550
551 }
552
553 void RobomonAtlantis::changeObstacle(QPointF position)
554 {
555         if (!simulationEnabled) {
556                 simulationEnabled = 1;
557                 obstacleSimulationCheckBox->setChecked(true);
558         }
559
560         simulatedObstacle.x = position.x();
561         simulatedObstacle.y = position.y();
562         simulateObstaclesHokuyo();
563 }
564
565 /**********************************************************************
566  * EVENTS
567  **********************************************************************/
568 bool RobomonAtlantis::event(QEvent *event)
569 {
570         switch (event->type()) {
571                 case QEVENT(QEV_MOTION_STATUS):
572                         emit motionStatusReceivedSignal();
573                         break;
574                 case QEVENT(QEV_HOKUYO_SCAN):
575                         hokuyoScan->newScan(&orte.hokuyo_scan);
576                         break;
577                 case QEVENT(QEV_VIDLE_CMD):
578                         robotEstPosBest->setVidle(orte.vidle_cmd.req_pos);
579                         break;
580                 case QEVENT(QEV_REFERENCE_POSITION):
581                         emit actualPositionReceivedSignal();
582                         break;
583                 case QEVENT(QEV_ESTIMATED_POSITION_INDEP_ODO):
584                         estPosX->setText(QString("%1").arg(orte.est_pos_indep_odo.x, 0, 'f', 3));
585                         estPosY->setText(QString("%1").arg(orte.est_pos_indep_odo.y, 0, 'f', 3));
586                         estPosPhi->setText(QString("%1(%2)")
587                                         .arg(DEGREES(orte.est_pos_indep_odo.phi), 0, 'f', 0)
588                                         .arg(orte.est_pos_indep_odo.phi, 0, 'f', 1));
589                         robotEstPosIndepOdo->moveRobot(orte.est_pos_indep_odo.x,
590                                 orte.est_pos_indep_odo.y, orte.est_pos_indep_odo.phi);
591                         trailPosIndepOdo->addPoint(QPointF(orte.est_pos_indep_odo.x,
592                                               orte.est_pos_indep_odo.y));
593                         break;
594                 case QEVENT(QEV_ESTIMATED_POSITION_ODO):
595                         robotEstPosOdo->moveRobot(orte.est_pos_odo.x,
596                                         orte.est_pos_odo.y, orte.est_pos_odo.phi);
597                         trailOdoPos->addPoint(QPointF(orte.est_pos_odo.x,
598                                               orte.est_pos_odo.y));
599                         break;
600                 case QEVENT(QEV_ESTIMATED_POSITION_BEST):
601                         robotEstPosBest->moveRobot(orte.est_pos_best.x,
602                                         orte.est_pos_best.y, orte.est_pos_best.phi);
603                         trailEstPosBest->addPoint(QPointF(orte.est_pos_best.x,
604                                               orte.est_pos_best.y));
605                         hokuyoScan->setPosition(orte.est_pos_best.x,
606                                                 orte.est_pos_best.y,
607                                                 orte.est_pos_best.phi);
608                         break;
609                 case QEVENT(QEV_POWER_VOLTAGE):
610                         emit powerVoltageReceivedSignal();
611                         break;
612                 case QEVENT(QEV_FSM_MAIN):
613                         fsm_main_state->setText(orte.fsm_main.state_name);
614                         break;
615                 case QEVENT(QEV_FSM_ACT):
616                         fsm_act_state->setText(orte.fsm_act.state_name);
617                         break;
618                 case QEVENT(QEV_FSM_MOTION):
619                         fsm_motion_state->setText(orte.fsm_motion.state_name);
620                         break;
621                 default:
622                         if (event->type() == QEvent::Close)
623                                 closeEvent((QCloseEvent *)event);
624                         else if (event->type() == QEvent::KeyPress)
625                                 keyPressEvent((QKeyEvent *)event);
626                         else if (event->type() == QEvent::KeyRelease)
627                                 keyReleaseEvent((QKeyEvent *)event);
628                         else if (event->type() == QEvent::FocusIn)
629                                 grabKeyboard();
630                         else if (event->type() == QEvent::FocusOut)
631                                 releaseKeyboard();
632                         else {
633                                 event->ignore();
634                                 return false;
635                         }
636                         break;
637         }
638         event->accept();
639         return true;
640 }
641
642 void RobomonAtlantis::keyPressEvent(QKeyEvent *event)
643 {
644 //      double peak, gain;
645
646         if (event->isAutoRepeat()) {
647                 switch (event->key()) {
648 //                      case Qt::Key_Down:
649 //                              peak = leftMotorSlider->minimum()/2;
650 //                              if (leftMotorValue < peak ||
651 //                                      rightMotorValue < peak)
652 //                                      gain = 1.01;
653 //                              else
654 //                                      gain = 1.3;
655 //                              leftMotorValue *= gain;
656 //                              rightMotorValue *= gain;
657 //                              leftMotorSlider->setValue((int)leftMotorValue);
658 //                              rightMotorSlider->setValue((int)rightMotorValue);
659 //                              break;
660
661 //                      case Qt::Key_Up:
662 //                      case Qt::Key_Left:
663 //                      case Qt::Key_Right:
664 //                              peak = leftMotorSlider->maximum()/2;
665 //                              if (leftMotorValue > peak ||
666 //                                      rightMotorValue > peak)
667 //                                      gain = 1.01;
668 //                              else
669 //                                      gain = 1.3;
670 //                              leftMotorValue *= gain;
671 //                              rightMotorValue *= gain;
672 //                              leftMotorSlider->setValue((int)leftMotorValue);
673 //                              rightMotorSlider->setValue((int)rightMotorValue);
674 //                              break;
675
676                         default:
677                                 event->ignore();
678                                 break;
679                 }
680                 return;
681         }
682
683         switch (event->key()) {
684 //              case Qt::Key_Up:
685 //                      leftMotorValue = 1;
686 //                      rightMotorValue = 1;
687 //                      bothMotorsCheckBox->setChecked(true);
688 //                      leftMotorSlider->setValue((int)leftMotorValue);
689 //                      setLeftMotor((int)leftMotorValue);
690 //                      break;
691 //              case Qt::Key_Down:
692 //                      leftMotorValue = -1;
693 //                      rightMotorValue = -1;
694 //                      bothMotorsCheckBox->setChecked(true);
695 //                      leftMotorSlider->setValue((int)leftMotorValue);
696 //                      setLeftMotor((int)leftMotorValue);
697 //                      break;
698 //              case Qt::Key_Left:
699 //                      leftMotorValue = -1;
700 //                      rightMotorValue = 1;
701 //                      leftMotorSlider->setValue((int)leftMotorValue);
702 //                      rightMotorSlider->setValue((int)rightMotorValue);
703 //                      setLeftMotor((int)leftMotorValue);
704 //                      setRightMotor((int)leftMotorValue);
705 //                      break;
706 //              case Qt::Key_Right:
707 //                      leftMotorValue = 1;
708 //                      rightMotorValue = -1;
709 //                      leftMotorSlider->setValue((int)leftMotorValue);
710 //                      rightMotorSlider->setValue((int)rightMotorValue);
711 //                      setLeftMotor((int)leftMotorValue);
712 //                      setRightMotor((int)rightMotorValue);
713 //                      break;
714                 default:
715                         event->ignore();
716                         break;
717         }
718         event->accept();
719 }
720
721 void RobomonAtlantis::keyReleaseEvent(QKeyEvent *event)
722 {
723         if (event->isAutoRepeat()) {
724                 event->ignore();
725                 return;
726         }
727
728         switch (event->key()) {
729 //              case Qt::Key_Up:
730 //              case Qt::Key_Down:
731 //              case Qt::Key_Left:
732 //              case Qt::Key_Right:
733 //                      leftMotorValue = 0;
734 //                      rightMotorValue = 0;
735 //                      bothMotorsCheckBox->setChecked(false);
736 //                      leftMotorSlider->setValue((int)leftMotorValue);
737 //                      rightMotorSlider->setValue((int)rightMotorValue);
738 //                      break;
739                 default:
740                         event->ignore();
741                         break;
742         }
743         event->accept();
744 }
745
746 void RobomonAtlantis::closeEvent(QCloseEvent *)
747 {
748         robottype_roboorte_destroy(&orte);
749 }
750
751 /**********************************************************************
752  * ORTE
753  **********************************************************************/
754 void RobomonAtlantis::createOrte()
755 {
756         int rv;
757
758         orte.strength = 11;
759
760         memset(&orte, 0, sizeof(orte));
761         rv = robottype_roboorte_init(&orte);
762         if (rv) {
763                 printf("RobomonAtlantis: Unable to initialize ORTE\n");
764         }
765
766         /* publishers */
767         robottype_publisher_motion_speed_create(&orte, dummy_publisher_callback, NULL);
768
769         robottype_publisher_pwr_ctrl_create(&orte, dummy_publisher_callback, NULL);
770         robottype_publisher_robot_cmd_create(&orte, NULL, &orte);
771         robottype_publisher_robot_switches_create(&orte, dummy_publisher_callback, &orte);
772
773         /* subscribers */
774         robottype_subscriber_pwr_voltage_create(&orte,
775                                 receivePowerVoltageCallBack, this);
776         robottype_subscriber_motion_status_create(&orte,
777                                 receiveMotionStatusCallBack, this);
778         robottype_subscriber_ref_pos_create(&orte,
779                                 receiveActualPositionCallBack, this);
780         robottype_subscriber_est_pos_odo_create(&orte,
781                         generic_rcv_cb, new OrteCallbackInfo(this, QEV_ESTIMATED_POSITION_ODO));
782         robottype_subscriber_est_pos_indep_odo_create(&orte,
783                         generic_rcv_cb, new OrteCallbackInfo(this, QEV_ESTIMATED_POSITION_INDEP_ODO));
784         robottype_subscriber_est_pos_best_create(&orte,
785                         generic_rcv_cb, new OrteCallbackInfo(this, QEV_ESTIMATED_POSITION_BEST));
786         robottype_subscriber_hokuyo_scan_create(&orte,
787                         generic_rcv_cb, new OrteCallbackInfo(this, QEV_HOKUYO_SCAN));
788         robottype_subscriber_vidle_cmd_create(&orte,
789                         generic_rcv_cb, new OrteCallbackInfo(this, QEV_VIDLE_CMD));
790         robottype_subscriber_fsm_main_create(&orte,
791                                              rcv_fsm_main_cb, this);
792         robottype_subscriber_fsm_motion_create(&orte,
793                                              rcv_fsm_motion_cb, this);
794         robottype_subscriber_fsm_act_create(&orte,
795                                              rcv_fsm_act_cb, this);
796
797         /* motors */
798         orte.motion_speed.left = 0;
799         orte.motion_speed.right = 0;
800
801         /* power management */
802         orte.pwr_ctrl.voltage33 = true;
803         orte.pwr_ctrl.voltage50 = true;
804         orte.pwr_ctrl.voltage80 = true;
805         voltage33CheckBox->setChecked(true);
806         voltage50CheckBox->setChecked(true);
807         voltage80CheckBox->setChecked(true);
808
809         act_init(&orte);
810
811         /* set actions to do when we receive data from orte */
812         connect(this, SIGNAL(motionStatusReceivedSignal()),
813                         this, SLOT(motionStatusReceived()));
814         connect(this, SIGNAL(actualPositionReceivedSignal()),
815                         this, SLOT(actualPositionReceived()));
816         connect(this, SIGNAL(powerVoltageReceivedSignal()),
817                         this, SLOT(powerVoltageReceived()));
818 }
819
820 void RobomonAtlantis::motionStatusReceived()
821 {
822         WDBG("ORTE received: motion status");
823 }
824
825 void RobomonAtlantis::actualPositionReceived()
826 {
827         actPosX->setText(QString("%1").arg(orte.ref_pos.x, 0, 'f', 3));
828         actPosY->setText(QString("%1").arg(orte.ref_pos.y, 0, 'f', 3));
829         actPosPhi->setText(QString("%1(%2)")
830                         .arg(DEGREES(orte.ref_pos.phi), 0, 'f', 0)
831                         .arg(orte.ref_pos.phi, 0, 'f', 1));
832         robotRefPos->moveRobot(orte.ref_pos.x,
833                 orte.ref_pos.y, orte.ref_pos.phi);
834         trailRefPos->addPoint(QPointF(orte.ref_pos.x, orte.ref_pos.y));
835 }
836
837 void RobomonAtlantis::powerVoltageReceived()
838 {
839         voltage33LineEdit->setText(QString("%1").arg(
840                         orte.pwr_voltage.voltage33, 0, 'f', 3));
841         voltage50LineEdit->setText(QString("%1").arg(
842                         orte.pwr_voltage.voltage50, 0, 'f', 3));
843         voltage80LineEdit->setText(QString("%1").arg(
844                         orte.pwr_voltage.voltage80, 0, 'f', 3));
845         voltageBATLineEdit->setText(QString("%1").arg(
846                         orte.pwr_voltage.voltageBAT, 0, 'f', 3));
847
848 }
849
850 /**********************************************************************
851  * MISCELLANEOUS
852  **********************************************************************/
853 void RobomonAtlantis::openSharedMemory()
854 {
855         int segmentId;
856         int sharedSegmentSize;
857
858         if (sharedMemoryOpened)
859                 return;
860
861         sharedSegmentSize = sizeof(unsigned int) * MAP_WIDTH * MAP_HEIGHT;
862
863         /* Get segment identificator in a read only mode  */
864         segmentId = shmget(SHM_MAP_KEY, sharedSegmentSize, S_IRUSR);
865         if(segmentId == -1) {
866                 QMessageBox::critical(this, "robomon",
867                                 "Unable to open shared memory segment!");
868                 return;
869         }
870
871         /* Init Shmap */
872         ShmapInit(0);
873
874         /* Attach the shared memory segment */
875         //map =  (_Map*)shmat (segmentId, (void*) 0, 0);
876
877         sharedMemoryOpened = true;
878 }
879
880 double RobomonAtlantis::distanceToWallHokuyo(int beamnum)
881 {
882         double distance=4.0, min_distance=4.0;
883         int i,j;
884         Point wall;
885         struct map *map = ShmapIsMapInit();
886
887         if (!map) return min_distance;
888
889         // Simulate obstacles
890         for(j=0;j<MAP_HEIGHT;j++) {
891                 for (i=0;i<MAP_WIDTH;i++) {
892                         struct map_cell *cell = &map->cells[j][i];
893                         if( cell->flags & MAP_FLAG_SIMULATED_WALL) {
894                                 // WALL
895                                 ShmapCell2Point(i, j, &wall.x, &wall.y);
896
897                                 distance = distanceToObstacleHokuyo(beamnum, wall, MAP_CELL_SIZE_M);
898                                 if (distance<min_distance) min_distance = distance;
899                         }
900                 }
901         }
902
903         return min_distance;
904 }
905
906 /**
907  * Calculation for Hokuyo simulation. Calculates distance that would
908  * be returned by Hokuyo sensors, if there is only one obstacle (as
909  * specified by parameters).
910  *
911  * @param beamnum Hokuyo's bean number [0..HOKUYO_CLUSTER_CNT]
912  * @param obstacle Position of the obstacle (x, y in meters).
913  * @param obstacleSize Size (diameter) of the obstacle in meters.
914  *
915  * @return Distance measured by sensors in meters.
916  */
917 double RobomonAtlantis::distanceToObstacleHokuyo(int beamnum, Point obstacle, double obstacleSize)
918 {
919         struct robot_pos_type e = orte.est_pos_best;
920         double sensor_a;
921         struct sharp_pos s;
922
923         s.x = HOKUYO_CENTER_OFFSET_M;
924         s.y = 0.0;
925         s.ang = HOKUYO_INDEX_TO_RAD(beamnum);
926
927         Point sensor(e.x + s.x*cos(e.phi) - s.y*sin(e.phi),
928                      e.y + s.x*sin(e.phi) + s.y*cos(e.phi));
929         sensor_a = e.phi + s.ang;
930
931         const double sensorRange = 4.0; /*[meters]*/
932
933         double distance, angle;
934
935         angle = sensor.angleTo(obstacle) - sensor_a;
936         angle = fmod(angle, 2.0*M_PI);
937         if (angle > +M_PI) angle -= 2.0*M_PI;
938         if (angle < -M_PI) angle += 2.0*M_PI;
939         angle = fabs(angle);
940         distance = sensor.distanceTo(obstacle) - obstacleSize/2.0;
941         if (angle < atan(obstacleSize/2.0 / distance)) {
942                 // We can see the obstackle from here.
943                 if (angle < M_PI/2.0) {
944                     distance = distance/cos(angle);
945                 }
946                 if (distance > sensorRange)
947                         distance = sensorRange;
948         } else {
949                 distance = sensorRange;
950         }
951
952         return distance;
953 }
954
955 void RobomonAtlantis::sendStart(int plug)
956 {
957         orte.robot_cmd.start_condition = plug ? 0 : 1;
958         ORTEPublicationSend(orte.publication_robot_cmd);
959 }
960
961 void RobomonAtlantis::setTeamColor(int plug)
962 {
963         orte.robot_switches.team_color = plug ? 1 : 0;
964         ORTEPublicationSend(orte.publication_robot_switches);
965 }
966
967 void RobomonAtlantis::resetTrails()
968 {
969         trailRefPos->reset();
970         trailEstPosBest->reset();
971         trailPosIndepOdo->reset();
972         trailOdoPos->reset();
973 }
974
975 void RobomonAtlantis::showTrails(bool show)
976 {
977         trailRefPos->setVisible(show && robotRefPos->isVisible());
978         trailEstPosBest->setVisible(show && robotEstPosBest->isVisible());
979         trailPosIndepOdo->setVisible(show && robotEstPosIndepOdo->isVisible());
980         trailOdoPos->setVisible(show && robotEstPosOdo->isVisible());
981 }
982
983 void RobomonAtlantis::showShapeDetect(bool show)
984 {
985     hokuyoScan->showShapeDetect = show;
986 }