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