2016-05-21 14:09:17 +08:00
|
|
|
/*
|
|
|
|
|
|
|
|
u8x8_string.c
|
|
|
|
|
2016-05-23 03:44:20 +08:00
|
|
|
string line procedures
|
2016-05-21 14:09:17 +08:00
|
|
|
|
|
|
|
Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
|
|
|
|
|
|
|
|
Copyright (c) 2016, olikraus@gmail.com
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright notice, this list
|
|
|
|
of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice, this
|
|
|
|
list of conditions and the following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "u8x8.h"
|
|
|
|
|
2016-05-22 22:02:33 +08:00
|
|
|
uint8_t u8x8_GetStringLineCnt(const char *str)
|
2016-05-21 14:09:17 +08:00
|
|
|
{
|
|
|
|
char e;
|
|
|
|
uint8_t line_cnt = 1;
|
2016-05-23 03:44:20 +08:00
|
|
|
if ( str == NULL )
|
|
|
|
return 0;
|
2016-05-21 14:09:17 +08:00
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
e = *str;
|
|
|
|
if ( e == '\0' )
|
|
|
|
break;
|
|
|
|
str++;
|
|
|
|
if ( e == '\n' )
|
|
|
|
line_cnt++;
|
|
|
|
}
|
|
|
|
return line_cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Assumes strings, separated by '\n' in "str".
|
|
|
|
Returns the string at index "line_idx". First strng has line_idx = 0
|
|
|
|
Example:
|
|
|
|
Returns "xyz" for line_idx = 1 with str = "abc\nxyz"
|
|
|
|
Support both UTF8 and normal strings.
|
|
|
|
*/
|
2016-05-25 02:26:46 +08:00
|
|
|
const char *u8x8_GetStringLineStart(uint8_t line_idx, const char *str )
|
2016-05-21 14:09:17 +08:00
|
|
|
{
|
|
|
|
char e;
|
|
|
|
uint8_t line_cnt = 1;
|
|
|
|
|
|
|
|
if ( line_idx == 0 )
|
|
|
|
return str;
|
|
|
|
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
e = *str;
|
|
|
|
if ( e == '\0' )
|
|
|
|
break;
|
|
|
|
str++;
|
|
|
|
if ( e == '\n' )
|
|
|
|
{
|
|
|
|
if ( line_cnt == line_idx )
|
|
|
|
return str;
|
|
|
|
line_cnt++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL; /* line not found */
|
|
|
|
}
|
|
|
|
|
2016-05-25 02:26:46 +08:00
|
|
|
/* copy until first '\n' or '\0' in str */
|
2016-05-29 22:24:50 +08:00
|
|
|
/* Important: There is no string overflow check, ensure */
|
|
|
|
/* that the destination buffer is large enough */
|
|
|
|
void u8x8_CopyStringLine(char *dest, uint8_t line_idx, const char *str)
|
2016-05-25 02:26:46 +08:00
|
|
|
{
|
|
|
|
if ( dest == NULL )
|
|
|
|
return;
|
2016-05-29 22:33:56 +08:00
|
|
|
str = u8x8_GetStringLineStart( line_idx, str );
|
2016-05-25 02:26:46 +08:00
|
|
|
if ( str != NULL )
|
|
|
|
{
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
if ( *str == '\n' || *str == '\0' )
|
|
|
|
break;
|
|
|
|
*dest = *str;
|
|
|
|
dest++;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*dest = '\0';
|
|
|
|
}
|
|
|
|
|
2016-05-23 03:44:20 +08:00
|
|
|
/*
|
|
|
|
Draw a string
|
|
|
|
Extend the string to size "w"
|
2016-06-14 00:55:59 +08:00
|
|
|
Center the string within "w"
|
2016-05-23 03:44:20 +08:00
|
|
|
return the size of the string
|
|
|
|
|
|
|
|
*/
|
|
|
|
uint8_t u8x8_DrawUTF8Line(u8x8_t *u8x8, uint8_t x, uint8_t y, uint8_t w, const char *s)
|
|
|
|
{
|
|
|
|
uint8_t d, lw;
|
|
|
|
uint8_t cx, dx;
|
2016-06-01 12:29:07 +08:00
|
|
|
|
2016-05-23 03:44:20 +08:00
|
|
|
d = 0;
|
2016-06-14 00:55:59 +08:00
|
|
|
|
|
|
|
lw = u8x8_GetUTF8Len(u8x8, s);
|
|
|
|
if ( lw < w )
|
2016-05-23 03:44:20 +08:00
|
|
|
{
|
2016-06-14 00:55:59 +08:00
|
|
|
d = w;
|
|
|
|
d -=lw;
|
|
|
|
d /= 2;
|
2016-05-23 03:44:20 +08:00
|
|
|
}
|
2016-06-14 00:55:59 +08:00
|
|
|
|
2016-05-23 03:44:20 +08:00
|
|
|
cx = x;
|
|
|
|
dx = cx + d;
|
|
|
|
while( cx < dx )
|
|
|
|
{
|
|
|
|
u8x8_DrawUTF8(u8x8, cx, y, " ");
|
|
|
|
cx++;
|
|
|
|
}
|
|
|
|
cx += u8x8_DrawUTF8(u8x8, cx, y, s);
|
|
|
|
dx = x + w;
|
|
|
|
while( cx < dx )
|
|
|
|
{
|
|
|
|
u8x8_DrawUTF8(u8x8, cx, y, " ");
|
|
|
|
cx++;
|
|
|
|
}
|
|
|
|
cx -= x;
|
|
|
|
return cx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
draw several lines at position x,y.
|
|
|
|
lines are stored in s and must be separated with '\n'.
|
2016-06-16 01:08:06 +08:00
|
|
|
lines can be centered with respect to "w"
|
2016-05-25 02:26:46 +08:00
|
|
|
if s == NULL nothing is drawn and 0 is returned
|
2016-05-23 03:44:20 +08:00
|
|
|
returns the number of lines in s
|
|
|
|
*/
|
|
|
|
uint8_t u8x8_DrawUTF8Lines(u8x8_t *u8x8, uint8_t x, uint8_t y, uint8_t w, const char *s)
|
|
|
|
{
|
|
|
|
uint8_t i;
|
|
|
|
uint8_t cnt;
|
|
|
|
cnt = u8x8_GetStringLineCnt(s);
|
|
|
|
for( i = 0; i < cnt; i++ )
|
|
|
|
{
|
2016-05-25 02:26:46 +08:00
|
|
|
u8x8_DrawUTF8Line(u8x8, x, y, w, u8x8_GetStringLineStart(i, s));
|
2016-05-23 03:44:20 +08:00
|
|
|
y++;
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|