Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4944 in orxonox.OLD for orxonox/trunk/README


Ignore:
Timestamp:
Jul 23, 2005, 2:18:59 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: opened and saved some files, and also rewritten some organizatory stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/README

    r2551 r4944  
    1313Orxonox is a open-source vertical scroller game programed
    1414in c++ and OpenGL.
    15 If we manage to be sober enough, this game shall definitly 
     15If we manage to be sober enough, this game shall definitly
    1616become _the_ open-source vertical scroller ever.
    1717
     
    4040------------------------------
    4141People who want to help us working on orxonox are always
    42 welcome:) Feel free to chip in anything you like. Wine, beer, 
     42welcome:) Feel free to chip in anything you like. Wine, beer,
    4343coffee... If you like to help us programming orxonox, you:
    4444- join the developer community mailing lists
    4545- read this README file
    46 then you have multiple ways to get started. 
     46then you have multiple ways to get started.
    4747a) Read the hole source code and choose a topic you like
    4848b) check the TODO file to get a knowledge of what we need
     
    5151read the programming sections below.
    5252
    53 To start programming on orxonox you first have to download the 
     53To start programming on orxonox you first have to download the
    5454newest svn tree of orxonox. You can do this by enterning following
    5555lines in the linux console (ensure svn to be installed with ssl
    5656support enabled):
    5757
    58 svn co https://open.datacore.ch/pw/orxonox orxonox
     58svn co https://svn.orxonox.net/reporx/orxonox orxonox
    5959
    6060If you haven't got ssl support in you svn tool, recompile it
     
    6767------------------------
    6868If you are new to c/c++ programming, this project is probably
    69 not the best starting place to learn it. For you and the rest who 
     69not the best starting place to learn it. For you and the rest who
    7070need "refreshment" check out these guides:
    7171
     
    8080
    8181SVN (=subversion) is a version control program similar to CVS but
    82 newer. This program enables us to work all at the same program at 
     82newer. This program enables us to work all at the same program at
    8383the same time - tricky.
    8484
    85 subversion checkout https://open.datacore.ch/pw/orxonox orxonox
    86 same as: subversion co https://open.datacore....
     85subversion checkout https://svn.orxonox.net/reporx/orxonox orxonox
     86same as: subversion co https://svn.orxonox.net.....
    8787
    8888this makes a directory orxonox at your current place in and gets
    8989the hole brand new source code from the server.
    9090
    91 now you can work. Remember to use 'svn copy instead of 'cp', 
     91now you can work. Remember to use 'svn copy instead of 'cp',
    9292'svn mv' instead of 'mv', 'svn rm' instead of 'rm'... - you got it
    9393I think.
     
    108108and to publish all your changes type
    109109svn commit --message "Corrected number of chees slices."
    110 svn commit will send all of your changs to the repository. When you 
    111 commit a change, you need to supply a log message, describing your 
     110svn commit will send all of your changs to the repository. When you
     111commit a change, you need to supply a log message, describing your
    112112change. The message can also be read from a file:
    113113svn commit --file logmsg
     
    127127the two versions will merge.
    128128
    129 If you are working on orxonox you will have your own branch in which you 
    130 will program, some sort of sand-box. If you finish your work on your 
     129If you are working on orxonox you will have your own branch in which you
     130will program, some sort of sand-box. If you finish your work on your
    131131topic, it will be revised by us and merged with the trunk
    132132
Note: See TracChangeset for help on using the changeset viewer.