src
rviz
default_plugin
tools
focus_tool.cpp
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2013, Willow Garage, Inc.
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions are met:
7
*
8
* * Redistributions of source code must retain the above copyright
9
* notice, this list of conditions and the following disclaimer.
10
* * Redistributions in binary form must reproduce the above copyright
11
* notice, this list of conditions and the following disclaimer in the
12
* documentation and/or other materials provided with the distribution.
13
* * Neither the name of the Willow Garage, Inc. nor the names of its
14
* contributors may be used to endorse or promote products derived from
15
* this software without specific prior written permission.
16
*
17
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
* POSSIBILITY OF SUCH DAMAGE.
28
*/
29
30
#include <OgreRay.h>
31
#include <OgreVector3.h>
32
#include <OgreViewport.h>
33
#include <OgreCamera.h>
34
35
#include "
rviz/viewport_mouse_event.h
"
36
#include "
rviz/load_resource.h
"
37
#include "
rviz/render_panel.h
"
38
#include "
rviz/display_context.h
"
39
#include "
rviz/selection/selection_manager.h
"
40
#include "
rviz/view_controller.h
"
41
42
#include "
rviz/default_plugin/tools/focus_tool.h
"
43
44
#include <sstream>
45
46
namespace
rviz
47
{
48
FocusTool::FocusTool
() :
Tool
()
49
{
50
}
51
52
FocusTool::~FocusTool
()
53
{
54
}
55
56
void
FocusTool::onInitialize
()
57
{
58
std_cursor_
=
getDefaultCursor
();
59
hit_cursor_
=
makeIconCursor
(
"package://rviz/icons/crosshair.svg"
);
60
}
61
62
void
FocusTool::activate
()
63
{
64
}
65
66
void
FocusTool::deactivate
()
67
{
68
}
69
70
int
FocusTool::processMouseEvent
(
ViewportMouseEvent
& event)
71
{
72
int
flags = 0;
73
74
Ogre::Vector3 pos;
75
bool
success =
context_
->
getSelectionManager
()->
get3DPoint
(event.
viewport
, event.
x
, event.
y
, pos);
76
setCursor
(success ?
hit_cursor_
:
std_cursor_
);
77
78
if
(!success)
79
{
80
Ogre::Ray mouse_ray =
event
.viewport->getCamera()->getCameraToViewportRay(
81
(
float
)event.
x
/ (
float
)event.
viewport
->getActualWidth(),
82
(float)event.
y
/ (
float
)
event
.viewport->getActualHeight());
83
84
pos = mouse_ray.getPoint(1.0);
85
setStatus
(
"<b>Left-Click:</b> Look in this direction."
);
86
}
87
else
88
{
89
std::ostringstream
s
;
90
s <<
"<b>Left-Click:</b> Focus on this point."
;
91
s.precision(3);
92
s <<
" ["
<< pos.x <<
","
<< pos.y <<
","
<< pos.z <<
"]"
;
93
setStatus
(s.str().c_str());
94
}
95
96
if
(event.
leftUp
())
97
{
98
if
(event.
panel
->
getViewController
())
99
{
100
event
.panel->getViewController()->lookAt(pos);
101
}
102
flags |=
Finished
;
103
}
104
105
return
flags;
106
}
107
108
}
// namespace rviz
109
110
#include <
pluginlib/class_list_macros.hpp
>
111
PLUGINLIB_EXPORT_CLASS
(
rviz::FocusTool
,
rviz::Tool
)
rviz::Tool::Finished
Definition:
tool.h:103
selection_manager.h
rviz::RenderPanel::getViewController
ViewController * getViewController()
Definition:
render_panel.h:90
rviz::Tool
Definition:
tool.h:56
rviz::ViewportMouseEvent::viewport
Ogre::Viewport * viewport
Definition:
viewport_mouse_event.h:145
rviz::FocusTool::activate
void activate() override
Definition:
focus_tool.cpp:62
rviz::makeIconCursor
QCursor makeIconCursor(QString url, bool fill_cache)
Definition:
load_resource.cpp:101
rviz::FocusTool::~FocusTool
~FocusTool() override
Definition:
focus_tool.cpp:52
rviz::FocusTool::FocusTool
FocusTool()
Definition:
focus_tool.cpp:48
focus_tool.h
s
XmlRpcServer s
rviz::FocusTool::deactivate
void deactivate() override
Definition:
focus_tool.cpp:66
rviz::getDefaultCursor
QCursor getDefaultCursor(bool)
Definition:
load_resource.cpp:96
view_controller.h
rviz::FocusTool::onInitialize
void onInitialize() override
Definition:
focus_tool.cpp:56
load_resource.h
rviz
Definition:
add_display_dialog.cpp:54
rviz::ViewportMouseEvent::x
int x
Definition:
viewport_mouse_event.h:147
display_context.h
class_list_macros.hpp
rviz::FocusTool
Definition:
focus_tool.h:41
viewport_mouse_event.h
rviz::DisplayContext::getSelectionManager
virtual SelectionManager * getSelectionManager() const =0
Return a pointer to the SelectionManager.
rviz::ViewportMouseEvent::leftUp
bool leftUp()
Definition:
viewport_mouse_event.h:118
render_panel.h
rviz::Tool::context_
DisplayContext * context_
Definition:
tool.h:207
rviz::FocusTool::std_cursor_
QCursor std_cursor_
Definition:
focus_tool.h:55
rviz::Tool::setStatus
void setStatus(const QString &message)
Definition:
tool.cpp:101
rviz::ViewportMouseEvent::y
int y
Definition:
viewport_mouse_event.h:148
rviz::ViewportMouseEvent::panel
RenderPanel * panel
Definition:
viewport_mouse_event.h:144
rviz::Tool::setCursor
void setCursor(const QCursor &cursor)
Set the cursor for this tool.
Definition:
tool.cpp:67
rviz::FocusTool::hit_cursor_
QCursor hit_cursor_
Definition:
focus_tool.h:56
rviz::ViewportMouseEvent
Definition:
viewport_mouse_event.h:45
rviz::SelectionManager::get3DPoint
bool get3DPoint(Ogre::Viewport *viewport, const int x, const int y, Ogre::Vector3 &result_point)
Definition:
selection_manager.cpp:178
PLUGINLIB_EXPORT_CLASS
#define PLUGINLIB_EXPORT_CLASS(class_type, base_class_type)
rviz::FocusTool::processMouseEvent
int processMouseEvent(ViewportMouseEvent &event) override
Definition:
focus_tool.cpp:70
rviz
Author(s): Dave Hershberger, David Gossow, Josh Faust
autogenerated on Sat May 27 2023 02:06:24