You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

215 lines
4.5 KiB

/*
term.c
LPC11U3x GPS Logger (https://github.com/olikraus/lpc11u3x-gps-logger)
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 "term.h"
void term_Init(term_t *term, uint8_t width, uint8_t height, char *memory, term_show_cb show)
{
term->width = width;
term->height = height;
term->screen = memory;
term->show = show;
term_Clear(term);
}
void term_Home(term_t *term)
{
term->cursor_x = 0;
term->cursor_y = 0;
}
void term_Clear(term_t *term)
{
uint16_t cnt;
char *ptr;
cnt = term->width;
cnt *= term->height;
ptr = term->screen;
while( cnt > 0 )
{
*ptr++ = ' ';
cnt--;
}
term_Home(term);
}
static void term_ScrollScreenUp(term_t *term)
{
uint8_t y, cnt;
char *dest;
char *src;
/* move content one line up */
for( y = 1; y < term->height; y++ )
{
cnt = term->width;
dest = term->screen;
dest += (y-1)*cnt;
src = dest;
src += cnt;
do
{
*dest++ = *src++;
cnt--;
} while( cnt > 0 );
}
/* fill lowest line with blank */
cnt = term->width;
y = term->height;
y--;
dest = term->screen;
dest += y*cnt;
do
{
*dest++ = ' ';
cnt--;
} while( cnt > 0 );
}
void term_NewLine(term_t *term)
{
if ( term->cursor_y < term->height )
{
term->show(term, TERM_MSG_PRE_NEWLINE);
term->cursor_y++;
term->cursor_x = 0;
term->show(term, TERM_MSG_POST_NEWLINE);
}
else
{
/* handle pending scroll up */
term->show(term, TERM_MSG_PRE_SCROLL);
term_ScrollScreenUp(term);
term->cursor_x = 0;
term->show(term, TERM_MSG_POST_SCROLL);
}
}
void term_WriteChar(term_t *term, char c)
{
/* handle special chars */
if ( c == '\n' )
{
term_NewLine(term);
return;
}
if ( c < 32 )
return;
/* handle pending scroll up */
if ( term->cursor_y >= term->height )
{
term->show(term, TERM_MSG_PRE_SCROLL);
term_ScrollScreenUp(term);
term->cursor_y = term->height - 1;
term->cursor_x = 0;
term->show(term, TERM_MSG_POST_SCROLL);
}
/* write char */
term->show(term, TERM_MSG_PRE_CHAR);
term->screen[term->cursor_y * term->width + term->cursor_x] = c;
term->show(term, TERM_MSG_POST_CHAR);
/* update cursor x pos */
term->cursor_x++;
if ( term->cursor_x >= term->width )
{
term_NewLine(term);
}
}
void term_WriteString(term_t *term, const char *str)
{
while( *str != '\0' )
{
term_WriteChar(term, *str++);
}
}
#ifdef TEST
#include <stdio.h>
void show(term_t *term)
{
uint16_t x, y;
for( y = 0; y < term->height; y++ )
{
printf("%02d |", y);
for( x = 0; x < term->width; x++ )
{
printf("%c", term->screen[y * term->width + x]);
}
printf("|\n");
}
printf("%d %d\n", term->cursor_x, term->cursor_y);
}
void show_cb(term_t *term, uint8_t msg)
{
switch(msg)
{
case TERM_MSG_POST_NEWLINE:
case TERM_MSG_POST_SCROLL:
case TERM_MSG_POST_CHAR:
show(term);
break;
}
}
void main(void)
{
term_t t;
char buf[10*4];
term_Init(&t, 10, 4, buf, show_cb);
term_WriteString(&t, "12345");
term_WriteString(&t, "abcdefg");
term_WriteString(&t, "\n");
term_WriteString(&t, "abc\n");
term_WriteString(&t, "12345678901234");
term_WriteString(&t, "\n");
term_WriteString(&t, "a");
}
#endif