100 | | We created for you the skeleton of an autonomous drone. You can find the code in the files ''src/orxonox/worldentities/AutonomousDrone.{cc|h}'' and ''src/orxonox/controllers/AutonomousDroneController.{cc|h}'' in the trunk folder that you checked out from our repository. |
| 100 | We created for you the skeleton of an autonomous drone. You can download them by running these commands: |
| 101 | {{{ |
| 102 | # make sure you're in the right folder |
| 103 | pwd |
| 104 | # should print: |
| 105 | # /scratch/<your-name>/orxonox/trunk |
| 106 | wget http://svn.orxonox.net/game/code/branches/tutorial6/src/orxonox/controllers/AutonomousDroneController.{cc,h} -P src/orxonox/controllers/ |
| 107 | wget http://svn.orxonox.net/game/code/branches/tutorial6/src/orxonox/worldentities/AutonomousDrone.{cc,h} -P src/orxonox/worldentities/ |
| 108 | }}} |
| 109 | |
| 110 | |
| 111 | This will download the template files to ''src/orxonox/worldentities/AutonomousDrone.{cc|h}'' and ''src/orxonox/controllers/AutonomousDroneController.{cc|h}'' in the trunk folder that you checked out from our repository. |