]> de.git.xonotic.org Git - xonotic/xonotic.wiki.git/blob - Repository_Access.md
Updated XCode download link as it has moved to sourceforge, minor markdown changes
[xonotic/xonotic.wiki.git] / Repository_Access.md
1 Repository Access
2 =================
3
4 Xonotic uses several Git repositories. There’s a helper script in the main repository to aid in checking out all relevant repositories and help you with building and running Xonotic.
5 The repository also contains several branches next to the stable “master” branch. So if you’re interested in the progress of a certain feature, or want to help or create a new one, you can checkout the appropriate branch.
6 For information on how to obtain write access, skip down to the “[Getting write access](Repository_Access#contributing-and-getting-write-access)” section.
7
8 For more information about Git we have a page on the wiki [here](Git).
9
10 Setting up the development environment
11 --------------------------------------
12
13 The first thing you must do in order to begin development is set up your system to be able to download and compile the Xonotic game data.
14
15 ### Linux
16
17 Linux already has an adequate base for development, all we really need to do here is install the **dependencies** for the download/compilation process and then we can move right along to cloning the data.
18
19 **Ubuntu Dependencies** (independent package x11-proto-devel dependencies fill the rest of the Debian package dependencies):
20
21     sudo apt-get install build-essential xserver-xorg-dev x11proto-xf86dri-dev x11proto-xf86dga-dev x11proto-xf86vidmode-dev libxxf86dga-dev libxcb-xf86dri0-dev libxpm-dev libxxf86vm-dev libsdl2-dev libsdl2-image-dev libclalsadrv-dev libasound2-dev libxext-dev libjpeg-turbo8-dev git-core unzip wget
22
23 Note: If using **i386** architecture, you can replace libdsl1.2debian by libsdl1.2debian:**i386** in the list above. On Debian, use libjpeg8-dev if libjpeg-turbo8-dev isn’t available in the package repositories. To be able to download maps from game servers when using Xonotic for online gaming, you will also need **curl** installed on your system.
24
25 For **Fedora** and other **RPM based** distro’s, compiling dependencies are as follows:
26
27     x11-proto-devel libalsa2-static-devel libjpeg62-devel libjpeg62-static-devel libSDL2-devel
28
29 For **Archlinux** the dependencies can be installed via the following command:
30
31     sudo pacman -S alsa-lib curl libjpeg-turbo libmodplug libpng libvorbis libxpm libxxf86dga libxxf86vm sdl2 unzip
32
33 ### Windows
34
35 By default, Windows has no real environment to handle the necessary scripting and compiling tools for building Xonotic. So, what we have to do is install something called [msysgit](https://github.com/msysgit/msysgit/releases) to allow us to have a similar environment as on Linux. In this case, we want the download which is entirely self contained (including **build-essentials** and other corely required dependencies), which at the time of writing this is called “**msysGit-netinstall-1.9.5-preview20150319.exe.**” Simply follow the instructions on screen at this point. **NOTE: Unless you know what you’re doing, install with default settings/directories.**
36
37 Once you have completed the installation, you should be able to launch the msysgit shell by simply finding “**msys.bat**”- by default, it is located at **C:**, and you can use this shell to continue on with the guide and clone and compile the Xonotic repositories. It is recommended that you make a shortcut to msysgit (simply right click the shell and hit “Create Shortcut”) for easier access on your desktop or in your start menu.
38
39 ### Mac OSX
40
41 You must first install **XCode** which comes on your installation DVD or can be downloaded from the Apple website. This package provides tools like **Git and GCC**, which are needed for successful checkout and compilation of Xonotic. Some versions of XCode come with Git and others don’t - if you don’t have Git after installing XCode get it here: [XCode installer](http://sourceforge.net/projects/git-osx-installer/files/)
42
43 After your development environment is all set up, you can continue on to cloning the git repository and compiling Xonotic.
44
45
46 Cloning the repository and compiling
47 ------------------------------------
48
49 Making sure that your environment is set up properly, you can do the following to begin downloading and compilation (execute the first line only to download):
50
51     git clone git://git.xonotic.org/xonotic/xonotic.git
52     cd xonotic
53     ./all update -l best
54
55 Take care to do these steps as a **normal user** on Linux (not as superuser(aka root)), otherwise you’ll have to take care about the file permissions later on.
56
57 The **git://** protocol uses port **9418**, which may be a problem if you’re behind a **strict firewall**. You may instead use the clone url <code>http://git.xonotic.org/xonotic/xonotic.git</code> (however, using the git protocol directly is preferred for performance reasons).
58
59 After that, you have a working checkout of the repository. The game can be compiled and run with the following commands:
60
61     ./all compile
62     ./all run
63
64 The _run_ line can be followed by one of “glx” (Linux native), “sdl” (input/sound managed by SDL), agl (OSX native), wgl (Windows native), or “dedicated” (for server hosting) to choose which executable to run or compile. Seen as follows:
65
66     ./all compile dedicated
67     ./all run wgl
68     ./all run sdl
69
70 The _run_ command can also be followed by standard DarkPlaces commandline arguments:
71
72     ./all run +vid_fullscreen 0
73
74 To update your Git clone, you can repeat the commands above without the first “git clone” line- And don’t forget to compile after you update- Like this:
75
76     cd xonotic
77     ./all update
78     ./all compile
79
80
81 Contributing and getting write access
82 -------------------------------------
83
84 A condition for write (push) access is that you agree that any code or data you push will be licensed under the General Public License, version 2, with or without the “or any later version” clause. In case the directory the changes apply to contains a LICENSE or COPYING file indicating another license, then your pushed code has to be dual licensed appropriately. Subdirectories currently having a dual license:
85 \* data/qcsrc/warpzonelib - dual licensed as “GPLv2 or later” or MIT license.
86 In case the code you pushed was not written by you, it is your responsibility to ensure proper licensing.
87
88 To apply for write access, make an issue of type “Support” in the category “Repository” and attach your public SSH key to it. (Windows users: see the Windows section below for more on SSH keys)
89
90 ### Windows/Linux/OS X
91
92 Get a checkout (see above), and do:
93
94     ./all keygen
95
96 and follow the instructions that are shown.
97
98 After that, you can write to the repository using the usual git commands (commit, push).
99
100 Alternatively, you can use the helper script “all”.
101 It supports the following commands:
102
103     ./all update
104
105 This command updates all the Xonotic repositories.
106
107     ./all branch
108
109 Lists the branches you are currently on, in the respective repositories.
110
111     ./all branches
112
113 Lists all the branches known for all the respective repositories.
114
115     ./all compile
116
117 Compiles the game, assuming that you have the required libs installed.
118
119     ./all checkout BRANCH
120
121 Switch to that branch in all repositories where its available.
122
123     ./all commit
124
125 This command commits and pushes your local changes.
126
127     ./all run xonotic
128
129 Starts the Xonotic client
130
131     ./all run dedicated xonotic
132
133 Starts a Xonotic dedicated server
134
135 General contributor guidelines
136 ------------------------------
137
138 1.  Before creating your local branch and committing to it, make sure you’ve configured your user settings such as your name which will display in the logs (in TortoiseGit: Settings > Git > Config).
139 2.  Try naming your branch myname/mychange for each patch. For instance, if your name is Alex and the change you are committing is a menu fix, use something like alex/menufix.
140
141 Further git information
142 -----------------------
143
144 About tracking remote branches:
145 http://git-scm.com/book/en/v2/Git-Branching-Remote-Branches
146
147 This wiki’s [Git](Git) page.
148
149 A tutorial to Git for SVN users:
150 http://git-scm.org/course/svn.html
151