Skip to content

Commit bc58580

Browse files
committed
Edited preface.
1 parent 96f853b commit bc58580

File tree

1 file changed

+71
-96
lines changed

1 file changed

+71
-96
lines changed

src/00-preface.pod

+71-96
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,28 @@
11
=head0 Preface
22

3-
=head1 Background
4-
5-
I<Simple DirectMedia Layer> (a.k.a. I<libsdl>) is a cross-platform C library
6-
that provides access to several input and output devices. Most popularly it is
7-
used for its access to the 2D video framebuffer and inputs for games.
8-
9-
In addition to the core library there are several other libraries that provide
10-
useful features such as I<Text>, I<Mixers>, I<Images>, and I<GFX>.
3+
I<Simple DirectMedia Layer> (or I<libsdl>) is a cross-platform C library that
4+
provides access to several input and output devices. Its most popular usage is
5+
to provide access to the video framebuffer and input devices for games. SDL
6+
also has several extension libraries to provide features such as text display,
7+
sound mixing, image handling, and graphics effects.
118

129
SDL Perl binds several of these libraries together in the C<SDL::*> namespace.
1310
Moreover, SDL Perl provides several high-level libraries in the C<SDLx::*>
1411
namespace that encapsulate valuable game-writing abstractions.
1512

16-
=head2 The C<SDLx::> layer
13+
=head1 C<SDL> and C<SDLx>
1714

18-
The main purpose of the C<SDLx::*> layer is to smooth out the drudgery of
19-
using the C<SDL::*> layer directly.
20-
For example, drawing a rectangle involves the following work.
15+
The main purpose of the C<SDLx::*> layer is to smooth out the drudgery of using
16+
the C<SDL::*> layer directly.
2117

2218
=for sidebar
2319

24-
=head4 NOTE:
25-
26-
Don't worry about understanding the code at this moment. Just compare the two
27-
code listings for displaying the same blue rectangle below.
20+
Don't worry about understanding the details of this code right now. Compare the
21+
complexity and size of the code listings.
2822

2923
=end sidebar
3024

31-
Using the C<SDL::*> layer to draw a blue rectangle looks something like this:
25+
Using the C<SDL::*> layer to draw a blue rectangle looks something like:
3226

3327
=begin programlisting
3428

@@ -50,20 +44,23 @@ Using the C<SDL::*> layer to draw a blue rectangle looks something like this:
5044
SDL_ANYFORMAT);
5145

5246
# drawing a rectangle with the blue color
53-
my $mapped_color = SDL::Video::map_RGB($screen_surface->format(), 0, 0, 255);
47+
my $mapped_color = SDL::Video::map_RGB($screen_surface->format(),
48+
0, 0, 255);
5449
SDL::Video::fill_rect($screen_surface,
5550
SDL::Rect->new($screen_width / 4, $screen_height / 4,
5651
$screen_width / 2, $screen_height / 2),
5752
$mapped_color);
5853

59-
# update an area on the screen so its visible
60-
SDL::Video::update_rect($screen_surface, 0, 0, $screen_width, $screen_height);
54+
# update an area on the screen so it's visible
55+
SDL::Video::update_rect($screen_surface, 0, 0,
56+
$screen_width, $screen_height);
6157

62-
sleep(5); # just to have time to see it
58+
# just to have time to see it
59+
sleep(5);
6360

6461
=end programlisting
6562

66-
while drawing a blue rectangle in the C<SDLx::*> layer is as simple as:
63+
... while drawing a blue rectangle in the C<SDLx::*> layer is as simple as:
6764

6865
=begin programlisting
6966

@@ -75,134 +72,110 @@ while drawing a blue rectangle in the C<SDLx::*> layer is as simple as:
7572

7673
my $app = SDLx::App->new( width=> 800, height => 600 );
7774

78-
$app->draw_rect([ $app->width/4, $app->height / 4, $app->width /2, $app->height / 2 ], [0,0,255,255] );
75+
$app->draw_rect([ $app->width / 4, $app->height / 4,
76+
$app->width / 2, $app->height / 2, ],
77+
[ 0, 0, 255, 255] );
7978

8079
$app->update();
8180

8281
sleep(5);
8382

8483
=end programlisting
8584

86-
A secondary purpose of the C<SDLx::*> modules are to manage additional
87-
features for users, such as Layers, Game Loop handling, and more.
88-
89-
=head1 Audience
90-
91-
This book is written for new users of SDL Perl who have some experience
92-
with Perl, but not much experience with SDL. It is not necessary for
93-
the audience to be aware of SDL internals, as this book covers most
94-
areas as it goes.
95-
96-
=head1 Format of this book
97-
98-
This book will be formatted into chapters that progressively increase in
99-
complexity. However each chapter can also be treated individually as a
100-
separate tutorial to jump to and learn from.
101-
102-
Each chapter will have a specific goal (e.g., I<Making Pong>), which we will
103-
work towards. The source code for each chapter will be broken up and
104-
explained in some detail. Sources and data files are all provided on
105-
U<HTTP://SDL.Perl.Org>.
85+
The C<SDLx::*> modules also provide and manage higher-level concerns for users, such as layers and game loops.
10686

107-
Finally chapters will end with an exercise for the reader to try out.
87+
=head1 About the Book
10888

109-
=head1 Purpose of this book
89+
This book has a two-fold purpose: first, to introduce game development to Perl
90+
programmers, and second, to introduce Modern Perl concepts through game
91+
development. While the examples assume some experience with Perl, no
92+
experience with SDL in Perl or as C<libsdl> itself is necessary.
11093

111-
This book is intended to introduce game development to Perl programmers and
112-
at the same time introduce Modern Perl concepts through game development.
11394
The book presents a progression from simple to intermediate examples and
114-
provides suggestions for more advanced endeavors.
95+
provides suggestions for more advanced endeavors. The chapters of this book
96+
increase progressively in complexity, but each chapter has a singular goal
97+
(such as chapter five's I<Making Pong>) which stands alone as an individual
98+
tutorial. Sources and data files are all available from
99+
U<http://sdl.perl.org/>.
115100

116101
=head1 Installing SDL Perl
117102

118-
We assume that a recent perl language and supporting packages have been
119-
installed on your system.
120-
Depending on your platform you may need some dependencies. Then we can do
121-
a final CPAN install.
103+
We assume the presence of a recent version of the Perl language (at least Perl
104+
5.10) and supporting packages. We also assume that you can install packages
105+
from the CPAN, including SDL Perl itself.
122106

123107
=head2 Windows
124108

125109
C<Alien::SDL> will install binaries for 32bit and 64bit so there is no need
126110
to compile anything.
127111

128-
=head2 MacOSX
112+
=head2 Mac OS X
129113

130-
=head3 Packages
114+
Fink has packages for SDL Perl available. However, they do not support Pango, a
115+
library which provides internalization support for text handling.
131116

132-
Fink has packages for SDL Perl available, however Pango is not currently
133-
supported.
134-
135-
=head3 Or Compiling Dependencies
136-
137-
C<Alien::SDL> will compile SDL dependencies from scratch with no problems as
138-
long as some prerequisites are installed. C<libfreetype6>, C<libX11>,
139-
C<libvorbis>, C<libogg>, and C<libpng> headers will suffice for most
140-
examples in this book.
117+
Installing C<Alien::SDL> from the CPAN will compile SDL and its dependencies,
118+
provided you have installed severan necessary dependencies. We recommend that
119+
you install C<libfreetype6>, C<libX11>, C<libvorbis>, C<libogg>, C<libpng>, and
120+
their headers.
141121

142122
=head2 GNU/Linux
143123

144124
Most current GNU/Linux distributions include all the parts needed for this
145-
tutorial in the default install and in their package management system.
146-
It is also always possible to install on GNU/Linux using the available open
147-
source code from the proper repositories. The Alien::SDL perl module
148-
automates much of downloading, compiling, and installing the needed
149-
libraries.
150-
151-
=head3 Packages
125+
tutorial in the default install and in their package management system. It is
126+
also always possible to install on GNU/Linux using the available open source
127+
code from the proper repositories. The C<Alien::SDL> perl module automates much
128+
of downloading, compiling, and installing the needed libraries.
152129

153130
You can probably use your distribution's packages. On Ubuntu and Debian try:
154131

155-
sudo apt-get install libsdl-net1.2-dev libsdl-mixer1.2-dev \
132+
$ sudo apt-get install libsdl-net1.2-dev libsdl-mixer1.2-dev \
156133
libsdl1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev \
157134
libsdl-gfx1.2-dev libsdl-pango-dev
158135

159-
=head3 Or Compiling Dependencies
160-
161-
To compile from scratch, a compiler, system header packages, and some
162-
libraries are required.
136+
To compile from scratch, you must install a compiler, system header packages,
137+
and some libraries are required.
163138

164-
sudo apt-get install build-essential xorg-dev libx11-dev libxv-dev \
139+
$ sudo apt-get install build-essential xorg-dev libx11-dev libxv-dev \
165140
libpango1.0-dev libfreetype6-dev libvorbis-dev libpng12-dev \
166141
libogg-dev
167142

168143
=head2 CPAN install
169144

170-
Before installing SDL you should make sure that some important modules are
171-
up-to-date.
145+
Before installing SDL Perl, ensure that you have the most recent versions of
146+
the modules necessary to build SDL:
172147

173-
sudo cpan CPAN
174-
sudo cpan YAML Module::Build
148+
$ sudo cpan CPAN
149+
$ sudo cpan YAML Module::Build
175150

176-
After these two steps cpan will be able to find all depedencies for SDL.
151+
After these two steps CPAN will be able to install SDL:
177152

178-
sudo cpan SDL
153+
$ sudo cpan SDL
179154

180155
For most platforms a CPAN install will suffice. Supported and tested
181-
platforms are listed at U<HTTP://Pass.CPANTesters.Org/distro/S/SDL.html>.
156+
platforms are listed at U<http://pass.cpantesters.org/distro/S/SDL.html>.
182157

183158
=head1 Contact
184159

185-
Hopefully this book answers most of your questions. If you find you need
186-
additional assistance, please contact us by one of the following methods:
160+
Hopefully this book answers most of your questions. For additional assistance,
161+
contact the project via:
187162

188-
=head2 Internet
163+
=over 4
189164

190-
SDL Perl's homepage is at U<HTTP://SDL.Perl.Org>.
165+
=item * I<the web>, by visiting the SDL Perl homepage at
166+
U<http://sdl.perl.org/>.
191167

192-
=head2 IRC
168+
=item * I<IRC>, in the C<#sdl> channel on C<irc.perl.org>. This is a very
169+
active and helpful resource.
193170

194-
The X<IRC> channel C<#sdl> on C<IRC.Perl.Org> is very active and a great
195-
resource for help and getting involved.
171+
=item * I<email>, through the C<sdl-devel@perl.org> mailing list.
196172

197-
=head2 Mailing lists
198-
199-
If you need help with SDL Perl, send an X<e-mail> to C<sdl-devel@Perl.Org>.
173+
=back
200174

201175
=head1 Examples
202176

203-
The code examples in this book are provided at:
204-
205-
U<HTTPS://GitHub.Com/PerlGameDev/SDL_Manual/tree/master/code_listings>
177+
The code examples in this book are available from
178+
U<https://github.com/PerlGameDev/SDL_Manual/tree/master/code_listings>.
206179

207180
=head1 Acknowledgements
208181

@@ -218,6 +191,8 @@ Thanks to contributors and reviewers from the C<#sdl> channel, including:
218191

219192
=item cfedde
220193

194+
=item chromatic
195+
221196
=item FROGGS
222197

223198
=item garu

0 commit comments

Comments
 (0)