青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆 - 96  文章 - 255  trackbacks - 0
<2008年4月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

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

常用鏈接

留言簿(21)

隨筆分類

隨筆檔案

SDL相關網站

我的個人網頁

我的小游戲

資源下載

搜索

  •  

積分與排名

  • 積分 - 495654
  • 排名 - 39

最新評論

閱讀排行榜

評論排行榜

//UVi Soft ( 2008 )
//Long Fei ( lf426 ), E-mail: zbln426@163.com
//Laboratory of ZaiBieLiunNian
//http://www.shnenglu.com/lf426/

//FileName: ButtonClass.hpp

#ifndef BUTTON_CLASS_HPP
#define BUTTON_CLASS_HPP

#include 
"SurfaceClass.hpp"

class BaseButton
{
private:
    
//
protected:
    
int atX;
    
int atY;
    
int offset;
    
int w;
    
int h;
    
//ButtonEffect
    bool inBox;
    
bool clickDown;
    
bool clickUp;
public:
    BaseButton();
    
virtual ~BaseButton();
    
void setup(int at_x, int at_y, int _offset = 0);
    
virtual void colorKey(Uint8 r, Uint8 g, Uint8 b) = 0;
    
virtual void blitOut() const = 0;
    
virtual void blitOver() const = 0;
    
virtual void blitDown() const = 0;
    
virtual void addText(const TextSurface& out_text, const TextSurface& over_text) = 0;
    
bool mouseOver(const SDL_Event& gameEvent) const;
    
bool mouseDown(const SDL_Event& gameEvent) const;
    
bool mouseUp(const SDL_Event& gameEvent) const;
    
bool mouseUpOutside(const SDL_Event& gameEvent) const;
    
bool effectiveClick(const SDL_Event& game_event);
};

class Button: public BaseButton
{
private:
    
//
protected:
    BaseSurface outImg;
    BaseSurface overImg;
public:
    Button(
const std::string& outImg_fileName, const std::string& overImg_fileName, const ScreenSurface& screen);
    Button(
const BaseSurface& out_img, const BaseSurface& over_img);
    Button(
const std::string buttonText, const ScreenSurface& screen,
        Uint8 out_r 
= 0xFF, Uint8 out_g = 0xFF, Uint8 out_b = 0xFF, Uint8 on_r = 0, Uint8 on_g = 0, Uint8 on_b = 0xFF,
        
int ttf_size = 28const std::string& ttf_fileName = "./fonts/gkai00mp.ttf");
    
virtual ~Button();
    
virtual void colorKey(Uint8 r = 0, Uint8 g = 0xFF, Uint8 b = 0xFF);
    
virtual void blitOut() const;
    
virtual void blitOver() const;
    
virtual void blitDown() const;
    
virtual void addText(const TextSurface& out_text, const TextSurface& over_text);
};

class ButtonPlus: public Button
{
private:
    BaseSurface downImg;
public:
    ButtonPlus(
const std::string& outImg_fileName, const std::string& overImg_fileName, const std::string& downImg_fileName,
        
const ScreenSurface& screen);
    ButtonPlus(
const BaseSurface& out_img, const BaseSurface& over_img, const BaseSurface& down_img);
    
virtual void colorKey(Uint8 r = 0, Uint8 g = 0xFF, Uint8 b = 0xFF);
    
virtual void blitDown() const;
    
virtual void addText(const TextSurface& out_text, const TextSurface& over_text);
};

class SpriteButton: public BaseButton
{
private:
    PictureSurface spriteSheet;
    
int outX;
    
int outY;
    
int overX;
    
int overY;
    
int downX;
    
int downY;
public:
    SpriteButton(
const std::string& spriteSheet_fileName, const ScreenSurface& screen,
        
int button_w, int button_h,
        
int out_x, int out_y, int over_x, int over_y, int down_x, int down_y);
    
virtual void colorKey(Uint8 r = 0, Uint8 g = 0xFF, Uint8 b = 0xFF);
    
virtual void blitOut() const;
    
virtual void blitOver() const;
    
virtual void blitDown() const;
    
virtual void addText(const TextSurface& out_text, const TextSurface& over_text);
};

#endif

//UVi Soft ( 2008 )
//Long Fei ( lf426 ), E-mail: zbln426@163.com
//Laboratory of ZaiBieLiunNian
//http://www.shnenglu.com/lf426/

#include 
"ButtonClass.hpp"

//*************************
//class BaseButton

BaseButton::BaseButton():
atX(
0), atY(0), w(0), h(0), offset(0),
inBox(
false), clickDown(false), clickUp(false)
{}

BaseButton::
~BaseButton()
{}

void BaseButton::setup(int at_x, int at_y, int _offset)
{
    atX 
= at_x;
    atY 
= at_y;
    offset 
= _offset;
}

bool BaseButton::mouseOver(const SDL_Event& gameEvent) const
{
    
if ( gameEvent.type == SDL_MOUSEMOTION ){
        
int mouse_at_x = gameEvent.motion.x;
        
int mouse_at_y = gameEvent.motion.y;
        
if ( mouse_at_x >= atX && mouse_at_x <= atX + w &&
            mouse_at_y 
>= atY && mouse_at_y <= atY + h )
                
return true;
        
else return false;
    }
    
else return false;
}

bool BaseButton::mouseDown(const SDL_Event& gameEvent) const
{
    
if ( gameEvent.type == SDL_MOUSEBUTTONDOWN )
        
if( gameEvent.button.button == SDL_BUTTON_LEFT ){
            
int mouse_at_x = gameEvent.button.x;
            
int mouse_at_y = gameEvent.button.y;
            
if ( mouse_at_x >= atX && mouse_at_x <= atX + w &&
                mouse_at_y 
>= atY && mouse_at_y <= atY + h )
                
return true;
            
else return false;
        }
        
else return false;
    
else return false;
}

bool BaseButton::mouseUp(const SDL_Event& gameEvent) const
{
    
if ( gameEvent.type == SDL_MOUSEBUTTONUP )
        
if( gameEvent.button.button == SDL_BUTTON_LEFT ){
            
int mouse_at_x = gameEvent.button.x;
            
int mouse_at_y = gameEvent.button.y;
            
if ( mouse_at_x >= atX && mouse_at_x <= atX + w &&
                mouse_at_y 
>= atY && mouse_at_y <= atY + h )
                
return true;
            
else return false;
        }
        
else return false;
    
else return false;
}

bool BaseButton::mouseUpOutside(const SDL_Event& gameEvent) const
{
    
if ( gameEvent.type == SDL_MOUSEBUTTONUP )
        
if( gameEvent.button.button == SDL_BUTTON_LEFT ){
            
int mouse_at_x = gameEvent.button.x;
            
int mouse_at_y = gameEvent.button.y;
            
if ( mouse_at_x <= atX || mouse_at_x >= atX + w ||
                mouse_at_y 
<= atY || mouse_at_y >= atY + h )
                
return true;
            
else return false;
        }
        
else return false;
    
else return false;
}

bool BaseButton::effectiveClick(const SDL_Event& game_event)
{
    inBox 
= this->mouseOver(game_event);
    
if ( this->mouseDown(game_event) == true ){
        clickDown 
= true;
        inBox 
= true;
    }
    
if ( this->mouseUp(game_event) == true ){
        
if ( clickDown == true )
            clickUp 
= true;
        inBox 
= true;
    }
    
if ( this->mouseUpOutside(game_event) == true )
        clickDown 
= false;

    
if ( inBox == true && clickDown == false ){
        
this->blitOver();
        
return false;
    }
    
else if ( inBox == true && clickDown == true ){
        
if ( clickUp == true ){
            clickUp 
= false;
            clickDown 
= false;
            
this->blitOver();
            
return true;
        } 
else {
            
this->blitDown();
            
return false;
        }
    }
    
else {
        
this->blitOut();
        
return false;
    }
}

//*************************


//*************************
//class Button
Button::Button(const std::string& outImg_fileName, const std::string& overImg_fileName, const ScreenSurface& screen):
BaseButton(),
outImg(PictureSurface(outImg_fileName, screen)),
overImg(PictureSurface(overImg_fileName, screen))
{
    w 
= outImg.point()->w;
    h 
= outImg.point()->h;
}

Button::Button(
const BaseSurface& out_img, const BaseSurface& over_img):
BaseButton(),
outImg(out_img), overImg(over_img)
{
    w 
= outImg.point()->w;
    h 
= outImg.point()->h;
}

Button::Button(
const std::string buttonText, const ScreenSurface& screen,
               Uint8 out_r, Uint8 out_g, Uint8 out_b, Uint8 on_r, Uint8 on_g, Uint8 on_b,
               
int ttf_size, const std::string& ttf_fileName):
BaseButton(),
outImg(TextSurface(buttonText, screen, out_r, out_g, out_b, ttf_size, ttf_fileName)),
overImg(TextSurface(buttonText, screen, on_r, on_g, on_b, ttf_size, ttf_fileName))
{
    w 
= outImg.point()->w;
    h 
= outImg.point()->h;
}

Button::
~Button()
{}

void Button::colorKey(Uint8 r, Uint8 g, Uint8 b)
{
    outImg.colorKey(r, g, b);
    overImg.colorKey(r, g, b);
}

void Button::blitOut() const
{
    outImg.blit(atX, atY);
}

void Button::blitOver() const
{
    overImg.blit(atX, atY);
}

void Button::blitDown() const
{
    overImg.blit(atX
+offset, atY+offset);
}

void Button::addText(const TextSurface& out_text, const TextSurface& over_text)
{
    out_text.blit(outImg);
    over_text.blit(overImg);
}

//****************************

//****************************
//class ButtonPlus
ButtonPlus::ButtonPlus(const std::string& outImg_fileName, const std::string& overImg_fileName, const std::string& downImg_fileName,
        
const ScreenSurface& screen):
Button(outImg_fileName, overImg_fileName, screen),
downImg(PictureSurface(downImg_fileName, screen))
{}

ButtonPlus::ButtonPlus(
const BaseSurface& out_img, const BaseSurface& over_img, const BaseSurface& down_img):
Button(out_img, over_img),
downImg(down_img)
{}

void ButtonPlus::colorKey(Uint8 r, Uint8 g, Uint8 b)
{
    Button::colorKey(r, g, b);
    downImg.colorKey(r, g, b);
}

void ButtonPlus::blitDown() const
{
    downImg.blit(atX
+offset, atY+offset);
}

void ButtonPlus::addText(const TextSurface& out_text, const TextSurface& over_text)
{
    Button::addText(out_text, over_text);
    over_text.blit(downImg);
}

//****************************

//****************************
//class SpriteButton

SpriteButton::SpriteButton(
const std::string& spriteSheet_fileName, const ScreenSurface& screen,
        
int button_w, int button_h,
        
int out_x, int out_y, int over_x, int over_y, int down_x, int down_y):
BaseButton(),
spriteSheet(spriteSheet_fileName, screen),
outX(out_x), outY(out_y), overX(over_x), overY(over_y), downX(down_x), downY(down_y)
{
    w 
= button_w;
    h 
= button_h;
}

void SpriteButton::colorKey(Uint8 r, Uint8 g, Uint8 b)
{
    spriteSheet.colorKey(r, g, b);
}

void SpriteButton::blitOut() const
{
    spriteSheet.blit(atX, atY, outX, outY, w, h);
}

void SpriteButton::blitOver() const
{
    spriteSheet.blit(atX, atY, overX, overY, w, h);
}

void SpriteButton::blitDown() const
{
    spriteSheet.blit(atX
+offset, atY+offset, downX, downY, w, h);
}

void SpriteButton::addText(const TextSurface& out_text, const TextSurface& over_text)
{
    
const int DELTA_outX = (w - out_text.point()->w) / 2;
    
const int DELTA_outY = (h - out_text.point()->h) / 2;
    
const int DELTA_overX = (w - over_text.point()->w) / 2;
    
const int DELTA_overY = (h - over_text.point()->h) / 2;

    out_text.blit(spriteSheet, outX
+DELTA_outX, outY+DELTA_outY);
    over_text.blit(spriteSheet, overX
+DELTA_overX, overY+DELTA_overY);
    over_text.blit(spriteSheet, downX
+DELTA_overX, downY+DELTA_overY);
}

//*********************************

lib: iconv.lib
     SDL_ttf.lib
     SDL.lib, SDLmain.lib
     SDL_image.lib

dll: iconv.dll
     SDL_ttf.dll, libfreetype-6.dll, zlib1.dll
     SDL.dll
     jpeg.dll, libpng12-0.dll, libtiff-3.dll, SDL_image.dll, zlib1.dll

gkai00mp.ttf為Debian楷體字庫。

last update: 2008-04-15

posted on 2008-04-15 21:29 lf426 閱讀(2769) 評論(1)  編輯 收藏 引用 所屬分類: mySDL_GameEngine

FeedBack:
# re: ButtonClass 2012-08-06 00:09 hehe
樓主給個示例吧, 不用啊.  回復  更多評論
  

只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
              久久久国产午夜精品| 噜噜噜噜噜久久久久久91| 夜夜嗨av一区二区三区四区| 亚洲精品极品| 一二美女精品欧洲| 亚洲欧美日韩国产成人精品影院| 欧美在线观看www| 你懂的视频欧美| 亚洲精选成人| 久久久久这里只有精品| 欧美日韩亚洲精品内裤| 韩国v欧美v日本v亚洲v| 日韩视频―中文字幕| 久久久久久九九九九| 久久久91精品| 国产精品自在欧美一区| 亚洲激情欧美激情| 久久av老司机精品网站导航| 亚洲老司机av| 国产欧美欧洲在线观看| 亚洲欧洲一区二区在线播放| 欧美怡红院视频一区二区三区| 新片速递亚洲合集欧美合集| 欧美精品免费看| 一区视频在线看| 久久精品国产99国产精品澳门| 正在播放欧美视频| 欧美精品日本| 欧美一级午夜免费电影| 亚洲亚洲精品在线观看| 欧美日韩国产高清视频| 一本色道久久88综合亚洲精品ⅰ| 亚洲天堂视频在线观看| 在线观看91久久久久久| 久久国产黑丝| 欧美日本一道本在线视频| 亚洲精品一区在线| 亚洲国产成人av| 久久久久久久久久久久久久一区| 亚洲精选久久| 久久久999| 欧美一区二区在线视频| 欧美日韩国产天堂| 欧美电影电视剧在线观看| 老司机精品视频网站| 亚洲高清不卡在线| 亚洲国产成人不卡| 国内一区二区在线视频观看| 在线中文字幕一区| 一本色道久久综合狠狠躁篇的优点| 欧美亚洲一区二区三区| 精品成人在线观看| 亚洲免费在线观看视频| 国产综合第一页| 美女主播视频一区| 欧美激情视频给我| 欧美成人亚洲| 曰韩精品一区二区| 欧美在线黄色| 亚洲精品中文字幕在线| 美女精品网站| 免费国产自线拍一欧美视频| 狠狠色丁香婷婷综合| 欧美一区2区三区4区公司二百| 午夜精品久久久久久久久久久久| 欧美一级午夜免费电影| 欧美亚洲视频一区二区| 国产精品扒开腿做爽爽爽软件 | 欧美亚洲一区| 午夜精品久久久久久久久久久久久 | 久久免费视频一区| 噜噜噜噜噜久久久久久91| 老巨人导航500精品| 欧美日韩在线视频首页| 久久久久久久久综合| 国产欧美日韩不卡免费| 欧美一区二区精美| 久久夜精品va视频免费观看| 欧美视频一二三区| 中文日韩在线| 欧美中文字幕视频| 国产中文一区| 免费日韩av电影| 亚洲欧美日韩一区在线| 国产精品亚洲一区| 亚洲精品美女在线| 亚洲综合三区| 免费成人激情视频| 日韩西西人体444www| 亚洲高清免费视频| 欧美日韩精品欧美日韩精品一| 日韩网站免费观看| 久久精品一区二区三区中文字幕| 国产在线观看一区| 欧美激情bt| 欧美jizzhd精品欧美巨大免费| 亚洲全黄一级网站| 国产精品久久久久久久久久直播| 欧美激情精品久久久久| 韩国av一区二区三区| 欧美成人免费全部| 葵司免费一区二区三区四区五区| 亚洲精品色婷婷福利天堂| 久久疯狂做爰流白浆xx| 欧美一级夜夜爽| 在线看欧美视频| 久久久久久久一区| 日韩视频中文| 老司机一区二区三区| 亚洲无线观看| 欧美另类69精品久久久久9999| 亚洲欧美综合网| 欧美一区二区三区电影在线观看| 亚洲成人在线| 国产精品人人做人人爽人人添| 欧美成人精品不卡视频在线观看 | 欧美黄色免费网站| 午夜激情亚洲| 日韩一级二级三级| 尤物99国产成人精品视频| 国产精品久久一级| 欧美—级在线免费片| 久久夜色精品一区| 亚洲国产精品va在看黑人| 亚洲日本一区二区三区| 国产一区高清视频| 欧美性大战xxxxx久久久| 欧美成人乱码一区二区三区| 欧美影院精品一区| 亚洲男人第一网站| 亚洲深夜av| 中国女人久久久| 夜夜嗨av一区二区三区网页| 亚洲人成网站在线播| 亚洲大胆人体视频| 一区二区三区国产精品| 国产精品卡一卡二| 国产精品成人观看视频免费| 午夜精品免费| 亚洲一品av免费观看| 艳女tv在线观看国产一区| 亚洲黄色尤物视频| 亚洲欧美中文另类| 亚洲免费在线观看| 亚洲一级免费视频| 亚洲欧美国内爽妇网| 亚洲综合色视频| 午夜免费在线观看精品视频| 亚洲尤物在线视频观看| 校园春色综合网| 欧美一区二区三区视频免费播放| 午夜国产一区| 久久久午夜精品| 欧美 日韩 国产在线| 亚洲国产欧美不卡在线观看| 亚洲国产精品久久人人爱蜜臀| 亚洲国产另类精品专区| 亚洲精品社区| 亚洲影院免费观看| 日韩视频在线免费| 亚洲午夜免费福利视频| 先锋亚洲精品| 美日韩精品视频| 欧美成人精品三级在线观看| 欧美日韩在线不卡| 国产午夜精品久久久| 欧美激情a∨在线视频播放| 欧美人成在线| 国产乱码精品一区二区三区不卡| 好看的亚洲午夜视频在线| 亚洲国产日韩欧美在线图片| 亚洲精品一区二区三区av| 亚洲视频免费| 亚洲精品一区二区三区樱花| 亚洲视频日本| 久久久精品国产一区二区三区 | 欧美亚洲三区| 欧美高清在线观看| 亚洲午夜高清视频| 久久久久久日产精品| 欧美日韩午夜在线视频| 国语自产精品视频在线看8查询8| 亚洲三级毛片| 久久精品亚洲乱码伦伦中文 | 久久久久在线观看| 最新成人在线| 欧美一区二区三区免费观看| 欧美成人午夜77777| 国产亚洲激情在线| 国产区精品在线观看| 亚洲精品久久久久久久久久久久| 午夜一区二区三区在线观看| 亚洲国产精品精华液2区45 | 亚洲国产第一页| 西瓜成人精品人成网站| 欧美日韩一区二区在线播放| 激情五月婷婷综合| 亚洲欧美日韩区| 亚洲精品视频一区二区三区| 久久蜜桃资源一区二区老牛|