forked from viking-gps/viking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HACKING
89 lines (66 loc) · 3.49 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
This file is meant to summarize the Viking development policies.
####
#### Also check information in the Wiki:
#### http://sourceforge.net/apps/mediawiki/viking/index.php?title=Main_Page
####
Clean commits
=============
Commits/patches should be as fine-grained as possible (and no finer). Every
distinct change should be in its own commit and every commit should be a
meaningful change on its own.
Preferred Code Contribution Methods
===================================
Since the project uses git for source control, patches that utilize git (especially for patch sets) are preferred in this order:
* Commits pushed to a publically accessible git host (e.g. GitHub, Gitorious, etc...)
- This enables commits to be easily managed such as pulling, merging or cherry-picking
* Email git diffs to the dev mailing list - use 'git format-patch' method
* Plain diffs can be emailed to the dev mailing list and/or stored in the SourceForge Patch Tracker for Viking.
Coding style
============
Naming:
A "module" is a .c file.
Functions starting with "vik_" operate on an object/structure with the
module name (see layer.c for an example). Functions starting with
"a_" do not, these modules may have static variables. Both are
followed by the module name. Unless of course the function is static,
in which case it may be called anything.
All (well, practically all) global constants and macros start with
"VIK_" and then the module name.
Coding Checks
=============
Code should compile with the minimum number of warnings (ideally none).
Code should pass static analysis with defaults for 'cppcheck' (http://sourceforge.net/projects/cppcheck/) with no errors.
ATM there is one deliberate error in vikgpslayer.c designed to prevent building if the code encounters a GPSD version we don't handle. Something like:
[vikgpslayer.c:1479]: (error) Invalid number of character ({) when these macros are defined: 'GPSD_API_MAJOR_VERSION;VIK_CONFIG_REALTIME_GPS_TRACKING'.
This can be 'hidden' via cppcheck --suppress syntax.
Technical notices
=================
In order to activate reference documentation, you have to specify the
following configure command line:
$ ./configure --enable-gtk-doc --enable-gtk-doc-html
Then, cd to doc/reference and launch make command.
---
The layers panel holds all the layers. Layers connect to the layers
panel via what I call "interfaces" which are really just a structure
of function pointers and pointers to other bits such as
icons. viklayer.c switches between the layers like
polymorhpism. Anything specific to the layer should (in theory) be
found solely in that layer's source file.
There are some ugly hacks in here, like the layers panel holding the
viewport and each layer holding the viewport and a
GtkTreeIter. Unfortunately it was the only way I could figure out to
do some things. It would be _much_ easier with a object-oriented
language.
---
"xmpp" and "ympp" are really misnomers, as they only represent the
Meters Per Pixel in UTM mode. Otherwise they are an artificial zooming
system. In expedia mode it represents the "Alti", in Google mode it
represents 2^(scale), e.g. 2^0 = 1, 2^8 = 256.
---
Implementing a MapSource
VikMapSource is the "interface", the really base class of the
MapSource tree. In order to implement a MapSource, you have to prefer
to derive from VikMapSourceDefault, a less abstract class, adding a
property based implementation for some aspects of the VikMapSource
interface. Then, you have to provide implementation for
coord_to_mapcoord, mapcoord_to_center_coord and download methods.