From 21152104d296939c2babecd8999b03c325de0b2c Mon Sep 17 00:00:00 2001 From: reinelt Date: Wed, 26 May 2004 11:37:36 +0000 Subject: [lcd4linux @ 2004-05-26 11:37:35 by reinelt] Curses driver ported. git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@436 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- Makefile.am | 3 +- Makefile.in | 6 +- Status | 2 +- Text.c | 297 ----------------------------------------------- config.h.in | 6 +- configure | 6 +- debug.c | 18 +-- drivers.m4 | 6 +- drv.c | 16 +-- drv_Crystalfontz.c | 8 +- drv_Curses.c | 283 ++++++++++++++++++++++++++++++++++++++++++++ drv_Cwlinux.c | 8 +- drv_HD44780.c | 14 ++- drv_M50530.c | 8 +- drv_MatrixOrbital.c | 8 +- drv_MilfordInstruments.c | 8 +- drv_USBLCD.c | 8 +- drv_generic_text.c | 34 ++++-- drv_generic_text.h | 8 +- lcd4linux.conf.sample | 12 +- widget.c | 11 +- 21 files changed, 409 insertions(+), 361 deletions(-) delete mode 100644 Text.c create mode 100644 drv_Curses.c diff --git a/Makefile.am b/Makefile.am index fc01a64..ba83d2c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -59,6 +59,7 @@ drv_generic_parport.c \ drv_generic_parport.h \ BeckmannEgle.c \ drv_Crystalfontz.c \ +drv_Curses.c \ drv_Cwlinux.c \ drv_HD44780.c \ drv_Image.c \ @@ -68,7 +69,7 @@ drv_MilfordInstruments.c \ drv_T6963.c \ drv_USBLCD.c \ drv_X11.c \ -Text.c \ + \ font_6x8.h \ \ plugin_apm.c \ diff --git a/Makefile.in b/Makefile.in index 897aa59..ebceaf8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -101,7 +101,7 @@ lcd4linux_SOURCES = lcd4linux.c cfg.c cfg.h deb #liblcd4linux_la_SOURCES = -EXTRA_lcd4linux_SOURCES = drv_generic_text.c drv_generic_text.h drv_generic_graphic.c drv_generic_graphic.h drv_generic_serial.c drv_generic_serial.h drv_generic_parport.c drv_generic_parport.h BeckmannEgle.c drv_Crystalfontz.c drv_Cwlinux.c drv_HD44780.c drv_Image.c drv_M50530.c drv_MatrixOrbital.c drv_MilfordInstruments.c drv_T6963.c drv_USBLCD.c drv_X11.c Text.c font_6x8.h plugin_apm.c plugin_cpuinfo.c plugin_dvb.c plugin_exec.c plugin_i2c_sensors.c plugin_imon.c plugin_isdn.c plugin_loadavg.c plugin_meminfo.c plugin_mysql.c plugin_netdev.c plugin_pop3.c plugin_ppp.c plugin_proc_stat.c plugin_seti.c plugin_uname.c plugin_uptime.c plugin_wireless.c plugin_xmms.c +EXTRA_lcd4linux_SOURCES = drv_generic_text.c drv_generic_text.h drv_generic_graphic.c drv_generic_graphic.h drv_generic_serial.c drv_generic_serial.h drv_generic_parport.c drv_generic_parport.h BeckmannEgle.c drv_Crystalfontz.c drv_Curses.c drv_Cwlinux.c drv_HD44780.c drv_Image.c drv_M50530.c drv_MatrixOrbital.c drv_MilfordInstruments.c drv_T6963.c drv_USBLCD.c drv_X11.c font_6x8.h plugin_apm.c plugin_cpuinfo.c plugin_dvb.c plugin_exec.c plugin_i2c_sensors.c plugin_imon.c plugin_isdn.c plugin_loadavg.c plugin_meminfo.c plugin_mysql.c plugin_netdev.c plugin_pop3.c plugin_ppp.c plugin_proc_stat.c plugin_seti.c plugin_uname.c plugin_uptime.c plugin_wireless.c plugin_xmms.c EXTRA_DIST = lcd4linux.conf.sample lcd4kde.conf lcd4linux.kdelnk lcd4linux.xpm lcd4linux.lsm curses.m4 AUTHORS CREDITS FAQ NEWS TODO README README.Drivers README.Plugins README.KDE plugin_sample.c @@ -139,8 +139,8 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) TAR = tar GZIP_ENV = --best -DEP_FILES = .deps/BeckmannEgle.P .deps/Text.P .deps/cfg.P .deps/debug.P \ -.deps/drv.P .deps/drv_Crystalfontz.P .deps/drv_Cwlinux.P \ +DEP_FILES = .deps/BeckmannEgle.P .deps/cfg.P .deps/debug.P .deps/drv.P \ +.deps/drv_Crystalfontz.P .deps/drv_Curses.P .deps/drv_Cwlinux.P \ .deps/drv_HD44780.P .deps/drv_Image.P .deps/drv_M50530.P \ .deps/drv_MatrixOrbital.P .deps/drv_MilfordInstruments.P \ .deps/drv_T6963.P .deps/drv_USBLCD.P .deps/drv_X11.P \ diff --git a/Status b/Status index 502ead3..de07359 100644 --- a/Status +++ b/Status @@ -3,6 +3,7 @@ Lcd4Linux NextGeneration porting status DRIVERS : format : status (widgets) + extras [todo] ------------------------------------------------------- Crystalfontz -> Ported (Text,Bar,Icon) + blacklight,contrast,pwm [gpo,rpm] + Curses -> Ported (Text,Bar) Cwlinux -> Ported (Text,Bar,Icon) + blacklight [gpo,gpi,inverted text,relay] HD44780 -> Ported (Text,Bar,Icon) + soft brightness,'busy flag',gpo [soft contrast] M50530 -> Ported (Text,Bar,Icon) + gpo @@ -14,7 +15,6 @@ Lcd4Linux NextGeneration porting status Raster* -> Ported (Text,Bar,Icon) BeckmannEgle -> - Curses -> PalmPilot -> Obsolete SIN -> Obsolete diff --git a/Text.c b/Text.c deleted file mode 100644 index 9499b0d..0000000 --- a/Text.c +++ /dev/null @@ -1,297 +0,0 @@ -/* $Id: Text.c,v 1.15 2004/03/03 03:47:04 reinelt Exp $ - * - * pure ncurses based text driver - * - * Copyright 2001 Leopold Tötsch - * - * This file is part of LCD4Linux. - * - * LCD4Linux is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * LCD4Linux is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * - * $Log: Text.c,v $ - * Revision 1.15 2004/03/03 03:47:04 reinelt - * big patch from Martin Hejl: - * - use qprintf() where appropriate - * - save CPU cycles on gettimeofday() - * - add quit() functions to free allocated memory - * - fixed lots of memory leaks - * - * Revision 1.14 2004/01/29 04:40:02 reinelt - * every .c file includes "config.h" now - * - * Revision 1.13 2004/01/09 04:16:06 reinelt - * added 'section' argument to cfg_get(), but NULLed it on all calls by now. - * - * Revision 1.12 2003/10/05 17:58:50 reinelt - * libtool junk; copyright messages cleaned up - * - * Revision 1.11 2003/09/13 06:45:43 reinelt - * icons for all remaining drivers - * - * Revision 1.10 2003/08/24 05:17:58 reinelt - * liblcd4linux patch from Patrick Schemitz - * - * Revision 1.9 2003/07/24 04:48:09 reinelt - * 'soft clear' needed for virtual rows - * - * Revision 1.8 2003/02/22 07:53:10 reinelt - * cfg_get(key,defval) - * - * Revision 1.7 2003/02/17 04:27:58 reinelt - * Text (curses) driver: cosmetic changes - * - * Revision 1.6 2002/08/30 03:54:01 reinelt - * bug in curses driver fixed - * - * Revision 1.5 2002/08/19 04:41:20 reinelt - * introduced bar.c, moved bar stuff from display.h to bar.h - * - * Revision 1.4 2001/03/16 16:40:17 ltoetsch - * implemented time bar - * - * Revision 1.3 2001/03/16 09:28:08 ltoetsch - * bugfixes - * - * Revision 1.2 2001/03/09 15:04:53 reinelt - * - * rename 'raster' to 'Text in Text.c - * added TOTO item - * - * Revision 1.1 2001/03/09 13:08:11 ltoetsch - * Added Text driver - * - * - */ - -/* - * - * exported fuctions: - * - * struct LCD Text[] - * - */ - -#include "config.h" - -#include -#include -#include - -#define min(x,y) (x)<(y)?x:y - - -#ifdef STANDALONE - -int main(int argc, char *argv[]) -{ - WINDOW *w; - int x,y; - - w = initscr(); - - for (x=0; x < 255; x++) - addch(acs_map[x]); - refresh(); - sleep(5); - endwin(); - return 0; - -} - -#else - -#include -#include "debug.h" -#include "cfg.h" -#include "display.h" -#include "bar.h" - -extern int running_foreground; - -static LCD Lcd; -static WINDOW *w, *err_win; -static int err_rows; - - -int Text_clear (int full) -{ - if (full) { - werase(w); - box(w, 0, 0); - } - return 0; -} - - -int Text_quit(void) { - endwin(); - return 0; -} - - -int Text_init (LCD *Self) -{ - int cols=-1, rows=-1; - int scr_cols, scr_rows; - char *s; - if (!running_foreground) { - error("Text: you want me to display on /dev/null: sorry, I can't"); - error("Text: Maybe you want me to run in foreground? Try '-F'"); - return -1; - } - - if (sscanf(s=cfg_get(NULL, "size", "20x4"), "%dx%d", &cols, &rows)!=2 || rows<1 || cols<1) { - error ("Text: bad size '%s'", s); - return -1; - } - free(s); - Self->rows=rows; - Self->cols=cols; - Self->xres=1; - Self->yres=1; - Lcd=*Self; - - initscr(); - scr_cols=COLS; - scr_rows=LINES; - debug ("curses thinks that COLS=%d LINES=%d", COLS, LINES); - w = newwin(rows+2,cols+2,0,0); - err_rows = scr_rows-rows-3; - err_rows = min(99, err_rows); - debug ("err_rows=%d", err_rows); - if (err_rows >= 4) { - err_win = newwin(err_rows, scr_cols, rows+3, 0); - err_rows -= 3; - box(err_win, 0, 0); - mvwprintw(err_win,0,3, "Stderr:"); - wmove(err_win, 1 , 0); - wrefresh(err_win); - } - Text_clear(1); - return w ? 0 : -1; -} - - -/* ncures scroll SIGSEGVs on my system, so this is a workaroud */ - -int curs_err(char *buffer) -{ - static int lines; - static char *lb[100]; - int start, i; - char *p; - - if (err_win) { - /* replace \r, \n with underscores */ - while ((p = strpbrk(buffer, "\r\n")) != NULL) - *p='_'; - if (lines >= err_rows) { - free(lb[0]); - for (i=1; i<=err_rows; i++) - lb[i-1] = lb[i]; - start = 0; - } - else - start = lines; - lb[lines] = strdup(buffer); - for (i=start; i<=lines; i++) { - mvwprintw(err_win,i+1,1, "%s", lb[i]); - wclrtoeol(err_win); - } - box(err_win, 0, 0); - mvwprintw(err_win,0,3, "Stderr:"); - wrefresh(err_win); - if (lines < err_rows) - lines++; - return 1; - } - return 0; -} - - -int Text_put (int row, int col, char *text) -{ - char *p; - - while ((p = strpbrk(text, "\r\n")) != NULL) { - *p='\0'; - } - if (col < Lcd.cols) { - mvwprintw(w, row+1 , col+1, "%.*s", Lcd.cols-col, text); - } - return 0; -} - - -int Text_bar (int type, int row, int col, int max, int len1, int len2) -{ - int len, i; - char* s; - if (s=cfg_get(NULL, "TextBar", NULL)) { - mvwprintw(w, row+1 , col+1, "%d %d %d", max, len1, len2); - } else { - len = min(len1, len2); - len = min(len, Lcd.cols-col-1); - if (len) { - wmove(w, row+1 , col+1); - for (i=0; i>confdefs.h <<\_ACEOF -#define WITH_TEXT 1 +#define WITH_CURSES 1 _ACEOF else diff --git a/debug.c b/debug.c index 937bc04..55bb16d 100644 --- a/debug.c +++ b/debug.c @@ -1,4 +1,4 @@ -/* $Id: debug.c,v 1.7 2004/02/10 07:42:35 reinelt Exp $ +/* $Id: debug.c,v 1.8 2004/05/26 11:37:36 reinelt Exp $ * * debug() and error() functions * @@ -22,6 +22,10 @@ * * * $Log: debug.c,v $ + * Revision 1.8 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.7 2004/02/10 07:42:35 reinelt * cut off all old-style files which are no longer used with NextGeneration * @@ -87,12 +91,10 @@ void message (int level, const char *format, ...) va_end(ap); if (!running_background) { - // Fixme -#if 0 -#ifdef WITH_TEXT - extern int curs_err(char *); - if (!curs_err(buffer)) -#endif + +#ifdef WITH_CURSES + extern int curses_error(char *); + if (!curses_error(buffer)) #endif fprintf (level?stdout:stderr, "%s\n", buffer); } @@ -102,7 +104,7 @@ void message (int level, const char *format, ...) if (!log_open) { openlog ("LCD4Linux", LOG_PID, LOG_USER); - log_open=1; + log_open = 1; } switch (level) { diff --git a/drivers.m4 b/drivers.m4 index ce09a67..a50b70f 100644 --- a/drivers.m4 +++ b/drivers.m4 @@ -116,11 +116,11 @@ fi if test "$CURSES" = "yes"; then if test "$has_curses" = true; then -# DRIVERS="$DRIVERS Text.lo" -# DRIVERS="$DRIVERS Text.o" +# DRIVERS="$DRIVERS drv_Curses.lo" + DRIVERS="$DRIVERS drv_Curses.o" DRVLIBS="$DRVLIBS $CURSES_LIBS" CPPFLAGS="$CPPFLAGS $CURSES_INCLUDES" - AC_DEFINE(WITH_TEXT,1,[Curses driver]) + AC_DEFINE(WITH_CURSES,1,[Curses driver]) else AC_MSG_WARN(curses not found: Curses driver disabled) fi diff --git a/drv.c b/drv.c index f5d10ad..3c05520 100644 --- a/drv.c +++ b/drv.c @@ -1,4 +1,4 @@ -/* $Id: drv.c,v 1.12 2004/05/26 05:03:27 reinelt Exp $ +/* $Id: drv.c,v 1.13 2004/05/26 11:37:36 reinelt Exp $ * * new framework for display drivers * @@ -23,6 +23,10 @@ * * * $Log: drv.c,v $ + * Revision 1.13 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.12 2004/05/26 05:03:27 reinelt * * MilfordInstruments driver ported @@ -124,6 +128,7 @@ extern DRIVER drv_BeckmannEgle; extern DRIVER drv_Crystalfontz; +extern DRIVER drv_Curses; extern DRIVER drv_Cwlinux; extern DRIVER drv_HD44780; extern DRIVER drv_Image; @@ -133,7 +138,6 @@ extern DRIVER drv_USBLCD; extern DRIVER drv_MatrixOrbital; extern DRIVER drv_MilfordInstruments; extern DRIVER drv_X11; -extern DRIVER drv_Text; // output file for Image driver // has to be defined here because it's referenced @@ -152,6 +156,9 @@ DRIVER *Driver[] = { #ifdef WITH_CWLINUX &drv_Cwlinux, #endif +#ifdef WITH_CURSES + &drv_Curses, +#endif #ifdef WITH_HD44780 &drv_HD44780, #endif @@ -176,11 +183,6 @@ DRIVER *Driver[] = { #ifdef WITH_X11 &drv_X11, #endif - /* Fixme - #ifdef WITH_TEXT - &Text, - #endif - */ NULL, }; diff --git a/drv_Crystalfontz.c b/drv_Crystalfontz.c index 26b897c..242bc1a 100644 --- a/drv_Crystalfontz.c +++ b/drv_Crystalfontz.c @@ -1,4 +1,4 @@ -/* $Id: drv_Crystalfontz.c,v 1.15 2004/05/25 14:26:29 reinelt Exp $ +/* $Id: drv_Crystalfontz.c,v 1.16 2004/05/26 11:37:36 reinelt Exp $ * * new style driver for Crystalfontz display modules * @@ -23,6 +23,10 @@ * * * $Log: drv_Crystalfontz.c,v $ + * Revision 1.16 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.15 2004/05/25 14:26:29 reinelt * * added "Image" driver (was: Raster.c) for PPM and PNG creation @@ -873,7 +877,7 @@ int drv_CF_init (char *section) return ret; // initialize generic bar driver - if ((ret=drv_generic_text_bar_init())!=0) + if ((ret=drv_generic_text_bar_init(0))!=0) return ret; // add fixed chars to the bar driver diff --git a/drv_Curses.c b/drv_Curses.c new file mode 100644 index 0000000..8c94668 --- /dev/null +++ b/drv_Curses.c @@ -0,0 +1,283 @@ +/* $Id: drv_Curses.c,v 1.1 2004/05/26 11:37:36 reinelt Exp $ + * + * pure ncurses based text driver + * + * Copyright 2004 Michael Reinelt + * Copyright 2004 The LCD4Linux Team + * + * based on the old Curses/Text driver which is + * Copyright 2001 Leopold Toetsch + * + * This file is part of LCD4Linux. + * + * LCD4Linux is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * LCD4Linux is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * + * $Log: drv_Curses.c,v $ + * Revision 1.1 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * + */ + +/* + * + * exported fuctions: + * + * struct DRIVER drv_Curses + * + */ + +#include "config.h" + +#include +#include +#include +#include + +#include + +#include "debug.h" +#include "cfg.h" +#include "plugin.h" +#include "widget.h" +#include "widget_text.h" +#include "widget_bar.h" +#include "drv.h" +#include "drv_generic_text.h" + + +static char Name[]="Curses"; + +static WINDOW *w = NULL; +static WINDOW *e = NULL; + +static int EROWS; + + +// **************************************** +// *** hardware dependant functions *** +// **************************************** + +static void drv_Curs_write (int row, int col, unsigned char *data, int len) +{ + char *p; + + while ((p = strpbrk(data, "\r\n")) != NULL) { + *p = '\0'; + } + + if (col < DCOLS) { + if (DCOLS-col < len ) len = DCOLS-col; + mvwprintw(w, row+1 , col+1, "%.*s", DCOLS-col, data); + box(w, 0, 0); + wmove(w, DROWS+1, 0); + wrefresh(w); + } +} + + +static void drv_Curs_defchar (int ascii, unsigned char *buffer) +{ + // empty +} + + +/* ncures scroll SIGSEGVs on my system, so this is a workaroud */ + +int curses_error(char *buffer) +{ + static int lines = 0; + static char *lb[100]; + int start, i; + char *p; + + if (e == NULL) return 0; + + // replace \r, \n with underscores + while ((p = strpbrk(buffer, "\r\n")) != NULL) { + *p='_'; + } + + if (lines >= EROWS) { + free(lb[0]); + for (i = 1; i <= EROWS; i++) { + lb[i-1] = lb[i]; + } + start = 0; + } else { + start = lines; + } + + lb[lines] = strdup(buffer); + for (i = start; i <= lines; i++) { + mvwprintw(e, i+1, 1, "%s", lb[i]); + wclrtoeol(e); + } + + box(e, 0, 0); + mvwprintw(e, 0, 3, "Stderr:"); + wrefresh(e); + + if (lines < EROWS) lines++; + + return 1; +} + + +static int drv_Curs_start (char *section) +{ + char *s; + + if (!running_foreground) { + error("%s: You want me to display on /dev/null? Sorry, I can't ...", Name); + error("%s: Maybe you want me to run in foreground? Try '-F'", Name); + return -1; + } + + s = cfg_get(section, "Size", "20x4"); + if (s == NULL || *s == '\0') { + error ("%s: no '%s.Size' entry from %s", Name, section, cfg_source()); + free(s); + return -1; + } + if (sscanf(s, "%dx%d", &DCOLS, &DROWS) != 2 || DROWS < 1 || DCOLS < 1) { + error ("%s: bad %s.Size '%s' from %s", Name, section, s, cfg_source); + free(s); + return -1; + } + free (s); + + initscr(); + debug ("%s: curses thinks that COLS=%d LINES=%d", Name, COLS, LINES); + w = newwin(DROWS+2, DCOLS+2, 0, 0); + + EROWS = LINES-DROWS-3; + if (EROWS > 99) EROWS = 99; + debug ("EROWS=%d", EROWS); + + if (EROWS >= 4) { + e = newwin (EROWS, COLS, DROWS+3, 0); + EROWS -= 3; + box(e, 0, 0); + mvwprintw (e, 0, 3, "Stderr:"); + wmove(e, 1 , 0); + wrefresh(e); + } + + werase (w); + box (w, 0, 0); + wrefresh (w); + + return 0; +} + + +// **************************************** +// *** plugins *** +// **************************************** + +// none at the moment... + + +// **************************************** +// *** widget callbacks *** +// **************************************** + +// using drv_generic_text_draw(W) +// using drv_generic_text_bar_draw(W) + + +// **************************************** +// *** exported functions *** +// **************************************** + + +// list models +int drv_Curs_list (void) +{ + printf ("any"); + return 0; +} + + +// initialize driver & display +int drv_Curs_init (char *section) +{ + WIDGET_CLASS wc; + int ret; + + // display preferences + XRES = 1; // pixel width of one char + YRES = 1; // pixel height of one char + CHARS = 0; // number of user-defineable characters + CHAR0 = 0; // ASCII of first user-defineable char + GOTO_COST = 0; // number of bytes a goto command requires + + // real worker functions + drv_generic_text_real_write = drv_Curs_write; + drv_generic_text_real_defchar = drv_Curs_defchar; + + // start display + if ((ret = drv_Curs_start (section)) != 0) + return ret; + + // initialize generic text driver + if ((ret = drv_generic_text_init(section, Name)) != 0) + return ret; + + // initialize generic bar driver + if ((ret = drv_generic_text_bar_init(1)) != 0) + return ret; + + // add fixed chars to the bar driver + drv_generic_text_bar_add_segment ( 0, 0,255, 32); // ASCII 32 = blank + drv_generic_text_bar_add_segment (255,255,255,'*'); // asterisk + + // register text widget + wc = Widget_Text; + wc.draw = drv_generic_text_draw; + widget_register(&wc); + + // register bar widget + wc = Widget_Bar; + wc.draw = drv_generic_text_bar_draw; + widget_register(&wc); + + // register plugins + // none at the moment... + + return 0; +} + + +// close driver & display +int drv_Curs_quit (void) { + + info("%s: shutting down.", Name); + drv_generic_text_quit(); + endwin(); + + return (0); +} + + +DRIVER drv_Curses = { + name: Name, + list: drv_Curs_list, + init: drv_Curs_init, + quit: drv_Curs_quit, +}; + diff --git a/drv_Cwlinux.c b/drv_Cwlinux.c index 349aa54..0a07238 100644 --- a/drv_Cwlinux.c +++ b/drv_Cwlinux.c @@ -1,4 +1,4 @@ -/* $Id: drv_Cwlinux.c,v 1.4 2004/03/19 09:17:46 reinelt Exp $ +/* $Id: drv_Cwlinux.c,v 1.5 2004/05/26 11:37:36 reinelt Exp $ * * new style driver for Cwlinux display modules * @@ -23,6 +23,10 @@ * * * $Log: drv_Cwlinux.c,v $ + * Revision 1.5 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.4 2004/03/19 09:17:46 reinelt * * removed the extra 'goto' function, row and col are additional parameters @@ -311,7 +315,7 @@ int drv_CW_init (char *section) return ret; // initialize generic bar driver - if ((ret=drv_generic_text_bar_init())!=0) + if ((ret=drv_generic_text_bar_init(0))!=0) return ret; // add fixed chars to the bar driver diff --git a/drv_HD44780.c b/drv_HD44780.c index e3b302e..36e41c7 100644 --- a/drv_HD44780.c +++ b/drv_HD44780.c @@ -1,4 +1,4 @@ -/* $Id: drv_HD44780.c,v 1.20 2004/05/22 04:23:49 reinelt Exp $ +/* $Id: drv_HD44780.c,v 1.21 2004/05/26 11:37:36 reinelt Exp $ * * new style driver for HD44780-based displays * @@ -29,6 +29,10 @@ * * * $Log: drv_HD44780.c,v $ + * Revision 1.21 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.20 2004/05/22 04:23:49 reinelt * * removed 16*x fix again (next time think before commit :-) @@ -583,12 +587,12 @@ static int drv_HD_start (char *section) strsize=cfg_get(section, "Size", NULL); if (strsize==NULL || *strsize=='\0') { error ("%s: no '%s.Size' entry from %s", Name, section, cfg_source()); - free(strsize); + free(strsize); return -1; } if (sscanf(strsize,"%dx%d",&cols,&rows)!=2 || rows<1 || cols<1) { - error ("%s: bad size '%s'", Name, strsize); - free(strsize); + error ("%s: bad %s.Size '%s' from %s", Name, section, strsize, cfg_source()); + free(strsize); return -1; } @@ -776,7 +780,7 @@ int drv_HD_init (char *section) return ret; // initialize generic bar driver - if ((ret=drv_generic_text_bar_init())!=0) + if ((ret=drv_generic_text_bar_init(0))!=0) return ret; // add fixed chars to the bar driver diff --git a/drv_M50530.c b/drv_M50530.c index 929e527..e982b7d 100644 --- a/drv_M50530.c +++ b/drv_M50530.c @@ -1,4 +1,4 @@ -/* $Id: drv_M50530.c,v 1.3 2004/03/19 09:17:46 reinelt Exp $ +/* $Id: drv_M50530.c,v 1.4 2004/05/26 11:37:36 reinelt Exp $ * * new style driver for M50530-based displays * @@ -23,6 +23,10 @@ * * * $Log: drv_M50530.c,v $ + * Revision 1.4 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.3 2004/03/19 09:17:46 reinelt * * removed the extra 'goto' function, row and col are additional parameters @@ -306,7 +310,7 @@ int drv_M5_init (char *section) return ret; // initialize generic bar driver - if ((ret=drv_generic_text_bar_init())!=0) + if ((ret=drv_generic_text_bar_init(0))!=0) return ret; // add fixed chars to the bar driver diff --git a/drv_MatrixOrbital.c b/drv_MatrixOrbital.c index 899b124..bab0638 100644 --- a/drv_MatrixOrbital.c +++ b/drv_MatrixOrbital.c @@ -1,4 +1,4 @@ -/* $Id: drv_MatrixOrbital.c,v 1.21 2004/03/19 09:17:46 reinelt Exp $ +/* $Id: drv_MatrixOrbital.c,v 1.22 2004/05/26 11:37:36 reinelt Exp $ * * new style driver for Matrix Orbital serial display modules * @@ -23,6 +23,10 @@ * * * $Log: drv_MatrixOrbital.c,v $ + * Revision 1.22 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.21 2004/03/19 09:17:46 reinelt * * removed the extra 'goto' function, row and col are additional parameters @@ -493,7 +497,7 @@ int drv_MO_init (char *section) return ret; // initialize generic bar driver - if ((ret=drv_generic_text_bar_init())!=0) + if ((ret=drv_generic_text_bar_init(0))!=0) return ret; // add fixed chars to the bar driver diff --git a/drv_MilfordInstruments.c b/drv_MilfordInstruments.c index 534fbde..44ba12a 100644 --- a/drv_MilfordInstruments.c +++ b/drv_MilfordInstruments.c @@ -1,4 +1,4 @@ -/* $Id: drv_MilfordInstruments.c,v 1.1 2004/05/26 05:03:27 reinelt Exp $ +/* $Id: drv_MilfordInstruments.c,v 1.2 2004/05/26 11:37:36 reinelt Exp $ * * driver for Milford Instruments 'BPK' piggy-back serial interface board * for standard Hitachi 44780 compatible lcd modules. @@ -27,6 +27,10 @@ * * * $Log: drv_MilfordInstruments.c,v $ + * Revision 1.2 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.1 2004/05/26 05:03:27 reinelt * * MilfordInstruments driver ported @@ -210,7 +214,7 @@ int drv_MI_init (char *section) return ret; // initialize generic bar driver - if ((ret=drv_generic_text_bar_init())!=0) + if ((ret=drv_generic_text_bar_init(0))!=0) return ret; // add fixed chars to the bar driver diff --git a/drv_USBLCD.c b/drv_USBLCD.c index 55b25b6..1fbad54 100644 --- a/drv_USBLCD.c +++ b/drv_USBLCD.c @@ -1,4 +1,4 @@ -/* $Id: drv_USBLCD.c,v 1.3 2004/05/23 08:58:30 reinelt Exp $ +/* $Id: drv_USBLCD.c,v 1.4 2004/05/26 11:37:36 reinelt Exp $ * * new style driver for USBLCD displays * @@ -26,6 +26,10 @@ * * * $Log: drv_USBLCD.c,v $ + * Revision 1.4 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.3 2004/05/23 08:58:30 reinelt * * icon bug with USBLCD fixed @@ -311,7 +315,7 @@ int drv_UL_init (char *section) return ret; // initialize generic bar driver - if ((ret=drv_generic_text_bar_init())!=0) + if ((ret=drv_generic_text_bar_init(0))!=0) return ret; // add fixed chars to the bar driver diff --git a/drv_generic_text.c b/drv_generic_text.c index bb28a89..68d776a 100644 --- a/drv_generic_text.c +++ b/drv_generic_text.c @@ -1,4 +1,4 @@ -/* $Id: drv_generic_text.c,v 1.13 2004/03/19 09:17:46 reinelt Exp $ +/* $Id: drv_generic_text.c,v 1.14 2004/05/26 11:37:36 reinelt Exp $ * * generic driver helper for text-based displays * @@ -23,6 +23,10 @@ * * * $Log: drv_generic_text.c,v $ + * Revision 1.14 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.13 2004/03/19 09:17:46 reinelt * * removed the extra 'goto' function, row and col are additional parameters @@ -142,8 +146,10 @@ int ICONS; // number of user-defineable characters reserved for icons static unsigned char *LayoutFB = NULL; static unsigned char *DisplayFB = NULL; -static int nSegment=0; -static int fSegment=0; +static int Single_Segments = 0; + +static int nSegment = 0; +static int fSegment = 0; static SEGMENT Segment[128]; static BAR *BarFB = NULL; @@ -486,7 +492,7 @@ static void drv_generic_text_bar_pack_segments (void) pack_j=-1; for (i=fSegment; ival1 * (double)(max); val2 = Bar->val2 * (double)(max); - if (val1<1) val1=1; - else if (val1>max) val1=max; + if (val1 < 1) val1 = 1; + else if (val1 > max) val1 = max; - if (val2<1) val2=1; - else if (val2>max) val2=max; + if (val2 < 1) val2 = 1; + else if (val2 > max) val2 = max; + + if (Single_Segments) val2 = val1; // create this bar drv_generic_text_bar_create_bar (row, col, dir, len, val1, val2); @@ -704,7 +716,7 @@ int drv_generic_text_icon_init (void) } -int drv_generic_text_bar_init (void) +int drv_generic_text_bar_init (int single_segments) { if (BarFB) free (BarFB); @@ -713,6 +725,8 @@ int drv_generic_text_bar_init (void) return -1; } + Single_Segments = single_segments; + nSegment=0; fSegment=0; diff --git a/drv_generic_text.h b/drv_generic_text.h index 16d1436..8e7f3ba 100644 --- a/drv_generic_text.h +++ b/drv_generic_text.h @@ -1,4 +1,4 @@ -/* $Id: drv_generic_text.h,v 1.8 2004/03/19 09:17:46 reinelt Exp $ +/* $Id: drv_generic_text.h,v 1.9 2004/05/26 11:37:36 reinelt Exp $ * * generic driver helper for text-based displays * @@ -23,6 +23,10 @@ * * * $Log: drv_generic_text.h,v $ + * Revision 1.9 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.8 2004/03/19 09:17:46 reinelt * * removed the extra 'goto' function, row and col are additional parameters @@ -89,7 +93,7 @@ int drv_generic_text_init (char *section, char *driver); int drv_generic_text_draw (WIDGET *W); int drv_generic_text_icon_init (void); int drv_generic_text_icon_draw (WIDGET *W); -int drv_generic_text_bar_init (void); +int drv_generic_text_bar_init (int single_segments); void drv_generic_text_bar_add_segment (int val1, int val2, DIRECTION dir, int ascii); int drv_generic_text_bar_draw (WIDGET *W); int drv_generic_text_quit (void); diff --git a/lcd4linux.conf.sample b/lcd4linux.conf.sample index a54a1c1..1ac3326 100644 --- a/lcd4linux.conf.sample +++ b/lcd4linux.conf.sample @@ -44,6 +44,12 @@ Display CF633 { Backlight 50 } +Display Curses { + Driver 'Curses' + Size '20x4' +} + + Display HD44780-20x4 { Driver 'HD44780' Port '/dev/parports/0' @@ -405,8 +411,7 @@ Widget Test { Layout Default { Row1 { - Col1 'Heartbeat' - #Col1 'OS' + Col1 'OS' } Row2 { Col1 'CPU' @@ -490,12 +495,13 @@ Layout testMySQL { #Display 'LK204' -Display 'MI240' +#Display 'MI240' #Display 'HD44780-20x4' #Display 'M50530-24x8' #Display 'CF631' #Display 'CF632' #Display 'CF633' +Display 'Curses' #Display 'USBLCD' #Display 'T6963-240x64' #Display 'XWindow' diff --git a/widget.c b/widget.c index 2eaf240..e7be927 100644 --- a/widget.c +++ b/widget.c @@ -1,4 +1,4 @@ -/* $Id: widget.c,v 1.13 2004/03/03 03:47:04 reinelt Exp $ +/* $Id: widget.c,v 1.14 2004/05/26 11:37:36 reinelt Exp $ * * generic widget handling * @@ -21,6 +21,10 @@ * * * $Log: widget.c,v $ + * Revision 1.14 2004/05/26 11:37:36 reinelt + * + * Curses driver ported. + * * Revision 1.13 2004/03/03 03:47:04 reinelt * big patch from Martin Hejl: * - use qprintf() where appropriate @@ -180,11 +184,12 @@ int widget_add (char *name, int row, int col) break; } } - if (class) free (class); if (i==nClasses) { - error ("widget '%s': class '%s' not supported"); + error ("widget '%s': class '%s' not supported", name, class); + if (class) free (class); return -1; } + if (class) free (class); // do NOT use realloc here because there may be pointers to the old // memory area, which would point to nowhere if realloc moves the area -- cgit v1.2.3