Checkpoint/switch/source/clickable.cpp

81 lines
2.7 KiB
C++
Raw Normal View History

2018-05-09 09:25:01 +00:00
/*
* This file is part of Checkpoint
2019-03-07 20:15:24 +00:00
* Copyright (C) 2017-2019 Bernardo Giordano, FlagBrew
2018-05-09 09:25:01 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
* * Requiring preservation of specified reasonable legal notices or
* author attributions in that material or in the Appropriate Legal
* Notices displayed by works containing it.
* * Prohibiting misrepresentation of the origin of that material,
* or requiring that modified versions of such material be marked in
* reasonable ways as different from the original version.
*/
#include "clickable.hpp"
bool Clickable::held()
{
touchPosition touch;
hidTouchRead(&touch, 0);
2018-05-18 13:17:16 +00:00
return ((hidKeysHeld(CONTROLLER_P1_AUTO) & KEY_TOUCH) && (int)touch.px > mx && (int)touch.px < mx+mw && (int)touch.py > my && (int)touch.py < my+mh);
2018-05-09 09:25:01 +00:00
}
bool Clickable::released(void)
{
touchPosition touch;
hidTouchRead(&touch, 0);
2018-05-18 13:17:16 +00:00
const bool on = (int)touch.px > mx && (int)touch.px < mx+mw && (int)touch.py > my && (int)touch.py < my+mh;
2018-05-09 09:25:01 +00:00
if (on)
{
mOldPressed = true;
}
else
{
if (mOldPressed && !(touch.px > 0 || touch.py > 0))
{
mOldPressed = false;
return true;
}
mOldPressed = false;
}
return false;
}
2019-04-12 21:39:55 +00:00
void Clickable::draw(float font, SDL_Color overlay)
2018-05-09 09:25:01 +00:00
{
2018-05-15 19:53:51 +00:00
u32 textw, texth;
2019-04-12 21:39:55 +00:00
SDLH_GetTextDimensions(font, mText.c_str(), &textw, &texth);
const u32 messageWidth = mCentered ? textw : mw - (mSelected ? 20 : 8);
SDLH_DrawRect(mx, my, mw, mh, mColorBg);
2019-04-23 16:59:30 +00:00
if (mCanChangeColorWhenSelected && held())
2019-04-12 21:39:55 +00:00
{
SDLH_DrawRect(mx, my, mw, mh, FC_MakeColor(overlay.r, overlay.g, overlay.b, 100));
}
if (mSelected)
{
SDLH_DrawRect(mx + 4, my + 6, 4, mh - 12, COLOR_WHITE);
SDLH_DrawRect(mx, my, mw, mh, FC_MakeColor(overlay.r, overlay.g, overlay.b, 100));
}
SDLH_DrawTextBox(font, mx + (mSelected ? 8 : 0) + (mw - messageWidth)/2, my + (mh - texth)/2 + 2, mColorText, mw - 4*2, mText.c_str());
2018-05-09 09:25:01 +00:00
}
2019-04-12 21:39:55 +00:00
void Clickable::drawOutline(SDL_Color color)
2018-05-09 09:25:01 +00:00
{
2019-04-12 21:39:55 +00:00
drawPulsingOutline(mx, my, mw, mh, 4, color);
2018-05-09 09:25:01 +00:00
}