]> git.sesse.net Git - vlc/blob - modules/video_output/caca.c
Include vlc_plugin.h as needed
[vlc] / modules / video_output / caca.c
1 /*****************************************************************************
2  * caca.c: Color ASCII Art video output plugin using libcaca
3  *****************************************************************************
4  * Copyright (C) 2003, 2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sam Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33 #include <vlc_plugin.h>
34 #include <vlc_vout.h>
35 #include <vlc_interface.h>
36 #include <vlc_playlist.h>
37 #include <vlc_keys.h>
38
39 #include <caca.h>
40
41 #ifndef CACA_API_VERSION_1
42     /* Upward compatibility macros */
43     typedef char cucul_canvas_t;
44     typedef struct caca_bitmap cucul_dither_t;
45     typedef char caca_display_t;
46 #   define CUCUL_COLOR_DEFAULT CACA_COLOR_LIGHTGRAY
47 #   define CUCUL_COLOR_BLACK CACA_COLOR_BLACK
48 #   define cucul_clear_canvas(x) caca_clear()
49 #   define cucul_create_canvas(x,y) "" /* kinda hacky */
50 #   define cucul_create_dither caca_create_bitmap
51 #   define cucul_dither_bitmap(x,y,z,t,u,v,w) caca_draw_bitmap(y,z,t,u,v,w)
52 #   define cucul_free_dither caca_free_bitmap
53 #   define cucul_free_canvas(x)
54 #   define cucul_get_canvas_width(x) caca_get_width()
55 #   define cucul_get_canvas_height(x) caca_get_height()
56 #   define cucul_set_color(x,y,z) caca_set_color(y,z)
57 #   define caca_create_display(x) (caca_init() ? NULL : "") /* hacky, too */
58 #   define caca_free_display(x) caca_end()
59 #   define caca_get_event(x,y,z,t) *(z) = caca_get_event(y)
60 #   define caca_refresh_display(x) caca_refresh()
61 #   define caca_set_display_title(x,y) caca_set_window_title(y)
62 #endif
63
64 /*****************************************************************************
65  * Local prototypes
66  *****************************************************************************/
67 static int  Create    ( vlc_object_t * );
68 static void Destroy   ( vlc_object_t * );
69
70 static int  Init      ( vout_thread_t * );
71 static void End       ( vout_thread_t * );
72 static int  Manage    ( vout_thread_t * );
73 static void Render    ( vout_thread_t *, picture_t * );
74 static void Display   ( vout_thread_t *, picture_t * );
75
76 /*****************************************************************************
77  * Module descriptor
78  *****************************************************************************/
79 vlc_module_begin();
80     set_shortname( "Caca" );
81     set_category( CAT_VIDEO );
82     set_subcategory( SUBCAT_VIDEO_VOUT );
83     set_description( _("Color ASCII art video output") );
84     set_capability( "video output", 12 );
85     set_callbacks( Create, Destroy );
86 vlc_module_end();
87
88 /*****************************************************************************
89  * vout_sys_t: libcaca video output method descriptor
90  *****************************************************************************
91  * This structure is part of the video output thread descriptor.
92  * It describes the libcaca specific properties of an output thread.
93  *****************************************************************************/
94 struct vout_sys_t
95 {
96     cucul_canvas_t *p_cv;
97     caca_display_t *p_dp;
98     cucul_dither_t *p_dither;
99 };
100
101 /*****************************************************************************
102  * Create: allocates libcaca video output thread
103  *****************************************************************************
104  * This function initializes libcaca vout method.
105  *****************************************************************************/
106 static int Create( vlc_object_t *p_this )
107 {
108     vout_thread_t *p_vout = (vout_thread_t *)p_this;
109
110 #if defined( WIN32 ) && !defined( UNDER_CE )
111     CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
112     SMALL_RECT rect;
113     COORD coord;
114     HANDLE hstdout;
115
116     if( !AllocConsole() )
117     {
118         msg_Err( p_vout, "cannot create console" );
119         return VLC_EGENERIC;
120     }
121
122     hstdout =
123         CreateConsoleScreenBuffer( GENERIC_READ | GENERIC_WRITE,
124                                    FILE_SHARE_READ | FILE_SHARE_WRITE,
125                                    NULL, CONSOLE_TEXTMODE_BUFFER, NULL );
126     if( !hstdout || hstdout == INVALID_HANDLE_VALUE )
127     {
128         msg_Err( p_vout, "cannot create screen buffer" );
129         FreeConsole();
130         return VLC_EGENERIC;
131     }
132
133     if( !SetConsoleActiveScreenBuffer( hstdout) )
134     {
135         msg_Err( p_vout, "cannot set active screen buffer" );
136         FreeConsole();
137         return VLC_EGENERIC;
138     }
139
140     coord = GetLargestConsoleWindowSize( hstdout );
141     msg_Dbg( p_vout, "SetConsoleWindowInfo: %ix%i", coord.X, coord.Y );
142
143     /* Force size for now */
144     coord.X = 100;
145     coord.Y = 40;
146
147     if( !SetConsoleScreenBufferSize( hstdout, coord ) )
148         msg_Warn( p_vout, "SetConsoleScreenBufferSize %i %i",
149                   coord.X, coord.Y );
150
151     /* Get the current screen buffer size and window position. */
152     if( GetConsoleScreenBufferInfo( hstdout, &csbiInfo ) )
153     {
154         rect.Top = 0; rect.Left = 0;
155         rect.Right = csbiInfo.dwMaximumWindowSize.X - 1;
156         rect.Bottom = csbiInfo.dwMaximumWindowSize.Y - 1;
157         if( !SetConsoleWindowInfo( hstdout, TRUE, &rect ) )
158             msg_Dbg( p_vout, "SetConsoleWindowInfo failed: %ix%i",
159                      rect.Right, rect.Bottom );
160     }
161 #endif
162
163     /* Allocate structure */
164     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
165     if( p_vout->p_sys == NULL )
166     {
167         msg_Err( p_vout, "out of memory" );
168         return VLC_ENOMEM;
169     }
170
171     p_vout->p_sys->p_cv = cucul_create_canvas(0, 0);
172     if( !p_vout->p_sys->p_cv )
173     {
174         msg_Err( p_vout, "cannot initialize libcucul" );
175         free( p_vout->p_sys );
176         return VLC_EGENERIC;
177     }
178
179     p_vout->p_sys->p_dp = caca_create_display( p_vout->p_sys->p_cv );
180     if( !p_vout->p_sys->p_dp )
181     {
182         msg_Err( p_vout, "cannot initialize libcaca" );
183         cucul_free_canvas( p_vout->p_sys->p_cv );
184         free( p_vout->p_sys );
185         return VLC_EGENERIC;
186     }
187
188     caca_set_display_title( p_vout->p_sys->p_dp,
189                             VOUT_TITLE " - Colour AsCii Art (caca)" );
190
191     p_vout->pf_init = Init;
192     p_vout->pf_end = End;
193     p_vout->pf_manage = Manage;
194     p_vout->pf_render = Render;
195     p_vout->pf_display = Display;
196
197     return VLC_SUCCESS;
198 }
199
200 /*****************************************************************************
201  * Init: initialize libcaca video output thread
202  *****************************************************************************/
203 static int Init( vout_thread_t *p_vout )
204 {
205     int i_index;
206     picture_t *p_pic = NULL;
207
208     I_OUTPUTPICTURES = 0;
209
210     p_vout->output.i_chroma = VLC_FOURCC('R','V','3','2');
211     p_vout->output.i_width = p_vout->render.i_width;
212     p_vout->output.i_height = p_vout->render.i_height;
213     p_vout->output.i_aspect = p_vout->render.i_aspect;
214
215     p_vout->output.i_rmask = 0x00ff0000;
216     p_vout->output.i_gmask = 0x0000ff00;
217     p_vout->output.i_bmask = 0x000000ff;
218
219     /* Create the libcaca dither object */
220     p_vout->p_sys->p_dither = cucul_create_dither
221                        ( 32, p_vout->output.i_width, p_vout->output.i_height,
222                          4 * ((p_vout->output.i_width + 15) & ~15),
223                          p_vout->output.i_rmask, p_vout->output.i_gmask,
224                          p_vout->output.i_bmask, 0x00000000 );
225
226     if( !p_vout->p_sys->p_dither )
227     {
228         msg_Err( p_vout, "could not create libcaca dither object" );
229         return VLC_EGENERIC;
230     }
231
232     /* Find an empty picture slot */
233     for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
234     {
235         if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
236         {
237             p_pic = p_vout->p_picture + i_index;
238             break;
239         }
240     }
241
242     if( p_pic == NULL )
243     {
244         return VLC_EGENERIC;
245     }
246
247     /* Allocate the picture */
248     p_pic->p->i_lines = p_vout->output.i_height;
249     p_pic->p->i_visible_lines = p_vout->output.i_height;
250     p_pic->p->i_pitch = 4 * ((p_vout->output.i_width + 15) & ~15);
251     p_pic->p->i_pixel_pitch = 4;
252     p_pic->p->i_visible_pitch = 4 * p_vout->output.i_width;
253     p_pic->i_planes = 1;
254     p_pic->p->p_pixels = malloc( p_pic->p->i_pitch * p_pic->p->i_lines );
255
256     p_pic->i_status = DESTROYED_PICTURE;
257     p_pic->i_type   = DIRECT_PICTURE;
258
259     PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
260     I_OUTPUTPICTURES++;
261
262     return VLC_SUCCESS;
263 }
264
265 /*****************************************************************************
266  * End: terminate libcaca video output thread
267  *****************************************************************************/
268 static void End( vout_thread_t *p_vout )
269 {
270     cucul_free_dither( p_vout->p_sys->p_dither );
271 }
272
273 /*****************************************************************************
274  * Destroy: destroy libcaca video output thread
275  *****************************************************************************
276  * Terminate an output method created by AaCreateOutputMethod
277  *****************************************************************************/
278 static void Destroy( vlc_object_t *p_this )
279 {
280     vout_thread_t *p_vout = (vout_thread_t *)p_this;
281
282     caca_free_display( p_vout->p_sys->p_dp );
283     cucul_free_canvas( p_vout->p_sys->p_cv );
284
285 #if defined( WIN32 ) && !defined( UNDER_CE )
286     FreeConsole();
287 #endif
288
289     free( p_vout->p_sys );
290 }
291
292 /*****************************************************************************
293  * Manage: handle libcaca events
294  *****************************************************************************
295  * This function should be called regularly by video output thread. It manages
296  * console events. It returns a non null value on error.
297  *****************************************************************************/
298 static int Manage( vout_thread_t *p_vout )
299 {
300 #ifdef CACA_API_VERSION_1
301     struct caca_event ev;
302 #else
303     int ev;
304 #endif
305
306     while( caca_get_event(p_vout->p_sys->p_dp, CACA_EVENT_ANY, &ev, 0) )
307     {
308         playlist_t *p_playlist;
309         vlc_value_t val;
310
311 #ifdef CACA_API_VERSION_1
312 #ifdef CACA_EVENT_OPAQUE
313         switch( caca_get_event_type( &ev ) )
314 #else
315         switch( ev.type )
316 #endif /* CACA_EVENT_OPAQUE */
317 #else
318         switch( ev )
319 #endif
320         {
321         case CACA_EVENT_KEY_RELEASE:
322 #ifdef CACA_API_VERSION_1
323 #ifdef CACA_EVENT_OPAQUE
324             switch( caca_get_event_key_ch( &ev ) )
325 #else
326             switch( ev.data.key.ch )
327 #endif /* CACA_EVENT_OPAQUE */
328 #else
329             switch( ev & 0x00ffffff )
330 #endif
331             {
332             case 'q':
333                 val.i_int = KEY_MODIFIER_CTRL | 'q';
334                 break;
335             case ' ':
336                 val.i_int = KEY_SPACE;
337                 break;
338             default:
339                 continue;
340             }
341
342             var_Set( p_vout->p_libvlc, "key-pressed", val );
343             break;
344         case CACA_EVENT_RESIZE:
345             /* Acknowledge the resize */
346             caca_refresh_display( p_vout->p_sys->p_dp );
347             break;
348 #ifdef CACA_API_VERSION_1
349         case  CACA_EVENT_MOUSE_MOTION:
350             val.i_int =
351 #ifdef CACA_EVENT_OPAQUE
352                 caca_get_event_mouse_x( &ev )
353 #else
354                 ev.data.mouse.x
355 #endif /* CACA_EVENT_OPAQUE */
356                 * p_vout->render.i_width
357                          / cucul_get_canvas_width( p_vout->p_sys->p_cv );
358             var_Set( p_vout, "mouse-x", val );
359             val.i_int =
360 #ifdef CACA_EVENT_OPAQUE
361                 caca_get_event_mouse_y( &ev ) 
362 #else
363                 ev.data.mouse.y
364 #endif /* CACA_EVENT_OPAQUE */
365                 * p_vout->render.i_height
366                          / cucul_get_canvas_height( p_vout->p_sys->p_cv );
367             var_Set( p_vout, "mouse-y", val );
368             val.b_bool = true;
369             var_Set( p_vout, "mouse-moved", val );
370             break;
371         case CACA_EVENT_MOUSE_RELEASE:
372             val.b_bool = true;
373             var_Set( p_vout, "mouse-clicked", val );
374             break;
375         case CACA_EVENT_QUIT:
376         {
377             p_playlist = vlc_object_find( p_vout,
378                                           VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
379             if( p_playlist )
380             {
381                 playlist_Stop( p_playlist );
382                 vlc_object_release( p_playlist );
383             }
384             vlc_object_kill( p_vout->p_libvlc );
385             break;
386         }
387 #endif
388         default:
389             break;
390         }
391     }
392
393     return VLC_SUCCESS;
394 }
395
396 /*****************************************************************************
397  * Render: render previously calculated output
398  *****************************************************************************/
399 static void Render( vout_thread_t *p_vout, picture_t *p_pic )
400 {
401     cucul_set_color( p_vout->p_sys->p_cv,
402                      CUCUL_COLOR_DEFAULT, CUCUL_COLOR_BLACK );
403     cucul_clear_canvas( p_vout->p_sys->p_cv );
404     cucul_dither_bitmap( p_vout->p_sys->p_cv, 0, 0,
405                          cucul_get_canvas_width( p_vout->p_sys->p_cv ) - 1,
406                          cucul_get_canvas_height( p_vout->p_sys->p_cv ) - 1,
407                          p_vout->p_sys->p_dither, p_pic->p->p_pixels );
408 }
409
410 /*****************************************************************************
411  * Display: displays previously rendered output
412  *****************************************************************************/
413 static void Display( vout_thread_t *p_vout, picture_t *p_pic )
414 {
415     VLC_UNUSED(p_pic);
416     caca_refresh_display( p_vout->p_sys->p_dp );
417 }
418