Rev 2787 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1487 | cejka | 1 | /* |
| 2071 | jermar | 2 | * Copyright (c) 2006 Josef Cejka |
| 1487 | cejka | 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 | |||
| 1649 | cejka | 29 | /** @addtogroup console |
| 30 | * @{ |
||
| 31 | */ |
||
| 32 | /** @file |
||
| 33 | */ |
||
| 34 | |||
| 1487 | cejka | 35 | #include <screenbuffer.h> |
| 4377 | svoboda | 36 | #include <console/style.h> |
| 1487 | cejka | 37 | #include <malloc.h> |
| 38 | #include <unistd.h> |
||
| 39 | |||
| 2069 | jermar | 40 | /** Store one character to screenbuffer. Its position is determined by |
| 41 | * scr->position_x and scr->position_y. |
||
| 42 | * |
||
| 1525 | cejka | 43 | * @param scr screenbuffer |
| 44 | * @param c stored character |
||
| 1487 | cejka | 45 | */ |
| 4377 | svoboda | 46 | void screenbuffer_putchar(screenbuffer_t *scr, wchar_t ch) |
| 1487 | cejka | 47 | { |
| 48 | keyfield_t *field; |
||
| 4377 | svoboda | 49 | |
| 1487 | cejka | 50 | field = get_field_at(scr, scr->position_x, scr->position_y); |
| 51 | |||
| 4377 | svoboda | 52 | field->character = ch; |
| 53 | field->attrs = scr->attrs; |
||
| 1487 | cejka | 54 | } |
| 55 | |||
| 1525 | cejka | 56 | /** Initilize screenbuffer. Allocate space for screen content in accordance to given size. |
| 57 | * @param scr initialized screenbuffer |
||
| 1526 | cejka | 58 | * @param size_x width in characters |
| 59 | * @param size_y height in characters |
||
| 60 | * @return pointer to screenbuffer (same as scr parameter) or NULL |
||
| 1525 | cejka | 61 | */ |
| 1487 | cejka | 62 | screenbuffer_t *screenbuffer_init(screenbuffer_t *scr, int size_x, int size_y) |
| 63 | { |
||
| 2069 | jermar | 64 | scr->buffer = (keyfield_t *) malloc(sizeof(keyfield_t) * size_x * size_y); |
| 65 | if (!scr->buffer) { |
||
| 1487 | cejka | 66 | return NULL; |
| 67 | } |
||
| 68 | |||
| 69 | scr->size_x = size_x; |
||
| 70 | scr->size_y = size_y; |
||
| 4377 | svoboda | 71 | scr->attrs.t = at_style; |
| 72 | scr->attrs.a.s.style = STYLE_NORMAL; |
||
| 1575 | cejka | 73 | scr->is_cursor_visible = 1; |
| 1497 | cejka | 74 | |
| 75 | screenbuffer_clear(scr); |
||
| 76 | |||
| 1487 | cejka | 77 | return scr; |
| 78 | } |
||
| 79 | |||
| 1526 | cejka | 80 | /** Clear screenbuffer. |
| 81 | * @param scr screenbuffer |
||
| 82 | */ |
||
| 1487 | cejka | 83 | void screenbuffer_clear(screenbuffer_t *scr) |
| 84 | { |
||
| 85 | unsigned int i; |
||
| 86 | |||
| 1497 | cejka | 87 | for (i = 0; i < (scr->size_x * scr->size_y); i++) { |
| 1487 | cejka | 88 | scr->buffer[i].character = ' '; |
| 4377 | svoboda | 89 | scr->buffer[i].attrs = scr->attrs; |
| 1487 | cejka | 90 | } |
| 91 | |||
| 92 | scr->top_line = 0; |
||
| 93 | scr->position_y = 0; |
||
| 94 | scr->position_x = 0; |
||
| 95 | } |
||
| 96 | |||
| 1526 | cejka | 97 | /** Clear one buffer line. |
| 1487 | cejka | 98 | * @param scr |
| 99 | * @param line One buffer line (not a screen line!) |
||
| 100 | */ |
||
| 101 | void screenbuffer_clear_line(screenbuffer_t *scr, unsigned int line) |
||
| 102 | { |
||
| 103 | unsigned int i; |
||
| 104 | |||
| 105 | for (i = 0; i < scr->size_x; i++) { |
||
| 2069 | jermar | 106 | scr->buffer[i + line * scr->size_x].character = ' '; |
| 4377 | svoboda | 107 | scr->buffer[i + line * scr->size_x].attrs = scr->attrs; |
| 1487 | cejka | 108 | } |
| 109 | } |
||
| 110 | |||
| 1526 | cejka | 111 | /** Copy content buffer from screenbuffer to given memory. |
| 112 | * @param scr source screenbuffer |
||
| 113 | * @param dest destination |
||
| 114 | */ |
||
| 1487 | cejka | 115 | void screenbuffer_copy_buffer(screenbuffer_t *scr, keyfield_t *dest) |
| 116 | { |
||
| 117 | unsigned int i; |
||
| 118 | |||
| 119 | for (i = 0; i < scr->size_x * scr->size_y; i++) { |
||
| 120 | dest[i] = scr->buffer[i]; |
||
| 121 | } |
||
| 122 | } |
||
| 123 | |||
| 1526 | cejka | 124 | /** Set new cursor position in screenbuffer. |
| 125 | * @param scr |
||
| 126 | * @param x |
||
| 127 | * @param y |
||
| 128 | */ |
||
| 1487 | cejka | 129 | void screenbuffer_goto(screenbuffer_t *scr, unsigned int x, unsigned int y) |
| 130 | { |
||
| 131 | scr->position_x = x % scr->size_x; |
||
| 1525 | cejka | 132 | scr->position_y = y % scr->size_y; |
| 1487 | cejka | 133 | } |
| 134 | |||
| 1526 | cejka | 135 | /** Set new style. |
| 136 | * @param scr |
||
| 137 | * @param fg_color |
||
| 138 | * @param bg_color |
||
| 139 | */ |
||
| 4377 | svoboda | 140 | void screenbuffer_set_style(screenbuffer_t *scr, int style) |
| 1525 | cejka | 141 | { |
| 4377 | svoboda | 142 | scr->attrs.t = at_style; |
| 143 | scr->attrs.a.s.style = style; |
||
| 1525 | cejka | 144 | } |
| 145 | |||
| 4377 | svoboda | 146 | /** Set new color. |
| 147 | * @param scr |
||
| 148 | * @param fg_color |
||
| 149 | * @param bg_color |
||
| 150 | */ |
||
| 151 | void screenbuffer_set_color(screenbuffer_t *scr, unsigned int fg_color, unsigned int bg_color, unsigned int flags) |
||
| 152 | { |
||
| 153 | scr->attrs.t = at_idx; |
||
| 154 | scr->attrs.a.i.fg_color = fg_color; |
||
| 155 | scr->attrs.a.i.bg_color = bg_color; |
||
| 156 | scr->attrs.a.i.flags = flags; |
||
| 157 | } |
||
| 158 | |||
| 159 | /** Set new RGB color. |
||
| 160 | * @param scr |
||
| 161 | * @param fg_color |
||
| 162 | * @param bg_color |
||
| 163 | */ |
||
| 164 | void screenbuffer_set_rgb_color(screenbuffer_t *scr, unsigned int fg_color, unsigned int bg_color) |
||
| 165 | { |
||
| 166 | scr->attrs.t = at_rgb; |
||
| 167 | scr->attrs.a.r.fg_color = fg_color; |
||
| 168 | scr->attrs.a.r.bg_color = bg_color; |
||
| 169 | } |
||
| 170 | |||
| 1649 | cejka | 171 | |
| 172 | /** @} |
||
| 173 | */ |