2020-03-13 09:44:45 +01:00
|
|
|
/*
|
|
|
|
* a class to keep definitions for all theme settings
|
|
|
|
*/
|
2020-03-17 20:43:58 +01:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <Protocol/GraphicsOutput.h>
|
|
|
|
}
|
|
|
|
|
2020-03-16 12:15:25 +01:00
|
|
|
#include "libegint.h"
|
2020-03-18 07:39:11 +01:00
|
|
|
#include "../refit/screen.h"
|
2020-04-01 14:57:32 +02:00
|
|
|
#include "../refit/lib.h"
|
2020-03-18 07:39:11 +01:00
|
|
|
|
2020-03-13 09:44:45 +01:00
|
|
|
#include "XTheme.h"
|
2020-05-18 21:40:47 +02:00
|
|
|
#include "nanosvg.h"
|
2020-03-13 09:44:45 +01:00
|
|
|
|
2020-03-31 16:25:07 +02:00
|
|
|
#ifndef DEBUG_ALL
|
|
|
|
#define DEBUG_XTHEME 1
|
|
|
|
#else
|
|
|
|
#define DEBUG_XTHEME DEBUG_ALL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DEBUG_XTHEME == 0
|
|
|
|
#define DBG(...)
|
|
|
|
#else
|
|
|
|
#define DBG(...) DebugLog(DEBUG_XTHEME, __VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
|
2020-03-13 09:44:45 +01:00
|
|
|
|
2020-04-06 11:15:36 +02:00
|
|
|
//xtheme class
|
2020-08-12 17:15:47 +02:00
|
|
|
XTheme::XTheme() : Icons(), ThemeDir(0), HideBadges(0), HideUIFlags(0), Font(FONT_ALFA), CharWidth(0), SelectionColor(0), FontFileName(), Theme(),
|
2020-08-11 14:43:53 +02:00
|
|
|
BannerFileName(), SelectionSmallFileName(), SelectionBigFileName(), SelectionIndicatorName(), DefaultSelection(),
|
|
|
|
BackgroundName(), BackgroundScale(imNone), BackgroundSharp(0), BackgroundDark(0), SelectionOnTop(0), BootCampStyle(0),
|
|
|
|
BadgeOffsetX(0), BadgeOffsetY(0), BadgeScale(0), ThemeDesignWidth(0), ThemeDesignHeight(0), BannerPosX(0), BannerPosY(0),
|
|
|
|
BannerEdgeHorizontal(0), BannerEdgeVertical(0), BannerNudgeX(0), BannerNudgeY(0), VerticalLayout(0), NonSelectedGrey(0),
|
|
|
|
MainEntriesSize(0), TileXSpace(0), TileYSpace(0), Proportional(0), embedded(0), DarkEmbedded(0), TypeSVG(0), Scale(0), CentreShift(0),
|
|
|
|
row0TileSize(0), row1TileSize(0), BanHeight(0), LayoutHeight(0), LayoutBannerOffset(0), LayoutButtonOffset(0), LayoutTextOffset(0),
|
|
|
|
LayoutAnimMoveForMenuX(0), ScrollWidth(0), ScrollButtonsHeight(0), ScrollBarDecorationsHeight(0), ScrollScrollDecorationsHeight(0),
|
|
|
|
FontWidth(0), FontHeight(0), TextHeight(0), Daylight(0), Background(), BigBack(), Banner(), SelectionImages(), Buttons(), ScrollbarBackgroundImage(), BarStartImage(), BarEndImage(),
|
|
|
|
ScrollbarImage(), ScrollStartImage(), ScrollEndImage(), UpButtonImage(), DownButtonImage(), FontImage(), BannerPlace(), Cinema(), SVGParser(0)
|
|
|
|
{
|
2020-03-16 12:15:25 +01:00
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
XTheme::~XTheme() {
|
|
|
|
//nothing todo?
|
|
|
|
}
|
|
|
|
|
|
|
|
void XTheme::Init()
|
2020-03-13 09:44:45 +01:00
|
|
|
{
|
2020-03-27 17:50:17 +01:00
|
|
|
// DisableFlags = 0;
|
2020-03-12 15:00:36 +01:00
|
|
|
HideBadges = 0;
|
|
|
|
HideUIFlags = 0;
|
2020-03-27 20:47:06 +01:00
|
|
|
// TextOnly = FALSE;
|
2020-03-12 15:00:36 +01:00
|
|
|
Font = FONT_GRAY; // FONT_TYPE
|
|
|
|
CharWidth = 9;
|
2020-04-06 11:15:36 +02:00
|
|
|
SelectionColor = 0x80808080;
|
2020-04-15 22:12:43 +02:00
|
|
|
SelectionBackgroundPixel = { 0xef, 0xef, 0xef, 0xff };
|
2020-03-12 15:00:36 +01:00
|
|
|
FontFileName.setEmpty();
|
2020-04-16 13:04:24 +02:00
|
|
|
// Theme.takeValueFrom("embedded");
|
|
|
|
embedded = false;
|
2020-03-12 15:00:36 +01:00
|
|
|
BannerFileName.setEmpty();
|
|
|
|
SelectionSmallFileName.setEmpty();
|
|
|
|
SelectionBigFileName.setEmpty();
|
|
|
|
SelectionIndicatorName.setEmpty();
|
|
|
|
DefaultSelection.setEmpty();
|
|
|
|
BackgroundName.setEmpty();
|
|
|
|
BackgroundScale = imNone; // SCALING
|
|
|
|
BackgroundSharp = 0;
|
|
|
|
BackgroundDark = FALSE; //TODO should be set to true if Night theme
|
2020-03-27 17:50:17 +01:00
|
|
|
// CustomIcons = FALSE; //TODO don't know how to handle with SVG theme
|
2020-03-12 15:00:36 +01:00
|
|
|
SelectionOnTop = FALSE;
|
|
|
|
BootCampStyle = FALSE;
|
2020-04-08 09:32:26 +02:00
|
|
|
BadgeOffsetX = 0xFFFF; //default offset
|
|
|
|
BadgeOffsetY = 0xFFFF;
|
2020-03-12 15:00:36 +01:00
|
|
|
BadgeScale = 4; // TODO now we have float scale = BadgeScale/16
|
|
|
|
ThemeDesignWidth = 0xFFFF;
|
|
|
|
ThemeDesignHeight = 0xFFFF;
|
2020-04-14 18:52:13 +02:00
|
|
|
BannerPosX = 0xFFFF; // the value out of range [0,1000] means default
|
2020-03-12 15:00:36 +01:00
|
|
|
BannerPosY = 0xFFFF;
|
|
|
|
BannerEdgeHorizontal = 0;
|
|
|
|
BannerEdgeVertical = 0;
|
|
|
|
BannerNudgeX = 0;
|
|
|
|
BannerNudgeY = 0;
|
2020-04-15 22:12:43 +02:00
|
|
|
BanHeight = 0;
|
2020-03-12 15:00:36 +01:00
|
|
|
VerticalLayout = FALSE;
|
2020-04-21 17:57:47 +02:00
|
|
|
NonSelectedGrey = FALSE;
|
2020-03-12 15:00:36 +01:00
|
|
|
MainEntriesSize = 128;
|
|
|
|
TileXSpace = 8;
|
|
|
|
TileYSpace = 24;
|
2020-05-18 21:40:47 +02:00
|
|
|
|
2020-03-12 15:00:36 +01:00
|
|
|
Proportional = FALSE;
|
2020-03-27 17:50:17 +01:00
|
|
|
// ShowOptimus = FALSE;
|
2020-04-16 13:04:24 +02:00
|
|
|
// DarkEmbedded = FALSE; //looks like redundant, we always check Night or Daylight
|
2020-03-12 15:00:36 +01:00
|
|
|
TypeSVG = FALSE;
|
2020-04-08 11:45:36 +02:00
|
|
|
// Codepage = 0xC0; //this is for PNG theme
|
|
|
|
// CodepageSize = 0xC0; // INTN CodepageSize; //extended latin
|
2020-03-12 15:00:36 +01:00
|
|
|
Scale = 1.0f;
|
2020-03-13 09:44:45 +01:00
|
|
|
CentreShift = 0.0f;
|
2020-05-18 21:40:47 +02:00
|
|
|
Daylight = true;
|
2020-03-20 18:48:19 +01:00
|
|
|
LayoutHeight = 376;
|
2020-03-26 15:24:20 +01:00
|
|
|
LayoutBannerOffset = 64; //default value if not set
|
|
|
|
LayoutButtonOffset = 0; //default value if not set
|
|
|
|
LayoutTextOffset = 0; //default value if not set
|
|
|
|
LayoutAnimMoveForMenuX = 0; //default value if not set
|
|
|
|
|
|
|
|
row0TileSize = 144;
|
|
|
|
row1TileSize = 64;
|
2020-04-07 21:48:36 +02:00
|
|
|
|
|
|
|
FontWidth = 9;
|
|
|
|
FontHeight = 18;
|
|
|
|
TextHeight = 19;
|
2020-04-15 18:30:39 +02:00
|
|
|
|
|
|
|
Cinema.setEmpty();
|
2020-03-13 09:44:45 +01:00
|
|
|
}
|
|
|
|
|
2020-03-29 07:42:33 +02:00
|
|
|
/*
|
|
|
|
* what if the icon is not found or name is wrong?
|
|
|
|
* probably it whould return Empty image
|
|
|
|
* Image.isEmpty() == true
|
|
|
|
*/
|
2020-04-05 14:25:39 +02:00
|
|
|
//const XImage& XTheme::GetIcon(const char* Name)
|
|
|
|
//{
|
|
|
|
// return GetIcon(XString().takeValueFrom(Name));
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//const XImage& XTheme::GetIcon(const CHAR16* Name)
|
|
|
|
//{
|
|
|
|
// return GetIcon(XString().takeValueFrom(Name));
|
|
|
|
//}
|
2020-03-30 17:31:52 +02:00
|
|
|
|
2020-05-15 10:17:06 +02:00
|
|
|
static XImage NullImage;
|
2020-05-16 21:30:29 +02:00
|
|
|
static XIcon DummyIcon;
|
|
|
|
static XIcon NullIcon;
|
2020-03-29 12:19:05 +02:00
|
|
|
|
2020-05-16 21:30:29 +02:00
|
|
|
const XIcon& XTheme::GetIcon(const XString8& Name)
|
2020-03-13 09:44:45 +01:00
|
|
|
{
|
|
|
|
for (size_t i = 0; i < Icons.size(); i++)
|
|
|
|
{
|
2020-03-29 07:42:33 +02:00
|
|
|
if (Icons[i].Name == Name) //night icon has same name as daylight icon
|
2020-03-13 09:44:45 +01:00
|
|
|
{
|
2020-04-06 11:15:36 +02:00
|
|
|
return GetIcon(Icons[i].Id);
|
2020-03-13 09:44:45 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-16 21:30:29 +02:00
|
|
|
return NullIcon; //if name is not found
|
2020-03-13 09:44:45 +01:00
|
|
|
}
|
|
|
|
|
2020-05-23 13:16:02 +02:00
|
|
|
XIcon* XTheme::GetIconP(const XString8& Name)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < Icons.size(); i++)
|
|
|
|
{
|
|
|
|
if (Icons[i].Name == Name) //night icon has same name as daylight icon
|
|
|
|
{
|
|
|
|
return GetIconP(Icons[i].Id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return &NullIcon; //if name is not found
|
|
|
|
}
|
|
|
|
|
2020-04-18 08:39:47 +02:00
|
|
|
bool XTheme::CheckNative(INTN Id)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < Icons.size(); i++)
|
|
|
|
{
|
|
|
|
if (Icons[i].Id == Id)
|
|
|
|
{
|
|
|
|
return Icons[i].Native;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-05-16 21:30:29 +02:00
|
|
|
const XIcon& XTheme::GetIcon(INTN Id)
|
2020-03-13 09:44:45 +01:00
|
|
|
{
|
2020-04-21 20:41:35 +02:00
|
|
|
return GetIconAlt(Id, -1);
|
2020-03-13 09:44:45 +01:00
|
|
|
}
|
2020-04-05 17:54:10 +02:00
|
|
|
|
2020-05-23 13:16:02 +02:00
|
|
|
XIcon* XTheme::GetIconP(INTN Id)
|
|
|
|
{
|
|
|
|
return &GetIconAlt(Id, -1);
|
|
|
|
}
|
|
|
|
|
2020-04-18 08:39:47 +02:00
|
|
|
/*
|
2020-04-21 20:41:35 +02:00
|
|
|
* Get Icon with this ID=id, for example VOL_INTERNAL_HFS
|
|
|
|
* if not found then search for ID=Alt with Native attribute set, for example VOL_INTERNAL
|
|
|
|
* if not found then check embedded with ID=Id
|
2020-04-18 08:39:47 +02:00
|
|
|
* if not found then check embedded with ID=Alt
|
|
|
|
*/
|
2020-05-23 13:16:02 +02:00
|
|
|
XIcon& XTheme::GetIconAlt(INTN Id, INTN Alt) //if not found then take embedded
|
2020-04-10 21:29:51 +02:00
|
|
|
{
|
2020-04-21 20:41:35 +02:00
|
|
|
INTN IdFound = -1;
|
|
|
|
INTN AltFound = -1;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < Icons.size() && (IdFound < 0 || (Alt >= 0 && AltFound < 0)); i++) {
|
|
|
|
if (Icons[i].Id == Id) {
|
|
|
|
IdFound = i;
|
|
|
|
}
|
|
|
|
if (Icons[i].Id == Alt) {
|
|
|
|
AltFound = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if icon is empty, try to fill it with alternative
|
|
|
|
if (IdFound >= 0 && Icons[IdFound].Image.isEmpty()) {
|
|
|
|
// check for native ID=Alt, if Alt was specified
|
|
|
|
if (Alt >= 0 && AltFound >= 0 && Icons[AltFound].Native && !Icons[AltFound].Image.isEmpty()) {
|
|
|
|
// using Alt icon
|
|
|
|
Icons[IdFound].Image = Icons[AltFound].Image;
|
|
|
|
Icons[IdFound].ImageNight = Icons[AltFound].ImageNight;
|
2020-05-16 21:30:29 +02:00
|
|
|
Icons[IdFound].setFilled();
|
2020-04-21 20:41:35 +02:00
|
|
|
} else {
|
|
|
|
// check for embedded with ID=Id
|
2020-05-16 21:30:29 +02:00
|
|
|
XIcon *NewIcon = new XIcon(Id, true);
|
2020-04-21 20:41:35 +02:00
|
|
|
if (NewIcon->Image.isEmpty()) {
|
|
|
|
// check for embedded with ID=Alt
|
2020-05-16 21:30:29 +02:00
|
|
|
NewIcon = new XIcon(Alt, true);
|
2020-04-10 21:29:51 +02:00
|
|
|
}
|
2020-04-21 20:41:35 +02:00
|
|
|
if (!NewIcon->Image.isEmpty()) {
|
|
|
|
// using Embedded icon
|
|
|
|
Icons[IdFound].Image = NewIcon->Image;
|
|
|
|
Icons[IdFound].ImageNight = NewIcon->ImageNight;
|
2020-05-16 21:30:29 +02:00
|
|
|
Icons[IdFound].setFilled();
|
2020-04-18 08:39:47 +02:00
|
|
|
}
|
2020-04-10 21:29:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 20:41:35 +02:00
|
|
|
if (IdFound >= 0 && !Icons[IdFound].Image.isEmpty()) {
|
|
|
|
// icon not empty, return it
|
2020-05-16 21:30:29 +02:00
|
|
|
// if (!Daylight && !Icons[IdFound].ImageNight.isEmpty()) {
|
|
|
|
// DBG("got night icon %lld name{%s}\n", Id, IconsNames[IdFound]);
|
|
|
|
// return Icons[IdFound].ImageNight;
|
|
|
|
// }
|
2020-04-21 20:41:35 +02:00
|
|
|
//if daylight or night icon absent
|
2020-05-16 21:30:29 +02:00
|
|
|
// DBG("got day icon %lld name{%s}\n", Id, IconsNames[IdFound]);
|
|
|
|
// return Icons[IdFound].Image;
|
|
|
|
return Icons[IdFound]; //check daylight at draw
|
2020-04-21 20:41:35 +02:00
|
|
|
}
|
2020-05-16 21:30:29 +02:00
|
|
|
return NullIcon; //such Id is not found in the database
|
2020-04-10 21:29:51 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 21:30:29 +02:00
|
|
|
const XIcon& XTheme::LoadOSIcon(const CHAR16* OSIconName)
|
2020-04-06 11:15:36 +02:00
|
|
|
{
|
2020-04-30 08:03:56 +02:00
|
|
|
return LoadOSIcon(XString8().takeValueFrom(OSIconName));
|
2020-04-06 11:15:36 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 21:30:29 +02:00
|
|
|
const XIcon& XTheme::LoadOSIcon(const XString8& Full)
|
2020-04-05 17:54:10 +02:00
|
|
|
{
|
|
|
|
// input value can be L"win", L"ubuntu,linux", L"moja,mac" set by GetOSIconName (OSVersion)
|
2020-04-30 08:03:56 +02:00
|
|
|
XString8 First;
|
|
|
|
XString8 Second;
|
|
|
|
XString8 Third;
|
2020-05-16 21:30:29 +02:00
|
|
|
const XIcon *ReturnIcon;
|
2020-04-23 22:43:35 +02:00
|
|
|
UINTN Comma = Full.indexOf(',');
|
2020-04-23 15:20:48 +02:00
|
|
|
UINTN Size = Full.length();
|
2020-10-04 19:12:10 +02:00
|
|
|
DBG(" IconName=%s comma=%lld size=%lld\n", Full.c_str(), Comma, Size);
|
2020-04-05 17:54:10 +02:00
|
|
|
if (Comma != MAX_XSIZE) { //Comma
|
2020-04-30 08:22:26 +02:00
|
|
|
First = "os_"_XS8 + Full.subString(0, Comma);
|
2020-05-16 21:30:29 +02:00
|
|
|
ReturnIcon = &GetIcon(First);
|
2020-10-04 19:12:10 +02:00
|
|
|
DBG(" first=%s\n", First.c_str());
|
2020-05-16 21:30:29 +02:00
|
|
|
if (!ReturnIcon->isEmpty()) return *ReturnIcon;
|
2020-04-05 17:54:10 +02:00
|
|
|
//else search second name
|
2020-04-30 08:22:26 +02:00
|
|
|
Second = "os_"_XS8 + Full.subString(Comma + 1, Size - Comma - 1);
|
2020-04-09 05:32:57 +02:00
|
|
|
//moreover names can be triple L"chrome,grub,linux"
|
2020-04-23 22:43:35 +02:00
|
|
|
UINTN SecondComma = Second.indexOf(',');
|
2020-04-09 05:32:57 +02:00
|
|
|
if (Comma == MAX_XSIZE) {
|
2020-05-16 21:30:29 +02:00
|
|
|
ReturnIcon = &GetIcon(Second);
|
|
|
|
if (!ReturnIcon->isEmpty()) return *ReturnIcon;
|
2020-04-09 05:32:57 +02:00
|
|
|
} else {
|
2020-04-23 22:43:35 +02:00
|
|
|
First = Second.subString(0, SecondComma);
|
2020-05-16 21:30:29 +02:00
|
|
|
ReturnIcon = &GetIcon(First);
|
|
|
|
if (!ReturnIcon->isEmpty()) return *ReturnIcon;
|
2020-04-30 08:22:26 +02:00
|
|
|
Third = "os_"_XS8 + Second.subString(SecondComma + 1, Size - SecondComma - 1);
|
2020-05-16 21:30:29 +02:00
|
|
|
ReturnIcon = &GetIcon(Third);
|
|
|
|
if (!ReturnIcon->isEmpty()) return *ReturnIcon;
|
2020-04-09 05:32:57 +02:00
|
|
|
}
|
2020-10-04 19:12:10 +02:00
|
|
|
DBG(" Second=%s\n", Second.c_str());
|
2020-05-16 21:30:29 +02:00
|
|
|
if (!ReturnIcon->isEmpty()) return *ReturnIcon;
|
2020-04-05 17:54:10 +02:00
|
|
|
} else {
|
2020-05-16 21:30:29 +02:00
|
|
|
ReturnIcon = &GetIcon("os_"_XS8 + Full);
|
2020-10-04 19:12:10 +02:00
|
|
|
DBG(" Full=%s\n", Full.c_str());
|
2020-05-16 21:30:29 +02:00
|
|
|
if (!ReturnIcon->isEmpty()) return *ReturnIcon;
|
2020-04-05 17:54:10 +02:00
|
|
|
}
|
|
|
|
// else something
|
2020-05-16 21:30:29 +02:00
|
|
|
if (DummyIcon.isEmpty()) { //initialize once per session
|
|
|
|
DummyIcon.Image.DummyImage(MainEntriesSize);
|
|
|
|
DummyIcon.setFilled();
|
|
|
|
}
|
2020-04-05 17:54:10 +02:00
|
|
|
return DummyIcon;
|
|
|
|
}
|
2020-03-16 12:15:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
void XTheme::FillByEmbedded()
|
2020-03-17 20:43:58 +01:00
|
|
|
{
|
2020-04-16 13:04:24 +02:00
|
|
|
embedded = true;
|
|
|
|
Theme.takeValueFrom("embedded");
|
|
|
|
SelectionColor = 0xA0A0A080;
|
|
|
|
SelectionBackgroundPixel = { 0xa0, 0xa0, 0xa0, 0x80 };
|
|
|
|
|
2020-08-12 17:15:47 +02:00
|
|
|
Icons.setEmpty();
|
2020-04-05 16:04:39 +02:00
|
|
|
for (INTN i = 0; i < BUILTIN_ICON_COUNT; ++i) { //this is embedded icon count
|
2020-05-16 21:30:29 +02:00
|
|
|
XIcon* NewIcon = new XIcon(i, true);
|
2020-04-02 21:27:10 +02:00
|
|
|
Icons.AddReference(NewIcon, true);
|
2020-03-19 19:35:58 +01:00
|
|
|
}
|
2020-04-10 16:35:24 +02:00
|
|
|
|
|
|
|
BigBack.setEmpty();
|
2020-04-16 13:04:24 +02:00
|
|
|
Background = XImage(UGAWidth, UGAHeight);
|
2020-04-10 21:29:51 +02:00
|
|
|
|
|
|
|
if (Daylight) {
|
|
|
|
Banner.FromPNG(ACCESS_EMB_DATA(emb_logo), emb_logo_size);
|
|
|
|
} else {
|
|
|
|
Banner.FromPNG(ACCESS_EMB_DATA(emb_dark_logo), emb_dark_logo_size);
|
|
|
|
}
|
|
|
|
|
2020-04-05 16:04:39 +02:00
|
|
|
//and buttons
|
|
|
|
Buttons[0].FromPNG(ACCESS_EMB_DATA(emb_radio_button), ACCESS_EMB_SIZE(emb_radio_button));
|
|
|
|
Buttons[1].FromPNG(ACCESS_EMB_DATA(emb_radio_button_selected), ACCESS_EMB_SIZE(emb_radio_button_selected));
|
|
|
|
Buttons[2].FromPNG(ACCESS_EMB_DATA(emb_checkbox), ACCESS_EMB_SIZE(emb_checkbox));
|
|
|
|
Buttons[3].FromPNG(ACCESS_EMB_DATA(emb_checkbox_checked), ACCESS_EMB_SIZE(emb_checkbox_checked));
|
|
|
|
|
|
|
|
if (Daylight) {
|
|
|
|
SelectionImages[0].FromPNG(ACCESS_EMB_DATA(emb_selection_big), ACCESS_EMB_SIZE(emb_selection_big));
|
|
|
|
SelectionImages[2].FromPNG(ACCESS_EMB_DATA(emb_selection_small), ACCESS_EMB_SIZE(emb_selection_small));
|
|
|
|
} else {
|
|
|
|
SelectionImages[0].FromPNG(ACCESS_EMB_DATA(emb_dark_selection_big), ACCESS_EMB_SIZE(emb_dark_selection_big));
|
|
|
|
SelectionImages[2].FromPNG(ACCESS_EMB_DATA(emb_dark_selection_small), ACCESS_EMB_SIZE(emb_dark_selection_small));
|
|
|
|
}
|
|
|
|
|
|
|
|
SelectionImages[4].FromPNG(ACCESS_EMB_DATA(emb_selection_indicator), ACCESS_EMB_SIZE(emb_selection_indicator));
|
2020-03-17 20:43:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void XTheme::ClearScreen() //and restore background and banner
|
|
|
|
{
|
2020-08-19 09:52:33 +02:00
|
|
|
if ( UGAWidth == 0 || UGAHeight == 0 ) {
|
|
|
|
// jief : I had the case where no graphic protocol were availbale. So UGAWidth == 0 && UGAHeight == 0 which panic because Background would be empty.
|
|
|
|
// Background.GetPixelPtr(0, 0) panic on an empty image because there is no pixel at x=0 y=0
|
|
|
|
// test could be "if ( UGAWidth == 0 && UGAHeight == 0 )" (&& instead of ||), but I feel like if one of the dimension is 0, we have a graphic problem.
|
|
|
|
// also, should we implement the case if we are in text mode ?
|
|
|
|
return;
|
|
|
|
}
|
2020-04-12 20:53:27 +02:00
|
|
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL FirstBannerPixel = MenuBackgroundPixel;
|
2020-03-17 20:43:58 +01:00
|
|
|
if (BanHeight < 2) {
|
|
|
|
BanHeight = ((UGAHeight - (int)(LayoutHeight * Scale)) >> 1);
|
|
|
|
}
|
|
|
|
if (!(HideUIFlags & HIDEUI_FLAG_BANNER)) {
|
|
|
|
//Banner image prepared before
|
|
|
|
if (!Banner.isEmpty()) {
|
2020-04-12 20:53:27 +02:00
|
|
|
FirstBannerPixel = Banner.GetPixel(0,0);
|
|
|
|
|
2020-03-18 07:39:11 +01:00
|
|
|
BannerPlace.Width = Banner.GetWidth();
|
|
|
|
BannerPlace.Height = (BanHeight >= Banner.GetHeight()) ? Banner.GetHeight() : BanHeight;
|
2020-03-17 20:43:58 +01:00
|
|
|
BannerPlace.XPos = BannerPosX;
|
|
|
|
BannerPlace.YPos = BannerPosY;
|
|
|
|
if (!TypeSVG) {
|
|
|
|
// Check if new style placement value was used for banner in theme.plist
|
|
|
|
|
|
|
|
if ((BannerPosX >=0 && BannerPosX <=1000) && (BannerPosY >=0 && BannerPosY <=1000)) {
|
|
|
|
// Check if screen size being used is different from theme origination size.
|
|
|
|
// If yes, then recalculate the placement % value.
|
|
|
|
// This is necessary because screen can be a different size, but banner is not scaled.
|
|
|
|
BannerPlace.XPos = HybridRepositioning(BannerEdgeHorizontal, BannerPosX, BannerPlace.Width, UGAWidth, ThemeDesignWidth );
|
|
|
|
BannerPlace.YPos = HybridRepositioning(BannerEdgeVertical, BannerPosY, BannerPlace.Height, UGAHeight, ThemeDesignHeight);
|
|
|
|
// Check if banner is required to be nudged.
|
2020-03-18 07:39:11 +01:00
|
|
|
BannerPlace.XPos = CalculateNudgePosition(BannerPlace.XPos, BannerNudgeX, Banner.GetWidth(), UGAWidth);
|
|
|
|
BannerPlace.YPos = CalculateNudgePosition(BannerPlace.YPos, BannerNudgeY, Banner.GetHeight(), UGAHeight);
|
2020-03-17 20:43:58 +01:00
|
|
|
// DBG("banner position new style\n");
|
|
|
|
} else {
|
|
|
|
// Use rEFIt default (no placement values speicifed)
|
2020-04-18 21:11:50 +02:00
|
|
|
BannerPlace.XPos = (UGAWidth >= Banner.GetWidth() ) ? (UGAWidth - Banner.GetWidth() ) >> 1 : 0;
|
|
|
|
BannerPlace.YPos = (BanHeight >= Banner.GetHeight()) ? (BanHeight - Banner.GetHeight()) : 0;
|
2020-03-17 20:43:58 +01:00
|
|
|
// DBG("banner position old style\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 18:30:39 +02:00
|
|
|
DBG("BannerPlace at Clear Screen [%lld,%lld]\n", BannerPlace.XPos, BannerPlace.YPos);
|
2020-03-17 20:43:58 +01:00
|
|
|
//Then prepare Background from BigBack
|
2020-04-20 02:55:35 +02:00
|
|
|
if (Background.GetWidth() != UGAWidth || Background.GetHeight() != UGAHeight) { // should we type UGAWidth and UGAHeight as UINTN to avoid cast ?
|
|
|
|
// Resolution changed or empty background
|
2020-03-17 20:43:58 +01:00
|
|
|
Background = XImage(UGAWidth, UGAHeight);
|
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
// now we are sure Background has UGA sizes
|
2020-04-12 20:53:27 +02:00
|
|
|
float BigScale;
|
|
|
|
float BigScaleY;
|
2020-03-17 20:43:58 +01:00
|
|
|
if (!BigBack.isEmpty()) {
|
|
|
|
switch (BackgroundScale) {
|
|
|
|
case imScale:
|
2020-04-12 20:53:27 +02:00
|
|
|
BigScale = (float)UGAWidth/BigBack.GetWidth();
|
|
|
|
BigScaleY = (float)UGAHeight/BigBack.GetHeight();
|
|
|
|
Background.CopyScaled(BigBack, MAX(BigScale, BigScaleY));
|
2020-03-17 20:43:58 +01:00
|
|
|
break;
|
|
|
|
case imCrop:
|
2020-03-18 07:39:11 +01:00
|
|
|
{
|
2020-03-17 20:43:58 +01:00
|
|
|
INTN x = UGAWidth - BigBack.GetWidth();
|
|
|
|
INTN x1, x2, y1, y2;
|
|
|
|
if (x >= 0) {
|
|
|
|
x1 = x >> 1;
|
|
|
|
x2 = 0;
|
|
|
|
x = BigBack.GetWidth();
|
|
|
|
} else {
|
|
|
|
x1 = 0;
|
|
|
|
x2 = (-x) >> 1;
|
|
|
|
x = UGAWidth;
|
|
|
|
}
|
|
|
|
INTN y = UGAHeight - BigBack.GetHeight();
|
|
|
|
if (y >= 0) {
|
|
|
|
y1 = y >> 1;
|
|
|
|
y2 = 0;
|
|
|
|
y = BigBack.GetHeight();
|
|
|
|
} else {
|
|
|
|
y1 = 0;
|
|
|
|
y2 = (-y) >> 1;
|
|
|
|
y = UGAHeight;
|
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
const EG_RECT BackRect = EG_RECT(x1, y1, x, y);
|
|
|
|
const EG_RECT BigRect = EG_RECT(x2, y2, x, y);
|
2020-03-31 16:25:07 +02:00
|
|
|
// DBG("crop to x,y: %lld, %lld\n", x, y);
|
2020-04-03 22:00:42 +02:00
|
|
|
Background.CopyRect(BigBack, BackRect, BigRect);
|
2020-03-17 20:43:58 +01:00
|
|
|
break;
|
2020-03-18 07:39:11 +01:00
|
|
|
}
|
2020-03-17 20:43:58 +01:00
|
|
|
case imTile:
|
2020-03-18 07:39:11 +01:00
|
|
|
{
|
|
|
|
INTN x = (BigBack.GetWidth() * ((UGAWidth - 1) / BigBack.GetWidth() + 1) - UGAWidth) >> 1;
|
|
|
|
INTN y = (BigBack.GetHeight() * ((UGAHeight - 1) / BigBack.GetHeight() + 1) - UGAHeight) >> 1;
|
|
|
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL* p1 = Background.GetPixelPtr(0, 0);
|
|
|
|
for (INTN j = 0; j < UGAHeight; j++) {
|
|
|
|
for (INTN i = 0; i < UGAWidth; i++) {
|
2020-03-17 20:43:58 +01:00
|
|
|
*p1++ = BigBack.GetPixel((i + x) % BigBack.GetWidth(), (j + y) % BigBack.GetHeight());
|
|
|
|
}
|
|
|
|
}
|
2020-04-01 14:57:32 +02:00
|
|
|
// DBG("back copy tiled\n");
|
2020-03-17 20:43:58 +01:00
|
|
|
break;
|
2020-03-18 07:39:11 +01:00
|
|
|
}
|
2020-03-17 20:43:58 +01:00
|
|
|
case imNone:
|
|
|
|
default:
|
|
|
|
// already scaled
|
2020-03-31 14:35:04 +02:00
|
|
|
Background = BigBack;
|
2020-04-01 14:57:32 +02:00
|
|
|
// DBG("back copy equal\n");
|
2020-03-17 20:43:58 +01:00
|
|
|
break;
|
|
|
|
}
|
2020-04-20 02:55:35 +02:00
|
|
|
} else {
|
|
|
|
// no background loaded, fill by default
|
|
|
|
if (!embedded) {
|
|
|
|
BlueBackgroundPixel = FirstBannerPixel;
|
|
|
|
} else if (Daylight) {
|
|
|
|
// embedded light
|
|
|
|
BlueBackgroundPixel = StdBackgroundPixel;
|
|
|
|
} else {
|
|
|
|
// embedded dark
|
|
|
|
BlueBackgroundPixel = DarkEmbeddedBackgroundPixel;
|
|
|
|
}
|
|
|
|
Background.Fill(BlueBackgroundPixel); //blue opaque. May be better to set black opaque?
|
2020-03-17 20:43:58 +01:00
|
|
|
}
|
2020-04-03 22:00:42 +02:00
|
|
|
//join Banner and Background for menu drawing
|
|
|
|
if (!Banner.isEmpty()) {
|
|
|
|
Background.Compose(BannerPlace.XPos, BannerPlace.YPos, Banner, true);
|
|
|
|
}
|
2020-04-01 16:59:58 +02:00
|
|
|
Background.DrawWithoutCompose(0, 0, UGAWidth, UGAHeight);
|
2020-03-17 20:43:58 +01:00
|
|
|
}
|
|
|
|
|
2020-03-18 15:11:56 +01:00
|
|
|
|
2020-03-19 19:35:58 +01:00
|
|
|
//use this only for PNG theme
|
2020-03-18 15:11:56 +01:00
|
|
|
void XTheme::FillByDir() //assume ThemeDir is defined by InitTheme() procedure
|
|
|
|
{
|
2020-04-06 11:15:36 +02:00
|
|
|
EFI_STATUS Status;
|
2020-08-12 17:15:47 +02:00
|
|
|
Icons.setEmpty();
|
2020-04-23 13:36:35 +02:00
|
|
|
for (INTN i = 0; i < IconsNamesSize; ++i) { //scan full table
|
2020-04-21 20:41:35 +02:00
|
|
|
Status = EFI_NOT_FOUND;
|
2020-05-16 21:30:29 +02:00
|
|
|
XIcon* NewIcon = new XIcon(i); //initialize without embedded
|
2020-04-21 20:41:35 +02:00
|
|
|
switch (i) {
|
|
|
|
case BUILTIN_SELECTION_SMALL:
|
|
|
|
Status = NewIcon->Image.LoadXImage(ThemeDir, SelectionSmallFileName);
|
|
|
|
break;
|
|
|
|
case BUILTIN_SELECTION_BIG:
|
|
|
|
Status = NewIcon->Image.LoadXImage(ThemeDir, SelectionBigFileName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (EFI_ERROR(Status)) {
|
|
|
|
Status = NewIcon->Image.LoadXImage(ThemeDir, IconsNames[i]);
|
|
|
|
}
|
2020-04-18 08:39:47 +02:00
|
|
|
NewIcon->Native = !EFI_ERROR(Status);
|
2020-04-21 20:41:35 +02:00
|
|
|
if (!EFI_ERROR(Status)) {
|
2020-05-16 21:30:29 +02:00
|
|
|
NewIcon->setFilled();
|
2020-04-21 20:41:35 +02:00
|
|
|
NewIcon->ImageNight.LoadXImage(ThemeDir, SWPrintf("%s_night", IconsNames[i]));
|
2020-04-06 11:15:36 +02:00
|
|
|
}
|
2020-04-21 20:41:35 +02:00
|
|
|
Icons.AddReference(NewIcon, true);
|
|
|
|
if (EFI_ERROR(Status)) {
|
|
|
|
if (i >= BUILTIN_ICON_VOL_INTERNAL_HFS && i <= BUILTIN_ICON_VOL_INTERNAL_REC) {
|
|
|
|
// call to GetIconAlt will get alternate/embedded into Icon if missing
|
|
|
|
GetIconAlt(i, BUILTIN_ICON_VOL_INTERNAL);
|
|
|
|
} else if (i == BUILTIN_SELECTION_BIG) {
|
|
|
|
GetIconAlt(i, BUILTIN_SELECTION_SMALL);
|
|
|
|
}
|
2020-05-16 21:30:29 +02:00
|
|
|
}
|
2020-04-21 20:41:35 +02:00
|
|
|
}
|
|
|
|
if (BootCampStyle) {
|
2020-05-16 21:30:29 +02:00
|
|
|
XIcon *NewIcon = new XIcon(BUILTIN_ICON_SELECTION);
|
2020-04-21 20:41:35 +02:00
|
|
|
// load indicator selection image
|
|
|
|
Status = NewIcon->Image.LoadXImage(ThemeDir, SelectionIndicatorName);
|
|
|
|
if (EFI_ERROR(Status)) {
|
|
|
|
Status = NewIcon->Image.LoadXImage(ThemeDir, "selection_indicator");
|
2020-04-06 11:15:36 +02:00
|
|
|
}
|
2020-04-02 21:27:10 +02:00
|
|
|
Icons.AddReference(NewIcon, true);
|
2020-03-18 15:11:56 +01:00
|
|
|
}
|
2020-03-19 19:35:58 +01:00
|
|
|
|
2020-04-05 16:04:39 +02:00
|
|
|
SelectionBackgroundPixel.Red = (SelectionColor >> 24) & 0xFF;
|
|
|
|
SelectionBackgroundPixel.Green = (SelectionColor >> 16) & 0xFF;
|
|
|
|
SelectionBackgroundPixel.Blue = (SelectionColor >> 8) & 0xFF;
|
|
|
|
SelectionBackgroundPixel.Reserved = (SelectionColor >> 0) & 0xFF;
|
2020-05-16 21:30:29 +02:00
|
|
|
//TODO - make them XIcon
|
2020-05-23 13:16:02 +02:00
|
|
|
SelectionImages[2] = *GetIconP(BUILTIN_SELECTION_SMALL)->GetBest(!Daylight);
|
|
|
|
SelectionImages[0] = *GetIconP(BUILTIN_SELECTION_BIG)->GetBest(!Daylight);
|
2020-04-05 16:04:39 +02:00
|
|
|
if (BootCampStyle) {
|
2020-05-23 13:16:02 +02:00
|
|
|
SelectionImages[4] = *GetIconP(BUILTIN_ICON_SELECTION)->GetBest(!Daylight);
|
2020-04-05 16:04:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//and buttons
|
2020-05-23 13:16:02 +02:00
|
|
|
Buttons[0] = *GetIconP(BUILTIN_RADIO_BUTTON)->GetBest(!Daylight);
|
|
|
|
Buttons[1] = *GetIconP(BUILTIN_RADIO_BUTTON_SELECTED)->GetBest(!Daylight);
|
|
|
|
Buttons[2] = *GetIconP(BUILTIN_CHECKBOX)->GetBest(!Daylight);
|
|
|
|
Buttons[3] = *GetIconP(BUILTIN_CHECKBOX_CHECKED)->GetBest(!Daylight);
|
2020-03-19 19:35:58 +01:00
|
|
|
|
2020-03-20 18:48:19 +01:00
|
|
|
//load banner and background
|
2020-03-19 19:35:58 +01:00
|
|
|
Banner.LoadXImage(ThemeDir, BannerFileName);
|
2020-04-06 11:15:36 +02:00
|
|
|
Status = BigBack.LoadXImage(ThemeDir, BackgroundName);
|
|
|
|
if (EFI_ERROR(Status) && !Banner.isEmpty()) {
|
|
|
|
//take first pixel from banner
|
|
|
|
const EFI_GRAPHICS_OUTPUT_BLT_PIXEL& firstPixel = Banner.GetPixel(0,0);
|
|
|
|
BigBack.setSizeInPixels(UGAWidth, UGAHeight);
|
|
|
|
BigBack.Fill(firstPixel);
|
|
|
|
}
|
2020-03-20 18:48:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void XTheme::InitBar()
|
|
|
|
{
|
|
|
|
if (!TypeSVG) {
|
|
|
|
ScrollbarBackgroundImage.LoadXImage(ThemeDir, "scrollbar\\bar_fill");
|
|
|
|
BarStartImage.LoadXImage(ThemeDir, "scrollbar\\bar_start");
|
|
|
|
BarEndImage.LoadXImage(ThemeDir, "scrollbar\\bar_end");
|
|
|
|
ScrollbarImage.LoadXImage(ThemeDir, "scrollbar\\scroll_fill");
|
|
|
|
ScrollStartImage.LoadXImage(ThemeDir, "scrollbar\\scroll_start");
|
|
|
|
ScrollEndImage.LoadXImage(ThemeDir, "scrollbar\\scroll_end");
|
|
|
|
UpButtonImage.LoadXImage(ThemeDir, "scrollbar\\up_button");
|
|
|
|
DownButtonImage.LoadXImage(ThemeDir, "scrollbar\\down_button");
|
2020-05-04 18:05:29 +02:00
|
|
|
} else {
|
2020-05-23 13:16:02 +02:00
|
|
|
ScrollbarBackgroundImage = *GetIconP("scrollbar_background"_XS8)->GetBest(!Daylight);
|
2020-05-04 18:05:29 +02:00
|
|
|
BarStartImage.setEmpty();
|
|
|
|
BarEndImage.setEmpty();
|
2020-05-23 13:16:02 +02:00
|
|
|
ScrollbarImage = *GetIconP("scrollbar_holder"_XS8)->GetBest(!Daylight); //"_night" is already accounting
|
|
|
|
ScrollStartImage = *GetIconP("scrollbar_start"_XS8)->GetBest(!Daylight);
|
|
|
|
ScrollEndImage = *GetIconP("scrollbar_end"_XS8)->GetBest(!Daylight);
|
|
|
|
UpButtonImage = *GetIconP("scrollbar_up_button"_XS8)->GetBest(!Daylight);
|
|
|
|
DownButtonImage = *GetIconP("scrollbar_down_button"_XS8)->GetBest(!Daylight);
|
2020-03-20 18:48:19 +01:00
|
|
|
}
|
2020-03-19 19:35:58 +01:00
|
|
|
|
2020-03-20 18:48:19 +01:00
|
|
|
//some help with embedded scroll
|
2020-05-09 00:34:15 +02:00
|
|
|
|
|
|
|
if (!TypeSVG) {
|
|
|
|
// fill these from embedded only for non-svg
|
|
|
|
// Question: why we don't want these for svg? (upbutton, downbutton, scrollstart, scrollend - also have hardcoded 0 height in REFIT_MENU_SCREEN.cpp)
|
|
|
|
if (BarStartImage.isEmpty()) {
|
|
|
|
BarStartImage.FromPNG(ACCESS_EMB_DATA(emb_scroll_bar_start), ACCESS_EMB_SIZE(emb_scroll_bar_start));
|
2020-03-20 18:48:19 +01:00
|
|
|
}
|
2020-05-09 00:34:15 +02:00
|
|
|
if (BarEndImage.isEmpty()) {
|
|
|
|
BarEndImage.FromPNG(ACCESS_EMB_DATA(emb_scroll_bar_end), ACCESS_EMB_SIZE(emb_scroll_bar_end));
|
2020-03-20 18:48:19 +01:00
|
|
|
}
|
|
|
|
if (ScrollStartImage.isEmpty()) {
|
|
|
|
ScrollStartImage.FromPNG(ACCESS_EMB_DATA(emb_scroll_scroll_start), ACCESS_EMB_SIZE(emb_scroll_scroll_start));
|
|
|
|
}
|
|
|
|
if (ScrollEndImage.isEmpty()) {
|
|
|
|
ScrollEndImage.FromPNG(ACCESS_EMB_DATA(emb_scroll_scroll_end), ACCESS_EMB_SIZE(emb_scroll_scroll_end));
|
|
|
|
}
|
2020-05-09 00:34:15 +02:00
|
|
|
if (UpButtonImage.isEmpty()) {
|
|
|
|
UpButtonImage.FromPNG(ACCESS_EMB_DATA(emb_scroll_up_button), ACCESS_EMB_SIZE(emb_scroll_up_button));
|
2020-03-20 18:48:19 +01:00
|
|
|
}
|
2020-05-09 00:34:15 +02:00
|
|
|
if (DownButtonImage.isEmpty()) {
|
2020-03-20 18:48:19 +01:00
|
|
|
DownButtonImage.FromPNG(ACCESS_EMB_DATA(emb_scroll_down_button), ACCESS_EMB_SIZE(emb_scroll_down_button));
|
|
|
|
}
|
|
|
|
}
|
2020-05-09 00:34:15 +02:00
|
|
|
|
|
|
|
// fill these from embedded for both svg and non-svg
|
|
|
|
if (ScrollbarBackgroundImage.isEmpty()) {
|
|
|
|
ScrollbarBackgroundImage.FromPNG(ACCESS_EMB_DATA(emb_scroll_bar_fill), ACCESS_EMB_SIZE(emb_scroll_bar_fill));
|
|
|
|
}
|
|
|
|
if (ScrollbarImage.isEmpty()) {
|
|
|
|
ScrollbarImage.FromPNG(ACCESS_EMB_DATA(emb_scroll_scroll_fill), ACCESS_EMB_SIZE(emb_scroll_scroll_fill));
|
|
|
|
}
|
|
|
|
|
2020-03-18 15:11:56 +01:00
|
|
|
}
|
2020-03-20 18:48:19 +01:00
|
|
|
|
2020-04-05 05:44:27 +02:00
|
|
|
//the purpose of the procedure is restore Background in rect
|
|
|
|
//XAlign is always centre, Color is the Backgrounf fill
|
|
|
|
//TODO replace by some existing procedure
|
2020-10-03 19:02:31 +02:00
|
|
|
void XTheme::FillRectAreaOfScreen(IN INTN XPos, IN INTN YPos, IN INTN Width, IN INTN Height)
|
2020-04-05 05:44:27 +02:00
|
|
|
{
|
|
|
|
// TmpBuffer.CopyScaled(Background, 1.f);
|
|
|
|
INTN X = XPos - (Width >> 1); //X_IS_CENTRE
|
2020-04-09 20:04:35 +02:00
|
|
|
if (X < 0) {
|
|
|
|
X = 0;
|
|
|
|
}
|
|
|
|
if (X + Width > UGAWidth) {
|
2020-04-18 11:46:52 +02:00
|
|
|
Width = (X > UGAWidth) ? 0 : (UGAWidth - X);
|
2020-04-09 20:04:35 +02:00
|
|
|
}
|
|
|
|
if (YPos + Height > UGAHeight) {
|
2020-04-18 11:46:52 +02:00
|
|
|
Height = (YPos > UGAHeight) ? 0 : (UGAHeight - YPos);
|
2020-04-09 20:04:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
XImage TmpBuffer(Width, Height);
|
2020-04-05 05:44:27 +02:00
|
|
|
TmpBuffer.CopyRect(Background, X, YPos); //a part of BackGround image
|
|
|
|
TmpBuffer.DrawWithoutCompose(X, YPos);
|
|
|
|
// TmpBuffer.Draw(X, YPos, 0, true);
|
|
|
|
}
|
|
|
|
|
2020-04-10 12:04:21 +02:00
|
|
|
|
2020-03-29 15:44:08 +02:00
|
|
|
|
2020-03-20 18:48:19 +01:00
|
|
|
|