Several improvements (#9)
* fix icon filename * update pp2d to fix preview problem * several improvements: - rely on a single header for simple/common headers - cleaned up main by putting the interface drawing function in its own file - load previews from .zip themes (may cause some loading times when launching - only need 1 shuffle image thanks to pp2d's blending abilities * not needed anymore * fix preview color and position * forgot * add proper icon loading thanks steveice10 for bannertool which this was pretty much taken from * only add proper themes to the list * add slightly more space between the icon and the name * not monospace, the little movement every blink is annoying * fix typo
This commit is contained in:
219
source/draw.c
Normal file
219
source/draw.c
Normal file
@@ -0,0 +1,219 @@
|
||||
/*
|
||||
* This file is part of Anemone3DS
|
||||
* Copyright (C) 2016-2017 Alex Taber ("astronautlevel"), Dawid Eckert ("daedreth")
|
||||
*
|
||||
* 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 "draw.h"
|
||||
|
||||
#include "pp2d/pp2d/pp2d.h"
|
||||
|
||||
#include <time.h>
|
||||
|
||||
enum Colors {
|
||||
COLOR_BACKGROUND = ABGR8(255, 32, 28, 35), //silver-y black
|
||||
COLOR_ACCENT = RGBA8(55, 122, 168, 255),
|
||||
COLOR_WHITE = RGBA8(255, 255, 255, 255),
|
||||
COLOR_CURSOR = RGBA8(200, 200, 200, 255),
|
||||
COLOR_BLACK = RGBA8(0, 0, 0, 255),
|
||||
};
|
||||
|
||||
void init_screens(void)
|
||||
{
|
||||
pp2d_init();
|
||||
|
||||
pp2d_set_screen_color(GFX_TOP, COLOR_BACKGROUND);
|
||||
pp2d_set_screen_color(GFX_BOTTOM, COLOR_BACKGROUND);
|
||||
|
||||
pp2d_load_texture_png(TEXTURE_ARROW, "romfs:/arrow.png");
|
||||
pp2d_load_texture_png(TEXTURE_SHUFFLE, "romfs:/shuffle.png");
|
||||
}
|
||||
|
||||
void exit_screens(void)
|
||||
{
|
||||
pp2d_exit();
|
||||
}
|
||||
|
||||
static Result MCUHWC_GetBatteryLevel(u8 *out) // Code taken from daedreth's fork of lpp-3ds
|
||||
{
|
||||
#define TRY(expr) if(R_FAILED(res = (expr))) { svcCloseHandle(mcuhwcHandle); return res; }
|
||||
Result res;
|
||||
Handle mcuhwcHandle;
|
||||
TRY(srvGetServiceHandle(&mcuhwcHandle, "mcu::HWC"));
|
||||
u32 *cmdbuf = getThreadCommandBuffer();
|
||||
cmdbuf[0] = 0x50000;
|
||||
TRY(svcSendSyncRequest(mcuhwcHandle));
|
||||
*out = (u8) cmdbuf[2];
|
||||
svcCloseHandle(mcuhwcHandle);
|
||||
return cmdbuf[1];
|
||||
#undef TRY
|
||||
}
|
||||
|
||||
static int vertical_scroll = 0;
|
||||
|
||||
// static const int FRAMES_FOR_TEXT_SCROLL = 40;
|
||||
// static int frames_count = 0;
|
||||
// static int horizontal_scroll = 0;
|
||||
// static int previous_selected = 0;
|
||||
// static int horizontal_scroll_change = 1;
|
||||
|
||||
void draw_interface(Theme_s * themes_list, int theme_count, int selected_theme, bool preview_mode)
|
||||
{
|
||||
pp2d_begin_draw(GFX_TOP);
|
||||
|
||||
if (themes_list == NULL)
|
||||
{
|
||||
pp2d_draw_text_center(GFX_TOP, 100, 1, 1, COLOR_WHITE, "FAILURE");
|
||||
pp2d_end_draw();
|
||||
return;
|
||||
}
|
||||
|
||||
Theme_s current_theme = themes_list[selected_theme];
|
||||
|
||||
if (preview_mode)
|
||||
{
|
||||
if (current_theme.has_preview)
|
||||
{
|
||||
pp2d_draw_texture_part(current_theme.preview_id, 0, 0, 6, 0, 400, 240);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
pp2d_draw_rectangle(0, 0, 400, 23, COLOR_ACCENT);
|
||||
pp2d_draw_text_center(GFX_TOP, 4, 0.5, 0.5, COLOR_WHITE, "Theme mode");
|
||||
wchar_t title[0x80] = {0};
|
||||
utf16_to_utf32((u32*)title, current_theme.name, 0x80);
|
||||
pp2d_draw_wtext(20, 30, 0.7, 0.7, COLOR_WHITE, title);
|
||||
|
||||
time_t t = time(NULL);
|
||||
struct tm tm = *localtime(&t);
|
||||
|
||||
pp2d_draw_textf(7, 2, 0.6, 0.6, COLOR_WHITE, "%.2i", tm.tm_hour);
|
||||
pp2d_draw_text(28, 2, 0.6, 0.6, COLOR_WHITE, (tm.tm_sec % 2 == 1) ? ":" : " ");
|
||||
pp2d_draw_textf(34, 2, 0.6, 0.6, COLOR_WHITE, "%.2i", tm.tm_min);
|
||||
|
||||
u8 battery_val = 0;
|
||||
MCUHWC_GetBatteryLevel(&battery_val);
|
||||
pp2d_draw_textf(350, 2, 0.6, 0.6, COLOR_WHITE, "%i%%", battery_val);
|
||||
|
||||
if (current_theme.has_preview)
|
||||
{
|
||||
//skip the weird 6 pixels to the left
|
||||
pp2d_texture_select_part(current_theme.preview_id, 220, 35, 6, 0, 400, 480);
|
||||
pp2d_texture_scale(0.4, 0.4);
|
||||
pp2d_texture_draw();
|
||||
}
|
||||
}
|
||||
|
||||
pp2d_draw_on(GFX_BOTTOM);
|
||||
|
||||
if (preview_mode)
|
||||
{
|
||||
if (current_theme.has_preview)
|
||||
{
|
||||
pp2d_draw_texture_part(current_theme.preview_id, 0, 0, 46, 240, 320, 240);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/*
|
||||
// Scroll the theme name if it's too large
|
||||
//----------------------------------------------------------------
|
||||
if (previous_selected != selected_theme) {
|
||||
previous_selected = selected_theme;
|
||||
frames_count = 0;
|
||||
horizontal_scroll = 0;
|
||||
horizontal_scroll_change = 1;
|
||||
}
|
||||
|
||||
frames_count = (frames_count+1) % FRAMES_FOR_TEXT_SCROLL;
|
||||
|
||||
if (frames_count == 0 && (config.entries[selectedEntry].name.size() > MENU_WIDTH))
|
||||
horizontal_scroll += horizontal_scroll_change;
|
||||
|
||||
if (horizontal_scroll == (config.entries[selected_theme].name.size() - MENU_WIDTH))
|
||||
horizontal_scroll_change = -1;
|
||||
|
||||
if (horizontal_scroll == 0)
|
||||
horizontal_scroll_change = 1;
|
||||
//----------------------------------------------------------------
|
||||
*/
|
||||
|
||||
// Scroll the menu up or down if the selected theme is out of its bounds
|
||||
//----------------------------------------------------------------
|
||||
for (int i = 0; i < theme_count; i++) {
|
||||
if (theme_count <= THEMES_PER_SCREEN)
|
||||
break;
|
||||
|
||||
if (vertical_scroll > selected_theme)
|
||||
vertical_scroll--;
|
||||
|
||||
if ((i < selected_theme) && \
|
||||
((selected_theme - vertical_scroll) >= THEMES_PER_SCREEN) && \
|
||||
(vertical_scroll != ( - THEMES_PER_SCREEN)))
|
||||
vertical_scroll++;
|
||||
}
|
||||
//----------------------------------------------------------------
|
||||
|
||||
// Show arrows if there are themes out of bounds
|
||||
//----------------------------------------------------------------
|
||||
pp2d_draw_rectangle(0, 0, 320, 24, COLOR_ACCENT);
|
||||
pp2d_draw_rectangle(0, 216, 320, 24, COLOR_ACCENT);
|
||||
if (vertical_scroll > 0)
|
||||
{
|
||||
pp2d_draw_texture(TEXTURE_ARROW, 155, 6);
|
||||
}
|
||||
if (theme_count - vertical_scroll > THEMES_PER_SCREEN)
|
||||
{
|
||||
pp2d_draw_texture_flip(TEXTURE_ARROW, 155, 224, VERTICAL);
|
||||
}
|
||||
//----------------------------------------------------------------
|
||||
|
||||
for (int i = vertical_scroll; i < (THEMES_PER_SCREEN + vertical_scroll); i++)
|
||||
{
|
||||
if (i >= theme_count)
|
||||
break;
|
||||
|
||||
current_theme = themes_list[i];
|
||||
wchar_t name[0x80] = {0};
|
||||
utf16_to_utf32((u32*)name, current_theme.name, 0x80);
|
||||
|
||||
int vertical_offset = 48 * (i-vertical_scroll);
|
||||
u32 front_color = COLOR_WHITE;
|
||||
|
||||
if (i == selected_theme)
|
||||
{
|
||||
front_color = COLOR_BLACK;
|
||||
pp2d_draw_rectangle(0, 24 + vertical_offset, 320, 48, COLOR_CURSOR);
|
||||
}
|
||||
pp2d_draw_wtext(54, 40 + vertical_offset, 0.55, 0.55, front_color, name);
|
||||
if (current_theme.has_icon)
|
||||
pp2d_draw_texture(current_theme.icon_id, 0, 24 + vertical_offset);
|
||||
|
||||
if (current_theme.in_shuffle)
|
||||
pp2d_draw_texture_blend(TEXTURE_SHUFFLE, 280, 32 + vertical_offset, front_color);
|
||||
}
|
||||
}
|
||||
|
||||
pp2d_end_draw();
|
||||
}
|
||||
Reference in New Issue
Block a user