| 1 | /* |
|---|
| 2 | * neercs console-based window manager |
|---|
| 3 | * Copyright (c) 2006 Sam Hocevar <sam@zoy.org> |
|---|
| 4 | * 2008 Jean-Yves Lamoureux <jylam@lnxscene.org> |
|---|
| 5 | * All Rights Reserved |
|---|
| 6 | * |
|---|
| 7 | * $Id: effects.c 2360 2008-06-11 16:23:46Z jylam $ |
|---|
| 8 | * |
|---|
| 9 | * This program is free software. It comes without any warranty, to |
|---|
| 10 | * the extent permitted by applicable law. You can redistribute it |
|---|
| 11 | * and/or modify it under the terms of the Do What The Fuck You Want |
|---|
| 12 | * To Public License, Version 2, as published by Sam Hocevar. See |
|---|
| 13 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
|---|
| 14 | */ |
|---|
| 15 | |
|---|
| 16 | #include "config.h" |
|---|
| 17 | |
|---|
| 18 | #include <stdio.h> |
|---|
| 19 | #include <stdlib.h> |
|---|
| 20 | #include <string.h> |
|---|
| 21 | #include <caca.h> |
|---|
| 22 | #include <caca.h> |
|---|
| 23 | #include <time.h> |
|---|
| 24 | #include <sys/wait.h> |
|---|
| 25 | #include <sys/types.h> |
|---|
| 26 | |
|---|
| 27 | #include "neercs.h" |
|---|
| 28 | |
|---|
| 29 | void draw_thumbnails(struct screen_list *screen_list) |
|---|
| 30 | { |
|---|
| 31 | char const * const *fonts; |
|---|
| 32 | caca_dither_t *d; |
|---|
| 33 | caca_font_t *f; |
|---|
| 34 | uint8_t *buf; |
|---|
| 35 | int i; |
|---|
| 36 | int miniw, minih; |
|---|
| 37 | |
|---|
| 38 | if(screen_list->count) |
|---|
| 39 | { |
|---|
| 40 | fonts = caca_get_font_list(); |
|---|
| 41 | f = caca_load_font(fonts[0], 0); |
|---|
| 42 | |
|---|
| 43 | miniw = caca_get_canvas_width(screen_list->screen[0]->cv) |
|---|
| 44 | * caca_get_font_width(f); |
|---|
| 45 | minih = caca_get_canvas_height(screen_list->screen[0]->cv) |
|---|
| 46 | * caca_get_font_height(f); |
|---|
| 47 | buf = malloc(4 * miniw * minih); |
|---|
| 48 | |
|---|
| 49 | #if defined(HAVE_ENDIAN_H) |
|---|
| 50 | if(__BYTE_ORDER == __BIG_ENDIAN) |
|---|
| 51 | #else |
|---|
| 52 | /* This is compile-time optimised with at least -O1 or -Os */ |
|---|
| 53 | uint32_t const tmp = 0x12345678; |
|---|
| 54 | if(*(uint8_t const *)&tmp == 0x12) |
|---|
| 55 | #endif |
|---|
| 56 | d = caca_create_dither(32, miniw, minih, 4 * miniw, |
|---|
| 57 | 0xff0000, 0xff00, 0xff, 0x0); |
|---|
| 58 | else |
|---|
| 59 | d = caca_create_dither(32, miniw, minih, 4 * miniw, |
|---|
| 60 | 0xff00, 0xff0000, 0xff000000, 0x0); |
|---|
| 61 | |
|---|
| 62 | for(i = 0; i < screen_list->count; i++) |
|---|
| 63 | { |
|---|
| 64 | caca_render_canvas(screen_list->screen[i]->cv, f, buf, |
|---|
| 65 | miniw, minih, miniw * 4); |
|---|
| 66 | caca_dither_bitmap(screen_list->cv, 20 * i, |
|---|
| 67 | caca_get_canvas_height(screen_list->cv) - 6, 19, 6, d, buf); |
|---|
| 68 | caca_set_color_ansi(screen_list->cv, CACA_WHITE, CACA_BLUE); |
|---|
| 69 | |
|---|
| 70 | if(screen_list->pty == i) |
|---|
| 71 | caca_draw_cp437_box(screen_list->cv,20 * i, |
|---|
| 72 | caca_get_canvas_height(screen_list->cv) - 6, 19, 6); |
|---|
| 73 | caca_printf(screen_list->cv, 20 * i, |
|---|
| 74 | caca_get_canvas_height(screen_list->cv) - 6, "(%i)", i+1); |
|---|
| 75 | } |
|---|
| 76 | |
|---|
| 77 | caca_free_dither(d); |
|---|
| 78 | caca_free_font(f); |
|---|
| 79 | |
|---|
| 80 | free(buf); |
|---|
| 81 | } |
|---|
| 82 | |
|---|
| 83 | } |
|---|
| 84 | |
|---|
| 85 | /* FIXME, make this stuff more configurable */ |
|---|
| 86 | void draw_status(struct screen_list *screen_list) |
|---|
| 87 | { |
|---|
| 88 | int x = 0, y = caca_get_canvas_height(screen_list->cv) - 1; |
|---|
| 89 | |
|---|
| 90 | |
|---|
| 91 | caca_set_color_ansi(screen_list->cv, CACA_BLUE, CACA_BLUE); |
|---|
| 92 | caca_fill_box(screen_list->cv, |
|---|
| 93 | x, y, |
|---|
| 94 | caca_get_canvas_width(screen_list->cv), 1, '#'); |
|---|
| 95 | |
|---|
| 96 | /* Hour */ |
|---|
| 97 | { |
|---|
| 98 | time_t now = time ((time_t *) 0); |
|---|
| 99 | struct tm *t = localtime(&now); |
|---|
| 100 | char hour[256]; |
|---|
| 101 | sprintf(hour, "%02d:%02d", t->tm_hour, t->tm_min); |
|---|
| 102 | |
|---|
| 103 | caca_set_color_ansi(screen_list->cv, CACA_LIGHTBLUE, CACA_BLUE); |
|---|
| 104 | caca_printf(screen_list->cv, x, y, |
|---|
| 105 | "["); |
|---|
| 106 | |
|---|
| 107 | caca_set_color_ansi(screen_list->cv, CACA_DEFAULT, CACA_BLUE); |
|---|
| 108 | caca_printf(screen_list->cv, x+1, y, |
|---|
| 109 | hour); |
|---|
| 110 | caca_set_color_ansi(screen_list->cv, CACA_LIGHTBLUE, CACA_BLUE); |
|---|
| 111 | caca_printf(screen_list->cv, x + strlen(hour) + 1, y, |
|---|
| 112 | "]"); |
|---|
| 113 | x += 7; |
|---|
| 114 | |
|---|
| 115 | } |
|---|
| 116 | |
|---|
| 117 | /* Window */ |
|---|
| 118 | { |
|---|
| 119 | char text[256]; |
|---|
| 120 | sprintf(text, "%d/%d", screen_list->pty+1, screen_list->count); |
|---|
| 121 | x++; |
|---|
| 122 | caca_set_color_ansi(screen_list->cv, CACA_LIGHTBLUE, CACA_BLUE); |
|---|
| 123 | caca_printf(screen_list->cv, x, y, "Window:"); |
|---|
| 124 | caca_set_color_ansi(screen_list->cv, CACA_DEFAULT, CACA_BLUE); |
|---|
| 125 | caca_printf(screen_list->cv, x+8, y, text); |
|---|
| 126 | x+= 8+strlen(text); |
|---|
| 127 | } |
|---|
| 128 | |
|---|
| 129 | /* Window Manager */ |
|---|
| 130 | { |
|---|
| 131 | char text[256]; |
|---|
| 132 | |
|---|
| 133 | switch(screen_list->wm_type) |
|---|
| 134 | { |
|---|
| 135 | case WM_CARD: |
|---|
| 136 | strcpy(text, "card"); |
|---|
| 137 | break; |
|---|
| 138 | case WM_HSPLIT: |
|---|
| 139 | strcpy(text, "hsplit"); |
|---|
| 140 | break; |
|---|
| 141 | case WM_VSPLIT: |
|---|
| 142 | strcpy(text, "vsplit"); |
|---|
| 143 | break; |
|---|
| 144 | case WM_FULL: |
|---|
| 145 | default: |
|---|
| 146 | strcpy(text, "full"); |
|---|
| 147 | break; |
|---|
| 148 | |
|---|
| 149 | } |
|---|
| 150 | |
|---|
| 151 | x++; |
|---|
| 152 | caca_set_color_ansi(screen_list->cv, CACA_LIGHTBLUE, CACA_BLUE); |
|---|
| 153 | caca_printf(screen_list->cv, x, y, "WM:"); |
|---|
| 154 | caca_set_color_ansi(screen_list->cv, CACA_DEFAULT, CACA_BLUE); |
|---|
| 155 | caca_printf(screen_list->cv, x+4, y, text); |
|---|
| 156 | x+= 4+strlen(text); |
|---|
| 157 | } |
|---|
| 158 | |
|---|
| 159 | /* Help (must be the last one )*/ |
|---|
| 160 | { |
|---|
| 161 | char text[256]; |
|---|
| 162 | sprintf(text, "Help: ctrl-a-h"); |
|---|
| 163 | x = caca_get_canvas_width(screen_list->cv) - strlen(text); |
|---|
| 164 | |
|---|
| 165 | caca_set_color_ansi(screen_list->cv, CACA_DEFAULT, CACA_BLUE); |
|---|
| 166 | caca_printf(screen_list->cv, x, y, text); |
|---|
| 167 | } |
|---|
| 168 | |
|---|
| 169 | |
|---|
| 170 | } |
|---|
| 171 | |
|---|
| 172 | |
|---|
| 173 | void draw_help(struct screen_list *screen_list) |
|---|
| 174 | { |
|---|
| 175 | int w = 65, h = 20; |
|---|
| 176 | int x = (caca_get_canvas_width(screen_list->cv) - w) / 2; |
|---|
| 177 | int y = (caca_get_canvas_height(screen_list->cv) - h) / 2; |
|---|
| 178 | |
|---|
| 179 | |
|---|
| 180 | caca_set_color_ansi(screen_list->cv, CACA_BLUE, CACA_BLUE); |
|---|
| 181 | caca_fill_box(screen_list->cv, |
|---|
| 182 | x, y, |
|---|
| 183 | w, h, '#'); |
|---|
| 184 | caca_set_color_ansi(screen_list->cv, CACA_DEFAULT, CACA_BLUE); |
|---|
| 185 | caca_draw_cp437_box(screen_list->cv, |
|---|
| 186 | x, y, |
|---|
| 187 | w, h); |
|---|
| 188 | |
|---|
| 189 | x+=2; |
|---|
| 190 | y++; |
|---|
| 191 | caca_printf(screen_list->cv, |
|---|
| 192 | (caca_get_canvas_width(screen_list->cv) - strlen(PACKAGE_STRING)) / 2, |
|---|
| 193 | y-1, |
|---|
| 194 | PACKAGE_STRING); |
|---|
| 195 | caca_printf(screen_list->cv, x, y++, "Copyright (c) 2006-2008 "); |
|---|
| 196 | caca_printf(screen_list->cv, x, y++, " Sam Hocevar <sam@zoy.org>"); |
|---|
| 197 | caca_printf(screen_list->cv, x, y++, " Jean-Yves Lamoureux <jylam@lnxscene.org>"); |
|---|
| 198 | caca_printf(screen_list->cv, x, y++, " Pascal Terjan <pterjan@linuxfr.org>"); |
|---|
| 199 | caca_printf(screen_list->cv, x, y++, ""); |
|---|
| 200 | caca_printf(screen_list->cv, x, y++, ""); |
|---|
| 201 | caca_printf(screen_list->cv, x, y++, "All shortcuts are in format 'ctrl-a-X' where X is :"); |
|---|
| 202 | caca_printf(screen_list->cv, x, y++, "n:\t Next window"); |
|---|
| 203 | caca_printf(screen_list->cv, x, y++, "p:\t Previous window"); |
|---|
| 204 | caca_printf(screen_list->cv, x, y++, "w:\t Switch window manager"); |
|---|
| 205 | caca_printf(screen_list->cv, x, y++, "c:\t Create new window"); |
|---|
| 206 | caca_printf(screen_list->cv, x, y++, "m:\t Thumbnails"); |
|---|
| 207 | caca_printf(screen_list->cv, x, y++, "d:\t Detach"); |
|---|
| 208 | caca_printf(screen_list->cv, x, y++, "k:\t Close window and kill associated process"); |
|---|
| 209 | caca_printf(screen_list->cv, x, y++, "h:\t This help"); |
|---|
| 210 | caca_printf(screen_list->cv, x, y++, ""); |
|---|
| 211 | caca_printf(screen_list->cv, x, y++, ""); |
|---|
| 212 | caca_printf(screen_list->cv, x, y++, "See http://libcaca.zoy.org/wiki/neercs for more informations"); |
|---|
| 213 | } |
|---|
| 214 | |
|---|
| 215 | int update_window_list(int c, struct screen_list *screen_list) |
|---|
| 216 | { |
|---|
| 217 | debug("Got %x\n", c); |
|---|
| 218 | |
|---|
| 219 | switch(c) |
|---|
| 220 | { |
|---|
| 221 | case 0x111: |
|---|
| 222 | if(screen_list->cur_in_list>0) |
|---|
| 223 | screen_list->cur_in_list--; |
|---|
| 224 | break; |
|---|
| 225 | case 0x112: |
|---|
| 226 | if(screen_list->cur_in_list<screen_list->count-1) |
|---|
| 227 | screen_list->cur_in_list++; |
|---|
| 228 | break; |
|---|
| 229 | case 0xd: |
|---|
| 230 | screen_list->window_list = 0; |
|---|
| 231 | screen_list->prevpty = screen_list->pty; |
|---|
| 232 | screen_list->pty = screen_list->cur_in_list; |
|---|
| 233 | break; |
|---|
| 234 | case 0x22: |
|---|
| 235 | screen_list->window_list = 0; |
|---|
| 236 | break; |
|---|
| 237 | default: |
|---|
| 238 | break; |
|---|
| 239 | } |
|---|
| 240 | |
|---|
| 241 | return 1; |
|---|
| 242 | } |
|---|
| 243 | |
|---|
| 244 | void draw_list(struct screen_list *screen_list) |
|---|
| 245 | { |
|---|
| 246 | int i; |
|---|
| 247 | int w = (caca_get_canvas_width(screen_list->cv)); |
|---|
| 248 | int h = (caca_get_canvas_height(screen_list->cv)); |
|---|
| 249 | |
|---|
| 250 | debug("Drawing list\n"); |
|---|
| 251 | caca_set_color_ansi(screen_list->cv, CACA_BLACK, CACA_BLACK); |
|---|
| 252 | caca_fill_box(screen_list->cv, |
|---|
| 253 | 0, 0, |
|---|
| 254 | w, h, '#'); |
|---|
| 255 | caca_set_color_ansi(screen_list->cv, CACA_DEFAULT, CACA_DEFAULT); |
|---|
| 256 | caca_draw_cp437_box(screen_list->cv, |
|---|
| 257 | 0, 0, |
|---|
| 258 | w, h); |
|---|
| 259 | |
|---|
| 260 | caca_printf(screen_list->cv, 2, 1, "Num \tName"); |
|---|
| 261 | for(i = 0; i < screen_list->count; i++) |
|---|
| 262 | { |
|---|
| 263 | char line[1024]; |
|---|
| 264 | if(screen_list->cur_in_list == i) |
|---|
| 265 | caca_set_color_ansi(screen_list->cv, CACA_BLACK, CACA_WHITE); |
|---|
| 266 | else |
|---|
| 267 | caca_set_color_ansi(screen_list->cv, CACA_DEFAULT, CACA_DEFAULT); |
|---|
| 268 | sprintf(line, "%d \t%s", i+1, screen_list->screen[i]->title); |
|---|
| 269 | |
|---|
| 270 | caca_printf(screen_list->cv, 2, i+3, line); |
|---|
| 271 | } |
|---|
| 272 | } |
|---|
| 273 | |
|---|
| 274 | /* Close a window by animating it collapsing */ |
|---|
| 275 | /* Total close time */ |
|---|
| 276 | #define DELAY 500000.0f |
|---|
| 277 | int close_screen_recurrent(struct screen_list* screen_list, struct recurrent* rec, void *user, long long unsigned int t) |
|---|
| 278 | { |
|---|
| 279 | long long unsigned int delta = t - rec->start_time; |
|---|
| 280 | |
|---|
| 281 | screen_list->dont_update_coords = 1; |
|---|
| 282 | rec->kill_me = 0; |
|---|
| 283 | if(delta>=DELAY) |
|---|
| 284 | { |
|---|
| 285 | rec->kill_me = 1; |
|---|
| 286 | remove_screen(screen_list, screen_list->pty, 1); |
|---|
| 287 | screen_list->pty = screen_list->prevpty; |
|---|
| 288 | screen_list->prevpty = 0; |
|---|
| 289 | screen_list->dont_update_coords = 0; |
|---|
| 290 | } |
|---|
| 291 | else |
|---|
| 292 | { |
|---|
| 293 | float r = 1 - ((DELAY - (DELAY - delta)) / DELAY); |
|---|
| 294 | caca_canvas_t *old, *new; |
|---|
| 295 | struct screen *s = screen_list->screen[screen_list->pty]; |
|---|
| 296 | int w = s->orig_w * r; |
|---|
| 297 | int h = s->orig_h * r; |
|---|
| 298 | |
|---|
| 299 | /* libcaca canvas resize function is bugged, do it by hand */ |
|---|
| 300 | old = s->cv; |
|---|
| 301 | new = caca_create_canvas(w, h); |
|---|
| 302 | caca_blit(new, 0, 0, old, NULL); |
|---|
| 303 | s->cv = new; |
|---|
| 304 | caca_free_canvas(old); |
|---|
| 305 | set_tty_size(s->fd, w, h); |
|---|
| 306 | |
|---|
| 307 | s->w = w; |
|---|
| 308 | s->h = h; |
|---|
| 309 | |
|---|
| 310 | s->x = |
|---|
| 311 | (s->orig_x * r) + |
|---|
| 312 | ((s->orig_w/2) - s->w/2); |
|---|
| 313 | s->y = |
|---|
| 314 | (s->orig_y * r) + |
|---|
| 315 | ((s->orig_h/2) - s->h/2); |
|---|
| 316 | } |
|---|
| 317 | return 1; |
|---|
| 318 | } |
|---|