blob: be52c277efd632b8cae8cbd8b4e4940b3093e226 [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>
33
34#include <string>
35
36extern "C" {
Dees_Troy2673cec2013-04-02 20:22:16 +000037#include "../twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040038#include "../minuitwrp/minui.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040039}
40
41#include "rapidxml.hpp"
42#include "objects.hpp"
43
44GUIButton::GUIButton(xml_node<>* node)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020045 : Conditional(node)
Dees_Troy51a0e822012-09-05 15:24:24 -040046{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020047 xml_attribute<>* attr;
48 xml_node<>* child;
Dees_Troy51a0e822012-09-05 15:24:24 -040049
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020050 mButtonImg = NULL;
51 mButtonIcon = NULL;
52 mButtonLabel = NULL;
53 mAction = NULL;
54 mRendered = false;
Dees_Troy1a7a6672013-02-15 09:39:07 -060055 hasHighlightColor = false;
56 renderHighlight = false;
Dees_Troya13d74f2013-03-24 08:54:55 -050057 hasFill = false;
Dees_Troy51a0e822012-09-05 15:24:24 -040058
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020059 if (!node) return;
Dees_Troy51a0e822012-09-05 15:24:24 -040060
Dees Troy4168a072013-11-29 05:01:51 +000061 // These can be loaded directly from the node
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020062 mButtonLabel = new GUIText(node);
63 mAction = new GUIAction(node);
Dees_Troy51a0e822012-09-05 15:24:24 -040064
Dees Troy4168a072013-11-29 05:01:51 +000065 child = node->first_node("image");
66 if (child)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020067 {
Dees Troy4168a072013-11-29 05:01:51 +000068 mButtonImg = new GUIImage(node);
69 if (mButtonImg->Render() < 0)
70 {
71 delete mButtonImg;
72 mButtonImg = NULL;
73 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020074 }
75 if (mButtonLabel->Render() < 0)
76 {
77 delete mButtonLabel;
78 mButtonLabel = NULL;
79 }
Dees_Troya13d74f2013-03-24 08:54:55 -050080 // Load fill if it exists
81 memset(&mFillColor, 0, sizeof(COLOR));
82 child = node->first_node("fill");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020083 if (child)
84 {
Dees_Troya13d74f2013-03-24 08:54:55 -050085 attr = child->first_attribute("color");
86 if (attr) {
87 hasFill = true;
88 std::string color = attr->value();
89 ConvertStrToColor(color, &mFillColor);
90 }
91 }
92 if (!hasFill && mButtonImg == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +000093 LOGERR("No image resource or fill specified for button.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -050094 }
Dees_Troy51a0e822012-09-05 15:24:24 -040095
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020096 // The icon is a special case
97 child = node->first_node("icon");
98 if (child)
99 {
100 attr = child->first_attribute("resource");
101 if (attr)
102 mButtonIcon = PageManager::FindResource(attr->value());
103 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400104
Dees_Troy1a7a6672013-02-15 09:39:07 -0600105 memset(&mHighlightColor, 0, sizeof(COLOR));
106 child = node->first_node("highlight");
107 if (child) {
108 attr = child->first_attribute("color");
109 if (attr) {
110 hasHighlightColor = true;
111 std::string color = attr->value();
112 ConvertStrToColor(color, &mHighlightColor);
113 }
114 }
115
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200116 int x, y, w, h;
Dees Troyb21cc642013-09-10 17:36:41 +0000117 TextPlacement = TOP_LEFT;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200118 if (mButtonImg) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500119 mButtonImg->GetRenderPos(x, y, w, h);
120 } else if (hasFill) {
Dees Troyb21cc642013-09-10 17:36:41 +0000121 LoadPlacement(node->first_node("placement"), &x, &y, &w, &h, &TextPlacement);
Dees_Troya13d74f2013-03-24 08:54:55 -0500122 }
123 SetRenderPos(x, y, w, h);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200124 return;
Dees_Troy51a0e822012-09-05 15:24:24 -0400125}
126
127GUIButton::~GUIButton()
128{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200129 if (mButtonImg) delete mButtonImg;
130 if (mButtonLabel) delete mButtonLabel;
131 if (mAction) delete mAction;
132 if (mButtonIcon) delete mButtonIcon;
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;
283 if (mButtonLabel != NULL)
284 mButtonLabel->isHighlighted = true;
285 if (mButtonImg != NULL)
286 mButtonImg->isHighlighted = true;
Dees_Troy1a7a6672013-02-15 09:39:07 -0600287 renderHighlight = true;
Dees_Troy4d12f962012-10-19 13:13:15 -0400288 mRendered = false;
289 }
290 }
291 if (x < mRenderX || x - mRenderX > mRenderW || y < mRenderY || y - mRenderY > mRenderH)
292 return 0;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200293 return (mAction ? mAction->NotifyTouch(state, x, y) : 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400294}