305 lines
No EOL
9 KiB
C++
305 lines
No EOL
9 KiB
C++
/*
|
|
* Copyright (C) 2018 dimercur
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "tasks_pthread.h"
|
|
#include <time.h>
|
|
|
|
#ifdef __WITH_PTHREAD__
|
|
|
|
// Déclaration des priorités des taches
|
|
#define PRIORITY_TSERVER 30
|
|
#define PRIORITY_TOPENCOMROBOT 20
|
|
#define PRIORITY_TMOVE 10
|
|
#define PRIORITY_TSENDTOMON 25
|
|
#define PRIORITY_TRECEIVEFROMMON 22
|
|
#define PRIORITY_TSTARTROBOT 20
|
|
|
|
/*
|
|
* Some remarks:
|
|
* 1- This program is mostly a template. It shows you how to create tasks, semaphore
|
|
* message queues, mutex ... and how to use them
|
|
*
|
|
* 2- semDumber is, as name say, useless. Its goal is only to show you how to use semaphore
|
|
*
|
|
* 3- Data flow is probably not optimal
|
|
*
|
|
* 4- Take into account that ComRobot::Write will block your task when serial buffer is full,
|
|
* time for internal buffer to flush
|
|
*
|
|
* 5- Same behavior existe for ComMonitor::Write !
|
|
*
|
|
* 6- When you want to write something in terminal, use cout and terminate with endl and flush
|
|
*
|
|
* 7- Good luck !
|
|
*/
|
|
|
|
void Tasks::Init() {
|
|
int status;
|
|
|
|
/* Open com port with STM32 */
|
|
cout << "Open serial com (";
|
|
status = robot.Open();
|
|
cout << status;
|
|
cout << ")" << endl;
|
|
|
|
if (status >= 0) {
|
|
// Open server
|
|
|
|
status = monitor.Open(SERVER_PORT);
|
|
cout << "Open server on port " << (SERVER_PORT) << " (" << status << ")" << endl;
|
|
|
|
if (status < 0) throw std::runtime_error {
|
|
"Unable to start server on port " + std::to_string(SERVER_PORT)
|
|
};
|
|
} else
|
|
throw std::runtime_error {
|
|
"Unable to open serial port /dev/ttyS0 "
|
|
};
|
|
}
|
|
|
|
void Tasks::Run() {
|
|
threadTimer = new thread((void (*)(void*)) & Tasks::TimerTask, this);
|
|
threadServer = new thread((void (*)(void*)) & Tasks::ServerTask, this);
|
|
|
|
cout << "Tasks launched" << endl << flush;
|
|
}
|
|
|
|
void Tasks::Stop() {
|
|
monitor.Close();
|
|
robot.Close();
|
|
}
|
|
|
|
void Tasks::ServerTask(void *arg) {
|
|
Message *msgRcv;
|
|
Message *msgSend;
|
|
bool isActive = true;
|
|
|
|
cout << "Start " << __PRETTY_FUNCTION__ << endl << flush;
|
|
|
|
while (isActive) {
|
|
msgRcv = NULL;
|
|
msgSend = NULL;
|
|
|
|
msgRcv = monitor.Read();
|
|
cout << "Rcv <= " << msgRcv->ToString() << endl << flush;
|
|
|
|
if (msgRcv->CompareID(MESSAGE_ROBOT_COM_OPEN)) {
|
|
msgSend = new Message(MESSAGE_ANSWER_ACK);
|
|
isActive = true;
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_ROBOT_COM_CLOSE)) {
|
|
msgSend = new Message(MESSAGE_ANSWER_ACK);
|
|
cout << "isActive = false!" << msgRcv->ToString() << endl << flush;
|
|
isActive = false;
|
|
|
|
delete(msgRcv); // mus be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_ROBOT_START_WITH_WD)) {
|
|
msgSend = robot.Write(msgRcv);
|
|
cout << "Start with wd answer: " << msgSend->ToString() << endl << flush;
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_ROBOT_START_WITHOUT_WD)) {
|
|
msgSend = robot.Write(msgRcv);
|
|
cout << "Start without wd answer: " << msgSend->ToString() << endl << flush;
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_ROBOT_RESET)) {
|
|
msgSend = robot.Write(msgRcv);
|
|
cout << "Reset answer: " << msgSend->ToString() << endl << flush;
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_ROBOT_GO_FORWARD) ||
|
|
msgRcv->CompareID(MESSAGE_ROBOT_GO_BACKWARD) ||
|
|
msgRcv->CompareID(MESSAGE_ROBOT_GO_LEFT) ||
|
|
msgRcv->CompareID(MESSAGE_ROBOT_GO_RIGHT) ||
|
|
msgRcv->CompareID(MESSAGE_ROBOT_STOP)) {
|
|
msgSend = robot.Write(msgRcv);
|
|
|
|
cout << "Movement answer: " << msgSend->ToString() << endl << flush;
|
|
|
|
if (msgSend->CompareID(MESSAGE_ANSWER_ACK)) {
|
|
delete (msgSend);
|
|
msgSend = NULL;
|
|
}
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_CAM_OPEN)) {
|
|
sendImage = true;
|
|
msgSend = new Message(MESSAGE_ANSWER_ACK);
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_CAM_CLOSE)) {
|
|
sendImage = false;
|
|
msgSend = new Message(MESSAGE_ANSWER_ACK);
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_CAM_POSITION_COMPUTE_START)) {
|
|
sendPosition = true;
|
|
msgSend = new Message(MESSAGE_ANSWER_ACK);
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_CAM_POSITION_COMPUTE_STOP)) {
|
|
sendPosition = false;
|
|
msgSend = new Message(MESSAGE_ANSWER_ACK);
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_ROBOT_BATTERY_GET)) {
|
|
msgSend = new MessageBattery(MESSAGE_ROBOT_BATTERY_LEVEL, BATTERY_FULL);
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_CAM_ASK_ARENA)) {
|
|
showArena = true;
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_CAM_ARENA_CONFIRM)) {
|
|
showArena = false;
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgRcv->CompareID(MESSAGE_CAM_ARENA_INFIRM)) {
|
|
showArena = false;
|
|
|
|
delete(msgRcv); // must be deleted manually, no consumer
|
|
}
|
|
|
|
if (msgSend != NULL) monitor.Write(msgSend);
|
|
}
|
|
}
|
|
|
|
void Tasks::TimerTask(void* arg) {
|
|
struct timespec tim, tim2;
|
|
Message *msgSend;
|
|
int counter;
|
|
int cntFrame = 0;
|
|
Position pos;
|
|
Arena arena;
|
|
int counter_img;
|
|
|
|
tim.tv_sec = 0;
|
|
tim.tv_nsec = 50000000; // 50ms (20fps)
|
|
|
|
cout << "Start " << __PRETTY_FUNCTION__ << endl << flush;
|
|
|
|
Camera camera = Camera(sm, 15);
|
|
cout << "Try opening camera" << endl << flush;
|
|
if (camera.Open()) cout << "Camera opened successfully" << endl << flush;
|
|
else {
|
|
cout << "Failed to open camera" << endl << flush;
|
|
|
|
exit(0);
|
|
}
|
|
|
|
pos.angle = 0.0;
|
|
pos.robotId = -1;
|
|
pos.center = cv::Point2f(0, 0);
|
|
pos.direction = cv::Point2f(0, 0);
|
|
|
|
counter_img = 0;
|
|
|
|
while (1) {
|
|
Img image = camera.Grab(); // 15fps
|
|
cntFrame++;
|
|
cout << "cnt: " << to_string(cntFrame) << endl << flush;
|
|
|
|
if (sendPosition == true) {
|
|
counter++;
|
|
|
|
if (counter >= 5) { // div =15
|
|
counter = 0;
|
|
|
|
//if (!arena.IsEmpty()) {
|
|
image.dictionary = cv::aruco::getPredefinedDictionary(cv::aruco::PREDEFINED_DICTIONARY_NAME(3));
|
|
|
|
std::list<Position> poses = image.SearchRobot(arena);
|
|
cout << "Nbr of pos detected: " << to_string(poses.size()) << endl << flush;
|
|
|
|
if (poses.size() > 0) {
|
|
Position firstPos = poses.front();
|
|
|
|
pos.angle = firstPos.angle;
|
|
pos.robotId = firstPos.robotId;
|
|
pos.center = firstPos.center;
|
|
pos.direction = firstPos.direction;
|
|
} else {
|
|
// Nothing found
|
|
pos.angle = 0.0;
|
|
pos.robotId = -1;
|
|
pos.center = cv::Point2f(0, 0);
|
|
pos.direction = cv::Point2f(0, 0);
|
|
}
|
|
|
|
MessagePosition *msgp = new MessagePosition(MESSAGE_CAM_POSITION, pos);
|
|
monitor.Write(msgp);
|
|
cout << "Position sent" << endl << flush;
|
|
}
|
|
}
|
|
|
|
if (sendImage == true) {
|
|
counter_img++;
|
|
|
|
if (counter_img >= 1) {
|
|
counter_img = 0;
|
|
|
|
if (showArena) {
|
|
arena = image.SearchArena();
|
|
|
|
if (!arena.IsEmpty()) image.DrawArena(arena);
|
|
else cout << "Arena not found" << endl << flush;
|
|
}
|
|
|
|
if (sendPosition == true) {
|
|
image.DrawRobot(pos);
|
|
}
|
|
|
|
if (!arena.IsEmpty()) image.DrawArena(arena);
|
|
|
|
MessageImg *msg = new MessageImg(MESSAGE_CAM_IMAGE, &image);
|
|
|
|
monitor.Write(msg);
|
|
cout << "Image sent" << endl << flush;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void Tasks::SendToMonTask(void* arg) {
|
|
cout << "Start " << __PRETTY_FUNCTION__ << endl << flush;
|
|
|
|
while (1) {
|
|
|
|
}
|
|
}
|
|
|
|
#endif //__WITH_PTHREAD__
|