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