forked from FIDOSOFT/maximus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HACKING
229 lines (193 loc) · 7.6 KB
/
HACKING
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
Last Update: Thu Jun 5 19:48:29 EDT 2003 by Wes
Some notes on hacking Maximus:
- The code base for the UNIX (and UNIX-like operating systems) is based upon
the "common" Maximus code base (common to OS/2, Windows, and DOS). Where
the common code-base diverges, the code base which uses OS facilities
which are either more like UNIX or more powerful (usually the same
thing ;) has been selected. As such, the code base is a little of bit of
OS/2, a little bit of Windows, all rolled into one. Also, if one stream
had assembly code while another didn't, the one without assembler was
(generally) chosen.
Where practical, some sections of code were re-written to work under
UNIX. Examples of this include the direct video routines in Vio.c, which
were implemented with curses calls. In many other situations, the native
OS's function call was studied, along with the way Maximus uses that
function. Appropriate behaviour was then emulated -- for example, the
OS/2 VioWrtTTY() call was emulated with curses calls.
- Major code changes to allow Maximus to run under a new platform should
be guarded with compiler #defines.
There are four major compiler #defines recognized for the UNIX port:
UNIX: Code which is specific to UNIX and not appropriate for OS/2, DOS,
Windows
BSD: Code which is specific to the BSD variants (BSDI, FreeBSD, OS X,
NetBSD, SunOS 4, etc)
LINUX: Code which is specific to UNIX-like operating systems with Linux
kernels
SYSV: Code which is specific to AT&T System Vr4 UNIX(tm) Variants
(SunOS 5, AIX, HP/UX, etc)
Minor #defines such as SUNOS4 and SOLARIS may be defined in
vars_${PLATFORM}.mk; however OS-native defines (such as __FreeBSD__)
are preferred.
Please be sure to use defines with the most appropriate scope. If you
are unsure of what platforms a change needs to be made on, it should
be discussed with other Maximus developers before commiting to the CVS
repository.
- Some notes with respect to comments:
If you're hacking maximus and gaining an understanding of parts of it,
you should do us all a favour and document your knowledge in Doxygen
format. This allows the HTML source browser to be more useful, as
well as the API man pages, RTF documentation, etc, etc.
Here are some samples for what Doxygen comments must look like:
/** @file thisfile.c Description of the file, followed by a dot.
* @author Your Name (assuming you wrote the initial revision)
* @date Date the file appeared in the CVS
*
* Some more information about the file goes in here. This is the
* "long" description in the web docs.
*/
/* This comment is invisible to doxygen. It should be used for
* internal notes. It's invisible because it started with one
* asterix, not two.
*/
/* This comment is invisibile
** as well. I particularly like
** this, style as it really stands
** out from the Doxygen stuff.
*/
/**
* This function implements something neat. The previous
* sentence was the "short description", and the dot is
* significant. The other sentences in this paragraph are
* are the "long description".
*
* Doxygen descriptions
* - can have
* - bulleted
* - text,
*
* -# Or
* -# Numbered
* -# Lists
*
* <pre>
* As well as
* carefully
* pre-formatted
* text
* </pre>
*
* @param argument1 used for this
* @param argument2 user for that
* @returns 0 on success
*
* @note Advisory notes can go in here. They continue
* until the next Doxygen token.
*
* @warning Warnings go here, they have the same syntax
* as notes, but are rendered in menacing text.
*
* @see thisfunc() thatfunc()
* @note When referencing other functions in Doxygen
* comments, make sure you add () after the
* function name, so Doxygen knows to make
* a hyper link
*/
int somethingNeat(int argument1, char *argument2)
{
return 0;
}
Here's how you document a structure:
/** Contains greeting information in many languages */
struct hello
{
char *spanish; /**< Greeting in spanish */
char *german; /**< Greeting in german */
char *french; /**< Bonjour */
char *english; /**< 'allo */
char *aussie; /**< G'day, mate! */
char *canuck; /**< howzitgoin, eh? */
};
Or global variables:
int a; /**< description for int a */
/** description for int b */
int b;
You see, the < symbol attaches the comment to the previous block of
code, where as the default is to attach it to the next block.
You can even do #defines:
#define DOSNAME_MAX 8+3 /**< Maximum size of a DOS file name */
If you have any further questions, consult the Doxygen documentation. There's lots more
you can do; including groups, groups of groups, and other wonderful things.
- If you're hacking on the Maximus sources, please stick with whatever indendation style is
in the current file. If you are starting a new file, please use my indentation style. It
is essentially K&R with newlines preceeding the open curly braces, and ANSI-style
function declarations. comdll/ipcomm.c is probably a fairly good example. Also, I like to
push one space between the # and the precompiler directive for each cpp scope, and the
# is always in column one.. i.e.
#if defined(UNIX)
# if defined(LINUX)
# define LINUX_RULES
# endif /* LINUX */
#endif /* UNIX */
int main(int argc, char *argv[])
{
printf("Hello World\n");
return 0;
}
If you are an emacs user, you may want to consider use wes-c-style:
----------------- .emacs ------------------
(defun init-emacs ()
(message "Initializing Emacs Settings...")
(setq default-major-mode 'c-mode)
(defvar display-time-24hr-format t)
(display-time)
(setq auto-save-directory (expand-file-name "~/autosave/"))
(define-key global-map [(alt left)] 'browse-previous-file)
(define-key global-map [(alt right)] 'browse-next-file)
(defconst wes-c-style
'((c-tab-always-indent . nil)
(c-auto-newline . nil)
(tab-width . 8)
(c-comment-only-line-offset . 0)
(c-hanging-braces-alist . ((substatement-open after)
(brace-list-open)))
(c-hanging-colons-alist . ((member-init-intro before)
(inher-intro)
(case-label after)
(label after)
(access-label after)))
(c-cleanup-list . (scope-operator
empty-defun-braces
defun-close-semi))
(c-echo-syntactic-information-p . nil)
(c-offsets-alist . ((arglist-close . c-lineup-arglist)
(substatement-open . 0)
(substatement . 2)
(else-clause . 0)
(block-close . 0)
(defun-block-intro . 2)
(statement . 0)
(statement-block-intro . 2)
(case-label . 2)
(brace-list-open . 0)
(brace-list-intro . 2)
(inclass . 0)
(statement-case-intro . 2)))
(c-echo-syntactic-information-p . nil)
(c-hungry-delete . t)
)
"WES")
(message "Done.")
)
(defun wes-c-mode-common-hook ()
(c-add-style "WES" wes-c-style t)
(c-toggle-auto-hungry-state 1)
(setq c-auto-newline nil)
;; (pending-delete t)
)
(add-hook 'c-mode-common-hook 'wes-c-mode-common-hook)
(defun re-init-emacs (arg)
(interactive "P")
(init-emacs)
)
(init-emacs)
----------------- end .emacs ------------------