Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of ~archive/HowtoCode


Ignore:
Timestamp:
Sep 21, 2008, 8:22:20 PM (16 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • ~archive/HowtoCode

    v1 v1  
     1[[OutdatedPage]]
     2
     3[[TracNav(TracNav/TOC)]]
     4
     5= Howto Code =
     6
     7== Operating System Specific ==
     8This is a guide on how to code and compile under certain operating systems:
     9 see the [wiki:Running SystemTable]
     10
     11== static, Operating System indendant stuff ==
     12
     13== Data Storage ==
     14for orxonox to run you must have a copy of the Data-directory on your system.
     15There are multiple Ways to get this:
     16
     17  1. Get a copy by downloading it: [https://www.orxonox.net/files/snapshots/orxonox-data-latest.tar.bz2 newest Version] from the [https://www.orxonox.net/files/snapshots/ snapshots]
     18  2. check out the Data-Directory by [http://subversion.tigris.com subversion]
     19{{{
     20svn co http://www.orxonox.net/data/trunk orxonox/data/trunk
     21}}}
     22  3. start orxonox and press the update button (not yet implemented :)) -> but soon :)
     23
     24== orxonox Specific ==
     25
     26 1. check out the Code with:
     27   {{{
     28wraith# svn co https://svn.orxonox.net/orxonox/trunk orxonox/trunk
     29   }}}
     30
     31 2. get the data repository
     32    (example for trunk)
     33{{{
     34wraith# cd orxonox/trunk
     35wraith# ./script/data.checkout
     36A  data/worlds
     37A  data/worlds/newGround.obj
     38A  data/worlds/newGround.mtl
     39A  data/worlds/DefaultWorld.oxw
     40A  data/worlds/DefaultCampaign.oxc
     41....
     42Checked out revision 27.
     43}}}
     44   alternatively you could check-out the data-repository by yourself, using:
     45{{{
     46wraith# svn co https://svn.orxonox.net/data/trunk orxonox/data/trunk
     47}}}