-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix navigation humble * more fixes * tests * changes smacc2_client_library/nav2z_client/nav2z_client/src/nav2z_client/components/waypoints_navigator/cp_waypoints_navigator.cpp * missing * progress in navigation ue * docker improvements for rta * ovpn config * instructions * formatting * Got wget command to work * minor * more changes on docker * Updated readme * More readme updates * second pass on docker ue, nvidia drivers and readme.md * minor changes * minor changes * minor * minor * changes * progress * Update README.md * Update README.md * Update README.md * updates in navigation * Bretts runtime instructions added to readme * minor change * Heading sizes in readme * improvements in navigation * fixing build * fixing format * fixing branch * progress * repos * Dockerfile referencing our work * progress on docker image for ue * missing * changes in the code * missing stuff * dockerfile and launching * finishing environment * fix save script * fixing format * missing * missing * rough terrain navigation and behaviors and ice winter demo * turn over state machine * art gallery * minor * push * waypoints fix * more changes * minor * minor * minor * navigation parameters * Añadidos waypoints y cambiado el nombre del nodo en el json de depuración que podía dar fallo * progress state machine * ue_projec_2 refactoring * tunning navigation * missing * art gallery * Update README.md * Update README.md * fixes * merge * missing code * refactoring files * updating docker --------- Co-authored-by: brettpac <[email protected]> Co-authored-by: Administrator <[email protected]> Co-authored-by: brettpac <[email protected]>
- Loading branch information
1 parent
51d0503
commit 0574b54
Showing
209 changed files
with
69,810 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
102 changes: 102 additions & 0 deletions
102
...lient/include/nav2z_client/components/waypoints_navigator/cp_waypoints_navigator_base.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
// Copyright 2021 RobosoftAI Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
/***************************************************************************************************************** | ||
* | ||
* Authors: Pablo Inigo Blasco, Brett Aldrich | ||
* | ||
******************************************************************************************************************/ | ||
#pragma once | ||
|
||
#include <nav2z_client/components/waypoints_navigator/cp_waypoints_event_dispatcher.hpp> | ||
#include <nav2z_client/nav2z_client.hpp> | ||
#include <smacc2/smacc.hpp> | ||
|
||
#include <geometry_msgs/msg/pose.hpp> | ||
|
||
namespace cl_nav2z | ||
{ | ||
struct Pose2D | ||
{ | ||
Pose2D(double x, double y, double yaw) | ||
{ | ||
this->x_ = x; | ||
this->y_ = y; | ||
this->yaw_ = yaw; | ||
} | ||
|
||
double x_; | ||
double y_; | ||
double yaw_; | ||
}; | ||
|
||
// This component contains a list of waypoints. These waypoints can | ||
// be iterated in the different states using CbNextWaiPoint | ||
// waypoint index is only incremented if the current waypoint is successfully reached | ||
class CpWaypointNavigatorBase : public smacc2::ISmaccComponent | ||
{ | ||
public: | ||
WaypointEventDispatcher waypointsEventDispatcher; | ||
|
||
CpWaypointNavigatorBase(); | ||
|
||
virtual ~CpWaypointNavigatorBase(); | ||
|
||
void onInitialize() override; | ||
|
||
// template <typename TOrthogonal, typename TSourceObject> | ||
// void onOrthogonalAllocation() | ||
// { | ||
// waypointsEventDispatcher.initialize<TSourceObject, TOrthogonal>(client_); | ||
// } | ||
|
||
void loadWayPointsFromFile(std::string filepath); | ||
|
||
void loadWayPointsFromFile2(std::string filepath); | ||
|
||
void setWaypoints(const std::vector<geometry_msgs::msg::Pose> & waypoints); | ||
|
||
void setWaypoints(const std::vector<Pose2D> & waypoints); | ||
|
||
const std::vector<geometry_msgs::msg::Pose> & getWaypoints() const; | ||
const std::vector<std::string> & getWaypointNames() const; | ||
std::optional<geometry_msgs::msg::Pose> getNamedPose(std::string name) const; | ||
geometry_msgs::msg::Pose getPose(int index) const; | ||
geometry_msgs::msg::Pose getCurrentPose() const; | ||
|
||
long getCurrentWaypointIndex() const; | ||
std::optional<std::string> getCurrentWaypointName() const; | ||
|
||
long currentWaypoint_; | ||
|
||
void rewind(int count); | ||
|
||
void forward(int count); | ||
void seekName(std::string name); | ||
|
||
void loadWaypointsFromYamlParameter( | ||
std::string parameter_name, std::string yaml_file_package_name); | ||
|
||
void notifyGoalReached(); | ||
|
||
protected: | ||
void insertWaypoint(int index, geometry_msgs::msg::Pose & newpose); | ||
|
||
void removeWaypoint(int index); | ||
|
||
std::vector<geometry_msgs::msg::Pose> waypoints_; | ||
|
||
std::vector<std::string> waypointsNames_; | ||
}; | ||
} // namespace cl_nav2z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.