Skip to content

netadr/robot-code-public

 
 

Repository files navigation

1678 Robot Code

Buildkite

This repository holds all of our robot code, starting from the 2016 offseason.

Structure

  • third_party: Code written by people not on our team.
  • muan: Code that is shared between all robots.
  • tools: Things that are used to build our code.

The only one of those three that you are likely to care about is muan.

The code for specific robots is in a directory starting with either the letter "o" for offseason or "c" for competition, and ending with the year that that robot is from. For example, o2016 is our incredibly cute 2016 offseason robot.

Building the Code

We use bazel to build our code. You must be running linux to use bazel. A typical bazel build command would look like this:

  • For example, if you want to build main.cpp in o2016 folder:
bazel build //o2016:main

Keep in mind that you DO NOT include the file type in the name while building or testing

You should also test anything that you change:

bazel test //c2018/submarine_subsystem/...

Before you push your code, you can run our automated test script. This is what Buildkite runs, so if you don't like failed Buildkite builds you should always run it before pushing:

./scripts/tests.sh

Style Guide

We use the Google C++ style guide (mostly). You should read all of it and make sure that your code adheres to it. There are a few parts that we do not follow, and are aware of:

  • We use .cpp as the source file extension
  • We do make use of templates in some places

In addition to the Google C++ style guide, you should also make sure that you are writing good commit messages! Here are a couple articles on this: 1 2.

Particularly, you should make sure to write your commits in the imperative mood ("Add thingamadoodle", not "Added thingamadoodle") and capitalize the first word. If the change is complicated, use multiple lines to describe it.

Additionally, you should try to make your commits as small as possible (often referred to as making "atomic" commits). This helps other people understand what you are doing.

We also use bazel's Buildtools to format BUILD files. The formatter establishes quite a few conventions. Highlights include:

  • Use four spaces for indenting
  • Use double quotes (") instead of single quotes (')

We use SI units and radians.

Contributing

Here's how to get your code into the main robot repository:

If you've just joined the team:

  1. Make an account on GitHub.
  2. Ask the Software Robot lead to add your account to the frc1678 Software Robot team.

If it's the first time you've contributed to this repo:

  1. Fork this repo
  2. Log onto github and navigate to the repo robot-code.
  3. Click the "Fork" button in the upper right corner of the screen.
  4. Clone from the master.
  • git clone https://github.com/frc1678/robot-code.git.
  1. Add yourself as a remote.
  • 'git remote add <your_name> https://github.com/<your_username>/robot-code', where <your_username> is your github username.

Any time you want to make a change:

  1. Create and checkout a new branch.
  • git checkout -b <your_branch_name>, where <your_branch_name> is a descriptive name for your branch. For example fix-shooter-wheel, two-ball-auto, or climbing. Use dashes in the branch name, not underscores.
  1. Make whatever code changes you want/need/ to make. Be sure to write tests for your changes!
  2. Commit your work locally.
  • Try to make your commits as atomic (small) as possible. For example, moving functions around should be different from adding features, and changes to one subsystem should be in a different commit than changes to another subsystem.
  • Follow these conventions for commit messages. Or else.
  • If your change is anything more than a few lines or small fixes, don't skip the extended description. If you are always using git commit with the -m option, stop doing that.
  1. Push to your forked repo.
  • git push <your_remote> <your_branch>.
    • <your_remote> is the name of your forked repo on your computer
    • <your_branch> is the name of the brach you created
  1. Submit a pull request.
  2. Log into github.
  3. Go to the page for your forked repo.
  4. Select the branch that you just pushed from the "Branch" dropdown menu.
  5. Click "Comapare & Pull Request".
  6. Review the changes that you made.
  7. If you are happy with your changes, click "Create Pull Request".
  8. Wait
  • People must review (and approve of) your changes before they are merged.
    • Specifically, the rules are that one of the following two conditions must be true for it to get merged:
      1. 1 mentor and 1 other person have approved
      2. 2 experienced students and one other person have approved
  • If there are any concerns about your pull request, fix them. Depending on how severe the concerns are, the pull request may be merged without it, but everyone will be happier if you fix your code. To update your PR, just push to the branch on your forked repo.
  • Don't dismiss someone's review when you make changes - instead, ask them to re-review it.
  1. Ask for approval
  • Ask at least one reviewer with write access to approve your pull request before merging it into master, becasue even if it complies, it might not do what you want it to do.
  1. Merge your changes into master
  • If there are no conflicts, push the "Merge Pull Request" button, write a good commit message, and merge the changes.
  • If there are conflicts, fix them locally on your branch, push them, wait for Buildkite to pass, and then merge.
  1. ???
  2. Profit

Helpful Tips

Other remotes

You can add "remotes" to github that refer to other people's robot code repos. This allows you to, for example, take a look at someone else's code to look over it, you would be able to git checkout wesley/branch-that-breaks-everything to see it. To add a remote, just do git remote add <name_of_person> https://github.com/<username>/robot-code. Once you've done this, you can use git fetch <name_of_person> to get updated code from other people's repos!

Setting up a new computer

Although we have a third_party directory for the majority of our dependencies, our code still requires some external ones. These are (for manual installation):

  • opencv2 (apt package: libopencv-dev; aur package opencv2-git)
  • clang (apt/aor package:clang)
  • clang-format (apt/aor package: clang-format)
  • python2 (apt package: python; aor package: python2)
  • python2-pip (optional; apt package: python-pip; aor package python2-pip) Installing from both aor/apt/aur and pip WILL break python.
  • Python Deps:
    • numpy (apt package: python-numpy; aor package: python2-numpy; pip package: numpy)
    • scipy (apt package: python-scipy; aor package: python2-scipy; pip package: scipy)
    • matplotlib (apt package: python-matplotlib; aor package: python2-matplotlib; pip package matplotlib)
    • tk (apt package: python-tk; aor package: tk; pip package: none, apt/aor/aur/source required for install)
    • gflags (apt package: python-gflags; aor package: python2-gflags; pip package: gflags)
    • glog (apt/aor/aur package: none (compile from source required); pip package: glog)
  • WPILib toolchain (apt ppa: ppa:wpilib/toolchain, apt package: frc-toolchain, aur package: frc-2017)
  • Bazel: (apt users: follow instructions at https://bazel.build/versions/master/docs/install.html#ubuntu; aur: bazel)
    • Use Bazel version 0.16.1, newer versions might not work

If you're running Arch/Manjaro or Ubuntu/Debian (should work with debian), then simply clone this repository and run: ./scripts/setup/frcsetup-arch or ./scripts/setup/frcsetup-ubuntu

About

Contains the code for all the robots!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 81.1%
  • Python 16.9%
  • HTML 1.2%
  • Other 0.8%