blob: 943d71914a8894492b566949a7d530c400637dee [file] [log] [blame]
Dees_Troya13d74f2013-03-24 08:54:55 -05001/*
2 Copyright 2012 bigbiff/Dees_Troy TeamWin
3 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdarg.h>
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23#include <fcntl.h>
24#include <sys/reboot.h>
25#include <sys/stat.h>
26#include <sys/time.h>
27#include <sys/mman.h>
28#include <sys/types.h>
29#include <sys/ioctl.h>
30#include <time.h>
31#include <unistd.h>
32#include <stdlib.h>
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +000033#include "../data.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040034
35#include <string>
36
37extern "C" {
Dees_Troy2673cec2013-04-02 20:22:16 +000038#include "../twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040039#include "../minuitwrp/minui.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040040}
41
42#include "rapidxml.hpp"
43#include "objects.hpp"
44
45GUIButton::GUIButton(xml_node<>* node)
Vojtech Bocekede51c52014-02-07 23:58:09 +010046 : GUIObject(node)
Dees_Troy51a0e822012-09-05 15:24:24 -040047{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020048 xml_attribute<>* attr;
49 xml_node<>* child;
Dees_Troy51a0e822012-09-05 15:24:24 -040050
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020051 mButtonImg = NULL;
52 mButtonIcon = NULL;
53 mButtonLabel = NULL;
54 mAction = NULL;
55 mRendered = false;
Dees_Troy1a7a6672013-02-15 09:39:07 -060056 hasHighlightColor = false;
57 renderHighlight = false;
Dees_Troya13d74f2013-03-24 08:54:55 -050058 hasFill = false;
Dees_Troy51a0e822012-09-05 15:24:24 -040059
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020060 if (!node) return;
Dees_Troy51a0e822012-09-05 15:24:24 -040061
Dees Troy4168a072013-11-29 05:01:51 +000062 // These can be loaded directly from the node
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020063 mButtonLabel = new GUIText(node);
64 mAction = new GUIAction(node);
Dees_Troy51a0e822012-09-05 15:24:24 -040065
Dees Troy4168a072013-11-29 05:01:51 +000066 child = node->first_node("image");
67 if (child)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020068 {
Dees Troy4168a072013-11-29 05:01:51 +000069 mButtonImg = new GUIImage(node);
70 if (mButtonImg->Render() < 0)
71 {
72 delete mButtonImg;
73 mButtonImg = NULL;
74 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020075 }
76 if (mButtonLabel->Render() < 0)
77 {
78 delete mButtonLabel;
79 mButtonLabel = NULL;
80 }
Dees_Troya13d74f2013-03-24 08:54:55 -050081 // Load fill if it exists
82 memset(&mFillColor, 0, sizeof(COLOR));
83 child = node->first_node("fill");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020084 if (child)
85 {
Dees_Troya13d74f2013-03-24 08:54:55 -050086 attr = child->first_attribute("color");
87 if (attr) {
88 hasFill = true;
89 std::string color = attr->value();
90 ConvertStrToColor(color, &mFillColor);
91 }
92 }
93 if (!hasFill && mButtonImg == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +000094 LOGERR("No image resource or fill specified for button.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -050095 }
Dees_Troy51a0e822012-09-05 15:24:24 -040096
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020097 // The icon is a special case
98 child = node->first_node("icon");
99 if (child)
100 {
101 attr = child->first_attribute("resource");
102 if (attr)
103 mButtonIcon = PageManager::FindResource(attr->value());
104 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400105
Dees_Troy1a7a6672013-02-15 09:39:07 -0600106 memset(&mHighlightColor, 0, sizeof(COLOR));
107 child = node->first_node("highlight");
108 if (child) {
109 attr = child->first_attribute("color");
110 if (attr) {
111 hasHighlightColor = true;
112 std::string color = attr->value();
113 ConvertStrToColor(color, &mHighlightColor);
114 }
115 }
116
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200117 int x, y, w, h;
Dees Troyb21cc642013-09-10 17:36:41 +0000118 TextPlacement = TOP_LEFT;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200119 if (mButtonImg) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500120 mButtonImg->GetRenderPos(x, y, w, h);
121 } else if (hasFill) {
Dees Troyb21cc642013-09-10 17:36:41 +0000122 LoadPlacement(node->first_node("placement"), &x, &y, &w, &h, &TextPlacement);
Dees_Troya13d74f2013-03-24 08:54:55 -0500123 }
124 SetRenderPos(x, y, w, h);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200125 return;
Dees_Troy51a0e822012-09-05 15:24:24 -0400126}
127
128GUIButton::~GUIButton()
129{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200130 if (mButtonImg) delete mButtonImg;
131 if (mButtonLabel) delete mButtonLabel;
132 if (mAction) delete mAction;
Dees_Troy51a0e822012-09-05 15:24:24 -0400133}
134
135int GUIButton::Render(void)
136{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200137 if (!isConditionTrue())
138 {
139 mRendered = false;
140 return 0;
141 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400142
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200143 int ret = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400144
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200145 if (mButtonImg) ret = mButtonImg->Render();
146 if (ret < 0) return ret;
Dees_Troya13d74f2013-03-24 08:54:55 -0500147 if (hasFill) {
148 gr_color(mFillColor.red, mFillColor.green, mFillColor.blue, mFillColor.alpha);
149 gr_fill(mRenderX, mRenderY, mRenderW, mRenderH);
150 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200151 if (mButtonIcon && mButtonIcon->GetResource())
152 gr_blit(mButtonIcon->GetResource(), 0, 0, mIconW, mIconH, mIconX, mIconY);
153 if (mButtonLabel) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500154 int w, h;
155 mButtonLabel->GetCurrentBounds(w, h);
156 if (w != mTextW) {
157 mTextW = w;
Dees Troyb21cc642013-09-10 17:36:41 +0000158 if (TextPlacement == CENTER_X_ONLY) {
159 mTextX = ((mRenderW - mRenderX) / 2);
160 } else if (mTextW > mRenderW) { // As a special case, we'll allow large text which automatically moves it to the right.
Dees_Troya13d74f2013-03-24 08:54:55 -0500161 mTextX = mRenderW + mRenderX + 5;
162 mRenderW += mTextW + 5;
Dees Troyb21cc642013-09-10 17:36:41 +0000163 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -0500164 mTextX = mRenderX + ((mRenderW - mTextW) / 2);
165 }
166 mButtonLabel->SetRenderPos(mTextX, mTextY);
167 }
168 ret = mButtonLabel->Render();
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200169 if (ret < 0) return ret;
Dees_Troya13d74f2013-03-24 08:54:55 -0500170 }
Dees_Troy1a7a6672013-02-15 09:39:07 -0600171 if (renderHighlight && hasHighlightColor) {
172 gr_color(mHighlightColor.red, mHighlightColor.green, mHighlightColor.blue, mHighlightColor.alpha);
173 gr_fill(mRenderX, mRenderY, mRenderW, mRenderH);
174 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200175 mRendered = true;
176 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400177}
178
179int GUIButton::Update(void)
180{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200181 if (!isConditionTrue()) return (mRendered ? 2 : 0);
182 if (!mRendered) return 2;
Dees_Troy51a0e822012-09-05 15:24:24 -0400183
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200184 int ret = 0, ret2 = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400185
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200186 if (mButtonImg) ret = mButtonImg->Update();
187 if (ret < 0) return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400188
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200189 if (ret == 0)
190 {
191 if (mButtonLabel) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500192 ret2 = mButtonLabel->Update();
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200193 if (ret2 < 0) return ret2;
194 if (ret2 > ret) ret = ret2;
Dees_Troya13d74f2013-03-24 08:54:55 -0500195 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200196 }
197 else if (ret == 1)
198 {
199 // The button re-rendered, so everyone else is a render
200 if (mButtonIcon && mButtonIcon->GetResource())
201 gr_blit(mButtonIcon->GetResource(), 0, 0, mIconW, mIconH, mIconX, mIconY);
202 if (mButtonLabel) ret = mButtonLabel->Render();
203 if (ret < 0) return ret;
204 ret = 1;
205 }
206 else
207 {
208 // Aparently, the button needs a background update
209 ret = 2;
210 }
211 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -0400212}
213
214int GUIButton::SetRenderPos(int x, int y, int w, int h)
215{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200216 mRenderX = x;
217 mRenderY = y;
218 if (w || h)
219 {
220 mRenderW = w;
221 mRenderH = h;
222 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400223
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200224 mIconW = 0; mIconH = 0;
225 if (mButtonIcon && mButtonIcon->GetResource())
226 {
227 mIconW = gr_get_width(mButtonIcon->GetResource());
228 mIconH = gr_get_height(mButtonIcon->GetResource());
229 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400230
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200231 mTextH = 0;
232 mTextW = 0;
233 mIconX = mRenderX + ((mRenderW - mIconW) / 2);
234 if (mButtonLabel) mButtonLabel->GetCurrentBounds(mTextW, mTextH);
235 if (mTextW)
236 {
Dees Troyb21cc642013-09-10 17:36:41 +0000237 if (TextPlacement == CENTER_X_ONLY) {
238 mTextX = ((mRenderW - mRenderX) / 2);
239 } else if (mTextW > mRenderW) { // As a special case, we'll allow large text which automatically moves it to the right.
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200240 mTextX = mRenderW + mRenderX + 5;
241 mRenderW += mTextW + 5;
Dees Troyb21cc642013-09-10 17:36:41 +0000242 } else {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200243 mTextX = mRenderX + ((mRenderW - mTextW) / 2);
244 }
245 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400246
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200247 if (mIconH == 0 || mTextH == 0 || mIconH + mTextH > mRenderH)
248 {
249 mIconY = mRenderY + (mRenderH / 2) - (mIconH / 2);
250 mTextY = mRenderY + (mRenderH / 2) - (mTextH / 2);
251 }
252 else
253 {
254 int divisor = mRenderH - (mIconH + mTextH);
255 mIconY = mRenderY + (divisor / 3);
256 mTextY = mRenderY + (divisor * 2 / 3) + mIconH;
257 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400258
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200259 if (mButtonLabel) mButtonLabel->SetRenderPos(mTextX, mTextY);
260 if (mAction) mAction->SetActionPos(mRenderX, mRenderY, mRenderW, mRenderH);
261 SetActionPos(mRenderX, mRenderY, mRenderW, mRenderH);
262 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400263}
264
265int GUIButton::NotifyTouch(TOUCH_STATE state, int x, int y)
266{
Dees_Troy4d12f962012-10-19 13:13:15 -0400267 static int last_state = 0;
268
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200269 if (!isConditionTrue()) return -1;
Dees_Troy4d12f962012-10-19 13:13:15 -0400270 if (x < mRenderX || x - mRenderX > mRenderW || y < mRenderY || y - mRenderY > mRenderH || state == TOUCH_RELEASE) {
271 if (last_state == 1) {
272 last_state = 0;
273 if (mButtonLabel != NULL)
274 mButtonLabel->isHighlighted = false;
275 if (mButtonImg != NULL)
276 mButtonImg->isHighlighted = false;
Dees_Troy1a7a6672013-02-15 09:39:07 -0600277 renderHighlight = false;
Dees_Troy4d12f962012-10-19 13:13:15 -0400278 mRendered = false;
279 }
280 } else {
281 if (last_state == 0) {
282 last_state = 1;
Ethan Yonker03db3262014-02-05 08:02:06 -0600283 DataManager::Vibrate("tw_button_vibrate");
Dees_Troy4d12f962012-10-19 13:13:15 -0400284 if (mButtonLabel != NULL)
285 mButtonLabel->isHighlighted = true;
286 if (mButtonImg != NULL)
287 mButtonImg->isHighlighted = true;
Dees_Troy1a7a6672013-02-15 09:39:07 -0600288 renderHighlight = true;
Dees_Troy4d12f962012-10-19 13:13:15 -0400289 mRendered = false;
290 }
291 }
292 if (x < mRenderX || x - mRenderX > mRenderW || y < mRenderY || y - mRenderY > mRenderH)
293 return 0;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200294 return (mAction ? mAction->NotifyTouch(state, x, y) : 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400295}