免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 606 | 回复: 0
打印 上一主题 下一主题

Surface Loading and Blitting [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-26 10:53 |只看该作者 |倒序浏览

/*This source code copyrighted by Lazy Foo' Productions (2006) and may not be redestributed without written permission.*/
//The headers
#include "SDL/SDL.h"
#include
//The attributes of the screen
const int SCREEN_WIDTH = 640;
const int SCREEN_HEIGHT = 480;
const int SCREEN_BPP = 32;
//The surfaces that will be used
SDL_Surface *message = NULL;
SDL_Surface *background = NULL;
SDL_Surface *screen = NULL;
SDL_Surface *load_image( std::string filename )
{
    //Temporary storage for the image that's loaded
    SDL_Surface* loadedImage = NULL;
   
    //The optimized image that will be used
    SDL_Surface* optimizedImage = NULL;
   
    //Load the image
    loadedImage = SDL_LoadBMP( filename.c_str() );
   
    //If nothing went wrong in loading the image
    if( loadedImage != NULL )
    {
        //Create an optimized image
        optimizedImage = SDL_DisplayFormat( loadedImage );
        
        //Free the old image
        SDL_FreeSurface( loadedImage );
    }
   
    //Return the optimized image
    return optimizedImage;
}
void apply_surface( int x, int y, SDL_Surface* source, SDL_Surface* destination )
{
    //Make a temporary rectangle to hold the offsets
    SDL_Rect offset;
   
    //Give the offsets to the rectangle
    offset.x = x;
    offset.y = y;
   
    //Blit the surface
    SDL_BlitSurface( source, NULL, destination, &offset );
}
int main( int argc, char* args[] )
{
    //Initialize all SDL subsystems
    if( SDL_Init( SDL_INIT_EVERYTHING ) == -1 )
    {
        return 1;   
    }
   
    //Set up the screen
    screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, SDL_SWSURFACE );
   
    //If there was in error in setting up the screen
    if( screen == NULL )
    {
        return 1;   
    }
   
    //Set the window caption
    SDL_WM_SetCaption( "Hello World", NULL );
   
    //Load the images
    message = load_image( "hello_world.bmp" );
    background = load_image( "background.bmp" );
   
    //Apply the background to the screen
    apply_surface( 0, 0, background, screen );
   
    //Apply the message to the screen
    apply_surface( 180, 140, message, screen );
   
    //Update the screen
    if( SDL_Flip( screen ) == -1 )
    {
        return 1;   
    }
   
    //Wait 2 seconds
    SDL_Delay( 2000 );
   
    //Free the surfaces
    SDL_FreeSurface( message );
    SDL_FreeSurface( background );
   
    //Quit SDL
    SDL_Quit();
   
    return 0;   
}


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/19671/showart_118348.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP