Project

General

Profile

Revision 4dcab71d

ID4dcab71d65ee319c0ff8b0e0c918c36bd67977a0
Parent 32c4f513
Child 0e143737, c481adc8

Added by Alex Zirbel almost 11 years ago

Added danger_marking_blind for even dumber runaround.

If sonar doesn't work for the demo, we can use this. It drives in a circle.

View differences:

scout/libscout/src/test_behaviors/danger_marking_blind.cpp
1
/**
2
 * Copyright (c) 2011 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
#include "danger_marking_blind.h"
27

  
28
#define THRESH 200
29
#define min(x,y) ((x < y) ? x : y)
30

  
31
using namespace std;
32

  
33
void danger_marking_blind::run()
34
{    
35
    ROS_INFO("Starting Danger Marking (Blind Mode).");
36

  
37
    motors->set_sides(30, 50);
38

  
39
    while (true)
40
    {
41
        get_position();
42
        ROS_INFO("Position: (%f, %f, %f).",
43
            scout_pos->x, scout_pos->y, scout_pos->theta);
44

  
45
        if (metal_detector->query()) //FOUND SOME METAL!
46
        {
47
            paintboard->set(DISPENSE_PAINT);
48
        }
49
        else
50
        {
51
            if(paintboard->query()) //No metal, but dispensing paint;
52
            {
53
                paintboard->set(STOP_PAINT);
54
            }
55
        }
56
    }
57
}
scout/libscout/src/test_behaviors/danger_marking_blind.h
1
/**
2
 * Copyright (c) 2011 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
#ifndef _DANGER_MARKING_BLIND_H_
27
#define _DANGER_MARKING_BLIND_H_
28

  
29
#include <stdio.h>
30
#include "../behaviors/Odometry.h"
31

  
32
/**
33
 * A very simple maze solver that always turns right.
34
 */
35
class danger_marking_blind : public Odometry
36
{
37
    public:
38
        danger_marking_blind(std::string scoutname, Sensors* sensors):
39
            Odometry(scoutname, "danger_marking_blind", sensors) {};
40
        void run();
41
};
42
#endif
43

  

Also available in: Unified diff