]> git.sesse.net Git - vlc/blob - modules/video_output/glide.c
28b2dd5f9dbf82ad3a3edef8f40a90c3cd5da37f
[vlc] / modules / video_output / glide.c
1 /*****************************************************************************
2  * glide.c : 3dfx Glide plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  * $Id: glide.c,v 1.3 2003/10/25 00:49:14 sam Exp $
6  *
7  * Authors: Samuel 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <errno.h>                                                 /* ENOMEM */
28 #include <stdlib.h>                                      /* malloc(), free() */
29 #include <string.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/intf.h>
33 #include <vlc/vout.h>
34
35 #ifndef __linux__
36 #   include <conio.h>                                         /* for glide ? */
37 #endif
38 #include <glide.h>
39 #include <linutil.h>                            /* Glide kbhit() and getch() */
40
41 #define GLIDE_WIDTH 800
42 #define GLIDE_HEIGHT 600
43 #define GLIDE_BITS_PER_PLANE 16
44 #define GLIDE_BYTES_PER_PIXEL 2
45
46 /*****************************************************************************
47  * Local prototypes
48  *****************************************************************************/
49 static int  Create    ( vlc_object_t * );
50 static void Destroy   ( vlc_object_t * );
51
52 static int  Init      ( vout_thread_t * );
53 static void End       ( vout_thread_t * );
54 static int  Manage    ( vout_thread_t * );
55 static void Display   ( vout_thread_t *, picture_t * );
56
57 static int  OpenDisplay    ( vout_thread_t * );
58 static void CloseDisplay   ( vout_thread_t * );
59
60 /*****************************************************************************
61  * Module descriptor
62  *****************************************************************************/
63 vlc_module_begin();
64     set_description( _("3dfx Glide video output") );
65     set_capability( "video output", 20 );
66     add_shortcut( "3dfx" );
67     set_callbacks( Create, Destroy );
68 vlc_module_end();
69
70 /*****************************************************************************
71  * vout_sys_t: Glide video output method descriptor
72  *****************************************************************************
73  * This structure is part of the video output thread descriptor.
74  * It describes the Glide specific properties of an output thread.
75  *****************************************************************************/
76 struct vout_sys_t
77 {
78     GrLfbInfo_t                 p_buffer_info;           /* back buffer info */
79
80     uint8_t * pp_buffer[2];
81     int i_index;
82 };
83
84 /*****************************************************************************
85  * Create: allocates Glide video thread output method
86  *****************************************************************************
87  * This function allocates and initializes a Glide vout method.
88  *****************************************************************************/
89 static int Create( vlc_object_t *p_this )
90 {
91     vout_thread_t *p_vout = (vout_thread_t *)p_this;
92
93     /* Allocate structure */
94     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
95     if( p_vout->p_sys == NULL )
96     {
97         msg_Err( p_vout, "out of memory" );
98         return( 1 );
99     }
100
101     /* Open and initialize device */
102     if( OpenDisplay( p_vout ) )
103     {
104         msg_Err( p_vout, "cannot open display" );
105         free( p_vout->p_sys );
106         return( 1 );
107     }
108
109     p_vout->pf_init = Init;
110     p_vout->pf_end = End;
111     p_vout->pf_manage = Manage;
112     p_vout->pf_render = NULL;
113     p_vout->pf_display = Display;
114
115     return( 0 );
116 }
117
118 /*****************************************************************************
119  * Init: initialize Glide video thread output method
120  *****************************************************************************/
121 static int Init( vout_thread_t *p_vout )
122 {
123     int i_index;
124     picture_t *p_pic;
125
126     /* FIXME: we don't set i_chroma !! */
127     p_vout->output.i_rmask = 0xf800;
128     p_vout->output.i_gmask = 0x07e0;
129     p_vout->output.i_bmask = 0x001f;
130
131     I_OUTPUTPICTURES = 0;
132
133     p_pic = NULL;
134
135     /* Find an empty picture slot */
136     for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
137     {
138         if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
139         {
140             p_pic = p_vout->p_picture + i_index;
141             break;
142         }
143     }
144
145     if( p_pic == NULL )
146     {
147         return -1;
148     }
149
150     /* We know the chroma, allocate a buffer which will be used
151      * directly by the decoder */
152     p_pic->i_planes = 1;
153
154     p_pic->p->p_pixels = p_vout->p_sys->pp_buffer[p_vout->p_sys->i_index];
155     p_pic->p->i_lines = GLIDE_HEIGHT;
156     p_pic->p->i_pitch = p_vout->p_sys->p_buffer_info.strideInBytes;
157                          /*1024 * GLIDE_BYTES_PER_PIXEL*/
158     p_pic->p->i_pixel_pitch = GLIDE_BYTES_PER_PIXEL;
159     p_pic->p->i_visible_pitch = GLIDE_WIDTH * GLIDE_BYTES_PER_PIXEL;
160
161     p_pic->i_status = DESTROYED_PICTURE;
162     p_pic->i_type   = DIRECT_PICTURE;
163
164     PP_OUTPUTPICTURE[ 0 ] = p_pic;
165
166     I_OUTPUTPICTURES = 1;
167
168     return 0;
169 }
170
171 /*****************************************************************************
172  * End: terminate Glide video thread output method
173  *****************************************************************************/
174 static void End( vout_thread_t *p_vout )
175 {
176     ;
177 }
178
179 /*****************************************************************************
180  * Destroy: destroy Glide video thread output method
181  *****************************************************************************
182  * Terminate an output method created by Create
183  *****************************************************************************/
184 static void Destroy( vlc_object_t *p_this )
185 {
186     vout_thread_t *p_vout = (vout_thread_t *)p_this;
187     CloseDisplay( p_vout );
188     free( p_vout->p_sys );
189 }
190
191 /*****************************************************************************
192  * Manage: handle Glide events
193  *****************************************************************************
194  * This function should be called regularly by video output thread. It manages
195  * console events. It returns a non null value on error.
196  *****************************************************************************/
197 static int Manage( vout_thread_t *p_vout )
198 {
199     int buf;
200
201     /* very Linux specific - see tlib.c in Glide for other versions */
202     while( kbhit() )
203     {
204         buf = getch();
205
206         switch( (char)buf )
207         {
208         case 'q':
209             p_vout->p_vlc->b_die = 1;
210             break;
211
212         default:
213             break;
214         }
215     }
216
217     return 0;
218 }
219
220 /*****************************************************************************
221  * Display: displays previously rendered output
222  *****************************************************************************/
223 static void Display( vout_thread_t *p_vout, picture_t *p_pic )
224
225 {
226     grLfbUnlock( GR_LFB_WRITE_ONLY, GR_BUFFER_BACKBUFFER );
227
228     grBufferSwap( 0 );
229
230     if ( grLfbLock(GR_LFB_WRITE_ONLY, GR_BUFFER_BACKBUFFER,
231                    GR_LFBWRITEMODE_565, GR_ORIGIN_UPPER_LEFT, FXFALSE,
232                    &p_vout->p_sys->p_buffer_info) == FXFALSE )
233     {
234         msg_Err( p_vout, "cannot take 3dfx back buffer lock" );
235     }
236 }
237
238 /* following functions are local */
239
240 /*****************************************************************************
241  * OpenDisplay: open and initialize 3dfx device
242  *****************************************************************************/
243
244 static int OpenDisplay( vout_thread_t *p_vout )
245 {
246     static char version[80];
247     GrHwConfiguration hwconfig;
248     GrScreenResolution_t resolution = GR_RESOLUTION_800x600;
249     GrLfbInfo_t p_front_buffer_info;                    /* front buffer info */
250
251     grGlideGetVersion( version );
252     grGlideInit();
253
254     if( !grSstQueryHardware(&hwconfig) )
255     {
256         msg_Err( p_vout, "cannot get 3dfx hardware config" );
257         return( 1 );
258     }
259
260     grSstSelect( 0 );
261     if( !grSstWinOpen( 0, resolution, GR_REFRESH_60Hz,
262                        GR_COLORFORMAT_ABGR, GR_ORIGIN_UPPER_LEFT, 2, 1 ) )
263     {
264         msg_Err( p_vout, "cannot open 3dfx screen" );
265         return( 1 );
266     }
267
268     /* disable dithering */
269     /*grDitherMode( GR_DITHER_DISABLE );*/
270
271     /* clear both buffers */
272     grRenderBuffer( GR_BUFFER_BACKBUFFER );
273     grBufferClear( 0, 0, 0 );
274     grRenderBuffer( GR_BUFFER_FRONTBUFFER );
275     grBufferClear( 0, 0, 0 );
276     grRenderBuffer( GR_BUFFER_BACKBUFFER );
277
278     p_vout->p_sys->p_buffer_info.size = sizeof( GrLfbInfo_t );
279     p_front_buffer_info.size          = sizeof( GrLfbInfo_t );
280
281     /* lock the buffers to find their adresses */
282     if ( grLfbLock(GR_LFB_WRITE_ONLY, GR_BUFFER_FRONTBUFFER,
283                    GR_LFBWRITEMODE_565, GR_ORIGIN_UPPER_LEFT, FXFALSE,
284                    &p_front_buffer_info) == FXFALSE )
285     {
286         msg_Err( p_vout, "cannot take 3dfx front buffer lock" );
287         grGlideShutdown();
288         return( 1 );
289     }
290     grLfbUnlock( GR_LFB_WRITE_ONLY, GR_BUFFER_FRONTBUFFER );
291
292     if ( grLfbLock(GR_LFB_WRITE_ONLY, GR_BUFFER_BACKBUFFER,
293                    GR_LFBWRITEMODE_565, GR_ORIGIN_UPPER_LEFT, FXFALSE,
294                    &p_vout->p_sys->p_buffer_info) == FXFALSE )
295     {
296         msg_Err( p_vout, "cannot take 3dfx back buffer lock" );
297         grGlideShutdown();
298         return( 1 );
299     }
300     grLfbUnlock( GR_LFB_WRITE_ONLY, GR_BUFFER_BACKBUFFER );
301
302     grBufferClear( 0, 0, 0 );
303
304     p_vout->p_sys->pp_buffer[0] = p_vout->p_sys->p_buffer_info.lfbPtr;
305     p_vout->p_sys->pp_buffer[1] = p_front_buffer_info.lfbPtr;
306     p_vout->p_sys->i_index = 0;
307
308     return( 0 );
309 }
310
311 /*****************************************************************************
312  * CloseDisplay: close and reset 3dfx device
313  *****************************************************************************
314  * Returns all resources allocated by OpenDisplay and restore the original
315  * state of the device.
316  *****************************************************************************/
317 static void CloseDisplay( vout_thread_t *p_vout )
318 {
319     /* unlock the hidden buffer */
320     grLfbUnlock( GR_LFB_WRITE_ONLY, GR_BUFFER_BACKBUFFER );
321
322     /* shutdown Glide */
323     grGlideShutdown();
324 }
325