All Projects → NUbots → robocup

NUbots / robocup

Licence: GPL-3.0 license
The NUbot's RoboCup Code

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
IDL
102 projects
TeX
3793 projects
objective c
16641 projects - #2 most used programming language
javascript
184084 projects - #8 most used programming language

LICENCE

GNU GPLv3 licence file

NUbots Robocup Project

The purpose of this software is to provide a software architecture and tools to enable a humanoid robot to play soccer against other robots. In particular, play soccer in Robocup's Kid-Size League.

Vagrant

The NUbots use Vagrant to manage and version the build environment for the Robocup project.

The following is a guide to getting you set up and ready to contribute to the Robocup project.

  1. Install the following prerequisites on your machine (packages/installers are available for Windows, OSX, and Linux):

  2. Clone this git repository onto your machine: e.g.

     $ git clone [email protected]:nubots/robocup.git ~/robocup
    
  3. Run vagrant up from within the directory just created by the clone operation: e.g.

     $ cd ~/robocup
     $ vagrant up
    

    The vagrant up command tells Vagrant to create and start a VM for the Robocup project based on the project's Vagrantfile.

    Note: The very first time vagrant up is run on your computer, it will initiate a 282 MB download (the base box for the VM). Vagrant will store the box locally in a special location, and will not need to download it again (see the boxes page of Vagrant's Getting Started guide, or Vagrant's boxes documentation if you want to know more about boxes).

    When given a choice of network interface, e.g.:

     [default] Available bridged network interfaces:
     1) en0: Wi-Fi (AirPort)
     2) p2p0
    

    Select which adapter the VM will use for its network connection by entering a number (if in doubt, the first option is likely to be the best choice).

    (While your VM is being created, you might want to learn a little more about Vagrant by reading the Getting Started Guide or the Command-Line Interface documentation)

  4. Just type $ vagrant ssh to ssh into your new VM!

    Vagrant will sync the ~/nubots/robocup directory on the VM with the root of your Robocup repository. This allows for easy editing of code on your machine, and building on the VM.

    To build Robocup, just run the following commands on the VM:

    $ cd ~/nubots/robocup
    $ make
    
  5. Make robots do awesome stuff!

    Important: Make sure to set your git identity correctly before committing to the project.

     $ git config --global user.name "Your Name"
     $ git config --global user.email [email protected]
    
     $ git config --global color.ui auto
    

Copyright (c) NUbots, University of Newcastle

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].