-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathButton.cpp
107 lines (89 loc) · 2.23 KB
/
Button.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#include "Button.h"
#include <string>
#include "Window.h"
#include <boost\function.hpp>
#include <boost\bind.hpp>
#include "Sound.h"
#include "C:\Program Files (x86)\irrKlang-1.3.0\include\irrKlang.h"
extern Sound* gSound;
Button::Button(WindowHandler *handler, WindowID id, string display, int x, int y, int width, int height, D3DCOLOR color)
:Window(handler, id, x, y, width, height, color)
{
mDisplayText = display;
mMouseOver = false;
mFont = true;
mNormalTexture = NULL;
mHooverTexture = NULL;
mSoundSource = "none";
}
Button::Button(WindowHandler *handler, WindowID id, string display, int x, int y, int width, int height, bool b, char* normalTexture, char* hooverTexture, bool font, D3DCOLOR color)
:Window(handler, id, x, y, width, height, color)
{
mDisplayText = display;
mMouseOver = false;
mFont = font;
mNormalTexture = gGraphics->loadTexture(normalTexture);
mHooverTexture = gGraphics->loadTexture(hooverTexture);
}
Button::~Button()
{
// dtor
ReleaseCOM(mNormalTexture);
ReleaseCOM(mHooverTexture);
callback = NULL;
}
bool Button::pressed(int mx, int my)
{
if(callback != NULL) {
if(mSoundSource != "none")
gSound->playEffect(mSoundSource.c_str());
//if(!callback(getID(), getValue()))
if(!callback(getID(), WindowMessage(true)))
return false;
}
return true;
}
void Button::hoover(int mx, int my)
{
mMouseOver = true;
}
void Button::draw(void)
{
if(getVisible())
{
// draw the bkgd of button
if(mMouseOver) {
if(mNormalTexture == NULL)
gGraphics->BlitRect(mX, mY, mWidth, mHeight, D3DCOLOR_ARGB(255, 255, 166, 0));
else {
gGraphics->BlitTexture(mHooverTexture, getRect());
}
// so it wont be true forever
mMouseOver = false;
}
else {
if(mNormalTexture == NULL)
gGraphics->BlitRect(mX, mY, mWidth, mHeight, mColor);
else
gGraphics->BlitTexture(mNormalTexture, getRect());
}
// draw the font
if(mFont && !getOverlap()) {
strcpy(buffer, mDisplayText.c_str());
gGraphics->drawText(buffer, mX-mWidth/2+5, mY-mHeight/2, D3DCOLOR_ARGB(255,0,0,0));
}
overlaped(false);
}
}
void Button::setPressSound(string source)
{
mSoundSource = source;
}
/*void Button::setValue(bool value)
{
mValue = value;
}
bool Button::getValue(void)
{
return mValue;
}*/