Subversion Repositories HelenOS

Rev

Rev 4153 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * Copyright (c) 2008 Jiri Svoboda
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  *
  9.  * - Redistributions of source code must retain the above copyright
  10.  *   notice, this list of conditions and the following disclaimer.
  11.  * - Redistributions in binary form must reproduce the above copyright
  12.  *   notice, this list of conditions and the following disclaimer in the
  13.  *   documentation and/or other materials provided with the distribution.
  14.  * - The name of the author may not be used to endorse or promote products
  15.  *   derived from this software without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  */
  28.  
  29. #include <stdio.h>
  30. #include <stdlib.h>
  31. #include <io/console.h>
  32. #include <io/color.h>
  33. #include <io/style.h>
  34. #include <vfs/vfs.h>
  35. #include <async.h>
  36. #include "../tester.h"
  37.  
  38. const char *color_name[] = {
  39.     [COLOR_BLACK] = "black",
  40.     [COLOR_BLUE] = "blue",
  41.     [COLOR_GREEN] = "green",
  42.     [COLOR_CYAN] = "cyan",
  43.     [COLOR_RED] = "red",
  44.     [COLOR_MAGENTA] = "magenta",
  45.     [COLOR_YELLOW] = "yellow",
  46.     [COLOR_WHITE] = "white"
  47. };
  48.  
  49. char * test_console1(bool quiet)
  50. {
  51.     int i, j;
  52.  
  53.     printf("Style test: ");
  54.     fflush(stdout);
  55.     console_set_style(fphone(stdout), STYLE_NORMAL);
  56.     printf("normal ");
  57.     fflush(stdout);
  58.     console_set_style(fphone(stdout), STYLE_EMPHASIS);
  59.     printf("emphasized");
  60.     fflush(stdout);
  61.     console_set_style(fphone(stdout), STYLE_NORMAL);
  62.     printf(".\n");
  63.  
  64.     printf("Foreground color test:\n");
  65.     for (j = 0; j < 2; j++) {
  66.         for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) {
  67.             fflush(stdout);
  68.             console_set_color(fphone(stdout), i, COLOR_WHITE,
  69.                 j ? CATTR_BRIGHT : 0);
  70.             printf(" %s ", color_name[i]);
  71.         }
  72.         fflush(stdout);
  73.         console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
  74.         putchar('\n');
  75.     }
  76.  
  77.     printf("Background color test:\n");
  78.     for (j = 0; j < 2; j++) {
  79.         for (i = COLOR_BLACK; i <= COLOR_WHITE; i++) {
  80.             fflush(stdout);
  81.             console_set_color(fphone(stdout), COLOR_WHITE, i,
  82.                 j ? CATTR_BRIGHT : 0);
  83.             printf(" %s ", color_name[i]);
  84.         }
  85.         fflush(stdout);
  86.         console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
  87.         putchar('\n');
  88.     }
  89.  
  90.     printf("Now let's test RGB colors:\n");
  91.  
  92.     for (i = 0; i < 255; i += 16) {
  93.         fflush(stdout);
  94.         console_set_rgb_color(fphone(stdout), 0xffffff, i << 16);
  95.         putchar('X');
  96.     }
  97.     fflush(stdout);
  98.     console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
  99.     putchar('\n');
  100.  
  101.     for (i = 0; i < 255; i += 16) {
  102.         fflush(stdout);
  103.         console_set_rgb_color(fphone(stdout), 0xffffff, i << 8);
  104.         putchar('X');
  105.     }
  106.     fflush(stdout);
  107.     console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
  108.     putchar('\n');
  109.  
  110.     for (i = 0; i < 255; i += 16) {
  111.         fflush(stdout);
  112.         console_set_rgb_color(fphone(stdout), 0xffffff, i);
  113.         putchar('X');
  114.     }
  115.     fflush(stdout);
  116.     console_set_color(fphone(stdout), COLOR_BLACK, COLOR_WHITE, 0);
  117.     putchar('\n');
  118.  
  119.     printf("[press a key]\n");
  120.     getchar();
  121.  
  122.     return NULL;
  123. }
  124.