2023-09-09 07:03:56 +00:00
|
|
|
/* Copyright 2023 Dual Tachyon
|
|
|
|
* https://github.com/DualTachyon
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
2023-09-10 04:49:39 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
#include "driver/st7565.h"
|
|
|
|
#include "external/printf/printf.h"
|
|
|
|
#include "font.h"
|
|
|
|
#include "ui/helper.h"
|
|
|
|
#include "ui/inputbox.h"
|
2023-10-31 23:10:03 +00:00
|
|
|
#include "misc.h"
|
2023-09-09 07:03:56 +00:00
|
|
|
|
2023-09-10 08:57:49 +00:00
|
|
|
#ifndef ARRAY_SIZE
|
|
|
|
#define ARRAY_SIZE(arr) (sizeof(arr)/sizeof((arr)[0]))
|
|
|
|
#endif
|
|
|
|
|
2023-09-09 12:58:21 +00:00
|
|
|
void UI_GenerateChannelString(char *pString, const uint8_t Channel)
|
2023-09-09 07:03:56 +00:00
|
|
|
{
|
2023-09-09 11:40:19 +00:00
|
|
|
unsigned int i;
|
2023-09-09 07:03:56 +00:00
|
|
|
|
2023-09-09 11:40:19 +00:00
|
|
|
if (gInputBoxIndex == 0)
|
|
|
|
{
|
2023-09-13 01:01:35 +00:00
|
|
|
sprintf(pString, "CH-%02u", Channel + 1);
|
2023-09-09 07:03:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pString[0] = 'C';
|
|
|
|
pString[1] = 'H';
|
|
|
|
pString[2] = '-';
|
2023-09-09 11:40:19 +00:00
|
|
|
for (i = 0; i < 2; i++)
|
|
|
|
pString[i + 3] = (gInputBox[i] == 10) ? '-' : gInputBox[i] + '0';
|
2023-09-09 07:03:56 +00:00
|
|
|
}
|
|
|
|
|
2023-09-09 12:58:21 +00:00
|
|
|
void UI_GenerateChannelStringEx(char *pString, const bool bShowPrefix, const uint8_t ChannelNumber)
|
2023-09-09 07:03:56 +00:00
|
|
|
{
|
2023-12-23 17:18:23 +00:00
|
|
|
if (gInputBoxIndex > 0) {
|
|
|
|
for (unsigned int i = 0; i < 3; i++) {
|
2023-09-09 11:40:19 +00:00
|
|
|
pString[i] = (gInputBox[i] == 10) ? '-' : gInputBox[i] + '0';
|
2023-12-23 17:18:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pString[3] = 0;
|
2023-09-09 07:03:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-12-23 17:18:23 +00:00
|
|
|
if (bShowPrefix) {
|
|
|
|
// BUG here? Prefixed NULLs are allowed
|
2023-09-13 01:01:35 +00:00
|
|
|
sprintf(pString, "CH-%03u", ChannelNumber + 1);
|
2023-12-23 17:18:23 +00:00
|
|
|
} else if (ChannelNumber == 0xFF) {
|
2023-09-09 11:40:19 +00:00
|
|
|
strcpy(pString, "NULL");
|
2023-12-23 17:18:23 +00:00
|
|
|
} else {
|
2023-09-13 01:01:35 +00:00
|
|
|
sprintf(pString, "%03u", ChannelNumber + 1);
|
2023-12-23 17:18:23 +00:00
|
|
|
}
|
2023-09-09 07:03:56 +00:00
|
|
|
}
|
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
void UI_PrintStringBuffer(const char *pString, uint8_t * buffer, uint32_t char_width, const uint8_t *font)
|
|
|
|
{
|
|
|
|
const size_t Length = strlen(pString);
|
|
|
|
const unsigned int char_spacing = char_width + 1;
|
|
|
|
for (size_t i = 0; i < Length; i++) {
|
|
|
|
const unsigned int index = pString[i] - ' ' - 1;
|
|
|
|
if (pString[i] > ' ' && pString[i] < 127) {
|
|
|
|
const uint32_t offset = i * char_spacing + 1;
|
|
|
|
memcpy(buffer + offset, font + index * char_width, char_width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-12 14:31:37 +00:00
|
|
|
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width)
|
2023-09-09 07:03:56 +00:00
|
|
|
{
|
2023-09-09 11:14:15 +00:00
|
|
|
size_t i;
|
|
|
|
size_t Length = strlen(pString);
|
2023-09-09 07:03:56 +00:00
|
|
|
|
2023-09-12 14:31:37 +00:00
|
|
|
if (End > Start)
|
2023-09-09 07:03:56 +00:00
|
|
|
Start += (((End - Start) - (Length * Width)) + 1) / 2;
|
2023-09-09 11:14:15 +00:00
|
|
|
|
|
|
|
for (i = 0; i < Length; i++)
|
|
|
|
{
|
2023-10-20 14:52:15 +00:00
|
|
|
const unsigned int ofs = (unsigned int)Start + (i * Width);
|
|
|
|
if (pString[i] > ' ' && pString[i] < 127)
|
2023-09-09 11:14:15 +00:00
|
|
|
{
|
2023-10-20 14:52:15 +00:00
|
|
|
const unsigned int index = pString[i] - ' ' - 1;
|
2023-12-12 22:23:39 +00:00
|
|
|
memcpy(gFrameBuffer[Line + 0] + ofs, &gFontBig[index][0], 7);
|
|
|
|
memcpy(gFrameBuffer[Line + 1] + ofs, &gFontBig[index][7], 7);
|
2023-09-09 07:03:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
void UI_PrintStringSmall(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t char_width, const uint8_t *font)
|
2023-09-09 07:03:56 +00:00
|
|
|
{
|
2023-09-10 04:49:39 +00:00
|
|
|
const size_t Length = strlen(pString);
|
2023-09-24 00:36:43 +00:00
|
|
|
const unsigned int char_spacing = char_width + 1;
|
2023-11-26 20:04:01 +00:00
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
if (End > Start) {
|
|
|
|
Start += (((End - Start) - Length * char_spacing) + 1) / 2;
|
|
|
|
}
|
2023-11-26 20:04:01 +00:00
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
UI_PrintStringBuffer(pString, gFrameBuffer[Line] + Start, char_width, font);
|
|
|
|
}
|
2023-11-26 20:04:01 +00:00
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
void UI_PrintStringSmallNormal(const char *pString, uint8_t Start, uint8_t End, uint8_t Line)
|
|
|
|
{
|
|
|
|
UI_PrintStringSmall(pString, Start, End, Line, ARRAY_SIZE(gFontSmall[0]), (const uint8_t *)gFontSmall);
|
2023-09-10 04:49:39 +00:00
|
|
|
}
|
2023-09-09 07:03:56 +00:00
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
void UI_PrintStringSmallBold(const char *pString, uint8_t Start, uint8_t End, uint8_t Line)
|
|
|
|
{
|
2023-09-24 00:36:43 +00:00
|
|
|
#ifdef ENABLE_SMALL_BOLD
|
2023-12-25 00:35:06 +00:00
|
|
|
const uint8_t *font = (uint8_t *)gFontSmallBold;
|
|
|
|
const uint8_t char_width = ARRAY_SIZE(gFontSmallBold[0]);
|
|
|
|
#else
|
|
|
|
const uint8_t *font = (uint8_t *)gFontSmall;
|
|
|
|
const uint8_t char_width = ARRAY_SIZE(gFontSmall[0]);
|
|
|
|
#endif
|
2023-12-23 17:18:23 +00:00
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
UI_PrintStringSmall(pString, Start, End, Line, char_width, font);
|
|
|
|
}
|
2023-12-23 17:18:23 +00:00
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
void UI_PrintStringSmallBufferNormal(const char *pString, uint8_t * buffer)
|
|
|
|
{
|
|
|
|
UI_PrintStringBuffer(pString, buffer, ARRAY_SIZE(gFontSmall[0]), (uint8_t *)gFontSmall);
|
|
|
|
}
|
2023-09-24 00:36:43 +00:00
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
void UI_PrintStringSmallBufferBold(const char *pString, uint8_t * buffer)
|
2023-09-19 06:59:06 +00:00
|
|
|
{
|
2023-12-25 00:35:06 +00:00
|
|
|
#ifdef ENABLE_SMALL_BOLD
|
|
|
|
const uint8_t *font = (uint8_t *)gFontSmallBold;
|
|
|
|
const uint8_t char_width = ARRAY_SIZE(gFontSmallBold[0]);
|
|
|
|
#else
|
|
|
|
const uint8_t *font = (uint8_t *)gFontSmall;
|
|
|
|
const uint8_t char_width = ARRAY_SIZE(gFontSmall[0]);
|
|
|
|
#endif
|
|
|
|
UI_PrintStringBuffer(pString, buffer, char_width, font);
|
2023-09-19 06:59:06 +00:00
|
|
|
}
|
|
|
|
|
2023-10-18 18:43:02 +00:00
|
|
|
void UI_DisplayFrequency(const char *string, uint8_t X, uint8_t Y, bool center)
|
2023-09-10 04:49:39 +00:00
|
|
|
{
|
|
|
|
const unsigned int char_width = 13;
|
|
|
|
uint8_t *pFb0 = gFrameBuffer[Y] + X;
|
|
|
|
uint8_t *pFb1 = pFb0 + 128;
|
|
|
|
bool bCanDisplay = false;
|
2023-10-18 18:43:02 +00:00
|
|
|
|
|
|
|
uint8_t len = strlen(string);
|
|
|
|
for(int i = 0; i < len; i++) {
|
2023-10-20 14:52:15 +00:00
|
|
|
char c = string[i];
|
|
|
|
if(c=='-') c = '9' + 1;
|
2023-10-18 18:43:02 +00:00
|
|
|
if (bCanDisplay || c != ' ')
|
2023-09-09 11:40:19 +00:00
|
|
|
{
|
2023-09-09 07:03:56 +00:00
|
|
|
bCanDisplay = true;
|
2023-10-20 14:52:15 +00:00
|
|
|
if(c>='0' && c<='9' + 1) {
|
|
|
|
memcpy(pFb0 + 2, gFontBigDigits[c-'0'], char_width - 3);
|
|
|
|
memcpy(pFb1 + 2, gFontBigDigits[c-'0'] + char_width - 3, char_width - 3);
|
2023-10-18 18:43:02 +00:00
|
|
|
}
|
|
|
|
else if(c=='.') {
|
|
|
|
*pFb1 = 0x60; pFb0++; pFb1++;
|
|
|
|
*pFb1 = 0x60; pFb0++; pFb1++;
|
|
|
|
*pFb1 = 0x60; pFb0++; pFb1++;
|
|
|
|
continue;
|
|
|
|
}
|
2023-12-23 17:18:23 +00:00
|
|
|
|
2023-09-09 11:40:19 +00:00
|
|
|
}
|
2023-10-18 18:43:02 +00:00
|
|
|
else if (center) {
|
2023-09-09 07:03:56 +00:00
|
|
|
pFb0 -= 6;
|
2023-09-10 04:49:39 +00:00
|
|
|
pFb1 -= 6;
|
2023-09-09 07:03:56 +00:00
|
|
|
}
|
2023-09-10 04:49:39 +00:00
|
|
|
pFb0 += char_width;
|
|
|
|
pFb1 += char_width;
|
2023-09-09 07:03:56 +00:00
|
|
|
}
|
|
|
|
}
|
2023-10-31 23:10:03 +00:00
|
|
|
|
2023-12-23 17:18:23 +00:00
|
|
|
void UI_DrawPixelBuffer(uint8_t (*buffer)[128], uint8_t x, uint8_t y, bool black)
|
2023-10-31 23:10:03 +00:00
|
|
|
{
|
2023-12-08 14:03:26 +00:00
|
|
|
const uint8_t pattern = 1 << (y % 8);
|
2023-11-22 22:43:39 +00:00
|
|
|
if(black)
|
2023-12-08 14:03:26 +00:00
|
|
|
buffer[y/8][x] |= pattern;
|
2023-11-22 22:43:39 +00:00
|
|
|
else
|
2023-12-08 14:03:26 +00:00
|
|
|
buffer[y/8][x] &= ~pattern;
|
2023-10-31 23:10:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sort(int16_t *a, int16_t *b)
|
|
|
|
{
|
|
|
|
if(*a > *b) {
|
|
|
|
int16_t t = *a;
|
|
|
|
*a = *b;
|
|
|
|
*b = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-22 22:43:39 +00:00
|
|
|
void UI_DrawLineBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black)
|
2023-10-31 23:10:03 +00:00
|
|
|
{
|
|
|
|
if(x2==x1) {
|
|
|
|
sort(&y1, &y2);
|
|
|
|
for(int16_t i = y1; i <= y2; i++) {
|
2023-11-22 22:43:39 +00:00
|
|
|
UI_DrawPixelBuffer(buffer, x1, i, black);
|
2023-10-31 23:10:03 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const int multipl = 1000;
|
|
|
|
int a = (y2-y1)*multipl / (x2-x1);
|
|
|
|
int b = y1 - a * x1 / multipl;
|
|
|
|
|
|
|
|
sort(&x1, &x2);
|
|
|
|
for(int i = x1; i<= x2; i++)
|
|
|
|
{
|
2023-11-22 22:43:39 +00:00
|
|
|
UI_DrawPixelBuffer(buffer, i, i*a/multipl +b, black);
|
2023-10-31 23:10:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-22 22:43:39 +00:00
|
|
|
void UI_DrawRectangleBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black)
|
2023-10-31 23:10:03 +00:00
|
|
|
{
|
2023-11-22 22:43:39 +00:00
|
|
|
UI_DrawLineBuffer(buffer, x1,y1, x1,y2, black);
|
|
|
|
UI_DrawLineBuffer(buffer, x1,y1, x2,y1, black);
|
|
|
|
UI_DrawLineBuffer(buffer, x2,y1, x2,y2, black);
|
|
|
|
UI_DrawLineBuffer(buffer, x1,y2, x2,y2, black);
|
2023-10-31 23:10:03 +00:00
|
|
|
}
|
|
|
|
|
2023-12-25 00:35:06 +00:00
|
|
|
|
2023-12-23 17:18:23 +00:00
|
|
|
void UI_DisplayPopup(const char *string)
|
2023-10-31 23:10:03 +00:00
|
|
|
{
|
2023-12-25 00:35:06 +00:00
|
|
|
UI_DisplayClear();
|
2023-10-31 23:10:03 +00:00
|
|
|
|
|
|
|
// for(uint8_t i = 1; i < 5; i++) {
|
|
|
|
// memset(gFrameBuffer[i]+8, 0x00, 111);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// for(uint8_t x = 10; x < 118; x++) {
|
2023-11-22 22:43:39 +00:00
|
|
|
// UI_DrawPixelBuffer(x, 10, true);
|
|
|
|
// UI_DrawPixelBuffer(x, 46-9, true);
|
2023-10-31 23:10:03 +00:00
|
|
|
// }
|
|
|
|
|
|
|
|
// for(uint8_t y = 11; y < 37; y++) {
|
2023-11-22 22:43:39 +00:00
|
|
|
// UI_DrawPixelBuffer(10, y, true);
|
|
|
|
// UI_DrawPixelBuffer(117, y, true);
|
2023-10-31 23:10:03 +00:00
|
|
|
// }
|
|
|
|
// DrawRectangle(9,9, 118,38, true);
|
|
|
|
UI_PrintString(string, 9, 118, 2, 8);
|
2023-12-25 00:35:06 +00:00
|
|
|
UI_PrintStringSmallNormal("Press EXIT", 9, 118, 6);
|
2023-12-25 00:24:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void UI_DisplayClear()
|
|
|
|
{
|
|
|
|
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
|
|
|
}
|