2016-03-27 21:10:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) Pavol Rusnak, SatoshiLabs
|
|
|
|
*
|
2016-05-28 12:37:32 +00:00
|
|
|
* Licensed under TREZOR License
|
|
|
|
* see LICENSE file for details
|
2016-03-27 21:10:31 +00:00
|
|
|
*/
|
|
|
|
|
2016-04-28 19:43:22 +00:00
|
|
|
#include <stdlib.h>
|
2017-03-17 13:14:00 +00:00
|
|
|
#ifndef TREZOR_NOUI
|
2016-10-03 17:56:45 +00:00
|
|
|
#include <SDL2/SDL.h>
|
2017-03-17 13:14:00 +00:00
|
|
|
#include <SDL2/SDL_image.h>
|
2016-03-27 21:10:31 +00:00
|
|
|
|
2016-05-02 15:16:55 +00:00
|
|
|
#define DISPLAY_BORDER 16
|
2016-04-30 13:35:23 +00:00
|
|
|
|
2017-10-02 14:48:24 +00:00
|
|
|
static SDL_Renderer *RENDERER;
|
|
|
|
static SDL_Surface *BUFFER;
|
|
|
|
static SDL_Texture *TEXTURE;
|
|
|
|
static int DATAODD;
|
|
|
|
static int POSX, POSY, SX, SY, EX, EY;
|
2016-03-27 21:10:31 +00:00
|
|
|
|
2016-05-11 19:05:08 +00:00
|
|
|
void DATA(uint8_t x) {
|
2017-10-02 14:22:27 +00:00
|
|
|
if (!RENDERER) {
|
|
|
|
display_init();
|
|
|
|
}
|
2016-03-27 21:10:31 +00:00
|
|
|
if (POSX <= EX && POSY <= EY) {
|
2016-10-05 22:02:46 +00:00
|
|
|
((uint8_t *)BUFFER->pixels)[POSX * 2 + POSY * BUFFER->pitch + (DATAODD ^ 1)] = x;
|
2016-03-27 21:10:31 +00:00
|
|
|
}
|
|
|
|
DATAODD = !DATAODD;
|
|
|
|
if (DATAODD == 0) {
|
|
|
|
POSX++;
|
|
|
|
if (POSX > EX) {
|
|
|
|
POSX = SX;
|
|
|
|
POSY++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-17 13:14:00 +00:00
|
|
|
#else
|
|
|
|
#define DATA(X) (void)(X);
|
|
|
|
#endif
|
2016-03-27 21:10:31 +00:00
|
|
|
|
2017-03-21 00:41:49 +00:00
|
|
|
int display_init(void)
|
2016-03-27 21:10:31 +00:00
|
|
|
{
|
2017-03-17 13:14:00 +00:00
|
|
|
#ifndef TREZOR_NOUI
|
2016-03-27 21:10:31 +00:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) != 0) {
|
|
|
|
printf("SDL_Init Error: %s\n", SDL_GetError());
|
|
|
|
}
|
2016-09-24 14:53:43 +00:00
|
|
|
SDL_Window *win = SDL_CreateWindow("TREZOR", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, DISPLAY_RESX + 2 * DISPLAY_BORDER, DISPLAY_RESY + 2 * DISPLAY_BORDER, SDL_WINDOW_SHOWN);
|
2016-03-27 21:10:31 +00:00
|
|
|
if (!win) {
|
|
|
|
printf("SDL_CreateWindow Error: %s\n", SDL_GetError());
|
|
|
|
SDL_Quit();
|
|
|
|
}
|
2017-03-16 18:14:12 +00:00
|
|
|
RENDERER = SDL_CreateRenderer(win, -1, SDL_RENDERER_ACCELERATED);
|
2016-03-27 21:10:31 +00:00
|
|
|
if (!RENDERER) {
|
|
|
|
printf("SDL_CreateRenderer Error: %s\n", SDL_GetError());
|
|
|
|
SDL_DestroyWindow(win);
|
|
|
|
SDL_Quit();
|
|
|
|
}
|
2017-03-17 14:27:11 +00:00
|
|
|
SDL_SetRenderDrawColor(RENDERER, DISPLAY_BACKLIGHT, DISPLAY_BACKLIGHT, DISPLAY_BACKLIGHT, 255);
|
2016-03-27 21:10:31 +00:00
|
|
|
SDL_RenderClear(RENDERER);
|
2017-10-02 14:47:45 +00:00
|
|
|
BUFFER = SDL_CreateRGBSurface(0, MAX_DISPLAY_RESX, MAX_DISPLAY_RESY, 16, 0xF800, 0x07E0, 0x001F, 0x0000);
|
2016-09-24 14:53:43 +00:00
|
|
|
TEXTURE = SDL_CreateTexture(RENDERER, SDL_PIXELFORMAT_RGB565, SDL_TEXTUREACCESS_STREAMING, DISPLAY_RESX, DISPLAY_RESY);
|
2016-05-17 14:24:51 +00:00
|
|
|
SDL_SetTextureBlendMode(TEXTURE, SDL_BLENDMODE_NONE);
|
|
|
|
SDL_SetTextureAlphaMod(TEXTURE, 0);
|
2017-10-02 14:29:21 +00:00
|
|
|
|
|
|
|
DISPLAY_BACKLIGHT = 0;
|
|
|
|
DISPLAY_ORIENTATION = 0;
|
2017-03-17 13:14:00 +00:00
|
|
|
#endif
|
2017-03-21 00:41:49 +00:00
|
|
|
return 0;
|
2016-03-27 21:10:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 01:04:23 +00:00
|
|
|
static void display_set_window_raw(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1)
|
2016-05-11 19:05:08 +00:00
|
|
|
{
|
2017-03-17 13:14:00 +00:00
|
|
|
#ifndef TREZOR_NOUI
|
2017-10-02 14:22:27 +00:00
|
|
|
if (!RENDERER) {
|
|
|
|
display_init();
|
|
|
|
}
|
2016-10-13 15:09:46 +00:00
|
|
|
SX = x0; SY = y0;
|
|
|
|
EX = x1; EY = y1;
|
2016-03-27 21:10:31 +00:00
|
|
|
POSX = SX; POSY = SY;
|
|
|
|
DATAODD = 0;
|
2017-03-17 13:14:00 +00:00
|
|
|
#endif
|
2016-03-27 21:10:31 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 01:04:23 +00:00
|
|
|
static void display_set_window(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1)
|
|
|
|
{
|
|
|
|
display_set_window_raw(x0, y0, x1, y1);
|
|
|
|
}
|
|
|
|
|
2016-10-03 09:52:19 +00:00
|
|
|
void display_refresh(void)
|
2016-03-27 21:10:31 +00:00
|
|
|
{
|
2017-03-17 13:14:00 +00:00
|
|
|
#ifndef TREZOR_NOUI
|
2017-10-02 14:22:27 +00:00
|
|
|
if (!RENDERER) {
|
|
|
|
display_init();
|
|
|
|
}
|
2016-03-29 13:31:41 +00:00
|
|
|
SDL_RenderClear(RENDERER);
|
2016-10-05 22:02:46 +00:00
|
|
|
SDL_UpdateTexture(TEXTURE, NULL, BUFFER->pixels, BUFFER->pitch);
|
2016-09-24 14:53:43 +00:00
|
|
|
const SDL_Rect r = {DISPLAY_BORDER, DISPLAY_BORDER, DISPLAY_RESX, DISPLAY_RESY};
|
2017-03-17 14:27:11 +00:00
|
|
|
SDL_RenderCopyEx(RENDERER, TEXTURE, NULL, &r, DISPLAY_ORIENTATION, NULL, 0);
|
2016-03-27 21:10:31 +00:00
|
|
|
SDL_RenderPresent(RENDERER);
|
2017-03-17 13:14:00 +00:00
|
|
|
#endif
|
2016-03-27 21:10:31 +00:00
|
|
|
}
|
2016-03-29 13:31:41 +00:00
|
|
|
|
2017-03-08 16:36:11 +00:00
|
|
|
static void display_set_orientation(int degrees)
|
2016-03-29 13:31:41 +00:00
|
|
|
{
|
2016-04-03 13:26:49 +00:00
|
|
|
}
|
2016-10-05 22:02:46 +00:00
|
|
|
|
2017-03-08 16:36:11 +00:00
|
|
|
static void display_set_backlight(int val)
|
2016-10-05 22:02:46 +00:00
|
|
|
{
|
2017-03-17 13:14:00 +00:00
|
|
|
#ifndef TREZOR_NOUI
|
2017-10-02 14:22:27 +00:00
|
|
|
if (!RENDERER) {
|
|
|
|
display_init();
|
|
|
|
}
|
2017-03-08 16:36:11 +00:00
|
|
|
SDL_SetRenderDrawColor(RENDERER, val, val, val, 255);
|
2017-03-17 13:14:00 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void display_save(const char *filename)
|
|
|
|
{
|
|
|
|
#ifndef TREZOR_NOUI
|
2017-10-02 14:22:27 +00:00
|
|
|
if (!RENDERER) {
|
|
|
|
display_init();
|
|
|
|
}
|
2017-03-17 13:14:00 +00:00
|
|
|
IMG_SavePNG(BUFFER, filename);
|
|
|
|
#endif
|
2016-10-05 22:02:46 +00:00
|
|
|
}
|