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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
#!/usr/bin/env perl
#
# testspite.pl
#
# adapted from SDL-1.2.x/test/testsprite.c
# Usage: testsprite.pl [-bpp N] [-hw] [-flip] [-fast] [-fullscreen] [numsprites]
use strict;
use Getopt::Long;
use Data::Dumper;
use SDL;
use SDL::App;
use SDL::Event;
use SDL::Surface;
use SDL::Color;
use SDL::Rect;
use vars qw/ $app $app_rect $background $event $sprite $sprite_rect $videoflags /;
## User tweakable settings (via cmd-line)
my %settings = (
'numsprites' => 75,
'screen_width' => 640,
'screen_height' => 480,
'video_bpp' => 8,
'fast' => 0,
'hw' => 0,
'flip' => 1,
'fullscreen' => 0,
'bpp' => undef,
);
## Process commandline arguments
sub get_cmd_args
{
GetOptions("width:i" => \$settings{screen_width},
"height:i" => \$settings{screen_height},
"bpp:i" => \$settings{bpp},
"fast!" => \$settings{fast},
"hw!" => \$settings{hw},
"flip!" => \$settings{flip},
"fullscreen!" => \$settings{fullscreen},
"numsprites=i" => \$settings{numsprites},
);
}
## Initialize application options
sub set_app_args
{
$settings{bpp} ||= 8; # default to 8 bits per pix
$videoflags |= SDL_HWACCEL if $settings{hw};
$videoflags |= SDL_DOUBLEBUF if $settings{flip};
$videoflags |= SDL_FULLSCREEN if $settings{fullscreen};
}
## Setup
sub init_game_context
{
$app = new SDL::App (
-width => $settings{screen_width},
-height=> $settings{screen_height},
-title => "testsprite",
-icon => "data/icon.bmp",
-flags => $videoflags,
);
$app_rect= new SDL::Rect(
-height => $settings{screen_height},
-width => $settings{screen_width},
);
$background = $SDL::Color::black;
$sprite = new SDL::Surface(-name =>"data/icon.bmp");
# Set transparent pixel as the pixel at (0,0)
$sprite->display_format();
$sprite->set_color_key(SDL_SRCCOLORKEY,$sprite->pixel(0,0)); # sets the transparent color to that at (0,0)
$sprite_rect = new SDL::Rect(-x => 0,
-y => 0,
-width => $sprite->width,
-height=> $sprite->height,
);
$event = new SDL::Event();
}
## Prints diagnostics
sub instruments
{
if ( ($app->flags & SDL_HWSURFACE) == SDL_HWSURFACE ) {
printf("Screen is in video memory\n");
} else {
printf("Screen is in system memory\n");
}
if ( ($app->flags & SDL_DOUBLEBUF) == SDL_DOUBLEBUF ) {
printf("Screen has double-buffering enabled\n");
}
if ( ($sprite->flags & SDL_HWSURFACE) == SDL_HWSURFACE ) {
printf("Sprite is in video memory\n");
} else {
printf("Sprite is in system memory\n");
}
# Run a sample blit to trigger blit (if posssible)
# acceleration before the check just after
put_sprite(0,0);
if ( ($sprite->flags & SDL_HWACCEL) == SDL_HWACCEL ) {
printf("Sprite blit uses hardware acceleration\n");
}
if ( ($sprite->flags & SDL_RLEACCEL) == SDL_RLEACCEL ) {
printf("Sprite blit uses RLE acceleration\n");
}
}
sub put_sprite
{
my ($x,$y) = @_;
my $dest_rect = new SDL::Rect(-x => $x,
-y => $y,
-width => $sprite->width,
-height => $sprite->height,
);
$sprite->blit($sprite_rect, $app, $dest_rect);
}
sub game_loop
{
my $x=0;
my $y=$settings{screen_height}>>1;
my $i=0;
while (1)
{
# process event queue
$event->pump;
$event->poll;
my $etype=$event->type;
# handle user events
last if ($etype eq SDL_QUIT );
last if (SDL::GetKeyState(SDLK_ESCAPE));
#$app->lock() if $app->lockp();
# page flip
# __draw gfx
$app->fill($app_rect, $background);
foreach (1..$settings{numsprites})
{
put_sprite( $_*8, $y + (sin(($i+$_)*0.2)*($settings{screen_height}/3)));
}
$i+=30;
# __graw gfx end
#$app->unlock();
$app->flip if $settings{flip};
}
}
## Main program loop
get_cmd_args();
set_app_args();
init_game_context();
instruments();
game_loop();
exit(0);
|