File: development.html

package info (click to toggle)
boswars 2.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 96,652 kB
  • sloc: cpp: 57,250; python: 1,715; sh: 25; makefile: 17
file content (166 lines) | stat: -rw-r--r-- 5,084 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!--

----	(c) Copyright 2001-2023 by Lutz Sammer, Francois Beerten and Nehal Mistry

----    This program is free software; you can redistribute it and/or modify
----    it under the terms of the GNU General Public License as published by
----    the Free Software Foundation; only version 2 of the License.
----
----    This program is distributed in the hope that it will be useful,
----    but WITHOUT ANY WARRANTY; without even the implied warranty of
----    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
----    GNU General Public License for more details.
----
----    You should have received a copy of the GNU General Public License
----    along with this program; if not, write to the Free Software
----    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
----    02111-1307, USA.
-->
    <title>Development for Bos Wars</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>

<body>

<h1>Development for Bos Wars</h1>
<hr>

This file should give you some information to help with development of
the project.<p>

For most up to date information, it is highly recommended to check the
information on the Bos Wars <a href="https://boswars.org">website</a>,
including the page on <a href="https://boswars.org/development.shtml">development</a>.<p>


<h2>IRC - Internet Relay Chat</h2>

You can try to meet other Bos Wars developers and users on the
<a href="https://libera.chat/">Libera.chat</a> IRC Network, in the
<a href="irc://irc.libera.chat/boswars">#boswars</a> channel.

<h2>Mailing list</h2>

If you want to help with development, you should 
<a href="http://archives.seul.org/bos/dev/">join</a> 
the bos-dev mailing list.

<h2>Bugs and tasks</h2>

You can find <a
href="http://savannah.nongnu.org/bugs/?group=stratagus-bos">known bugs</a>
 on the <a
href="http://boswars.org">project pages
for Bos Wars</a>.<p>

Before starting work on a bug or task, please ask on the mailing list or in the 
IRC channel whether anybody else is already working on it.

<h2>Building Bos Wars</h2>

<h3>Installing the Git client</h3>

If you want to help develop, you should use Git. 
The online <a href="https://git-scm.com/doc">Git documentation</a> will
help you master Git.

<h3>Getting Bos Wars from Git</h3>

The <a href="https://codeberg.org/boswars">Bos Wars project</a> has the following main repositories:

<ul>
    <li>boswars - The Bos Wars source code<p>
	The source code for the whole game including the engine.
    The source is licenced under the GNU General Public License.
	<b>This contains the sources needed for development.</b>

    <li>website.bos - The Bos Wars Website<p>
	The website is stored in git for easy updating and version management
	by multiple people.  This module is not needed unless you plan to update
	the website.

    <li>materials.bos - Bos Wars assets<p>
	Sources of large or difficult to generate Boswars assets like graphics
    and sounds.

</ul>


<h3>Getting Bos Wars without Git</h3>

Only releases are made outside of Git.  If you wish to be involved with
development, you should obtain the sources via Git.
Git usually remains quite stable and is easier
for you to keep up to date. Release versions of Bos Wars are available 
<a href="http://www.boswars.org/download.shtml">here</a>.

<h3>Building Bos Wars</h3>

You can find instructions for compiling Bos Wars at 
<a href="install.html">install.html</a>.<br>
Since you already have a copy of the source, you may skip 
ahead to step 2.

<h2>Source code documentation</h2>

The engine has tagged source documentation.<p>

You need either <a href="http://www.doxygen.org">DoxyGen</a> or 
<a href="http://docpp.sourceforge.net/">DOC++</a> 
to generate source code documentation.

<h3>Tags used in source code</h3>

We use the doc++ tags:<p>

Multi line source code documentation:<p>
/** ... */<p>

Single line source code documentation:<p>
/// ... <p>

Start grouping:<p>
//@{ or /*@{*/<p>

End grouping:<p>
//@} or /*@}*/<p>


<ul>
    <li>@name
    <br>Name of file or group.
    <li>@param
    <br>Describes function/macro parameter
    <li>@return
    <br>Describes function return
    <li>@see
    <br>Links to other section
</ul><p>

Please read the doxygen/doc++ documentation.

<h2>Sending a patch</h2>

Once you have completed some work, you will probably want it to be 
included in the main Bos Wars source.<p>

You can create a pull request on the
<a href="https://codeberg.org/boswars/boswars">Bos Wars Codeberg project page</a>.
<p>

Alternatively, you can create a patch with these steps:<p>
<ul>
    <li>git diff &gt; your-nickname.diff
    <li>upload 'your-nickname.diff' to the 
    <a href="http://savannah.nongnu.org/patch/?group=stratagus-bos">patch tracker</a>.
</ul>

<hr>
(C) Copyright 1998-2023 by The <a href="http://www.boswars.org">Bos Wars</a> Project 
under the <a href="gpl.html">GNU General Public License</a>.<br>
All trademarks and copyrights on this page are owned by their respective owners.<br>
</body>
</html>