1
1
=head0 Preface
2
2
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.
11
8
12
9
SDL Perl binds several of these libraries together in the C<SDL::*> namespace.
13
10
Moreover, SDL Perl provides several high-level libraries in the C<SDLx::*>
14
11
namespace that encapsulate valuable game-writing abstractions.
15
12
16
- =head2 The C<SDLx::> layer
13
+ =head1 C<SDL> and C<SDLx>
17
14
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.
21
17
22
18
=for sidebar
23
19
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.
28
22
29
23
=end sidebar
30
24
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:
32
26
33
27
=begin programlisting
34
28
@@ -50,20 +44,23 @@ Using the C<SDL::*> layer to draw a blue rectangle looks something like this:
50
44
SDL_ANYFORMAT);
51
45
52
46
# 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);
54
49
SDL::Video::fill_rect($screen_surface,
55
50
SDL::Rect->new($screen_width / 4, $screen_height / 4,
56
51
$screen_width / 2, $screen_height / 2),
57
52
$mapped_color);
58
53
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);
61
57
62
- sleep(5); # just to have time to see it
58
+ # just to have time to see it
59
+ sleep(5);
63
60
64
61
=end programlisting
65
62
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:
67
64
68
65
=begin programlisting
69
66
@@ -75,134 +72,110 @@ while drawing a blue rectangle in the C<SDLx::*> layer is as simple as:
75
72
76
73
my $app = SDLx::App->new( width=> 800, height => 600 );
77
74
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] );
79
78
80
79
$app->update();
81
80
82
81
sleep(5);
83
82
84
83
=end programlisting
85
84
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.
106
86
107
- Finally chapters will end with an exercise for the reader to try out.
87
+ =head1 About the Book
108
88
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.
110
93
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.
113
94
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/>.
115
100
116
101
=head1 Installing SDL Perl
117
102
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.
122
106
123
107
=head2 Windows
124
108
125
109
C<Alien::SDL> will install binaries for 32bit and 64bit so there is no need
126
110
to compile anything.
127
111
128
- =head2 MacOSX
112
+ =head2 Mac OS X
129
113
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.
131
116
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.
141
121
142
122
=head2 GNU/Linux
143
123
144
124
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.
152
129
153
130
You can probably use your distribution's packages. On Ubuntu and Debian try:
154
131
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 \
156
133
libsdl1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev \
157
134
libsdl-gfx1.2-dev libsdl-pango-dev
158
135
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.
163
138
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 \
165
140
libpango1.0-dev libfreetype6-dev libvorbis-dev libpng12-dev \
166
141
libogg-dev
167
142
168
143
=head2 CPAN install
169
144
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:
172
147
173
- sudo cpan CPAN
174
- sudo cpan YAML Module::Build
148
+ $ sudo cpan CPAN
149
+ $ sudo cpan YAML Module::Build
175
150
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:
177
152
178
- sudo cpan SDL
153
+ $ sudo cpan SDL
179
154
180
155
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>.
182
157
183
158
=head1 Contact
184
159
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 :
187
162
188
- =head2 Internet
163
+ =over 4
189
164
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/>.
191
167
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.
193
170
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.
196
172
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
200
174
201
175
=head1 Examples
202
176
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>.
206
179
207
180
=head1 Acknowledgements
208
181
@@ -218,6 +191,8 @@ Thanks to contributors and reviewers from the C<#sdl> channel, including:
218
191
219
192
=item cfedde
220
193
194
+ =item chromatic
195
+
221
196
=item FROGGS
222
197
223
198
=item garu
0 commit comments