Changeset 4944 in orxonox.OLD for orxonox/trunk/README
- Timestamp:
- Jul 23, 2005, 2:18:59 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/README
r2551 r4944 13 13 Orxonox is a open-source vertical scroller game programed 14 14 in c++ and OpenGL. 15 If we manage to be sober enough, this game shall definitly 15 If we manage to be sober enough, this game shall definitly 16 16 become _the_ open-source vertical scroller ever. 17 17 … … 40 40 ------------------------------ 41 41 People who want to help us working on orxonox are always 42 welcome:) Feel free to chip in anything you like. Wine, beer, 42 welcome:) Feel free to chip in anything you like. Wine, beer, 43 43 coffee... If you like to help us programming orxonox, you: 44 44 - join the developer community mailing lists 45 45 - read this README file 46 then you have multiple ways to get started. 46 then you have multiple ways to get started. 47 47 a) Read the hole source code and choose a topic you like 48 48 b) check the TODO file to get a knowledge of what we need … … 51 51 read the programming sections below. 52 52 53 To start programming on orxonox you first have to download the 53 To start programming on orxonox you first have to download the 54 54 newest svn tree of orxonox. You can do this by enterning following 55 55 lines in the linux console (ensure svn to be installed with ssl 56 56 support enabled): 57 57 58 svn co https:// open.datacore.ch/pw/orxonox orxonox58 svn co https://svn.orxonox.net/reporx/orxonox orxonox 59 59 60 60 If you haven't got ssl support in you svn tool, recompile it … … 67 67 ------------------------ 68 68 If 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 69 not the best starting place to learn it. For you and the rest who 70 70 need "refreshment" check out these guides: 71 71 … … 80 80 81 81 SVN (=subversion) is a version control program similar to CVS but 82 newer. This program enables us to work all at the same program at 82 newer. This program enables us to work all at the same program at 83 83 the same time - tricky. 84 84 85 subversion checkout https:// open.datacore.ch/pw/orxonox orxonox86 same as: subversion co https:// open.datacore....85 subversion checkout https://svn.orxonox.net/reporx/orxonox orxonox 86 same as: subversion co https://svn.orxonox.net..... 87 87 88 88 this makes a directory orxonox at your current place in and gets 89 89 the hole brand new source code from the server. 90 90 91 now you can work. Remember to use 'svn copy instead of 'cp', 91 now you can work. Remember to use 'svn copy instead of 'cp', 92 92 'svn mv' instead of 'mv', 'svn rm' instead of 'rm'... - you got it 93 93 I think. … … 108 108 and to publish all your changes type 109 109 svn 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 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 112 112 change. The message can also be read from a file: 113 113 svn commit --file logmsg … … 127 127 the two versions will merge. 128 128 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 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 131 131 topic, it will be revised by us and merged with the trunk 132 132
Note: See TracChangeset
for help on using the changeset viewer.