File: plugins-intro.xml

package info (click to toggle)
gwp 0.3.6-1
  • links: PTS
  • area: contrib
  • in suites: sarge
  • size: 7,076 kB
  • ctags: 3,168
  • sloc: ansic: 27,179; sh: 8,379; python: 1,895; xml: 1,184; makefile: 356
file content (29 lines) | stat: -rw-r--r-- 1,449 bytes parent folder | download | duplicates (3)
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
<sect1 id="plugins-intro">
  <title>Introduction</title>

  <para>Every player has its own tastes about what a good &vgap;
  client should have as a feature, so it's impossible to write a
  good client for all of us. From the beginning, &gwp; was started to
  be client that will provide basic functionality in a friendly way to
  novice &vgap; players, and will provide customization capabilities
  to veteran ones.</para>

  <para>The plugin system enable any player with programming skills to
  write his or her own piece of functionality and add it to the whole
  &gwp; in a very integrated way. For this to happen, the Python
  interpreter was embedded on &appname;, Python is a well known
  interpreted and object oriented, programming languaje, used and
  supported by a huge community on the Internet.</para>

  <para>&appname;'s planets, ships, starchart, user interface, etc. is
  accessible by the plugin interpreter so the plugin writer will
  manipulate those entities as objects, in a very natural way. Also,
  game and key events are forwarded to the plugins so that they can
  take action if neccesary.</para>

  <para>In short, the plugin system is made for you to customize your
  own &appname;, and to share those customizations with your
  friends. If you make a cool plugin, you can <ulink
  url="mailto:lucas@lunix.com.ar">send it to me</ulink>, and I'll
  check if it can be added to the default distribution.</para>
</sect1>