Remove fill_rect from surface, fix SDL::FillRect
[sdlgit/SDL_perl.git] / t / core_surface.t
CommitLineData
b7ed9095 1#!perl -w
2# Copyright (C) 2009 kthakore
3#
4# Spec tests for SDL::Surface
5#
6
7BEGIN {
9a70569a 8 unshift @INC, 'blib/lib', 'blib/arch';
9}
b7ed9095 10
11use strict;
12use SDL;
13use SDL::Config;
14use SDL::Surface;
15use SDL::App;
16use SDL::Rect;
17use SDL::Color;
50d9130a 18use SDL::PixelFormat;
2e2fd270 19use Test::More tests => 35;
9a70569a 20
21my $surface
af85b4e9 22 = SDL::Surface->new( SDL::SDL_ANYFORMAT(), 640, 320, 8, 0, 0, 0, 0 );
9a70569a 23isa_ok( $surface, 'SDL::Surface' );
af85b4e9 24is( $surface->w, 640, 'surface has width' );
25is( $surface->h, 320, 'surface has height' );
26is( $surface->pitch, 640, 'surface has pitch' );
27my $clip_rect = SDL::Rect->new( 0, 0, 0, 0 );
28SDL::GetClipRect( $surface, $clip_rect );
29isa_ok( $clip_rect, 'SDL::Rect' );
30is( $clip_rect->x, 0, 'clip_rect has x' );
31is( $clip_rect->y, 0, 'clip_rect has y' );
32is( $clip_rect->w, 640, 'clip_rect has width' );
33is( $clip_rect->h, 320, 'clip_rect has height' );
9a70569a 34
a7fbee87 35my $image = SDL::IMG_Load('test/data/logo.png');
9a70569a 36is( $image->w, 608, 'image has width' );
37is( $image->h, 126, 'image has height' );
38
50d9130a 39my $pixel_format = $image->format;
2e2fd270 40isa_ok( $pixel_format, 'SDL::PixelFormat' );
41is( $pixel_format->BitsPerPixel, 24, '24 BitsPerPixel' );
42is( $pixel_format->BytesPerPixel, 3, '3 BytesPerPixel' );
43is( $pixel_format->Rloss, 0, '0 Rloss' );
44is( $pixel_format->Gloss, 0, '0 Gloss' );
45is( $pixel_format->Bloss, 0, '0 Bloss' );
46is( $pixel_format->Aloss, 8, '8 Aloss' );
47is( $pixel_format->Rshift, 0, '0 Rshift' );
48is( $pixel_format->Gshift, 8, '8 Gshift' );
49is( $pixel_format->Bshift, 16, '16 Bshift' );
50is( $pixel_format->Ashift, 0, '0 Ashift' );
51is( $pixel_format->Rmask, 255, '255 Rmask' );
52is( $pixel_format->Gmask, 65280, '65280 Gmask' );
53is( $pixel_format->Bmask, 16711680, '16711680 Bmask' );
54is( $pixel_format->Amask, 0, '0 Amask' );
55is( $pixel_format->colorkey, 0, '0 colorkey' );
56is( $pixel_format->alpha, 255, '255 alpha' );
57
58my $pixel = SDL::MapRGB( $pixel_format, 255, 127, 0 );
59is( $pixel, 32767, '32767 pixel' );
34a219f7 60SDL::FillRect( $surface, SDL::Rect->new( 0, 0, 32, 32 ), $pixel );
9a70569a 61ok( 1, 'Managed to fill_rect' );
62
63my $small_rect = SDL::Rect->new( 0, 0, 64, 64 );
2e2fd270 64SDL::BlitSurface( $image, $small_rect, $surface, $small_rect );
9a70569a 65ok( 1, 'Managed to blit' );
66
67#my $image_format = $surface->display;
68#$surface->update_rect( 0, 0, 32, 32 );
69#ok( 1, 'Managed to update_rect' );
70#$surface->update_rects( SDL::Rect->new( 0, 0, 32, 32 ) );
71#ok( 1, 'Managed to update_rects' );
72
73my $app = SDL::App->new(
74 -title => "Test",
75 -width => 640,
76 -height => 480,
77 -init => SDL_INIT_VIDEO
78);
b7ed9095 79
80pass 'did this pass';
81
41a5a9ee 82my $image_format = $image->display;
83isa_ok( $image_format, 'SDL::Surface' );
84
85my $image_format_alpha = $image->display_alpha;
86isa_ok( $image_format_alpha, 'SDL::Surface' );
87
34a219f7 88my $app_pixel_format = $app->format;
b7ed9095 89
34a219f7 90my $rect = SDL::Rect->new( 0, 0, $app->w, $app->h );
b7ed9095 91
34a219f7 92my $blue_pixel = SDL::MapRGB( $app_pixel_format, 0x00, 0x00, 0xff );
93SDL::FillRect( $app, $rect, $blue_pixel );
94SDL::Surface::update_rect( $app, 0, 0, 0, 0 );
b7ed9095 95
9a70569a 96diag( 'This is in surface : ' . SDL::Surface::get_pixels($app) );
b7ed9095 97
98pass 'did this pass';
99
34a219f7 100SDL::Delay(100);