• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            隨筆 - 96  文章 - 255  trackbacks - 0
            <2008年7月>
            293012345
            6789101112
            13141516171819
            20212223242526
            272829303112
            3456789

            E-mail:zbln426@163.com QQ:85132383 長期尋找對戰略游戲感興趣的合作伙伴。

            常用鏈接

            留言簿(21)

            隨筆分類

            隨筆檔案

            SDL相關網站

            我的個人網頁

            我的小游戲

            資源下載

            搜索

            •  

            積分與排名

            • 積分 - 493151
            • 排名 - 39

            最新評論

            閱讀排行榜

            評論排行榜

            作者:龍飛

            5.1:準備工作。

            一張640*480大小的bmp文件作為背景,命名為:bg.bmp;
            一張128*128大小的bmp文件作為要在背景上移動的圖片,命名為:image.bmp。

            5.2:頭文件SurfaceClass.h
            //FileName: SurfaceClass.h

            #ifndef SURFACE_CLASS_H
            #define SURFACE_CLASS_H

            #include 
            <iostream>
            #include 
            <string>
            #include 
            "SDL/SDL.h"

            using std::string;

            class ScreenSurface
            {
            private:
                
            static int screenNum;
                
            int width;
                
            int height;
                
            int bpp;
                Uint32 flags;
                SDL_Surface
            * pScreen;
            public:
                ScreenSurface();
                ScreenSurface(
            int w, int h, int b = 0, Uint32 f = 0);
                
            ~ScreenSurface();
                SDL_Surface
            * point() const;
                
            bool flip() const;
            };

            class DisplaySurface
            {
            private:
                
            string fileName;
                SDL_Surface
            * pSurface;
                SDL_Surface
            * pScreen;
            public:
                DisplaySurface(
            string file_name, const ScreenSurface& screen);
                
            ~DisplaySurface();
                SDL_Surface
            * point() const;
                
            bool blit() const;
                
            bool blit(int at_x, int at_y) const;
                
            bool blit(int at_x, int at_y,
                            
            int from_x, int from_y, int w, int h,
                            
            int delta_x = 2int delta_y = 2const;
                
            bool blitToSurface(const DisplaySurface& dst_surface,
                                    
            int at_x = 0int at_y = 0const;
                
            bool blitToSurface(const DisplaySurface& dst_surface,
                                    
            int at_x, int at_y,
                                    
            int from_x, int from_y, int w, int h,
                                    
            int delta_x = 2int delta_y = 2const;
            };

            #endif

            5.3:類方法的實現文件:SurfaceClass.cpp
            #include "SurfaceClass.h"

            //VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
            //class ScreenSurface

            int ScreenSurface::screenNum = 0;

            ScreenSurface::ScreenSurface():
            width(
            640), height(480), bpp(32), flags(0)
            {
                
            if ( screenNum > 0 )
                    
            throw "DONOT create more than ONE screen!";
                
            if ( SDL_Init(SDL_INIT_VIDEO ) < 0  )
                    
            throw SDL_GetError();
                pScreen 
            = SDL_SetVideoMode(width, height, bpp, flags);
                screenNum
            ++;
            }

            ScreenSurface::ScreenSurface(
            int w, int h, int b, Uint32 f):
            width(w), height(h), bpp(b), flags(f)
            {
                
            if ( screenNum > 0 )
                    
            throw "DONOT create more than ONE screen!";
                
            if ( SDL_Init(SDL_INIT_VIDEO < 0 ) )
                    
            throw SDL_GetError();
                pScreen 
            = SDL_SetVideoMode(width, height, bpp, flags);
                screenNum
            ++;
            }

            ScreenSurface::
            ~ScreenSurface()
            {
                SDL_Quit();
            }

            SDL_Surface
            * ScreenSurface::point() const
            {
                
            return pScreen;
            }

            bool ScreenSurface::flip() const
            {
                
            if ( SDL_Flip(pScreen) < 0 )
                    
            return false;
                
            else return true;
            }

            //AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

            //VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
            //class DisplaySurface

            DisplaySurface::DisplaySurface(std::
            string file_name, const ScreenSurface& screen):
            fileName(file_name)
            {
                pSurface 
            = SDL_LoadBMP(file_name.c_str());
                
            if ( pSurface == 0 )
                    
            throw SDL_GetError();
                pScreen 
            = screen.point();
            }

            DisplaySurface::
            ~DisplaySurface()
            {
                SDL_FreeSurface(pSurface);
            }

            SDL_Surface
            * DisplaySurface::point() const
            {
                
            return pSurface;
            }

            bool DisplaySurface::blit() const
            {
                
            if ( SDL_BlitSurface(pSurface, 0, pScreen, 0< 0 )
                    
            return false;
                
            else return true;
            }


            bool DisplaySurface::blit(int at_x, int at_y) const
            {
                SDL_Rect offset;
                offset.x 
            = at_x;
                offset.y 
            = at_y;

                
            if ( SDL_BlitSurface(pSurface, 0, pScreen, &offset) < 0 )
                    
            return false;
                
            else return true;
            }

            bool DisplaySurface::blit(int at_x, int at_y,
                                      
            int from_x, int from_y, int w, int h,
                                      
            int delta_x, int delta_y) const
            {
                SDL_Rect offset;
                offset.x 
            = at_x - delta_x;
                offset.y 
            = at_y - delta_y;

                SDL_Rect dest;
                dest.x 
            = from_x - delta_x;
                dest.y 
            = from_y - delta_y;
                dest.w 
            = w + delta_x*2;
                dest.h 
            = h + delta_y*2;

                
            if ( SDL_BlitSurface(pSurface, &dest, pScreen, &offset) < 0 )
                    
            return false;
                
            else return true;
            }

            bool DisplaySurface::blitToSurface(const DisplaySurface& dst_surface, int at_x, int at_y) const
            {
                SDL_Rect offset;
                offset.x 
            = at_x;
                offset.y 
            = at_y;

                
            if ( &dst_surface == this )
                    
            throw "Cannot blit surface to itself!";

                
            if ( SDL_BlitSurface(pSurface, 0, dst_surface.point(), &offset) < 0 )
                    
            return false;
                
            else return true;
            }

            bool DisplaySurface::blitToSurface(const DisplaySurface& dst_surface,
                                                
            int at_x, int at_y,
                                                
            int from_x, int from_y, int w, int h,
                                                
            int delta_x, int delta_y) const
            {
                SDL_Rect offset;
                offset.x 
            = at_x - delta_x;
                offset.y 
            = at_y - delta_y;

                SDL_Rect dest;
                dest.x 
            = from_x - delta_x;
                dest.y 
            = from_y - delta_y;
                dest.w 
            = w + delta_x*2;
                dest.h 
            = h + delta_y*2;

                
            if ( &dst_surface == this )
                    
            throw "Cannot blit surface to itself!";

                
            if ( SDL_BlitSurface(pSurface, &dest, dst_surface.point(), &offset) < 0 )
                    
            return false;
                
            else return true;
            }

            //AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

            5.4:演示文件main.cpp
            #include "SurfaceClass.h"

            void game();
            int main(int argc ,char* argv[])
            {
                
            try {
                    game();
                }
                
            catch ( const char* s ) {
                    std::cerr 
            << s << std::endl;
                    
            return -1;
                }
                
                
            return 0;
            }

            void game()
            {
                
            //Create a SDL screen.
                const int SCREEN_WIDTH = 640;
                
            const int SCREEN_HEIGHT = 480;
                ScreenSurface screen(SCREEN_WIDTH, SCREEN_HEIGHT);

                
            //Create 2 SDL surface for the screen that just created.
                DisplaySurface backGround("bg.bmp", screen);
                DisplaySurface frontImage(
            "image.bmp", screen);
                
            //VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
                
            //way2: If use blitToSurface, must get a copy of backGround.
            /*

                DisplaySurface backGroundCopy("bg.bmp", screen);
            */
                
            //AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

                
            //Blit backGround surface to screen and flip the screen.
                if ( backGround.blit() == false )
                    
            throw SDL_GetError();
                
            if ( screen.flip() == false )
                    
            throw SDL_GetError();

                
            //variable for main loop.
                
            //key event for up, down, left and right.
                Uint8* keys;
                
            //moving image's coordinate.
                int xpos = 0;
                
            int ypos = 0;
                
            //moving image's size.
                const int IMG_WIDTH = 128;
                
            const int IMG_HEIGHT = 128;
                
            //main loop.
                bool gameOver = false;
                
            while( gameOver == false ){
                    
            //press ESC or click X to quit.
                    SDL_Event gameEvent;
                    
            while ( SDL_PollEvent(&gameEvent) != 0 ){
                        
            if ( gameEvent.type == SDL_QUIT ){
                            gameOver 
            = true;
                        }
                        
            if ( gameEvent.type == SDL_KEYUP ){
                            
            if ( gameEvent.key.keysym.sym == SDLK_ESCAPE ){
                                gameOver 
            = true;
                            }
                        }
                    }
                    
            //key event to move image.
                    keys = SDL_GetKeyState(0);
                    
            if ( keys[SDLK_UP] || keys[SDLK_w] ){
                        ypos 
            -= 1;
                    }
                    
            if ( keys[SDLK_DOWN]|| keys[SDLK_s] ){
                        ypos 
            += 1;
                    }
                    
            if ( keys[SDLK_LEFT]|| keys[SDLK_a] ){
                        xpos 
            -= 1;
                    }
                    
            if ( keys[SDLK_RIGHT]|| keys[SDLK_d] ){
                        xpos 
            += 1;
                    }

                    
            //Hold moving image on the backGround area.
                    if ( xpos <= 0 )
                        xpos 
            = 0;
                    
            if ( xpos >= SCREEN_WIDTH - IMG_WIDTH )
                        xpos 
            = SCREEN_WIDTH - IMG_WIDTH;
                    
            if ( ypos <= 0 )
                        ypos 
            = 0;
                    
            if ( ypos >= SCREEN_HEIGHT - IMG_HEIGHT )
                        ypos 
            = SCREEN_HEIGHT - IMG_HEIGHT;

                    
            //VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
                    
            //way1: blit surface to screen
                    
            //Blit a part of backGround ( a rectangular area ) to screen,
                    
            //then the original blitted backGround can be "cleaned".
                    if ( backGround.blit(xpos, ypos, xpos, ypos, IMG_WIDTH, IMG_HEIGHT) == false )
                        
            throw SDL_GetError();
                    
            //Blit the image to screen.
                    if ( frontImage.blit(xpos, ypos) == false )
                        
            throw SDL_GetError();
                    
            //Flip the screen
                    if ( screen.flip() == false )
                        
            throw SDL_GetError();
                    
            //AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

                    
            //VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV
                    
            //way2: blit surface to surface, then blit the last surface to screen
            /*

                    if ( backGroundCopy.blitToSurface(backGround, xpos, ypos, xpos, ypos, IMG_WIDTH, IMG_HEIGHT) == false )
                        throw SDL_GetError();
                    if ( frontImage.blitToSurface(backGround, xpos, ypos) == false )
                        throw SDL_GetError();
                    if ( backGround.blit() == false )
                        throw SDL_GetError();
                    if ( screen.flip() == false )
                        throw SDL_GetError();
            */
                    
            //AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
                }

                
            return;
            }
            posted on 2008-02-21 15:22 lf426 閱讀(3052) 評論(4)  編輯 收藏 引用 所屬分類: SDL入門教程

            FeedBack:
            # re: SDL入門教程(五):5、本章范例的完整源代碼[未登錄] 2008-09-16 09:21 伊凡
            我把
            //key event to move image.
            keys = SDL_GetKeyState(0);
            if ( keys[SDLK_UP] || keys[SDLK_w] ){
            ypos -= 1;
            }
            if ( keys[SDLK_DOWN]|| keys[SDLK_s] ){
            ypos += 1;
            }
            if ( keys[SDLK_LEFT]|| keys[SDLK_a] ){
            xpos -= 1;
            }
            if ( keys[SDLK_RIGHT]|| keys[SDLK_d] ){
            xpos += 1;
            }

            改成
            //key event to move image.
            keys = SDL_GetKeyState(0);
            if ( keys[SDLK_UP] || keys[SDLK_w] ){
            ypos -= 3;
            }
            if ( keys[SDLK_DOWN]|| keys[SDLK_s] ){
            ypos += 3;
            }
            if ( keys[SDLK_LEFT]|| keys[SDLK_a] ){
            xpos -= 3;
            }
            if ( keys[SDLK_RIGHT]|| keys[SDLK_d] ){
            xpos += 3;
            }
            以后出現疊影。如果用變量來代替數字來實現變速疊影效果就更明顯。
            我想知道是為什么?顯卡刷新速度不夠快么?  回復  更多評論
              
            # re: SDL入門教程(五):5、本章范例的完整源代碼[未登錄] 2008-09-16 11:17 lf426
            增加delta_x和delta_y的值。  回復  更多評論
              
            # re: SDL入門教程(五):5、本章范例的完整源代碼[未登錄] 2008-09-16 14:39 伊凡
            謝謝你的回答
            還有這里是不是寫多了?
            if ( SDL_Init(SDL_INIT_VIDEO < 0 ) )
            throw SDL_GetError();
            難道不是
            if ( SDL_Init(SDL_INIT_VIDEO )< 0 )
            throw SDL_GetError();

              回復  更多評論
              
            # re: SDL入門教程(五):5、本章范例的完整源代碼[未登錄] 2008-09-16 22:37 lf426
            是我寫錯了,謝謝提醒。教程里面的源代碼還很不成熟,更進一步的代碼請在“mySDL_GameEngine”中察看。  回復  更多評論
              
            精品少妇人妻av无码久久| 国产精品成人99久久久久91gav| 女人高潮久久久叫人喷水| 亚洲AV无一区二区三区久久| 久久国产精品-久久精品| 久久久网中文字幕| 国产亚洲精品美女久久久| 久久精品成人免费国产片小草| 三级片免费观看久久| 国产精品久久国产精麻豆99网站| 欧美粉嫩小泬久久久久久久| 久久国产色AV免费观看| 四虎久久影院| 久久e热在这里只有国产中文精品99| 一本一道久久a久久精品综合| 丁香狠狠色婷婷久久综合| 久久精品国产清自在天天线| 久久精品成人一区二区三区| 国内精品久久久久久99蜜桃| 手机看片久久高清国产日韩| 亚洲午夜久久影院| 波多野结衣中文字幕久久| 日韩精品久久无码人妻中文字幕| 久久精品无码一区二区三区免费| 国产精品久久永久免费| 精品久久8x国产免费观看| 亚洲AV无码久久| 少妇人妻88久久中文字幕| 亚洲国产另类久久久精品黑人| 日韩亚洲国产综合久久久| 久久男人AV资源网站| 久久婷婷五月综合97色直播| 久久伊人亚洲AV无码网站| 久久久精品久久久久久 | 日韩av无码久久精品免费| 久久久久亚洲AV无码观看| 亚洲午夜无码AV毛片久久| 2021国产精品久久精品| 偷偷做久久久久网站| 亚洲国产精品无码久久久蜜芽| 无码超乳爆乳中文字幕久久|