Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/README @ 5999

Last change on this file since 5999 was 5999, checked in by patrick, 18 years ago

network: added the network branche again

File size: 4.2 KB
RevLine 
[1795]1
2This is the offical README file for the game project
3
4--------------------------------------------------------
5                       orxOnox
6--------------------------------------------------------
7
8
9
10
[1800]111.Preface:
[1795]12----------
13Orxonox is a open-source vertical scroller game programed
14in c++ and OpenGL.
[4944]15If we manage to be sober enough, this game shall definitly
[1855]16become _the_ open-source vertical scroller ever.
[1795]17
[1800]182.Manifesto:
19------------
201) Alien is a great film
212) Guiness is the most delicious beer
[2551]223) If you think there is anything missing specialy in terms of story: you can be shure it's an arcade game
234) Wanna chill: ask Boozoo Bajou
[1795]24
[1800]25to be continoued...
26
27
283.Overview:
[1795]29---------
[1800]301.Preface
312.Manifesto
323.Overview
[1795]333.Contributing To The Project
[1800]344.Howto C++ Programming
355.Howto SVN
[1855]366.Coding conventions
[1795]37
38
[1800]394.Contributing To The project:
[1795]40------------------------------
41People who want to help us working on orxonox are always
[4944]42welcome:) Feel free to chip in anything you like. Wine, beer,
[1795]43coffee... If you like to help us programming orxonox, you:
44- join the developer community mailing lists
45- read this README file
[4944]46then you have multiple ways to get started.
[1795]47a) Read the hole source code and choose a topic you like
48b) check the TODO file to get a knowledge of what we need
49c) ask us for more information
50To get more informations about programming and project specs
51read the programming sections below.
52
[4944]53To start programming on orxonox you first have to download the
[1795]54newest svn tree of orxonox. You can do this by enterning following
[1796]55lines in the linux console (ensure svn to be installed with ssl
56support enabled):
[1795]57
[4944]58svn co https://svn.orxonox.net/reporx/orxonox orxonox
[1795]59
[1796]60If you haven't got ssl support in you svn tool, recompile it
[1795]61./configure --with-ssl
62make
63make install
64
65
[1800]665.Howto C++ Programming:
[1795]67------------------------
68If you are new to c/c++ programming, this project is probably
[4944]69not the best starting place to learn it. For you and the rest who
[1795]70need "refreshment" check out these guides:
71
72www.cplusplus.com/doc/tutorial
73www.4p8.com/eric.brasseur/cppcen.html
74
75
[1800]766.Howto SVN:
77------------
[1796]78For a more complete guide about this topic read the documentation
79avaiable at subversion.tigris.org.
[1795]80
[1796]81SVN (=subversion) is a version control program similar to CVS but
[4944]82newer. This program enables us to work all at the same program at
[1796]83the same time - tricky.
[1795]84
[4944]85subversion checkout https://svn.orxonox.net/reporx/orxonox orxonox
86same as: subversion co https://svn.orxonox.net.....
[1796]87
88this makes a directory orxonox at your current place in and gets
89the hole brand new source code from the server.
90
[4944]91now you can work. Remember to use 'svn copy instead of 'cp',
[1796]92'svn mv' instead of 'mv', 'svn rm' instead of 'rm'... - you got it
93I think.
94After you have made your changes to the files enter
95svn status
96or with more details: svn status -vv
97which will show you the changes you did locally on your computer.
98svn diff
99is similar but shows you all the changes in detail.
100
101svn diff > patchfile
102the patchfile you can use later in conjunction with the patch program.
103You could, for example, email this patchfile to another developer for
104review or testing prior to commit.
105
106To add a new file type
107svn add <filename>
108and to publish all your changes type
[1800]109svn commit --message "Corrected number of chees slices."
[4944]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
[1800]112change. The message can also be read from a file:
113svn commit --file logmsg
[1796]114
115If you accidently make a change you like to revert, you just can do this
116by typing:
117svn revert <filename>
118
[1800]119To keep track about the work that is running on the project use the
120command: svn log. This will show you a bref summary of all changes.
121
122
123Most of the programmer will do their work on a branch. A Branch is
124a line of development that exists independently of another line, yet
125still shares a common history. A branch always begins life as a copy
126of something, and moves on trom there, generating its own history. Later
127the two versions will merge.
128
[4944]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
[1800]131topic, it will be revised by us and merged with the trunk
132
[1855]1337.Coding Conventions
134--------------------
135Read the File CODING-STANDARDS
[1800]136
137
138#EOF
Note: See TracBrowser for help on using the repository browser.