aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Button.cpp
blob: 7de105c1236b04197240f0cac8545c19e9441f81 (plain)
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
#include "stdafx.h"
#include "Button.h"
#include "Textures.h"

Button::Button(int id, int x, int y, const wstring& msg)
{
	init(id, x, y, 200, 20, msg);
}

Button::Button(int id, int x, int y, int w, int h, const wstring& msg)
{
	init(id, x, y, w, h, msg);
}

// 4J - added
void Button::init(int id, int x, int y, int w, int h, const wstring& msg)
{
	active = true;
	visible = true;

	// this bit of code from original ctor
    this->id = id;
    this->x = x;
    this->y = y;
    this->w = w;
    this->h = h;
    this->msg = msg;
}

int Button::getYImage(bool hovered)
{
    int res = 1;
    if (!active) res = 0;
    else if (hovered) res = 2;
    return res;
}

void Button::render(Minecraft *minecraft, int xm, int ym)
{
    if (!visible) return;

    Font *font = minecraft->font;

    glBindTexture(GL_TEXTURE_2D, minecraft->textures->loadTexture(TN_GUI_GUI));	// 4J was L"/gui/gui.png"
    glColor4f(1, 1, 1, 1);


    bool hovered = xm >= x && ym >= y && xm < x + w && ym < y + h;
    int yImage = getYImage(hovered);

    blit(x, y, 0, 46 + yImage * 20, w / 2, h);
    blit(x + w / 2, y, 200 - w / 2, 46 + yImage * 20, w / 2, h);

    renderBg(minecraft, xm, ym);

    if (!active)
	{
        drawCenteredString(font, msg, x + w / 2, y + (h - 8) / 2, 0xffa0a0a0);
    }
	else
	{
        if (hovered)
		{
            drawCenteredString(font, msg, x + w / 2, y + (h - 8) / 2, 0xffffa0);
        }
		else
		{
            drawCenteredString(font, msg, x + w / 2, y + (h - 8) / 2, 0xe0e0e0);
        }
    }

}

void Button::renderBg(Minecraft *minecraft, int xm, int ym)
{
}

void Button::released(int mx, int my)
{
}

bool Button::clicked(Minecraft *minecraft, int mx, int my)
{
	return active && mx >= x && my >= y && mx < x + w && my < y + h;
}