/* * 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 . * * 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 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_base_interface(void) { pp2d_begin_draw(GFX_TOP); pp2d_draw_rectangle(0, 0, 400, 23, COLOR_ACCENT); 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); pp2d_draw_on(GFX_BOTTOM); pp2d_draw_rectangle(0, 0, 320, 24, COLOR_ACCENT); pp2d_draw_rectangle(0, 216, 320, 24, COLOR_ACCENT); pp2d_draw_on(GFX_TOP); } void draw_theme_interface(Theme_s * themes_list, int theme_count, int selected_theme, bool preview_mode) { if (themes_list == NULL) { pp2d_begin_draw(GFX_TOP); 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_begin_draw(GFX_TOP); pp2d_draw_texture_part(TEXTURE_PREVIEW, 0, 0, 6, 0, 400, 240); pp2d_draw_on(GFX_BOTTOM); pp2d_draw_texture_part(TEXTURE_PREVIEW, 0, 0, 46, 240, 320, 240); } } else { draw_base_interface(); 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); pp2d_draw_on(GFX_BOTTOM); // 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); //---------------------------------------------------------------- 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(); }