Search
lxdream.org :: lxdream/src/display.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/display.h
changeset 608:4f588e52bce0
prev561:533f6b478071
next614:a2d239d4438a
author nkeynes
date Sat Jan 26 03:44:22 2008 +0000 (16 years ago)
permissions -rw-r--r--
last change Add svn:keywords property
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * The PC side of the video support (responsible for actually displaying / 
     5  * rendering frames)
     6  *
     7  * Copyright (c) 2005 Nathan Keynes.
     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  */
    20 #ifndef dream_video_H
    21 #define dream_video_H
    23 #include <stdint.h>
    24 #include <glib.h>
    25 #include "lxdream.h"
    26 #ifdef APPLE_BUILD
    27 #include <OpenGL/gl.h>
    28 #include <OpenGL/glext.h>
    29 #else
    30 #include <GL/gl.h>
    31 #include <GL/glext.h>
    32 #endif
    34 #ifdef __cplusplus
    35 extern "C" {
    36 #endif
    38 /**
    39  * Supported colour formats. Note that BGRA4444 is only ever used for texture
    40  * rendering (it's not valid for display purposes).
    41  */
    42 #define COLFMT_BGRA1555  0
    43 #define COLFMT_RGB565    1
    44 #define COLFMT_BGRA4444  2
    45 #define COLFMT_YUV422    3 /* 8-bit YUV (texture source only) */
    46 #define COLFMT_BGR888    4 /* 24-bit BGR */
    47 #define COLFMT_BGRA8888  5
    48 #define COLFMT_INDEX4    6 /* 4 bit indexed colour (texture source only) */
    49 #define COLFMT_INDEX8    7 /* 8-bit indexed colour (texture source only) */
    50 #define COLFMT_BGR0888   8 /* 32-bit BGR */
    51 #define COLFMT_RGB888    9 /* 24-bit RGB (ie GL native) */
    53 struct colour_format {
    54     GLint type, format, int_format;
    55     int bpp;
    56 };
    57 extern struct colour_format colour_formats[];
    59 extern int colour_format_bytes[];
    61 /**
    62  * Structure to hold pixel data held in GL buffers.
    63  */
    64 struct render_buffer {
    65     uint32_t width;
    66     uint32_t height;
    67     uint32_t rowstride;
    68     int colour_format;
    69     sh4addr_t address; /* Address buffer was rendered to, or -1 for unrendered */
    70     uint32_t size; /* Size of buffer in bytes, must be width*height*bpp */
    71     gboolean inverted;/* True if the buffer is upside down */
    72     int scale;
    73     unsigned int buf_id; /* driver-specific buffer id, if applicable */
    74     gboolean flushed; /* True if the buffer has been flushed to vram */
    75 };
    77 /**
    78  * Structure to hold pixel data stored in pvr2 vram, as opposed to data in
    79  * GL buffers.
    80  */
    81 struct frame_buffer {
    82     uint32_t width;
    83     uint32_t height;
    84     uint32_t rowstride;
    85     int colour_format;
    86     sh4addr_t address;
    87     uint32_t size; /* Size of buffer in bytes, must be width*height*bpp */
    88     gboolean inverted;/* True if the buffer is upside down */
    89     unsigned char *data;
    90 };
    92 /**
    93  * Core video driver - exports function to setup a GL context, as well as handle
    94  * keyboard input and display resultant output.
    95  */
    96 typedef struct display_driver {
    97     char *name;
    98     /**
    99      * Initialize the driver. This is called only once at startup time, and
   100      * is guaranteed to be called before any other methods.
   101      * @return TRUE if the driver was successfully initialized, otherwise
   102      * FALSE.
   103      */
   104     gboolean (*init_driver)(void);
   106     /**
   107      * Cleanly shutdown the driver. Normally only called at system shutdown
   108      * time.
   109      */
   110     void (*shutdown_driver)(void);
   112     /**
   113      * Given a particular keysym, return the keycode associated with it.
   114      * @param keysym The keysym to be resolved, ie "Tab"
   115      * @return the display-specific keycode, or 0 if the keysym cannot
   116      * be resolved.
   117      */
   118     uint16_t (*resolve_keysym)( const gchar *keysym );
   120     /**
   121      * Given a native system keycode, convert it to a dreamcast keyboard code.
   122      */
   123     uint16_t (*convert_to_dckeysym)( uint16_t keycode );
   125     /**
   126      * Create a render target with the given width and height.
   127      */
   128     render_buffer_t (*create_render_buffer)( uint32_t width, uint32_t height );
   130     /**
   131      * Destroy the specified render buffer and release any associated
   132      * resources.
   133      */
   134     void (*destroy_render_buffer)( render_buffer_t buffer );
   136     /**
   137      * Set the current rendering target to the specified buffer.
   138      */
   139     gboolean (*set_render_target)( render_buffer_t buffer );
   141     /**
   142      * Load the supplied frame buffer into the given render buffer.
   143      * Included here to allow driver-specific optimizations.
   144      */
   145     void (*load_frame_buffer)( frame_buffer_t frame, render_buffer_t render );
   147     /**
   148      * Display a single frame using a previously rendered GL buffer.
   149      */
   150     gboolean (*display_render_buffer)( render_buffer_t buffer );
   152     /**
   153      * Display a single blanked frame using a fixed colour for the
   154      * entire frame (specified in BGR888 format). 
   155      */
   156     gboolean (*display_blank)( uint32_t rgb );
   158     /**
   159      * Copy the image data from the GL buffer to the target memory buffer,
   160      * using the format etc from the buffer. This may force a glFinish()
   161      * but does not invalidate the buffer.
   162      * @param target buffer to fill with image data, which must be large enough
   163      *  to accomodate the image.
   164      * @param buffer Render buffer to read from.
   165      * @param rowstride rowstride of the target data
   166      * @param format colour format to output the data in.
   167      */
   168     gboolean (*read_render_buffer)( unsigned char *target, render_buffer_t buffer,
   169 				    int rowstride, int format );
   171 } *display_driver_t;
   173 display_driver_t get_display_driver_by_name( const char *name );
   174 gboolean display_set_driver( display_driver_t driver );
   176 extern uint32_t pvr2_frame_counter;
   178 extern display_driver_t display_driver;
   180 extern struct display_driver display_agl_driver;
   181 extern struct display_driver display_gtk_driver;
   182 extern struct display_driver display_null_driver;
   184 /****************** Input methods **********************/
   186 typedef void (*input_key_callback_t)( void *data, uint32_t value, gboolean isKeyDown );
   188 /**
   189  * Callback to receive mouse input events
   190  * @param data pointer passed in at the time the hook was registered
   191  * @param buttons bitmask of button states, where bit 0 is button 0 (left), bit 1 is button
   192  * 1 (middle), bit 2 is button 2 (right) and so forth.
   193  * @param x Horizontal movement since the last invocation (in relative mode) or window position 
   194  * (in absolute mode).
   195  * @param y Vertical movement since the last invocation (in relative mode) or window position
   196  * (in absolute mode).
   197  */
   198 typedef void (*input_mouse_callback_t)( void *data, uint32_t buttons, int32_t x, int32_t y );
   200 gboolean input_register_key( const gchar *keysym, input_key_callback_t callback,
   201 			     void *data, uint32_t value );
   203 void input_unregister_key( const gchar *keysym, input_key_callback_t callback,
   204 			   void *data, uint32_t value );
   206 /**
   207  * Register a hook to receive all input events
   208  */
   209 gboolean input_register_hook( input_key_callback_t callback, void *data );
   210 void input_unregister_hook( input_key_callback_t callback, void *data );
   212 /**
   213  * Register a mouse event hook.
   214  * @param relative TRUE if the caller wants relative mouse movement, FALSE for
   215  * absolute mouse positioning. It's not generally possible to receive both at the same time.
   216  */
   217 gboolean input_register_mouse_hook( gboolean relative, input_mouse_callback_t callback, void *data );
   218 void input_unregister_mouse_hook( input_mouse_callback_t callback, void *data );
   220 gboolean input_is_key_valid( const gchar *keysym );
   222 gboolean input_is_key_registered( const gchar *keysym );
   224 void input_event_keydown( uint16_t keycode );
   226 void input_event_keyup( uint16_t keycode );
   228 void input_event_mouse( uint32_t buttons, int32_t x_axis, int32_t y_axis );
   230 uint16_t input_keycode_to_dckeysym( uint16_t keycode );
   232 #ifdef __cplusplus
   233 }
   234 #endif
   235 #endif
.