blob: 6b38d61370be5035d27d8456f44c2f5f0ddd7e1f [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001// console.cpp - GUIConsole object
2
3#include <stdarg.h>
4#include <stdio.h>
5#include <stdlib.h>
6#include <string.h>
7#include <fcntl.h>
8#include <sys/reboot.h>
9#include <sys/stat.h>
10#include <sys/time.h>
11#include <sys/mman.h>
12#include <sys/types.h>
13#include <sys/ioctl.h>
14#include <time.h>
15#include <unistd.h>
16#include <stdlib.h>
17
18#include <string>
19
20extern "C" {
Dees_Troy2673cec2013-04-02 20:22:16 +000021#include "../twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040022#include "../minuitwrp/minui.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040023}
24
25#include "rapidxml.hpp"
26#include "objects.hpp"
27
28
29static std::vector<std::string> gConsole;
Ethan Yonkerbf2cb1c2014-07-02 10:15:54 -050030static std::vector<std::string> gConsoleColor;
Ethan Yonker03a42f62014-08-08 11:03:51 -050031static FILE* ors_file;
Dees_Troy51a0e822012-09-05 15:24:24 -040032
Ethan Yonkerbf2cb1c2014-07-02 10:15:54 -050033extern "C" void __gui_print(const char *color, char *buf)
Dees_Troy51a0e822012-09-05 15:24:24 -040034{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020035 char *start, *next;
Dees_Troy51a0e822012-09-05 15:24:24 -040036
37 if (buf[0] == '\n' && strlen(buf) < 2) {
38 // This prevents the double lines bug seen in the console during zip installs
39 return;
40 }
41
Vojtech Bocekd5b26d62014-03-06 22:56:13 +010042 for (start = next = buf; *next != '\0';)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020043 {
44 if (*next == '\n')
45 {
46 *next = '\0';
Vojtech Bocekd5b26d62014-03-06 22:56:13 +010047 gConsole.push_back(start);
Ethan Yonkerbf2cb1c2014-07-02 10:15:54 -050048 gConsoleColor.push_back(color);
Dees_Troy51a0e822012-09-05 15:24:24 -040049
Vojtech Bocekd5b26d62014-03-06 22:56:13 +010050 start = ++next;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020051 }
Vojtech Bocekd5b26d62014-03-06 22:56:13 +010052 else
53 ++next;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020054 }
Dees_Troy51a0e822012-09-05 15:24:24 -040055
Vojtech Bocekd5b26d62014-03-06 22:56:13 +010056 // The text after last \n (or whole string if there is no \n)
Ethan Yonkerbf2cb1c2014-07-02 10:15:54 -050057 if(*start) {
Vojtech Bocekd5b26d62014-03-06 22:56:13 +010058 gConsole.push_back(start);
Ethan Yonkerbf2cb1c2014-07-02 10:15:54 -050059 gConsoleColor.push_back(color);
60 }
Ethan Yonker03a42f62014-08-08 11:03:51 -050061 if (ors_file) {
62 fprintf(ors_file, "%s\n", buf);
63 fflush(ors_file);
64 }
Ethan Yonkerbf2cb1c2014-07-02 10:15:54 -050065}
66
67extern "C" void gui_print(const char *fmt, ...)
68{
69 char buf[512]; // We're going to limit a single request to 512 bytes
70
71 va_list ap;
72 va_start(ap, fmt);
73 vsnprintf(buf, 512, fmt, ap);
74 va_end(ap);
75
76 fputs(buf, stdout);
77
78 __gui_print("normal", buf);
79 return;
80}
81
82extern "C" void gui_print_color(const char *color, const char *fmt, ...)
83{
84 char buf[512]; // We're going to limit a single request to 512 bytes
85
86 va_list ap;
87 va_start(ap, fmt);
88 vsnprintf(buf, 512, fmt, ap);
89 va_end(ap);
90
91 fputs(buf, stdout);
92
93 __gui_print(color, buf);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +020094 return;
Dees_Troy51a0e822012-09-05 15:24:24 -040095}
96
Ethan Yonker03a42f62014-08-08 11:03:51 -050097extern "C" void gui_set_FILE(FILE* f)
98{
99 ors_file = f;
100}
101
that8d46c092015-02-26 01:30:04 +0100102GUIConsole::GUIConsole(xml_node<>* node) : GUIScrollList(node)
Dees_Troy51a0e822012-09-05 15:24:24 -0400103{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200104 xml_node<>* child;
Dees_Troy51a0e822012-09-05 15:24:24 -0400105
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200106 mLastCount = 0;
that8d46c092015-02-26 01:30:04 +0100107 scrollToEnd = true;
108 mSlideoutX = mSlideoutY = mSlideoutW = mSlideoutH = 0;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200109 mSlideout = 0;
that8d46c092015-02-26 01:30:04 +0100110 mSlideoutState = visible;
Dees_Troy51a0e822012-09-05 15:24:24 -0400111
that8d46c092015-02-26 01:30:04 +0100112 allowSelection = false; // console doesn't support list item selections
Dees_Troy51a0e822012-09-05 15:24:24 -0400113
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200114 if (!node)
115 {
that8d46c092015-02-26 01:30:04 +0100116 mRenderX = 0; mRenderY = 0; mRenderW = gr_fb_width(); mRenderH = gr_fb_height();
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200117 }
118 else
119 {
Ethan Yonker21ff02a2015-02-18 14:35:00 -0600120 child = FindNode(node, "color");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200121 if (child)
122 {
that8d46c092015-02-26 01:30:04 +0100123 mFontColor = LoadAttrColor(child, "foreground", mFontColor);
thatf6ed8fc2015-02-14 20:23:16 +0100124 mBackgroundColor = LoadAttrColor(child, "background", mBackgroundColor);
that8d46c092015-02-26 01:30:04 +0100125 //mScrollColor = LoadAttrColor(child, "scroll", mScrollColor);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200126 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400127
Ethan Yonker21ff02a2015-02-18 14:35:00 -0600128 child = FindNode(node, "slideout");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200129 if (child)
130 {
131 mSlideout = 1;
that8d46c092015-02-26 01:30:04 +0100132 mSlideoutState = hidden;
Ethan Yonker591b9202015-03-11 11:17:15 -0500133 LoadPlacement(child, &mSlideoutX, &mSlideoutY, &mSlideoutW, &mSlideoutH, &mPlacement);
Dees_Troy51a0e822012-09-05 15:24:24 -0400134
thatf6ed8fc2015-02-14 20:23:16 +0100135 mSlideoutImage = LoadAttrImage(child, "resource");
Dees_Troy51a0e822012-09-05 15:24:24 -0400136
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200137 if (mSlideoutImage && mSlideoutImage->GetResource())
138 {
thatf6ed8fc2015-02-14 20:23:16 +0100139 mSlideoutW = mSlideoutImage->GetWidth();
140 mSlideoutH = mSlideoutImage->GetHeight();
Ethan Yonker591b9202015-03-11 11:17:15 -0500141 if (mPlacement == CENTER || mPlacement == CENTER_X_ONLY) {
142 mSlideoutX = mSlideoutX - (mSlideoutW / 2);
143 if (mPlacement == CENTER) {
144 mSlideoutY = mSlideoutY - (mSlideoutH / 2);
145 }
146 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200147 }
148 }
149 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400150}
151
152int GUIConsole::RenderSlideout(void)
153{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200154 if (!mSlideoutImage || !mSlideoutImage->GetResource())
155 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400156
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200157 gr_blit(mSlideoutImage->GetResource(), 0, 0, mSlideoutW, mSlideoutH, mSlideoutX, mSlideoutY);
158 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400159}
160
that8d46c092015-02-26 01:30:04 +0100161int GUIConsole::RenderConsole(void)
162{
Ethan Yonker44925ad2015-07-22 12:33:59 -0500163 AddLines(&gConsole, &gConsoleColor, &mLastCount, &rConsole, &rConsoleColor);
that8d46c092015-02-26 01:30:04 +0100164 GUIScrollList::Render();
Dees_Troy51a0e822012-09-05 15:24:24 -0400165
that8d46c092015-02-26 01:30:04 +0100166 // if last line is fully visible, keep tracking the last line when new lines are added
167 int bottom_offset = GetDisplayRemainder() - actualItemHeight;
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500168 bool isAtBottom = firstDisplayedItem == (int)GetItemCount() - GetDisplayItemCount() - (bottom_offset != 0) && y_offset == bottom_offset;
that8d46c092015-02-26 01:30:04 +0100169 if (isAtBottom)
170 scrollToEnd = true;
171#if 0
172 // debug - show if we are tracking the last line
173 if (scrollToEnd) {
174 gr_color(0,255,0,255);
175 gr_fill(mRenderX+mRenderW-5, mRenderY+mRenderH-5, 5, 5);
176 } else {
177 gr_color(255,0,0,255);
178 gr_fill(mRenderX+mRenderW-5, mRenderY+mRenderH-5, 5, 5);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200179 }
that8d46c092015-02-26 01:30:04 +0100180#endif
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200181 return (mSlideout ? RenderSlideout() : 0);
Dees_Troy51a0e822012-09-05 15:24:24 -0400182}
183
184int GUIConsole::Render(void)
185{
Vojtech Bocekede51c52014-02-07 23:58:09 +0100186 if(!isConditionTrue())
187 return 0;
188
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200189 if (mSlideout && mSlideoutState == hidden)
190 return RenderSlideout();
191
192 return RenderConsole();
Dees_Troy51a0e822012-09-05 15:24:24 -0400193}
194
195int GUIConsole::Update(void)
196{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200197 if (mSlideout && mSlideoutState != visible)
198 {
199 if (mSlideoutState == hidden)
200 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400201
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200202 if (mSlideoutState == request_hide)
203 mSlideoutState = hidden;
Dees_Troy51a0e822012-09-05 15:24:24 -0400204
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200205 if (mSlideoutState == request_show)
206 mSlideoutState = visible;
Dees_Troy51a0e822012-09-05 15:24:24 -0400207
that8d46c092015-02-26 01:30:04 +0100208 // Any time we activate the console, we reset the position
209 SetVisibleListLocation(rConsole.size() - 1);
210 mUpdate = 1;
211 scrollToEnd = true;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200212 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400213
Ethan Yonker44925ad2015-07-22 12:33:59 -0500214 if (AddLines(&gConsole, &gConsoleColor, &mLastCount, &rConsole, &rConsoleColor)) {
that8d46c092015-02-26 01:30:04 +0100215 // someone added new text
216 // at least the scrollbar must be updated, even if the new lines are currently not visible
217 mUpdate = 1;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200218 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400219
that8d46c092015-02-26 01:30:04 +0100220 if (scrollToEnd) {
221 // keep the last line in view
222 SetVisibleListLocation(rConsole.size() - 1);
223 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400224
that8d46c092015-02-26 01:30:04 +0100225 GUIScrollList::Update();
226
227 if (mUpdate) {
228 mUpdate = 0;
229 if (Render() == 0)
230 return 2;
231 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200232 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400233}
234
235// IsInRegion - Checks if the request is handled by this object
thatf8194e22015-01-29 01:05:01 +0100236// Return 1 if this object handles the request, 0 if not
Dees_Troy51a0e822012-09-05 15:24:24 -0400237int GUIConsole::IsInRegion(int x, int y)
238{
that8d46c092015-02-26 01:30:04 +0100239 if (mSlideout) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200240 // Check if they tapped the slideout button
that8d46c092015-02-26 01:30:04 +0100241 if (x >= mSlideoutX && x < mSlideoutX + mSlideoutW && y >= mSlideoutY && y < mSlideoutY + mSlideoutH)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200242 return 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400243
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200244 // If we're only rendering the slideout, bail now
245 if (mSlideoutState == hidden)
246 return 0;
247 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400248
that8d46c092015-02-26 01:30:04 +0100249 return GUIScrollList::IsInRegion(x, y);
Dees_Troy51a0e822012-09-05 15:24:24 -0400250}
251
252// NotifyTouch - Notify of a touch event
253// Return 0 on success, >0 to ignore remainder of touch, and <0 on error
254int GUIConsole::NotifyTouch(TOUCH_STATE state, int x, int y)
255{
Vojtech Bocekede51c52014-02-07 23:58:09 +0100256 if(!isConditionTrue())
257 return -1;
258
that8d46c092015-02-26 01:30:04 +0100259 if (mSlideout && x >= mSlideoutX && x < mSlideoutX + mSlideoutW && y >= mSlideoutY && y < mSlideoutY + mSlideoutH) {
260 if (state == TOUCH_START) {
261 if (mSlideoutState == hidden)
262 mSlideoutState = request_show;
263 else if (mSlideoutState == visible)
264 mSlideoutState = request_hide;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200265 }
that8d46c092015-02-26 01:30:04 +0100266 return 1;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200267 }
that8d46c092015-02-26 01:30:04 +0100268 scrollToEnd = false;
269 return GUIScrollList::NotifyTouch(state, x, y);
270}
271
272size_t GUIConsole::GetItemCount()
273{
274 return rConsole.size();
275}
276
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500277void GUIConsole::RenderItem(size_t itemindex, int yPos, bool selected __unused)
that8d46c092015-02-26 01:30:04 +0100278{
279 // Set the color for the font
280 if (rConsoleColor[itemindex] == "normal") {
281 gr_color(mFontColor.red, mFontColor.green, mFontColor.blue, mFontColor.alpha);
282 } else {
283 COLOR FontColor;
284 std::string color = rConsoleColor[itemindex];
285 ConvertStrToColor(color, &FontColor);
286 FontColor.alpha = 255;
287 gr_color(FontColor.red, FontColor.green, FontColor.blue, FontColor.alpha);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200288 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400289
that8d46c092015-02-26 01:30:04 +0100290 // render text
291 const char* text = rConsole[itemindex].c_str();
Ethan Yonkerb7a54a32015-10-05 10:16:27 -0500292 gr_textEx_scaleW(mRenderX, yPos, text, mFont->GetResource(), mRenderW, TOP_LEFT, 0);
that8d46c092015-02-26 01:30:04 +0100293}
Dees_Troy51a0e822012-09-05 15:24:24 -0400294
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500295void GUIConsole::NotifySelect(size_t item_selected __unused)
that8d46c092015-02-26 01:30:04 +0100296{
297 // do nothing - console ignores selections
Dees_Troy51a0e822012-09-05 15:24:24 -0400298}