Main Page
Namespaces
Namespace List
Classes
Class List
Class Hierarchy
Class Members
All
Functions
Variables
Enumerations
Files
File List
File Members
All
Functions
src
demo_palettes.cpp
Go to the documentation of this file.
1
/*
2
* Software License Agreement (BSD License)
3
*
4
* Copyright (c) 2020, Locus Robotics
5
* All rights reserved.
6
*
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions
9
* are met:
10
*
11
* * Redistributions of source code must retain the above copyright
12
* notice, this list of conditions and the following disclaimer.
13
* * Redistributions in binary form must reproduce the above
14
* copyright notice, this list of conditions and the following
15
* disclaimer in the documentation and/or other materials provided
16
* with the distribution.
17
* * Neither the name of the copyright holder nor the names of its
18
* contributors may be used to endorse or promote products derived
19
* from this software without specific prior written permission.
20
*
21
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
* POSSIBILITY OF SUCH DAMAGE.
33
*/
34
35
#include <
robot_nav_rviz_plugins/nav_grid_palette.h
>
36
#include <string>
37
#include <vector>
38
39
namespace
robot_nav_viz_demos
40
{
41
using
color_util::ColorRGBA24
;
42
43
class
MegaPalette
:
public
robot_nav_rviz_plugins::NavGridPalette
44
{
45
public
:
46
std::string
getName
()
const override
{
return
"mega"
; }
47
bool
hasTransparency
()
const override
{
return
true
; }
48
std::vector<ColorRGBA24>
getColors
()
const override
49
{
50
std::vector<ColorRGBA24> colors(6);
51
colors[0] =
ColorRGBA24
(0, 0, 0, 0);
52
colors[1] =
ColorRGBA24
(0, 0, 0, 255);
53
colors[2] =
ColorRGBA24
(0, 112, 236, 255);
54
colors[3] =
ColorRGBA24
(0, 232, 216, 255);
55
colors[4] =
ColorRGBA24
(252, 228, 160, 255);
56
colors[5] =
ColorRGBA24
(255, 255, 255, 255);
57
return
colors;
58
}
59
};
60
61
class
GreenPalette
:
public
robot_nav_rviz_plugins::NavGridPalette
62
{
63
public
:
64
std::string
getName
()
const override
{
return
"green"
; }
65
bool
hasTransparency
()
const override
{
return
true
; }
66
std::vector<ColorRGBA24>
getColors
()
const override
67
{
68
std::vector<ColorRGBA24> colors(6);
69
colors[0] =
ColorRGBA24
(0, 0, 0, 0);
70
colors[1] =
ColorRGBA24
(0, 0, 0, 255);
71
colors[2] =
ColorRGBA24
(0, 148, 0, 255);
72
colors[3] =
ColorRGBA24
(252, 252, 252, 255);
73
colors[4] =
ColorRGBA24
(252, 228, 160, 255);
74
colors[5] =
ColorRGBA24
(255, 255, 255, 255);
75
return
colors;
76
}
77
};
78
79
}
// namespace robot_nav_viz_demos
80
81
#include <
pluginlib/class_list_macros.h
>
82
PLUGINLIB_EXPORT_CLASS
(
robot_nav_viz_demos::MegaPalette
,
robot_nav_rviz_plugins::NavGridPalette
)
83
PLUGINLIB_EXPORT_CLASS
(
robot_nav_viz_demos::GreenPalette
,
robot_nav_rviz_plugins::NavGridPalette
)
robot_nav_viz_demos::GreenPalette::getColors
std::vector< ColorRGBA24 > getColors() const override
Definition:
demo_palettes.cpp:66
color_util::ColorRGBA24
robot_nav_viz_demos::GreenPalette::hasTransparency
bool hasTransparency() const override
Definition:
demo_palettes.cpp:65
class_list_macros.h
PLUGINLIB_EXPORT_CLASS
#define PLUGINLIB_EXPORT_CLASS(class_type, base_class_type)
robot_nav_viz_demos::MegaPalette
Definition:
demo_palettes.cpp:43
robot_nav_viz_demos::GreenPalette
Definition:
demo_palettes.cpp:61
robot_nav_viz_demos::MegaPalette::getColors
std::vector< ColorRGBA24 > getColors() const override
Definition:
demo_palettes.cpp:48
nav_grid_palette.h
robot_nav_viz_demos::GreenPalette::getName
std::string getName() const override
Definition:
demo_palettes.cpp:64
robot_nav_rviz_plugins::NavGridPalette
robot_nav_viz_demos::MegaPalette::getName
std::string getName() const override
Definition:
demo_palettes.cpp:46
robot_nav_viz_demos
Definition:
demo_palettes.cpp:39
robot_nav_viz_demos::MegaPalette::hasTransparency
bool hasTransparency() const override
Definition:
demo_palettes.cpp:47
robot_nav_viz_demos
Author(s):
autogenerated on Sun Jul 3 2022 02:48:24