X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pages%2FSDL-Cookbook-PDL.html-inc;h=5d4c84779dbb53499d3e936eb0cd956205ebd6a2;hb=1f5d808215c3e475e7d752ba28a3f2c3d6f468ad;hp=b0bd6094b54436706cf00310ffb99534f811c399;hpb=879e3e79b8b6ee9bf4b30a60a2e7bef40ad46c2d;p=sdlgit%2FSDL-Site.git diff --git a/pages/SDL-Cookbook-PDL.html-inc b/pages/SDL-Cookbook-PDL.html-inc index b0bd609..5d4c847 100644 --- a/pages/SDL-Cookbook-PDL.html-inc +++ b/pages/SDL-Cookbook-PDL.html-inc @@ -6,7 +6,6 @@ -
  • Old SDL interface
  • Perl's SDL in a nutshell
  • SDL - power through simplicity
  • Example 1: Model of a 2-D Noninteracting Gas @@ -49,11 +48,6 @@ Some of the particles can drift off the screen. This is no good. What's causing

    Cookbook

    -

    Old SDL interface

    Top

    -
    -

    Please be aware that much of the code in this example uses SDL Perl v 2.2.4. The SDL Perl developers are hard at work rewriting SDL, to be released as SDL 3.0 soon. The new version of SDL is not backwards compatible. Check back with this page after SDL 3.0 has been released to get the updated commands.

    - -

    Perl's SDL in a nutshell

    Top

    SDL stands for Simple DirectMedia Layer. It's a cross-platform library written in C that's meant to handle all of the low-level graphics and sound stuff. You can read more about SDL here: http://www.libsdl.org/. Because SDL is focused on game programming, it has a raw but clean feel to it. We will focus for now on using SDL to handle images for us. Handling sound may some day be the focus of another chapter.

    @@ -73,6 +67,7 @@ Some of the particles can drift off the screen. This is no good. What's causing use SDL::App; use SDL::Rect; use SDL::Color; + use SDL::Video; # User defined pen-nib size. my $nib_size = 3; @@ -87,18 +82,19 @@ Some of the particles can drift off the screen. This is no good. What's causing # our nib will be white my $nib_color = SDL::Color->new( - -r => 0xff, - -g => 0xff, - -b => 0xff, + 0xff, #r + 0xff, #b + 0xff, #g ); # and our nib will be represented by a rectangle # (Alternatively, you could use an image, which would allow # for pretty anti-aliasing if you created it in GIMP with # antialiasing) - my $nib = SDL::Rect->new( - -height => $nib_size, - -width => $nib_size, + my $nib = SDL::Rect->new( + 0 , 0, #x, y + $nib_size, #w + $nib_size, #h ); # now draw a sine wave (wthout covering up previously drawn rectangles) @@ -108,12 +104,12 @@ Some of the particles can drift off the screen. This is no good. What's causing $nib->x( $t * 8 ); $nib->y( sin($t) * 80 + 240 ); - $app->fill( $nib, $nib_color ); + SDL::Video::fill_rect($app, $nib, $nib_color ); } # Generally use the update command, but if you want to update the whole # surface, use flip - $app->flip() + SDL::Video::fill_rect($app,) sleep 5; @@ -162,18 +158,19 @@ Some of the particles can drift off the screen. This is no good. What's causing use SDL::App; use SDL::Rect; use SDL::Color; + use SDL::Video; # Create the SDL App my $app = SDL::App->new( -width => $side_length, -height => $side_length, -title => "Simple Simulation!", -depth => 16, ); # white particles on a black background - my $particle_color = SDL::Color->new( -r => 0xff, -g => 0xff, -b => 0xff, ); - my $bg_color = SDL::Color->new( -r => 0x00, -g => 0x00, -b => 0x00, ); + my $particle_color = SDL::Color->new( 0xff, 0xff, 0xff, ); + my $bg_color = SDL::Color->new( 0x00, 0x00, 0x00 ); # rectangles for the particles and the background - my $particle = SDL::Rect->new( -height => 5, -width => 5, ); - my $bg = SDL::Rect->new( -height => $side_length, -width => $side_length, ); + my $particle = SDL::Rect->new( 0,0, 5, 5); + my $bg = SDL::Rect->new( 0,0,$side_length, $side_length, );

    Hopefully this is straightforward code. We pull in our library dependencies and then create a few objects with the necessary properties. Finally, we get to the actual application loop:

    @@ -183,13 +180,13 @@ Some of the particles can drift off the screen. This is no good. What's causing compute(); # Clean the canvas - $app->fill( $bg, $bg_color); + SDL::Video::fill_rect($app, $bg, $bg_color); for(my $i = 0; $i < $numb_of_atoms; $i++) { $particle->x( $positions->at(0,$i) ); $particle->y( $positions->at(1,$i) ); - $app->fill( $particle, $particle_color ); + SDL::Video::fill_rect($app, $particle, $particle_color ); } - $app->flip(); + SDL::Video::flip($app); $app->delay(10); } @@ -246,9 +243,9 @@ Some of the particles can drift off the screen. This is no good. What's causing
    	for(my $i = 0; $i < $numb_of_atoms; $i++) {
     		$particle->x( $positions->at(0,$i) );
     		$particle->y( $positions->at(1,$i) );
    -		$particle->height( $particle_size );
    -		$particle->width( $particle_size );
    -		$app->fill( $particle, $particle_color );
    +		$particle->h( $particle_size );
    +		$particle->w( $particle_size );
    +		SDL::Video::fill_rect($app, $particle, $particle_color );
     	}
     
     
    @@ -386,31 +383,32 @@ Some of the particles can drift off the screen. This is no good. What's causing use SDL::App; use SDL::Rect; use SDL::Color; + use SDL::Video; # Create the SDL App my $app = SDL::App->new( -width => $side_length, -height => $side_length, -title => "Simple Simulation!", -depth => 16, ); # white particles on a black background - my $particle_color = SDL::Color->new( -r => 0xff, -g => 0xff, -b => 0xff, ); - my $bg_color = SDL::Color->new( -r => 0x00, -g => 0x00, -b => 0x00, ); + my $particle_color = SDL::Color->new( 0xff, 0xff, 0xff, ); + my $bg_color = SDL::Color->new( 0x00, 0x00, 0x00 ); # rectangles for the particles and the background - my $particle = SDL::Rect->new( -height => 5, -width => 5, ); - my $bg = SDL::Rect->new( -height => $side_length, -width => $side_length, ); + my $particle = SDL::Rect->new( 0,0, 5, 5); + my $bg = SDL::Rect->new( 0,0,$side_length, $side_length, ); # Run the simulation for(my $t = 0; $t < 20; $t += $d_t) { MyCompute::compute(); # Clean the canvas - $app->fill( $bg, $bg_color); + SDL::Video::fill_rect($app, $bg, $bg_color); for(my $i = 0; $i < $numb_of_atoms; $i++) { $particle->x( $positions->at(0,$i) ); $particle->y( $positions->at(1,$i) ); - $app->fill( $particle, $particle_color ); + SDL::Video::fill_rect($app, $particle, $particle_color ); } - $app->flip(); + SDL::Video::flip($app); $app->delay(10); } @@ -421,7 +419,8 @@ Some of the particles can drift off the screen. This is no good. What's causing

    Listening to Events

    To respond to user interactions, we have to listen to user events using an SDL::Event object. So first, add this line with our other use statements:

    -
     use SDL::Event;
    +
     use SDL::Event; 
    +	use SDL::Events; 
     
     

    and then be sure to create an event object amongst the animation initialization code:

    @@ -434,14 +433,14 @@ Some of the particles can drift off the screen. This is no good. What's causing MyCompute::compute(); # Clean the canvas - $app->fill( $bg, $bg_color); + SDL::Video::fill_rect($app, $bg, $bg_color); for(my $i = 0; $i < $numb_of_atoms; $i++) { $particle->x( $positions->at(0,$i) ); $particle->y( $positions->at(1,$i) ); - $app->fill( $particle, $particle_col10); + SDL::Video::fill_rect($app, $particle, $particle_col10); - while($event->poll()) { - if($event->type() =head1 SDL_QUIT) { + while(SDL::Events::poll_event($event) ) { + if($event->type() == SDL_QUIT) { exit; } } @@ -467,14 +466,14 @@ Some of the particles can drift off the screen. This is no good. What's causing sub incr_particle_size { $particle_size++; - $particle->height($particle_size); - $particle->width($particle_size); + $particle->h($particle_size); + $particle->w($particle_size); } sub decr_particle_size { $particle_size-- if $particle_size > 1; - $particle->height($particle_size); - $particle->width($particle_size); + $particle->h($particle_size); + $particle->w($particle_size); } @@ -485,21 +484,21 @@ Some of the particles can drift off the screen. This is no good. What's causing MyCompute::compute(); # Clean the canvas - $app->fill( $bg, $bg_color); + SDL::Video::fill_rect($app, $bg, $bg_color); for(my $i = 0; $i < $numb_of_atoms; $i++) { $particle->x( $positions->at(0,$i) ); $particle->y( $positions->at(1,$i) ); - $app->fill( $particle, $particle_color ); + SDL::Video::fill_rect($app, $particle, $particle_color ); } - $app->flip(); + SDL::Video::flip($app); $app->delay(10); - while($event->poll()) { - if($event->type() =head1 SDL_QUIT) { + while(SDL::Events::poll_event($event) ) { + if($event->type() == SDL_QUIT) { exit; - } elsif($event->type() =head1 SDL_KEYDOWN) { - if(exists $keyname_dispatch_table->{$event->key_name()}) { - $keyname_dispatch_table->{$event->key_name()}->(); + } elsif($event->type() == SDL_QUIT) { + if(exists $keyname_dispatch_table->{$event->keysym_name()}) { + $keyname_dispatch_table->{$event->keysym_name()}->(); } } } @@ -563,22 +562,24 @@ Some of the particles can drift off the screen. This is no good. What's causing use SDL::App; use SDL::Rect; use SDL::Color; - use SDL::Event; + use SDL::Video; + use SDL::Event; + use SDL::Events; # Create the SDL App my $app = SDL::App->new( -width => $side_length, -height => $side_length, -title => "Simple Simulation!", -depth => 16, ); # white particles on a black background - my $particle_color = SDL::Color->new( -r => 0xff, -g => 0xff, -b => 0xff, ); - my $bg_color = SDL::Color->new( -r => 0x00, -g => 0x00, -b => 0x00, ); + my $particle_color = SDL::Color->new( 0xff, 0xff, 0xff, ); + my $bg_color = SDL::Color->new( 0x00, 0x00, 0x00 ); # rectangles for the particles and the background - my $particle = SDL::Rect->new( -height => 5, -width => 5, ); - my $bg = SDL::Rect->new( -height => $side_length, -width => $side_length, ); + my $particle = SDL::Rect->new( 0,0, 5, 5); + my $bg = SDL::Rect->new( 0,0,$side_length, $side_length, ); # event listener - my $event = new SDL::Event; + my $event = new SDL::Event->new(); # event dispatch table my $keyname_dispatch_table = { @@ -592,14 +593,14 @@ Some of the particles can drift off the screen. This is no good. What's causing sub incr_particle_size { $particle_size++; - $particle->height($particle_size); - $particle->width($particle_size); + $particle->h($particle_size); + $particle->w($particle_size); } sub decr_particle_size { $particle_size-- if $particle_size > 1; - $particle->height($particle_size); - $particle->width($particle_size); + $particle->h($particle_size); + $particle->w($particle_size); } @@ -610,21 +611,21 @@ Some of the particles can drift off the screen. This is no good. What's causing MyCompute::compute(); # Clean the canvas - $app->fill( $bg, $bg_color); + SDL::Video::fill_rect($app, $bg, $bg_color); for(my $i = 0; $i < $numb_of_atoms; $i++) { $particle->x( $positions->at(0,$i) ); $particle->y( $positions->at(1,$i) ); - $app->fill( $particle, $particle_color ); + SDL::Video::fill_rect($app, $particle, $particle_color ); } - $app->flip(); + SDL::Video::flip($app); $app->delay(10); - while($event->poll()) { - if($event->type() =head1 SDL_QUIT) { + while(SDL::Events::poll_event($event) ) { + if($event->type() == SDL_QUIT) { exit; - } elsif($event->type() =head1 SDL_KEYDOWN) { - if(exists $keyname_dispatch_table->{$event->key_name()}) { - $keyname_dispatch_table->{$event->key_name()}->(); + } elsif($event->type() == SDL_QUIT) { + if(exists $keyname_dispatch_table->{$event->keysym_name()}) { + $keyname_dispatch_table->{$event->keysym_name()}->(); } } }