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

隨筆 - 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>
              韩日在线一区| 欧美激情亚洲自拍| 欧美日韩国产一区二区三区| 在线观看欧美视频| 亚洲免费激情| 欧美国产丝袜视频| 免费日韩av| 亚洲国产精品日韩| 老色鬼久久亚洲一区二区 | 嫩模写真一区二区三区三州| 国产精品视频福利| 亚洲视频 欧洲视频| 欧美国产日韩一区二区| 可以看av的网站久久看| 在线播放亚洲一区| 麻豆精品91| 久久久久久九九九九| 狠狠色伊人亚洲综合网站色| 小嫩嫩精品导航| 午夜激情亚洲| 国内免费精品永久在线视频| 欧美在线欧美在线| 欧美一区二区免费| 国内精品久久久久久久影视麻豆| 欧美在线在线| 久久久www成人免费精品| 国产一区二区三区不卡在线观看| 久久激情综合网| 久久久一区二区| 亚洲高清视频在线观看| 欧美成人一区二区三区在线观看| 老司机aⅴ在线精品导航| 亚洲美女在线观看| 一区二区不卡在线视频 午夜欧美不卡在 | 久久精品日韩欧美| 一本一本a久久| 国产农村妇女毛片精品久久麻豆| 久久精品道一区二区三区| 久久久精品国产一区二区三区| 极品尤物一区二区三区| 欧美激情第4页| 性欧美激情精品| 91久久久久久国产精品| 99国产一区| 国产自产v一区二区三区c| 欧美激情精品久久久久久| 欧美日韩精品不卡| 午夜精品视频在线| 久久人91精品久久久久久不卡| 9人人澡人人爽人人精品| 亚洲一级免费视频| 亚洲高清视频在线观看| 这里只有精品视频在线| 狠狠色丁香婷婷综合影院| 91久久夜色精品国产网站| 国产精品伦子伦免费视频| 久久综合电影| 欧美日韩在线不卡一区| 久久影院午夜片一区| 欧美日韩视频在线观看一区二区三区| 久久国产黑丝| 欧美日韩另类综合| 欧美一区二区三区另类| 欧美激情欧美狂野欧美精品| 欧美亚洲综合久久| 欧美日韩精品福利| 欧美高清在线一区| 国产欧美1区2区3区| 亚洲精品一级| 亚洲精品久久久久久一区二区| 欧美有码在线视频| 亚洲先锋成人| 欧美大片一区二区| 免费在线成人| 国产日韩欧美高清| 亚洲午夜精品17c| 日韩视频永久免费观看| 性色av香蕉一区二区| 亚洲视频专区在线| 欧美人妖在线观看| 亚洲第一页在线| 亚洲电影免费观看高清完整版在线 | 欧美一区二区三区免费观看| 蜜臀a∨国产成人精品| 久久久91精品国产一区二区精品| 国产精品二区三区四区| 久久久97精品| 国产综合欧美| 久久精品卡一| 久久视频精品在线| 国产亚洲毛片在线| 欧美一区亚洲二区| 久久久久国产精品麻豆ai换脸| 欧美日韩国产限制| 艳妇臀荡乳欲伦亚洲一区| 一区二区三区日韩精品视频| 欧美电影资源| 欧美成人性生活| 亚洲伦理在线免费看| 欧美激情网站在线观看| 亚洲激情社区| 亚洲小说欧美另类社区| 国产精品九色蝌蚪自拍| 在线一区二区视频| 香蕉成人久久| 一区二区三区亚洲| 欧美黄网免费在线观看| 一区二区三区四区精品| 亚洲一区久久| 国产偷自视频区视频一区二区| 亚洲欧美综合v| 久久婷婷av| 亚洲裸体视频| 国产精品婷婷| 性久久久久久久久| 欧美成人中文字幕| 中文精品视频| 欧美性猛片xxxx免费看久爱| 亚洲欧美日本日韩| 欧美搞黄网站| 一本色道久久综合亚洲91| 国产精品日本一区二区| 久久久久久久久久久久久女国产乱| 欧美不卡视频一区| 一本色道久久加勒比精品| 欧美一区二视频| 一区二区日韩| 91久久在线视频| 韩国一区二区在线观看| 国产精品青草久久| 欧美日韩免费一区| 蜜臀av性久久久久蜜臀aⅴ四虎 | 欧美在线观看一区二区三区| 亚洲精品中文字幕在线| 加勒比av一区二区| 国产亚洲成av人片在线观看桃| 欧美视频国产精品| 欧美日韩国产综合久久| 欧美成ee人免费视频| 久久综合网hezyo| 久久精品在线播放| 久久成人免费电影| 欧美在线一级视频| 欧美一区二区三区电影在线观看| 亚洲午夜电影| 亚洲一区二区欧美日韩| 亚洲私拍自拍| 中文精品视频| 日韩一级黄色片| 99xxxx成人网| 一区二区三区欧美日韩| 一区二区三区四区蜜桃| 日韩视频一区二区三区在线播放免费观看 | 欧美在线视频二区| 亚洲一区亚洲二区| 亚洲欧美成aⅴ人在线观看| 在线视频欧美日韩| 日韩写真在线| 亚洲网站啪啪| 欧美一区1区三区3区公司| 亚洲一区二区三区免费在线观看 | 欧美国产另类| 亚洲激情电影在线| 亚洲精选91| 一区二区三区精品国产| 亚洲欧美日韩国产中文| 欧美一区国产在线| 久久这里有精品视频| 欧美成人免费播放| 欧美午夜片在线观看| 国产区精品视频| 亚洲国产日韩在线一区模特| 亚洲国产精品专区久久| 99视频精品全部免费在线| 亚洲一区二区成人| 久久久久看片| 亚洲国产精品一区二区第四页av | 亚洲动漫精品| 亚洲深夜福利| 久久躁狠狠躁夜夜爽| 欧美日韩中文| 狠狠综合久久av一区二区老牛| 亚洲人成人99网站| 亚洲综合色在线| 男人的天堂亚洲| 一区二区三区国产| 麻豆av一区二区三区| 国产精品久久久久一区| 在线看不卡av| 香蕉久久国产| 亚洲精品一区二区在线| 欧美在线观看一区| 欧美激情精品久久久久久黑人 | 亚洲久久一区| 久热精品视频| 亚洲一区精彩视频| 欧美承认网站| 亚洲第一在线综合网站| 欧美在线观看视频一区二区三区| 亚洲第一精品电影|