| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 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 |
|
|---|
| 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) "" |
|---|
| 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 : "") |
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 90 |
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 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 |
|
|---|
| 103 |
|
|---|
| 104 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 272 |
|
|---|
| 273 |
|
|---|
| 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 |
|
|---|
| 291 |
|
|---|
| 292 |
|
|---|
| 293 |
|
|---|
| 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 |
|---|
| 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 |
|---|
| 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 |
|
|---|
| 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 |
|---|
| 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 |
|---|
| 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 = pl_Hold( p_vout ); |
|---|
| 375 |
if( p_playlist ) |
|---|
| 376 |
{ |
|---|
| 377 |
playlist_Stop( p_playlist ); |
|---|
| 378 |
pl_Release( p_vout ); |
|---|
| 379 |
} |
|---|
| 380 |
vlc_object_kill( p_vout->p_libvlc ); |
|---|
| 381 |
break; |
|---|
| 382 |
} |
|---|
| 383 |
#endif |
|---|
| 384 |
default: |
|---|
| 385 |
break; |
|---|
| 386 |
} |
|---|
| 387 |
} |
|---|
| 388 |
|
|---|
| 389 |
return VLC_SUCCESS; |
|---|
| 390 |
} |
|---|
| 391 |
|
|---|
| 392 |
|
|---|
| 393 |
|
|---|
| 394 |
|
|---|
| 395 |
static void Render( vout_thread_t *p_vout, picture_t *p_pic ) |
|---|
| 396 |
{ |
|---|
| 397 |
cucul_set_color_ansi( p_vout->p_sys->p_cv, |
|---|
| 398 |
CUCUL_COLOR_DEFAULT, CUCUL_COLOR_BLACK ); |
|---|
| 399 |
cucul_clear_canvas( p_vout->p_sys->p_cv ); |
|---|
| 400 |
cucul_dither_bitmap( p_vout->p_sys->p_cv, 0, 0, |
|---|
| 401 |
cucul_get_canvas_width( p_vout->p_sys->p_cv ) - 1, |
|---|
| 402 |
cucul_get_canvas_height( p_vout->p_sys->p_cv ) - 1, |
|---|
| 403 |
p_vout->p_sys->p_dither, p_pic->p->p_pixels ); |
|---|
| 404 |
} |
|---|
| 405 |
|
|---|
| 406 |
|
|---|
| 407 |
|
|---|
| 408 |
|
|---|
| 409 |
static void Display( vout_thread_t *p_vout, picture_t *p_pic ) |
|---|
| 410 |
{ |
|---|
| 411 |
VLC_UNUSED(p_pic); |
|---|
| 412 |
caca_refresh_display( p_vout->p_sys->p_dp ); |
|---|
| 413 |
} |
|---|
| 414 |
|
|---|