| 1 | [[OutdatedPage]] |
| 2 | |
| 3 | [[TracNav(TracNav/TOC)]] |
| 4 | |
| 5 | = Howto Code = |
| 6 | |
| 7 | == Operating System Specific == |
| 8 | This 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 == |
| 14 | for orxonox to run you must have a copy of the Data-directory on your system. |
| 15 | There 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 | {{{ |
| 20 | svn 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 | {{{ |
| 28 | wraith# svn co https://svn.orxonox.net/orxonox/trunk orxonox/trunk |
| 29 | }}} |
| 30 | |
| 31 | 2. get the data repository |
| 32 | (example for trunk) |
| 33 | {{{ |
| 34 | wraith# cd orxonox/trunk |
| 35 | wraith# ./script/data.checkout |
| 36 | A data/worlds |
| 37 | A data/worlds/newGround.obj |
| 38 | A data/worlds/newGround.mtl |
| 39 | A data/worlds/DefaultWorld.oxw |
| 40 | A data/worlds/DefaultCampaign.oxc |
| 41 | .... |
| 42 | Checked out revision 27. |
| 43 | }}} |
| 44 | alternatively you could check-out the data-repository by yourself, using: |
| 45 | {{{ |
| 46 | wraith# svn co https://svn.orxonox.net/data/trunk orxonox/data/trunk |
| 47 | }}} |