Goal.h
1 /*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2008, Willow Garage, Inc.
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 Willow Garage 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 OWNER 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 /* Author: Ioan Sucan */
36 
37 #ifndef OMPL_BASE_GOAL_
38 #define OMPL_BASE_GOAL_
39 
40 #include "ompl/base/State.h"
41 #include "ompl/base/SpaceInformation.h"
42 #include "ompl/util/ClassForward.h"
43 #include "ompl/base/GoalTypes.h"
44 #include "ompl/util/Console.h"
45 #include <iostream>
46 #include <boost/concept_check.hpp>
47 #include <vector>
48 
49 namespace ompl
50 {
51  namespace base
52  {
54 
55  OMPL_CLASS_FORWARD(Goal);
57 
62  class Goal
63  {
64  public:
65  // non-copyable
66  Goal(const Goal&) = delete;
67  Goal& operator=(const Goal&) = delete;
68 
70  Goal(const SpaceInformationPtr &si);
71 
73  virtual ~Goal()
74  {
75  }
76 
78  template<class T>
79  T* as()
80  {
82  BOOST_CONCEPT_ASSERT((boost::Convertible<T*, Goal*>));
83 
84  return static_cast<T*>(this);
85  }
86 
88  template<class T>
89  const T* as() const
90  {
92  BOOST_CONCEPT_ASSERT((boost::Convertible<T*, Goal*>));
93 
94  return static_cast<const T*>(this);
95  }
96 
98  GoalType getType() const
99  {
100  return type_;
101  }
102 
104  bool hasType(GoalType type) const
105  {
106  return (type_ & type) == type;
107  }
108 
111  {
112  return si_;
113  }
114 
117  virtual bool isSatisfied(const State *st) const = 0;
118 
130  virtual bool isSatisfied(const State *st, double *distance) const;
131 
138  virtual bool isStartGoalPairValid(const State * /* start */, const State * /* goal */) const
139  {
140  return true;
141  }
142 
144  virtual void print(std::ostream &out = std::cout) const;
145 
146  protected:
147 
150 
153  };
154 
155  }
156 }
157 
158 #endif
virtual void print(std::ostream &out=std::cout) const
Print information about the goal.
Definition: Goal.cpp:52
const T * as() const
Cast this instance to a desired type.
Definition: Goal.h:89
Abstract definition of goals.
Definition: Goal.h:62
bool hasType(GoalType type) const
Check if this goal can be cast to a particular goal type.
Definition: Goal.h:104
virtual ~Goal()
Destructor.
Definition: Goal.h:73
Main namespace. Contains everything in this library.
Definition: Cost.h:42
GoalType type_
Goal type.
Definition: Goal.h:149
virtual bool isStartGoalPairValid(const State *, const State *) const
Since there can be multiple starting states (and multiple goal states) it is possible certain pairs a...
Definition: Goal.h:138
A shared pointer wrapper for ompl::base::SpaceInformation.
T * as()
Cast this instance to a desired type.
Definition: Goal.h:79
Definition of an abstract state.
Definition: State.h:50
virtual bool isSatisfied(const State *st) const =0
Return true if the state satisfies the goal constraints.
SpaceInformationPtr si_
The space information for this goal.
Definition: Goal.h:152
GoalType
The type of goal.
Definition: GoalTypes.h:46
const SpaceInformationPtr & getSpaceInformation() const
Get the space information this goal is for.
Definition: Goal.h:110
GoalType getType() const
Return the goal type.
Definition: Goal.h:98