2010-08-08 22:48:31 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2011-10-26 14:04:37 +00:00
|
|
|
#include <string.h>
|
2010-08-08 22:48:31 +00:00
|
|
|
|
2010-08-10 18:58:50 +00:00
|
|
|
#include "../debug.h"
|
2010-08-08 22:48:31 +00:00
|
|
|
#include "helpline.h"
|
2011-02-09 13:38:43 +00:00
|
|
|
#include "ui.h"
|
2011-10-25 15:52:05 +00:00
|
|
|
#include "libslang.h"
|
2010-08-08 22:48:31 +00:00
|
|
|
|
|
|
|
void ui_helpline__pop(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-10-26 14:04:37 +00:00
|
|
|
char ui_helpline__current[512];
|
|
|
|
|
2010-08-08 22:48:31 +00:00
|
|
|
void ui_helpline__push(const char *msg)
|
|
|
|
{
|
2011-10-26 14:04:37 +00:00
|
|
|
const size_t sz = sizeof(ui_helpline__current);
|
|
|
|
|
2011-10-25 15:52:05 +00:00
|
|
|
SLsmg_gotorc(SLtt_Screen_Rows - 1, 0);
|
|
|
|
SLsmg_set_color(0);
|
|
|
|
SLsmg_write_nstring((char *)msg, SLtt_Screen_Cols);
|
|
|
|
SLsmg_refresh();
|
2011-10-26 14:04:37 +00:00
|
|
|
strncpy(ui_helpline__current, msg, sz)[sz - 1] = '\0';
|
2010-08-08 22:48:31 +00:00
|
|
|
}
|
|
|
|
|
2010-08-10 18:44:20 +00:00
|
|
|
void ui_helpline__vpush(const char *fmt, va_list ap)
|
2010-08-08 22:48:31 +00:00
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (vasprintf(&s, fmt, ap) < 0)
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
else {
|
|
|
|
ui_helpline__push(s);
|
|
|
|
free(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ui_helpline__fpush(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
ui_helpline__vpush(fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ui_helpline__puts(const char *msg)
|
|
|
|
{
|
|
|
|
ui_helpline__pop();
|
|
|
|
ui_helpline__push(msg);
|
|
|
|
}
|
2010-08-10 18:58:50 +00:00
|
|
|
|
|
|
|
void ui_helpline__init(void)
|
|
|
|
{
|
|
|
|
ui_helpline__puts(" ");
|
|
|
|
}
|
|
|
|
|
|
|
|
char ui_helpline__last_msg[1024];
|
|
|
|
|
|
|
|
int ui_helpline__show_help(const char *format, va_list ap)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
static int backlog;
|
|
|
|
|
2011-02-09 13:38:43 +00:00
|
|
|
pthread_mutex_lock(&ui__lock);
|
2012-03-14 15:29:29 +00:00
|
|
|
ret = vscnprintf(ui_helpline__last_msg + backlog,
|
2010-08-10 18:58:50 +00:00
|
|
|
sizeof(ui_helpline__last_msg) - backlog, format, ap);
|
|
|
|
backlog += ret;
|
|
|
|
|
|
|
|
if (ui_helpline__last_msg[backlog - 1] == '\n') {
|
|
|
|
ui_helpline__puts(ui_helpline__last_msg);
|
2011-10-25 15:52:05 +00:00
|
|
|
SLsmg_refresh();
|
2010-08-10 18:58:50 +00:00
|
|
|
backlog = 0;
|
|
|
|
}
|
2011-02-09 13:38:43 +00:00
|
|
|
pthread_mutex_unlock(&ui__lock);
|
2010-08-10 18:58:50 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|