Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / server / PositionMonitor.cpp @ 509

History | View | Annotate | Download (3.7 KB)

1 436 jknichel
/**
2
 * @file PositionMonitor.cpp
3
 *
4
 * @author Jason Knichel
5
 *
6
 * @date 2/4/08
7
 */
8
9
//TODO: make this file asynchronous
10
11 443 emarinel
#include <PositionMonitor.h>
12 436 jknichel
#include <stdlib.h>
13
#include <vision.h>
14
15 449 jknichel
#include <stdio.h>
16
17
#include <map>
18
using namespace std;
19
20 436 jknichel
PositionMonitor::PositionMonitor() {
21
  //TODO: don't hardcode this file name
22
  //TODO: check for error returned from init
23
  vision_init("/var/www/colonet.jpg");
24 466 emarinel
  newIdToAssign = -1;
25 508 emarinel
26
  pthread_mutex_init(&position_map_lock, NULL);
27 436 jknichel
}
28
29
PositionMonitor::~PositionMonitor() {
30
}
31
32 508 emarinel
void PositionMonitor::run() {
33
  while (1) {
34
    updatePositions();
35
    usleep(500000);
36
  }
37 436 jknichel
}
38
39
int PositionMonitor::stopMonitoring() {
40 449 jknichel
  //TODO: fill this in when this becomes asynchronous
41 436 jknichel
  return 0;
42
}
43
44 447 emarinel
int PositionMonitor::updatePositions() {
45 449 jknichel
  VisionPosition * positions = NULL;
46 436 jknichel
47
  //TODO: check for error returned
48 449 jknichel
  int numPositions = vision_get_robot_positions(&positions);
49 466 emarinel
  printf("numPositions is %d\n", numPositions);
50 467 emarinel
  for (int i = 0; i < numPositions; i++) {
51
    printf("{%d,%d} ", positions[i].x, positions[i].y);
52
  }
53
  printf("\n");
54 436 jknichel
55 468 jknichel
  map<int, VisionPosition> newPositionMap;
56 467 emarinel
57 509 emarinel
  pthread_mutex_lock(&position_map_lock);
58
59 458 jknichel
  //TODO: also remove robots that might have disappeared
60
  int i;
61
  for (i = 0; i < numPositions; i++) {
62
    VisionPosition newPos = positions[i];
63
    map<int, VisionPosition>::iterator iter;
64
    for (iter = positionMap.begin(); iter != positionMap.end(); iter++) {
65
      VisionPosition oldPos = iter->second;
66 449 jknichel
67 458 jknichel
      if (isProbablySameRobot(newPos, oldPos)) {
68 466 emarinel
        //TODO: is this the right use of an iterator?
69 509 emarinel
        newPositionMap.insert(make_pair(iter->first, newPos));
70 466 emarinel
        break;
71 458 jknichel
      }
72
    }
73 466 emarinel
74 458 jknichel
    if (iter == positionMap.end()) {
75 468 jknichel
      //a position was found that probably isn't a known
76
      //  robot so add it in case a new robot entered the field
77 466 emarinel
      printf("Inserting new robot: %d (%d,%d)", newIdToAssign, newPos.x, newPos.y);
78
79 458 jknichel
      //a position was found that probably isn't a known robot so add it in case a new robot entered the field
80 468 jknichel
      newPositionMap.insert(make_pair(newIdToAssign, newPos));
81 466 emarinel
      newIdToAssign--;
82 458 jknichel
    }
83
  }
84
85 468 jknichel
  positionMap = newPositionMap;
86
87 449 jknichel
  //TODO: remove this debug information
88
  map<int, VisionPosition>::iterator iter;
89
  for (iter = positionMap.begin(); iter != positionMap.end(); iter++) {
90
    printf("%d has position (%d, %d)\n", iter->first, iter->second.x, iter->second.y);
91
  }
92 509 emarinel
93
  pthread_mutex_unlock(&position_map_lock);
94
95
  if (positions) {
96 449 jknichel
    free(positions);
97 509 emarinel
  }
98 458 jknichel
99 436 jknichel
  return 0;
100
}
101 443 emarinel
102 455 emarinel
int PositionMonitor::assignRealId(int old_id, int real_id) {
103
  printf("assigning real_id %d to old_id %d\n", real_id, old_id);
104
105 509 emarinel
  pthread_mutex_lock(&position_map_lock);
106
107 455 emarinel
  map<int,VisionPosition>::iterator iter = positionMap.find(old_id);
108
109
  if (iter == positionMap.end()) {
110
    fprintf(stderr, "assignRealId: old_id not found\n");
111
    return -1;
112
  }
113
114
  positionMap.insert(make_pair(real_id, iter->second));
115
  positionMap.erase(old_id);
116
117 509 emarinel
  pthread_mutex_unlock(&position_map_lock);
118
119 455 emarinel
  return 0;
120
}
121
122 447 emarinel
map<int, VisionPosition> PositionMonitor::getAllRobotPositions() {
123 509 emarinel
  // TODO return a copy instead of the actual map for synch purposes
124 447 emarinel
  return positionMap;
125
}
126
127 443 emarinel
int PositionMonitor::getRobotPosition(int robot_id, int* xbuf, int* ybuf) {
128 449 jknichel
  //TODO: figure out what a map returns if the element doesn't exist
129 509 emarinel
130
  pthread_mutex_lock(&position_map_lock);
131
132
133 451 jknichel
  if (positionMap.find(robot_id) == positionMap.end()){
134 449 jknichel
    return -1;
135
  }
136
137
  VisionPosition pos = positionMap[robot_id];
138 455 emarinel
139 509 emarinel
  pthread_mutex_unlock(&position_map_lock);
140
141 449 jknichel
  *xbuf = pos.x;
142
  *ybuf = pos.y;
143 443 emarinel
144
  return 0;
145
}
146 458 jknichel
147
bool PositionMonitor::isProbablySameRobot(VisionPosition p1, VisionPosition p2) {
148
  int xDiff = p1.x - p2.x;
149
  int yDiff = p1.y - p2.y;
150
  return (xDiff*xDiff + yDiff*yDiff < MAX_DISTANCE*MAX_DISTANCE);
151
}