Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 66 and Version 67 of pps/tutorial


Ignore:
Timestamp:
Sep 22, 2016, 12:23:55 PM (8 years ago)
Author:
zifloria
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • pps/tutorial

    v66 v67  
    9898Be sure to also read the comments labeled with TODO in the code files.
    9999
    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.
     100We 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
     103pwd
     104# should print:
     105#   /scratch/<your-name>/orxonox/trunk
     106wget http://svn.orxonox.net/game/code/branches/tutorial6/src/orxonox/controllers/AutonomousDroneController.{cc,h} -P src/orxonox/controllers/
     107wget http://svn.orxonox.net/game/code/branches/tutorial6/src/orxonox/worldentities/AutonomousDrone.{cc,h} -P src/orxonox/worldentities/
     108}}}
     109
     110
     111This 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.
    101112
    102113 1. Open the file ''AutonomousDrone.cc'' and have a look at the code (the file can be found in ''src/orxonox/worldentities/'').