Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / libwireless / lib / sensor_matrix.c @ 756

History | View | Annotate | Download (3.76 KB)

1
/**
2
 * Copyright (c) 2007 Colony Project
3
 *
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use,
8
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the
10
 * Software is furnished to do so, subject to the following
11
 * conditions:
12
 *
13
 * The above copyright notice and this permission notice shall be
14
 * included in all copies or substantial portions of the Software.
15
 *
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
 * OTHER DEALINGS IN THE SOFTWARE.
24
 **/
25

    
26
/**
27
 * @file sensor_matrix.c
28
 * @brief Sensor Matrix implementation
29
 *
30
 * Implementation of a sensor matrix for storing localization implementation.
31
 *
32
 * @author Brian Coltin, Colony Project, CMU Robotics Club
33
 **/
34

    
35
#include <stdlib.h>
36
#include <stdio.h>
37
#include <wl_defs.h>
38

    
39
#include "sensor_matrix.h"
40

    
41
// the global sensor matrix
42
SensorMatrix m;
43

    
44
/**
45
 * Initializes the sensor matrix.
46
 *
47
 * @return the newly created sensor matrix
48
 **/
49
void sensor_matrix_create()
50
{
51
        int i, j;
52

    
53
        m.numJoined = 0;
54

    
55
        for (i = 0; i < MAXIMUM_XBEE_ID; i++)
56
        {
57
                m.joined[i] = 0;
58
                for (j = 0; j < MAXIMUM_XBEE_ID; j++)
59
                        m.matrix[i][j] = READING_UNKNOWN;
60
        }
61
}
62

    
63
/**
64
 * Sets the sensor reading for robot robot to reading.
65
 *
66
 * @param observer the id of the robot who made the reading
67
 * @param robot the id of the robot who the reading is for
68
 * @param reading the BOM reading from observer to robot
69
 */
70
void sensor_matrix_set_reading(int observer, int robot, int reading)
71
{
72
        if (robot >= MAXIMUM_XBEE_ID || observer >= MAXIMUM_XBEE_ID)
73
        {
74
                WL_DEBUG_PRINT("ID too large.");
75
                return;
76
        }
77

    
78
        m.matrix[observer][robot] = (unsigned char)reading;
79
}
80

    
81
/**
82
 * Gets the sensor reading for a robot to another robot.
83
 *
84
 * @param observer the robot whose reading we check
85
 * @param robot the robot who we are checking the reading to
86
 *
87
 * @return the observer's BOM reading for robot
88
 **/
89
int sensor_matrix_get_reading(int observer, int robot)
90
{
91
        if (observer >= MAXIMUM_XBEE_ID || robot >= MAXIMUM_XBEE_ID)
92
                return -1;
93

    
94
        return (int)m.matrix[observer][robot];
95
}
96

    
97
/**
98
 * Sets whether or not the given robot is part of the token ring.
99
 *
100
 * @param robot the robot to set as a member / nonmember of the token ring
101
 * @param in 1 if the robot is in the token ring, 0 otherwise
102
 **/
103
void sensor_matrix_set_in_ring(int robot, int in)
104
{
105
        if (robot >= MAXIMUM_XBEE_ID)
106
        {
107
                WL_DEBUG_PRINT("ID too large.");
108
                return;
109
        }
110

    
111
        if (in == 1 && m.joined[robot] == 0)
112
                m.numJoined++;
113

    
114
        if (in == 0 && m.joined[robot])
115
                m.numJoined--;
116
        m.joined[robot] = in;
117
}
118

    
119
/**
120
 * Checks if the given robot is in the token ring.
121
 *
122
 * @param robot the ID of the robot to check
123
 *
124
 * @return 1 if the robot is in the token ring, 0 otherwise
125
 **/
126
int sensor_matrix_get_in_ring(int robot)
127
{
128
        if (robot >= MAXIMUM_XBEE_ID)
129
                return -1;
130

    
131
        return m.joined[robot];
132
}
133

    
134
/**
135
 * Returns the number of robots which have joined the
136
 * token ring.
137
 *
138
 * @return the number of robots in the token ring
139
 **/
140
int sensor_matrix_get_joined(void)
141
{
142
        return m.numJoined;
143
}
144

    
145
/**
146
 * Returns the maximum XBee id of a robot which can be stored
147
 * in the sensor matrix.
148
 *
149
 * @return the maximum number of robots which can be stored
150
 **/
151
int sensor_matrix_get_size(void)
152
{
153
        return MAXIMUM_XBEE_ID;
154
}
155