]> git.sesse.net Git - vlc/blob - modules/video_output/caca.c
Plugins: include vlc_common.h directly instead of vlc/vlc.h
[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_common.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( N_("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         return VLC_ENOMEM;
167
168     p_vout->p_sys->p_cv = cucul_create_canvas(0, 0);
169     if( !p_vout->p_sys->p_cv )
170     {
171         msg_Err( p_vout, "cannot initialize libcucul" );
172         free( p_vout->p_sys );
173         return VLC_EGENERIC;
174     }
175
176     p_vout->p_sys->p_dp = caca_create_display( p_vout->p_sys->p_cv );
177     if( !p_vout->p_sys->p_dp )
178     {
179         msg_Err( p_vout, "cannot initialize libcaca" );
180         cucul_free_canvas( p_vout->p_sys->p_cv );
181         free( p_vout->p_sys );
182         return VLC_EGENERIC;
183     }
184
185     caca_set_display_title( p_vout->p_sys->p_dp,
186                             VOUT_TITLE " - Colour AsCii Art (caca)" );
187
188     p_vout->pf_init = Init;
189     p_vout->pf_end = End;
190     p_vout->pf_manage = Manage;
191     p_vout->pf_render = Render;
192     p_vout->pf_display = Display;
193
194     return VLC_SUCCESS;
195 }
196
197 /*****************************************************************************
198  * Init: initialize libcaca video output thread
199  *****************************************************************************/
200 static int Init( vout_thread_t *p_vout )
201 {
202     int i_index;
203     picture_t *p_pic = NULL;
204
205     I_OUTPUTPICTURES = 0;
206
207     p_vout->output.i_chroma = VLC_FOURCC('R','V','3','2');
208     p_vout->output.i_width = p_vout->render.i_width;
209     p_vout->output.i_height = p_vout->render.i_height;
210     p_vout->output.i_aspect = p_vout->render.i_aspect;
211
212     p_vout->output.i_rmask = 0x00ff0000;
213     p_vout->output.i_gmask = 0x0000ff00;
214     p_vout->output.i_bmask = 0x000000ff;
215
216     /* Create the libcaca dither object */
217     p_vout->p_sys->p_dither = cucul_create_dither
218                        ( 32, p_vout->output.i_width, p_vout->output.i_height,
219                          4 * ((p_vout->output.i_width + 15) & ~15),
220                          p_vout->output.i_rmask, p_vout->output.i_gmask,
221                          p_vout->output.i_bmask, 0x00000000 );
222
223     if( !p_vout->p_sys->p_dither )
224     {
225         msg_Err( p_vout, "could not create libcaca dither object" );
226         return VLC_EGENERIC;
227     }
228
229     /* Find an empty picture slot */
230     for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
231     {
232         if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
233         {
234             p_pic = p_vout->p_picture + i_index;
235             break;
236         }
237     }
238
239     if( p_pic == NULL )
240     {
241         return VLC_EGENERIC;
242     }
243
244     /* Allocate the picture */
245     p_pic->p->i_lines = p_vout->output.i_height;
246     p_pic->p->i_visible_lines = p_vout->output.i_height;
247     p_pic->p->i_pitch = 4 * ((p_vout->output.i_width + 15) & ~15);
248     p_pic->p->i_pixel_pitch = 4;
249     p_pic->p->i_visible_pitch = 4 * p_vout->output.i_width;
250     p_pic->i_planes = 1;
251     p_pic->p->p_pixels = malloc( p_pic->p->i_pitch * p_pic->p->i_lines );
252
253     p_pic->i_status = DESTROYED_PICTURE;
254     p_pic->i_type   = DIRECT_PICTURE;
255
256     PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
257     I_OUTPUTPICTURES++;
258
259     return VLC_SUCCESS;
260 }
261
262 /*****************************************************************************
263  * End: terminate libcaca video output thread
264  *****************************************************************************/
265 static void End( vout_thread_t *p_vout )
266 {
267     cucul_free_dither( p_vout->p_sys->p_dither );
268 }
269
270 /*****************************************************************************
271  * Destroy: destroy libcaca video output thread
272  *****************************************************************************
273  * Terminate an output method created by AaCreateOutputMethod
274  *****************************************************************************/
275 static void Destroy( vlc_object_t *p_this )
276 {
277     vout_thread_t *p_vout = (vout_thread_t *)p_this;
278
279     caca_free_display( p_vout->p_sys->p_dp );
280     cucul_free_canvas( p_vout->p_sys->p_cv );
281
282 #if defined( WIN32 ) && !defined( UNDER_CE )
283     FreeConsole();
284 #endif
285
286     free( p_vout->p_sys );
287 }
288
289 /*****************************************************************************
290  * Manage: handle libcaca events
291  *****************************************************************************
292  * This function should be called regularly by video output thread. It manages
293  * console events. It returns a non null value on error.
294  *****************************************************************************/
295 static int Manage( vout_thread_t *p_vout )
296 {
297 #ifdef CACA_API_VERSION_1
298     struct caca_event ev;
299 #else
300     int ev;
301 #endif
302
303     while( caca_get_event(p_vout->p_sys->p_dp, CACA_EVENT_ANY, &ev, 0) )
304     {
305         playlist_t *p_playlist;
306         vlc_value_t val;
307
308 #ifdef CACA_API_VERSION_1
309 #ifdef CACA_EVENT_OPAQUE
310         switch( caca_get_event_type( &ev ) )
311 #else
312         switch( ev.type )
313 #endif /* CACA_EVENT_OPAQUE */
314 #else
315         switch( ev )
316 #endif
317         {
318         case CACA_EVENT_KEY_RELEASE:
319 #ifdef CACA_API_VERSION_1
320 #ifdef CACA_EVENT_OPAQUE
321             switch( caca_get_event_key_ch( &ev ) )
322 #else
323             switch( ev.data.key.ch )
324 #endif /* CACA_EVENT_OPAQUE */
325 #else
326             switch( ev & 0x00ffffff )
327 #endif
328             {
329             case 'q':
330                 val.i_int = KEY_MODIFIER_CTRL | 'q';
331                 break;
332             case ' ':
333                 val.i_int = KEY_SPACE;
334                 break;
335             default:
336                 continue;
337             }
338
339             var_Set( p_vout->p_libvlc, "key-pressed", val );
340             break;
341         case CACA_EVENT_RESIZE:
342             /* Acknowledge the resize */
343             caca_refresh_display( p_vout->p_sys->p_dp );
344             break;
345 #ifdef CACA_API_VERSION_1
346         case  CACA_EVENT_MOUSE_MOTION:
347             val.i_int =
348 #ifdef CACA_EVENT_OPAQUE
349                 caca_get_event_mouse_x( &ev )
350 #else
351                 ev.data.mouse.x
352 #endif /* CACA_EVENT_OPAQUE */
353                 * p_vout->render.i_width
354                          / cucul_get_canvas_width( p_vout->p_sys->p_cv );
355             var_Set( p_vout, "mouse-x", val );
356             val.i_int =
357 #ifdef CACA_EVENT_OPAQUE
358                 caca_get_event_mouse_y( &ev ) 
359 #else
360                 ev.data.mouse.y
361 #endif /* CACA_EVENT_OPAQUE */
362                 * p_vout->render.i_height
363                          / cucul_get_canvas_height( p_vout->p_sys->p_cv );
364             var_Set( p_vout, "mouse-y", val );
365             val.b_bool = true;
366             var_Set( p_vout, "mouse-moved", val );
367             break;
368         case CACA_EVENT_MOUSE_RELEASE:
369             val.b_bool = true;
370             var_Set( p_vout, "mouse-clicked", val );
371             break;
372         case CACA_EVENT_QUIT:
373         {
374             p_playlist = vlc_object_find( p_vout,
375                                           VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
376             if( p_playlist )
377             {
378                 playlist_Stop( p_playlist );
379                 vlc_object_release( p_playlist );
380             }
381             vlc_object_kill( p_vout->p_libvlc );
382             break;
383         }
384 #endif
385         default:
386             break;
387         }
388     }
389
390     return VLC_SUCCESS;
391 }
392
393 /*****************************************************************************
394  * Render: render previously calculated output
395  *****************************************************************************/
396 static void Render( vout_thread_t *p_vout, picture_t *p_pic )
397 {
398     cucul_set_color( p_vout->p_sys->p_cv,
399                      CUCUL_COLOR_DEFAULT, CUCUL_COLOR_BLACK );
400     cucul_clear_canvas( p_vout->p_sys->p_cv );
401     cucul_dither_bitmap( p_vout->p_sys->p_cv, 0, 0,
402                          cucul_get_canvas_width( p_vout->p_sys->p_cv ) - 1,
403                          cucul_get_canvas_height( p_vout->p_sys->p_cv ) - 1,
404                          p_vout->p_sys->p_dither, p_pic->p->p_pixels );
405 }
406
407 /*****************************************************************************
408  * Display: displays previously rendered output
409  *****************************************************************************/
410 static void Display( vout_thread_t *p_vout, picture_t *p_pic )
411 {
412     VLC_UNUSED(p_pic);
413     caca_refresh_display( p_vout->p_sys->p_dp );
414 }
415