Skip to content

UBC-Snowbots/Software_Challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Software Challenge

UBC Snowbots Repository for the Software Challenge

Table of Contents

Installation and Setup

You will be downloading an Ubuntu ISO and multiple ROS packages with their respective dependencies. It is highly recommended that you have access to high speed internet while doing this entire setup; if you're on campus use the ubcsecure or resnet networks for best results.

  1. Install Ubuntu 18.04 (NOTE: To run you should get 18.04, as other Ubuntu Versions will be much more painful to setup with our repo not another version) (Backup your important data first) (We recommend you use a minimum of 30GB of space)
    • For dual-booting: Windows Instructions, Mac Instructions
    • Note: You should always choose the "install alongside Windows/OSX" during your installation (step 7 in the windows tutorial)
  2. If you haven't done so already, setup your UBC alumni email account here
  3. Using your UBC email account, get a JetBrains education account here
    • JetBrains will send an initial email to confirm the UBC email you inputted, once you've confirmed another email will be sent to activate your new education account; you will use this account to set up CLion later on
  4. Boot into Ubuntu for the remaining steps
  5. Install git by running sudo apt-get install git
  6. Clone this repository by running git clone https://github.com/UBC-Snowbots/Software_Challenge.git ~/Software_Challenge
  7. To start set-up run cd ~/Software_Challenge && ./get_started.sh (Do not run this script as root)
    • Just choose yes and enter your password when the terminal prompts you
  8. Build the ROS project by running source /opt/ros/melodic/setup.bash and cd ~/Software_Challenge && catkin_make
    • If everything compiles correctly and you don't get any errors, then you're good to go!

Important Notes:

  • To run CLion with ROS, you must first go in to terminal, navigate to your project (cd ~/Software_Challenge), run source devel/setup.sh and then from the same terminal run clion
  • CLion will not support auto-completion in your .cpp and .h files until you've added them to the CMake file

Coding Conventions

  • Every .cpp and .h file should start with
/*
 * Created By: Someone
 * Created On: December 1st, 2000
 * Description: A quick description of what this file does/is for
 */
  • Functions should be commented a la JavaDoc
  • The Javadoc comment (below) should be directly above every function in the header file
/**
 * One line description of the function
 *
 * A longer and more in depth description of the function
 * if it is needed.
 * 
 * @param param_one the first parameter of the function
 * @param param_two the second parameter of the function whose
 *                  description goes longer than one line
 * @return what the function returns if it returns anything
 * 
 */
  • Classes are CamelCase
  • Variables are non_camel_case
  • Constants are ALL_CAPS_WITH_UNDERSCORES
  • Functions are camelCase - Indentations are 4 spaces

Coordinate Systems

  • We try to follow ROS standards, which can be found here
  • x : forward
  • y : left
  • z : up
              +X
              ^
              |
      +θ  +<----->+ -θ
          |   |   |
          V   |   V
+Y <---------------------> -Y
              |
              |
              |
              V
              -X

Creating a new node

  • If your node is at all complicated, then this format should be followed. For simple nodes, please see below
  • Each node should be class based
  • MyNode.h should contain your class declaration
  • MyNode.cpp should contain your class definition
  • my_node.cpp should be relatively small, and should just contain a main function to run your node
  • my-node-test.cpp should contain all your gtest (unit test)
  • my_node_rostest.cpp should contain your rostest (integrated test)
  • For an example of this, please see src/sample_package
some_ros_package
|  CMakeLists.txt
|  package.xml
└───src
|   | MyNode.cpp 
|   | my_node.cpp
|
└───launch
|   | my_node.launch
|
└───include
|   | MyNode.h
| 
└───test
|   | my-node-test.cpp
|   | my_node_rostest.cpp
|   | sample_package_test.test

Creating a new simple node

  • You will not be able to write unit tests for this type of node, so it must be extremely simple
  • my_node.cpp will contain the entire node, and will probably contain a while(ros::ok()){} loop
some_ros_package
|  CMakeLists.txt
|  package.xml
└───src
|   | my_node.cpp

Testing

GTest

  • GTest is our primary testing tool at the moment. The ROS wiki has a quick intro to it here, and we also strongly recommend you read Google's introduction to it [here] (https://github.com/google/googletest/blob/master/googletest/docs/Primer.md), then setup and write a few example tests before you start using it with ROS.
  • Once you've setup your tests in ROS, run catkin_make run_tests to run them
  • To test a specific package, run catkin_make run_tests_MY_PACKAGE_NAME

Rostest

  • For tests which require more than one active node, i.e. integrated testing, the rostest framework provides a way to launch your test alongside all the nodes it requires. This is an extension on roslaunch enabling it to run test nodes. Special test nodes are nested within a <test></test> tag. This also needs a special entry under CMakelists as shown in the sample package. See more details here
  • Similar to launch files, the command is: rostest package_name package_test_file.test.

Debugging Tips

  • If something is happening that does not seem to correspond to your code, (ex. if your node is subscribing to the totally wrong topic) try deleting the build and devel folders (if present) to remove any "cached" information

About

The UBC Snowbots Software Challenge!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published