1 | /* |
---|
2 | * frames canvas frame switching features |
---|
3 | * Copyright (c) 2006 Sam Hocevar <sam@zoy.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * $Id: frames.c 1462 2006-12-12 01:53:54Z sam $ |
---|
7 | * |
---|
8 | * This program is free software. It comes without any warranty, to |
---|
9 | * the extent permitted by applicable law. You can redistribute it |
---|
10 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
11 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
12 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
13 | */ |
---|
14 | |
---|
15 | #include "config.h" |
---|
16 | #include "common.h" |
---|
17 | #if !defined(__KERNEL__) |
---|
18 | # if defined(HAVE_INTTYPES_H) |
---|
19 | # include <inttypes.h> |
---|
20 | # endif |
---|
21 | |
---|
22 | # include <stdio.h> |
---|
23 | #endif |
---|
24 | #include "cucul.h" |
---|
25 | #include "caca.h" |
---|
26 | |
---|
27 | int main(int argc, char *argv[]) |
---|
28 | { |
---|
29 | cucul_canvas_t *cv; |
---|
30 | caca_display_t *dp; |
---|
31 | |
---|
32 | int n, frame; |
---|
33 | |
---|
34 | /* Create a canvas with 200 frames */ |
---|
35 | cv = cucul_create_canvas(0, 0); |
---|
36 | for(frame = 1; frame < 200; frame++) |
---|
37 | cucul_create_frame(cv, frame); |
---|
38 | |
---|
39 | fprintf(stderr, "canvas created, size is %ix%i\n", |
---|
40 | cucul_get_canvas_width(cv), cucul_get_canvas_height(cv)); |
---|
41 | |
---|
42 | /* Resize it to 150 x 80 (around 19MB) */ |
---|
43 | cucul_set_canvas_size(cv, 150, 80); |
---|
44 | |
---|
45 | fprintf(stderr, "canvas expanded, size is %ix%i\n", |
---|
46 | cucul_get_canvas_width(cv), cucul_get_canvas_height(cv)); |
---|
47 | |
---|
48 | /* Fill the first 16 frames with a different colour */ |
---|
49 | for(frame = 0; frame < 16; frame++) |
---|
50 | { |
---|
51 | cucul_set_frame(cv, frame); |
---|
52 | cucul_set_color_ansi(cv, CUCUL_WHITE, frame); |
---|
53 | cucul_fill_box(cv, 0, 0, 40, 15, ':'); |
---|
54 | cucul_set_color_ansi(cv, CUCUL_WHITE, CUCUL_BLUE); |
---|
55 | cucul_put_str(cv, frame * 5 / 2, frame, "カカ"); |
---|
56 | cucul_set_color_ansi(cv, CUCUL_DEFAULT, CUCUL_TRANSPARENT); |
---|
57 | } |
---|
58 | |
---|
59 | /* Resize it to a more decent size */ |
---|
60 | cucul_set_canvas_size(cv, 41, 16); |
---|
61 | |
---|
62 | fprintf(stderr, "canvas shrinked, size is %ix%i\n", |
---|
63 | cucul_get_canvas_width(cv), cucul_get_canvas_height(cv)); |
---|
64 | |
---|
65 | dp = caca_create_display(cv); |
---|
66 | caca_set_display_time(dp, 50000); |
---|
67 | |
---|
68 | fprintf(stderr, "display attached, size is %ix%i\n", |
---|
69 | cucul_get_canvas_width(cv), cucul_get_canvas_height(cv)); |
---|
70 | |
---|
71 | n = 0; |
---|
72 | while(!caca_get_event(dp, CACA_EVENT_KEY_PRESS, NULL, 0)) |
---|
73 | { |
---|
74 | cucul_set_frame(cv, n % 16); |
---|
75 | caca_refresh_display(dp); |
---|
76 | n++; |
---|
77 | } |
---|
78 | |
---|
79 | caca_free_display(dp); |
---|
80 | |
---|
81 | /* It is possible, though not necessary, to free all additional frames |
---|
82 | * separately. */ |
---|
83 | cucul_free_canvas(cv); |
---|
84 | |
---|
85 | return 0; |
---|
86 | } |
---|
87 | |
---|