Added and tested map_RGB[A] to SDL::Video
[sdlgit/SDL_perl.git] / t / core_video.t
1 #!/usr/bin/perl -w
2 use strict;
3 use SDL;
4 use SDL::Color;
5 use SDL::Surface;
6 use SDL::Config;
7 use Devel::Peek;
8 use Data::Dumper;
9 use Test::More;
10 use SDL::Rect;
11
12 plan ( tests => 19 );
13
14 use_ok( 'SDL::Video' ); 
15
16 my @done =
17         qw/ 
18         get_video_surface
19         get_video_info
20         video_driver_name
21         list_modes
22         set_video_mode
23         video_mode_ok
24         update_rect
25         update_rects
26         flip
27         set_colors
28         set_palette
29         set_gamma
30         set_gamma_ramp
31         map_RGB
32         map_RGBA
33         /;
34
35 can_ok ('SDL::Video', @done); 
36
37 #testing get_video_surface
38 SDL::init(SDL_INIT_VIDEO);                                                                          
39                                                                                                     
40 my $display = SDL::Video::set_video_mode(640,480,32, SDL_SWSURFACE );
41
42 if(!$display){
43          plan skip_all => 'Couldn\'t set video mode: '. SDL::geterror();
44     }
45
46 #diag('Testing SDL::Video');
47
48 isa_ok(SDL::Video::get_video_surface(), 'SDL::Surface', '[get_video_surface] Checking if we get a surface ref back'); 
49
50 isa_ok(SDL::Video::get_video_info(), 'SDL::VideoInfo', '[get_video_info] Checking if we get videoinfo ref back');
51
52 my $driver_name = SDL::Video::video_driver_name();
53
54 pass '[video_driver_name] This is your driver name: '.$driver_name;
55
56
57
58 is( ref( SDL::Video::list_modes( $display->format , SDL_SWSURFACE )), 'ARRAY', '[list_modes] Returned an ARRAY! ');
59
60 cmp_ok(SDL::Video::video_mode_ok( 100, 100, 16, SDL_SWSURFACE), '>=', 0, "[video_mode_ok] Checking if an integer was return");
61
62 isa_ok(SDL::Video::set_video_mode( 100, 100 ,16, SDL_SWSURFACE), 'SDL::Surface', '[set_video_more] Checking if we get a surface ref back'); 
63
64
65 #TODO: Write to surface and check inf pixel in that area got updated.
66
67 SDL::Video::update_rect($display, 0, 0, 0, 0);
68
69 #TODO: Write to surface and check inf pixel in that area got updated.
70 SDL::Video::update_rects($display, SDL::Rect->new(0, 10, 20, 20));
71
72 my $value = SDL::Video::flip($display);
73 is( ($value == 0)  ||  ($value == -1), 1,  '[flip] returns 0 or -1'  );
74
75 $value = SDL::Video::set_colors($display, 0, SDL::Color->new(0,0,0));
76 is(  $value , 0,  '[set_colors] returns 0 trying to write to 32 bit display'  );
77
78 $value = SDL::Video::set_palette($display, SDL_LOGPAL|SDL_PHYSPAL, 0);
79
80 is(  $value , 0,  '[set_palette] returns 0 trying to write to 32 bit surface'  );
81
82 my $zero = [0,0,0,0]; 
83 SDL::Video::set_gamma_ramp($zero, $zero, $zero);  pass '[set_gamma_ramp] ran';
84
85 SDL::Video::set_gamma( 1.0, 1.0, 1.0 ); pass '[set_gamma] ran ';
86
87 my @b_w_colors;
88
89 for(my $i=0;$i<256;$i++){
90         $b_w_colors[$i] = SDL::Color->new($i,$i,$i);
91       }
92 my $hwdisplay = SDL::Video::set_video_mode(640,480,8, SDL_HWSURFACE );
93
94 if(!$hwdisplay){
95          plan skip_all => 'Couldn\'t set video mode: '. SDL::geterror();
96     }
97
98 $value = SDL::Video::set_colors($hwdisplay, 0);
99 is(  $value , 0,  '[set_colors] returns 0 trying to send empty colors to 8 bit surface'  );
100
101 $value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|SDL_PHYSPAL, 0);
102
103 is(  $value , 0,  '[set_palette] returns 0 trying to send empty colors to 8 bit surface'  );
104
105
106 $value = SDL::Video::set_colors($hwdisplay, 0, @b_w_colors);
107 is( $value , 1,  '[set_colors] returns '.$value  );
108
109 $value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|SDL_PHYSPAL, 0, @b_w_colors );
110
111 is(  $value , 1,  '[set_palette] returns 1'  );
112
113
114 is( SDL::Video::map_RGB($hwdisplay->format, 10, 10 ,10) > 0, 1, '[map_RGB] maps correctly to 8-bit surface');
115 is( SDL::Video::map_RGBA($hwdisplay->format, 10, 10 ,10, 10) > 0, 1, '[map_RGBA] maps correctly to 8-bit surface');
116
117 my @left = qw/
118         get_gamma_ramp
119         map_RGBA
120         get_RGB
121         get_RGBA
122         create_RGB_surface_from
123         lock_surface
124         unlock_surface
125         convert_surface
126         display_format
127         display_format_alpha
128         load_BMP
129         save_BMP
130         set_color_key
131         set_alpha
132         set_clip_rect
133         get_clip_rect
134         blit_surface
135         fill_rect
136         GL_load_library
137         GL_get_proc_address
138         GL_get_attribute
139         GL_set_attribute
140         GL_swap_buffers
141         GL_attr
142         lock_YUV_overlay
143         unlock_YUV_overlay
144         display_YUV_overlay
145         /;
146
147 my $why = '[Percentage Completion] '.int( 100 * $#done / ($#done + $#left) ) ."\% implementation. $#done / ".($#done+$#left); 
148
149 TODO:
150 {
151         local $TODO = $why;
152         pass "\nThe following functions:\n".join ",", @left; 
153 }
154         diag  $why;
155
156
157 pass 'Are we still alive? Checking for segfaults';