2015-08-05 11:54:00 +02:00
|
|
|
/*
|
2016-07-05 16:05:53 +02:00
|
|
|
* This file is part of Luma3DS
|
|
|
|
* Copyright (C) 2016 Aurora Wright, TuxSH
|
2016-03-23 02:27:53 +01:00
|
|
|
*
|
2016-07-05 16:05:53 +02:00
|
|
|
* 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 of GPLv3 applies 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-04-23 01:43:11 +02:00
|
|
|
* Code to print to the screen by mid-kid @CakesFW
|
2016-07-05 16:05:53 +02:00
|
|
|
* https://github.com/mid-kid/CakesForeveryWan/
|
2015-08-05 11:54:00 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "draw.h"
|
2016-06-10 21:48:22 +02:00
|
|
|
#include "screen.h"
|
2016-05-09 03:41:00 +02:00
|
|
|
#include "utils.h"
|
2015-08-05 11:54:00 +02:00
|
|
|
#include "fs.h"
|
2016-03-23 02:27:53 +01:00
|
|
|
#include "font.h"
|
|
|
|
|
2016-04-02 17:58:06 +02:00
|
|
|
static inline int strlen(const char *string)
|
|
|
|
{
|
2016-03-23 02:27:53 +01:00
|
|
|
char *stringEnd = (char *)string;
|
2016-04-26 20:06:31 +02:00
|
|
|
|
2016-03-23 02:27:53 +01:00
|
|
|
while(*stringEnd) stringEnd++;
|
2016-04-12 14:32:38 +02:00
|
|
|
|
2016-03-23 02:27:53 +01:00
|
|
|
return stringEnd - string;
|
2016-02-29 16:28:43 +01:00
|
|
|
}
|
|
|
|
|
2016-07-02 14:44:01 +02:00
|
|
|
bool loadSplash(void)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-04-05 23:01:46 +02:00
|
|
|
initScreens();
|
2016-03-23 02:27:53 +01:00
|
|
|
|
2016-03-10 03:06:18 +01:00
|
|
|
//Don't delay boot if no splash image is on the SD
|
2016-05-03 20:03:37 +02:00
|
|
|
if(fileRead(fb->top_left, "/luma/splash.bin") +
|
2016-07-18 18:51:04 +02:00
|
|
|
fileRead(fb->bottom, "/luma/splashbottom.bin") != 0) return true;
|
|
|
|
|
2016-07-02 14:44:01 +02:00
|
|
|
return false;
|
2016-03-23 02:27:53 +01:00
|
|
|
}
|
|
|
|
|
2016-04-02 17:58:06 +02:00
|
|
|
void drawCharacter(char character, int posX, int posY, u32 color)
|
|
|
|
{
|
2016-03-24 16:02:00 +01:00
|
|
|
u8 *const select = fb->top_left;
|
2016-03-23 02:27:53 +01:00
|
|
|
|
2016-04-02 17:58:06 +02:00
|
|
|
for(int y = 0; y < 8; y++)
|
|
|
|
{
|
2016-03-29 17:43:53 +02:00
|
|
|
char charPos = font[character * 8 + y];
|
2016-03-23 02:27:53 +01:00
|
|
|
|
2016-04-02 17:58:06 +02:00
|
|
|
for(int x = 7; x >= 0; x--)
|
|
|
|
if ((charPos >> x) & 1)
|
|
|
|
{
|
2016-04-13 01:08:13 +02:00
|
|
|
int screenPos = (posX * SCREEN_TOP_HEIGHT * 3 + (SCREEN_TOP_HEIGHT - y - posY - 1) * 3) + (7 - x) * 3 * SCREEN_TOP_HEIGHT;
|
|
|
|
|
2016-03-29 17:43:53 +02:00
|
|
|
select[screenPos] = color >> 16;
|
|
|
|
select[screenPos + 1] = color >> 8;
|
|
|
|
select[screenPos + 2] = color;
|
2016-03-23 02:27:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-02 17:58:06 +02:00
|
|
|
int drawString(const char *string, int posX, int posY, u32 color)
|
|
|
|
{
|
2016-04-13 01:08:13 +02:00
|
|
|
for(int i = 0, line_i = 0; i < strlen(string); i++, line_i++)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
|
|
|
if(string[i] == '\n')
|
|
|
|
{
|
2016-03-29 17:43:53 +02:00
|
|
|
posY += SPACING_Y;
|
2016-03-23 02:27:53 +01:00
|
|
|
line_i = 0;
|
|
|
|
i++;
|
2016-04-02 18:48:31 +02:00
|
|
|
}
|
|
|
|
else if(line_i >= (SCREEN_TOP_WIDTH - posX) / SPACING_X)
|
2016-04-02 17:58:06 +02:00
|
|
|
{
|
2016-03-23 02:27:53 +01:00
|
|
|
// Make sure we never get out of the screen.
|
2016-03-29 17:43:53 +02:00
|
|
|
posY += SPACING_Y;
|
2016-04-13 01:08:13 +02:00
|
|
|
line_i = 2; //Little offset so we know the same string continues.
|
|
|
|
if(string[i] == ' ') i++; //Spaces at the start look weird
|
2016-03-23 02:27:53 +01:00
|
|
|
}
|
|
|
|
|
2016-03-29 17:43:53 +02:00
|
|
|
drawCharacter(string[i], posX + line_i * SPACING_X, posY, color);
|
2016-03-23 02:27:53 +01:00
|
|
|
}
|
|
|
|
|
2016-03-29 17:43:53 +02:00
|
|
|
return posY;
|
2015-08-05 11:54:00 +02:00
|
|
|
}
|