Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev make rasops_init()'s font selection code a bit less ...



details:   https://anonhg.NetBSD.org/src/rev/545a7dd18b57
branches:  trunk
changeset: 772669:545a7dd18b57
user:      macallan <macallan%NetBSD.org@localhost>
date:      Wed Jan 11 15:52:32 2012 +0000

description:
make rasops_init()'s font selection code a bit less boneheaded by:
- actually trying to pick a font which gets as close as possible to the
  requested terminal size
- accepting 0,0 as 'use system default' which can be changed by
   options RASOPS_DEFAULT_WIDTH=100
   options RASOPS_DEFAULT_HEIGHT=30
  default is 80x25
- putting alpha and bitmap fonts in the same list and making wsfont_find()
  aware of wether we support alpha fonts or not
- if supported, prefer alpha fonts over otherwise equally suitable bitmap
  fonts

diffstat:

 sys/dev/rasops/files.rasops |    4 +-
 sys/dev/rasops/rasops.c     |  107 ++++++++++++++++++++++++++++++++++++-------
 sys/dev/rasops/rasops.h     |    3 +-
 sys/dev/wsfont/wsfont.c     |   56 ++++++++--------------
 sys/dev/wsfont/wsfont.h     |   16 ++++-
 5 files changed, 125 insertions(+), 61 deletions(-)

diffs (truncated from 391 to 300 lines):

diff -r fa7264bb5b8b -r 545a7dd18b57 sys/dev/rasops/files.rasops
--- a/sys/dev/rasops/files.rasops       Wed Jan 11 14:39:08 2012 +0000
+++ b/sys/dev/rasops/files.rasops       Wed Jan 11 15:52:32 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: files.rasops,v 1.12 2007/02/02 02:10:24 ober Exp $
+#      $NetBSD: files.rasops,v 1.13 2012/01/11 15:52:32 macallan Exp $
 
 # Note: `rasops_glue' is only here to force the header file's name
 #       hence it must be mentioned first  (shudder...)
@@ -18,3 +18,5 @@
 file dev/rasops/rasops32.c ((rasterconsole | wsdisplay) & rasops32)
 
 defflag        opt_rasops.h    RASOPS_CLIPPING RASOPS_SMALL
+defparam opt_rasops.h  RASOPS_DEFAULT_WIDTH = 80
+defparam opt_rasops.h  RASOPS_DEFAULT_HEIGHT = 25
diff -r fa7264bb5b8b -r 545a7dd18b57 sys/dev/rasops/rasops.c
--- a/sys/dev/rasops/rasops.c   Wed Jan 11 14:39:08 2012 +0000
+++ b/sys/dev/rasops/rasops.c   Wed Jan 11 15:52:32 2012 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: rasops.c,v 1.69 2012/01/04 20:17:05 macallan Exp $    */
+/*      $NetBSD: rasops.c,v 1.70 2012/01/11 15:52:32 macallan Exp $    */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.69 2012/01/04 20:17:05 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.70 2012/01/11 15:52:32 macallan Exp $");
 
 #include "opt_rasops.h"
 #include "rasops_glue.h"
@@ -53,6 +53,20 @@
 #include <errno.h>
 #endif
 
+#ifdef RASOPS_DEBUG
+#define DPRINTF aprint_error
+#else
+#define DPRINTF while (0) printf
+#endif
+
+struct rasops_matchdata {
+       struct rasops_info *ri;
+       int wantcols, wantrows;
+       int bestscore;
+       struct wsdisplay_font *pick;
+       int ident;
+};     
+
 /* ANSI colormap (R,G,B). Upper 8 are high-intensity */
 const u_char rasops_cmap[256*3] = {
        0x00, 0x00, 0x00, /* black */
@@ -167,6 +181,57 @@
 extern int cold;
 
 /*
+ * Rate a font based on how many character cells we would get out of it in the
+ * current video mode. Lower is better.
+ */
+static void
+rasops_matches(struct wsdisplay_font *font, void *cookie, int ident)
+{
+       struct rasops_matchdata *md = cookie;
+       struct rasops_info *ri = md->ri;
+       int cols, score = 1;
+
+       /* first weed out fonts the caller doesn't claim support for */
+       if (FONT_IS_ALPHA(font)) {
+               /*
+                * If we end up with a bitmap font and an alpha font with
+                * otherwise identical scores, prefer alpha
+                */
+               score = 0;
+               if ((ri->ri_flg & RI_ENABLE_ALPHA) == 0)
+                       return;
+       }
+       cols = ri->ri_width / font->fontwidth;
+       /*
+        * if the font is too small to allow 80 columns give those closer to
+        * 80 a better score but with a huge penalty compared to fonts that
+        * give us 80 columns or more
+        */ 
+       if (cols < md->wantcols) {
+               score += 100000 + 2 * (md->wantcols - cols);
+       } else 
+               score += 2 * cols;
+       DPRINTF("%s: %d\n", font->name, score);
+       if (score < md->bestscore) {
+               md->bestscore = score;
+               md->pick = font;
+               md->ident = ident;
+       }
+}
+
+static int
+rasops_find(struct rasops_info *ri, int wantrows, int wantcols)
+{
+       struct rasops_matchdata md =
+           { ri, wantcols, wantrows, 1000000, NULL, 0};
+
+       wsfont_walk(rasops_matches, &md);
+       if (md.pick == NULL)
+               return -1;
+       return (wsfont_make_cookie(md.ident, WSDISPLAY_FONTORDER_L2R,
+                           WSDISPLAY_FONTORDER_L2R));
+}
+/*
  * Initialize a 'rasops_info' descriptor.
  */
 int
@@ -181,22 +246,21 @@
 
                wsfont_init();
 
-               if (ri->ri_flg & RI_ENABLE_ALPHA) {
-                       /* try finding an AA font first */
-                       cookie = wsfont_find_aa(NULL, 0, 0, 0, WSDISPLAY_FONTORDER_L2R,
-                           WSDISPLAY_FONTORDER_L2R);
-               }
-               if (cookie == -1) {
-                       /* Want 8 pixel wide, don't care about aesthetics */
-                       cookie = wsfont_find(NULL, 8, 0, 0, WSDISPLAY_FONTORDER_L2R,
-                           WSDISPLAY_FONTORDER_L2R);
-               }
-               if (cookie <= 0)
-                       cookie = wsfont_find(NULL, 0, 0, 0,
-                           WSDISPLAY_FONTORDER_L2R, WSDISPLAY_FONTORDER_L2R);
+               /*
+                * first, try to find something that's as close as possible
+                * to the caller's requested terminal size
+                */ 
+               if (wantrows == 0)
+                       wantrows = RASOPS_DEFAULT_HEIGHT;
+               if (wantcols == 0)
+                       wantcols = RASOPS_DEFAULT_WIDTH;
+               cookie = rasops_find(ri, wantrows, wantcols);
 
+               /*
+                * this means there is no supported font in the list
+                */
                if (cookie <= 0) {
-                       printf("rasops_init: font table is empty\n");
+                       aprint_error("rasops_init: font table is empty\n");
                        return (-1);
                }
 
@@ -214,7 +278,7 @@
 #endif
 
                if (wsfont_lock(cookie, &ri->ri_font)) {
-                       printf("rasops_init: couldn't lock font\n");
+                       aprint_error("rasops_init: couldn't lock font\n");
                        return (-1);
                }
 
@@ -225,12 +289,12 @@
        /* This should never happen in reality... */
 #ifdef DEBUG
        if ((long)ri->ri_bits & 3) {
-               printf("rasops_init: bits not aligned on 32-bit boundary\n");
+               aprint_error("rasops_init: bits not aligned on 32-bit boundary\n");
                return (-1);
        }
 
        if ((int)ri->ri_stride & 3) {
-               printf("rasops_init: stride not aligned on 32-bit boundary\n");
+               aprint_error("rasops_init: stride not aligned on 32-bit boundary\n");
                return (-1);
        }
 #endif
@@ -252,6 +316,11 @@
 
        s = splhigh();
 
+       if (wantrows == 0)
+               wantrows = RASOPS_DEFAULT_HEIGHT;
+       if (wantcols == 0)
+               wantcols = RASOPS_DEFAULT_WIDTH;
+
        /* throw away old line drawing character bitmaps, if we have any */
        if (ri->ri_optfont.data != NULL) {
                kmem_free(ri->ri_optfont.data, ri->ri_optfont.stride * 
diff -r fa7264bb5b8b -r 545a7dd18b57 sys/dev/rasops/rasops.h
--- a/sys/dev/rasops/rasops.h   Wed Jan 11 14:39:08 2012 +0000
+++ b/sys/dev/rasops/rasops.h   Wed Jan 11 15:52:32 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rasops.h,v 1.29 2012/01/03 23:13:59 macallan Exp $ */
+/*     $NetBSD: rasops.h,v 1.30 2012/01/11 15:52:32 macallan Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -143,7 +143,6 @@
                          (ri->ri_optfont.data != NULL)) ? \
                         &ri->ri_optfont : ri->ri_font
 
-#define FONT_IS_ALPHA(f) ((f)->fontwidth <= (f)->stride)
 /*
  * rasops_init().
  *
diff -r fa7264bb5b8b -r 545a7dd18b57 sys/dev/wsfont/wsfont.c
--- a/sys/dev/wsfont/wsfont.c   Wed Jan 11 14:39:08 2012 +0000
+++ b/sys/dev/wsfont/wsfont.c   Wed Jan 11 15:52:32 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: wsfont.c,v 1.52 2011/12/28 18:29:48 macallan Exp $     */
+/*     $NetBSD: wsfont.c,v 1.53 2012/01/11 15:52:32 macallan Exp $     */
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.52 2011/12/28 18:29:48 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.53 2012/01/11 15:52:32 macallan Exp $");
 
 #include "opt_wsfont.h"
 
@@ -131,7 +131,7 @@
 #include <dev/wsfont/FreeMono_12x22.h>
 #endif
 
-/* Make sure we always have at least one font. */
+/* Make sure we always have at least one bitmap font. */
 #ifndef HAVE_FONT
 #define HAVE_FONT 1
 #define FONT_BOLD8x16 1
@@ -211,9 +211,6 @@
 #ifdef FONT_OMRON12x20
        { { NULL, NULL }, &omron12x20, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
 #endif
-       { { NULL, NULL }, NULL, 0, 0, 0 },
-};
-static struct font builtin_aa_fonts[] = {
 #ifdef FONT_DEJAVU_SANS_MONO12x22
        { { NULL, NULL }, &DejaVu_Sans_Mono_12x22, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
 #endif
@@ -230,7 +227,6 @@
 };
 
 static TAILQ_HEAD(,font)       list;
-static TAILQ_HEAD(,font)       aa_list;
 static int     ident;
 
 /* Reverse the bit order in a byte */
@@ -273,9 +269,8 @@
 static struct  font *wsfont_add0(struct wsdisplay_font *, int);
 static void    wsfont_revbit(struct wsdisplay_font *);
 static void    wsfont_revbyte(struct wsdisplay_font *);
-static inline int wsfont_make_cookie(int, int, int);
 
-static inline int
+int
 wsfont_make_cookie(int cident, int bito, int byteo)
 {
 
@@ -540,16 +535,6 @@
                    ent->font->bitorder, ent->font->byteorder);
                TAILQ_INSERT_TAIL(&list, ent, chain);
        }
-
-       TAILQ_INIT(&aa_list);
-       ent = builtin_aa_fonts;
-
-       for (i = 0; builtin_aa_fonts[i].font != NULL; i++, ent++) {
-               ident += (1 << WSFONT_IDENT_SHIFT);
-               ent->cookie = wsfont_make_cookie(ident,
-                   ent->font->bitorder, ent->font->byteorder);
-               TAILQ_INSERT_TAIL(&aa_list, ent, chain);
-       }
 }
 
 static struct font *
@@ -562,19 +547,23 @@
                        return (ent);
        }
 
-       TAILQ_FOREACH(ent, &aa_list, chain) {
-               if ((ent->cookie & mask) == (cookie & mask))
-                       return (ent);
-       }
-
        return (NULL);
 }
 
 int
 wsfont_matches(struct wsdisplay_font *font, const char *name,
-              int width, int height, int stride)
+              int width, int height, int stride, int flags)
 {
 
+       /* first weed out fonts the caller doesn't claim support for */
+       if (FONT_IS_ALPHA(font)) {
+               if ((flags & WSFONT_FIND_ALPHA) == 0)
+                       return 0;
+       } else {
+               if ((flags & WSFONT_FIND_BITMAP) == 0)
+                       return 0;
+       }



Home | Main Index | Thread Index | Old Index