Search
lxdream.org :: lxdream/src/display.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/display.h
changeset 1256:a9d29fe74bf3
prev1251:b8ab59d39756
next1282:9f445c5e252b
author nkeynes
date Mon Mar 05 17:39:32 2012 +1000 (12 years ago)
permissions -rw-r--r--
last change Remove check for Maple sender address. Need to test behaviour of this on DC
Patch from guinux, thanks!
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 lxdream_display_H
    21 #define lxdream_display_H 1
    23 #define GL_GLEXT_PROTOTYPES 1
    25 #include <stdint.h>
    26 #include <stdio.h>
    27 #include <glib.h>
    28 #include "lxdream.h"
    29 #include "gettext.h"
    30 #include "config.h"
    31 #ifdef APPLE_BUILD
    32 #include <OpenGL/gl.h>
    33 #include <OpenGL/glext.h>
    34 #else
    35 #if HAVE_GLES2
    36 #include <GLES2/gl2.h>
    37 #include <GLES2/gl2ext.h>
    38 #else
    39 #include <GL/gl.h>
    40 #include <GL/glext.h>
    41 #endif
    42 #endif
    44 #ifdef __cplusplus
    45 extern "C" {
    46 #endif
    48 /**
    49  * Supported colour formats. Note that BGRA4444 is only ever used for texture
    50  * rendering (it's not valid for display purposes).
    51  */
    52 #define COLFMT_BGRA1555  0
    53 #define COLFMT_RGB565    1
    54 #define COLFMT_BGRA4444  2
    55 #define COLFMT_YUV422    3 /* 8-bit YUV (texture source only) */
    56 #define COLFMT_BGR888    4 /* 24-bit BGR */
    57 #define COLFMT_BGRA8888  5
    58 #define COLFMT_INDEX4    6 /* 4 bit indexed colour (texture source only) */
    59 #define COLFMT_INDEX8    7 /* 8-bit indexed colour (texture source only) */
    60 #define COLFMT_BGR0888   8 /* 32-bit BGR */
    61 #define COLFMT_RGB888    9 /* 24-bit RGB (ie GL native) */
    63 /**
    64  * The standard display size (for the purposes of mouse inputs, etc, is 640x480 -
    65  * events should be adjusted accordingly if this is not the actual window size.
    66  */ 
    67 #define DISPLAY_WIDTH 640
    68 #define DISPLAY_HEIGHT 480
    70 struct colour_format {
    71     GLint type, format, int_format;
    72     int bpp;
    73 };
    74 extern struct colour_format colour_formats[];
    76 extern int colour_format_bytes[];
    78 /**
    79  * Structure to hold pixel data held in GL buffers.
    80  */
    81 struct render_buffer {
    82     uint32_t width;
    83     uint32_t height;
    84     uint32_t rowstride;
    85     uint32_t colour_format;
    86     sh4addr_t address; /* Address buffer was rendered to, or -1 for unrendered */
    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     uint32_t scale;
    90     GLuint tex_id;    /* texture bound to render buffer, if any (0 = none). 
    91                        * The render buffer does not own the texture */
    92     unsigned int buf_id; /* driver-specific buffer id, if applicable */
    93     gboolean flushed; /* True if the buffer has been flushed to vram */
    94 };
    96 /**
    97  * Structure to hold pixel data stored in pvr2 vram, as opposed to data in
    98  * GL buffers.
    99  */
   100 struct frame_buffer {
   101     uint32_t width;
   102     uint32_t height;
   103     uint32_t rowstride;
   104     uint32_t colour_format;
   105     sh4addr_t address;
   106     uint32_t size; /* Size of buffer in bytes, must be width*height*bpp */
   107     gboolean inverted;/* True if the buffer is upside down */
   108     unsigned char *data;
   109 };
   111 struct display_capabilities {
   112     gboolean has_gl;
   113     gboolean has_sl;
   114     int depth_bits;
   115     int stencil_bits; /* 0 = no stencil buffer */
   116 };
   118 struct vertex_buffer {
   119     /**
   120      * Map the buffer into the host address space (if necessary) in preparation
   121      * for filling the buffer. This also implies a fence operation.
   122      * @param buf previously allocated buffer
   123      * @param size number of bytes of the buffer actually to be used. The buffer
   124      * will be resized if necessary.
   125      * @return a pointer to the start of the buffer.
   126      */
   127     void *(*map)(vertex_buffer_t buf, uint32_t size);
   129     /**
   130      * Unmap the buffer, after the vertex data is written.
   131      * @return the buffer base to use for gl*Pointer calls
   132      */
   133     void *(*unmap)(vertex_buffer_t buf);
   135     /**
   136      * Mark the buffer as finished, indicating that the vertex data is no
   137      * longer required (ie rendering is complete).
   138      */
   139     void (*finished)(vertex_buffer_t buf);
   141     /**
   142      * Delete the buffer and all associated resources.
   143      */
   144     void (*destroy)(vertex_buffer_t buf);
   146     /* Private data */
   147     void *data;
   148     GLuint id;
   149     uint32_t capacity;
   150     uint32_t mapped_size;
   151     GLuint fence;
   152 };
   155 /**
   156  * Core video driver - exports function to setup a GL context, as well as handle
   157  * keyboard input and display resultant output.
   158  */
   159 typedef struct display_driver {
   160     char *name;
   161     /**
   162      * Short (<60 chars) description of the driver. This should be marked for
   163      * localization.
   164      */
   165     char *description;
   166     /**
   167      * Initialize the driver. This is called only once at startup time, and
   168      * is guaranteed to be called before any other methods.
   169      * @return TRUE if the driver was successfully initialized, otherwise
   170      * FALSE.
   171      */
   172     gboolean (*init_driver)(void);
   174     /**
   175      * Cleanly shutdown the driver. Normally only called at system shutdown
   176      * time.
   177      */
   178     void (*shutdown_driver)(void);
   180     /**
   181      * Given a particular keysym, return the keycode associated with it.
   182      * @param keysym The keysym to be resolved, ie "Tab"
   183      * @return the display-specific keycode, or 0 if the keysym cannot
   184      * be resolved.
   185      */
   186     uint16_t (*resolve_keysym)( const gchar *keysym );
   188     /**
   189      * Given a native system keycode, convert it to a dreamcast keyboard code.
   190      */
   191     uint16_t (*convert_to_dckeysym)( uint16_t keycode );
   193     /**
   194      * Given a device-specific event code, return the corresponding keysym.
   195      * The string should be newly allocated (caller will free)
   196      */
   197     gchar *(*get_keysym_for_keycode)( uint16_t keycode );
   199     /**
   200      * Create a render target with the given width and height. If a texture ID
   201      * is supplied (non-zero), the render buffer writes its output to that texture.
   202      * @param tex_id 0 or a valid GL texture name which must have been initialized to
   203      * the correct dimensions. 
   204      */
   205     render_buffer_t (*create_render_buffer)( uint32_t width, uint32_t height, GLuint tex_id );
   207     /**
   208      * Destroy the specified render buffer and release any associated
   209      * resources.
   210      */
   211     void (*destroy_render_buffer)( render_buffer_t buffer );
   213     /**
   214      * Set the current rendering target to the specified buffer.
   215      */
   216     gboolean (*set_render_target)( render_buffer_t buffer );
   218     /**
   219      * Complete rendering and clear the current rendering target. If the 
   220      * buffer has a bound texture, it will be updated if necessary.
   221      */
   222     void (*finish_render)( render_buffer_t buffer );
   224     /**
   225      * Load the supplied frame buffer into the given render buffer.
   226      * Included here to allow driver-specific optimizations.
   227      */
   228     void (*load_frame_buffer)( frame_buffer_t frame, render_buffer_t render );
   230     /**
   231      * Display a single frame using a previously rendered GL buffer.
   232      */
   233     void (*display_render_buffer)( render_buffer_t buffer );
   235     /**
   236      * Display a single blanked frame using a fixed colour for the
   237      * entire frame (specified in BGR888 format). 
   238      */
   239     void (*display_blank)( uint32_t rgb );
   241     /**
   242      * Swap front/back window buffers
   243      */
   244     void (*swap_buffers)();
   246     /**
   247      * Copy the image data from the GL buffer to the target memory buffer,
   248      * using the format etc from the buffer. This may force a glFinish()
   249      * but does not invalidate the buffer.
   250      * @param target buffer to fill with image data, which must be large enough
   251      *  to accomodate the image.
   252      * @param buffer Render buffer to read from.
   253      * @param rowstride rowstride of the target data
   254      * @param format colour format to output the data in.
   255      */
   256     gboolean (*read_render_buffer)( unsigned char *target, render_buffer_t buffer,
   257             int rowstride, int format );
   259     /**
   260      * Create a new vertex buffer
   261      */
   262     vertex_buffer_t (*create_vertex_buffer)( );
   264     /**
   265      * Dump driver-specific information about the implementation to the given stream
   266      */
   267     void (*print_info)( FILE *out );
   269     struct display_capabilities capabilities;
   271 } *display_driver_t;
   273 /**
   274  * Print the configured video drivers to the output stream, one to a line.
   275  */
   276 void print_display_drivers( FILE *out );
   277 display_driver_t get_display_driver_by_name( const char *name );
   278 gboolean display_set_driver( display_driver_t driver );
   280 extern uint32_t pvr2_frame_counter;
   282 extern display_driver_t display_driver;
   284 extern struct display_driver display_gtk_driver;
   285 extern struct display_driver display_osx_driver;
   286 extern struct display_driver display_gl_driver;
   287 extern struct display_driver display_egl_driver;
   288 extern struct display_driver display_null_driver;
   290 /****************** Input methods **********************/
   292 #define MAX_MOUSE_BUTTONS 32
   294 /* Pressure is 0..127  (allowing a joystick to be defined as two half-axes of 7- bits each) */
   295 #define MAX_PRESSURE 0x7F
   297 typedef key_binding_t input_key_callback_t;
   299 /**
   300  * Callback to receive mouse input events
   301  * @param data pointer passed in at the time the hook was registered
   302  * @param buttons bitmask of button states, where bit 0 is button 0 (left), bit 1 is button
   303  * 1 (middle), bit 2 is button 2 (right) and so forth.
   304  * @param x Horizontal movement since the last invocation (in relative mode) or window position 
   305  * (in absolute mode).
   306  * @param y Vertical movement since the last invocation (in relative mode) or window position
   307  * (in absolute mode).
   308  * @param absolute If TRUE, x and y are the current window coordinates 
   309  *  of the mouse cursor. Otherwise, x and y are deltas from the previous mouse position.
   310  */
   311 typedef void (*input_mouse_callback_t)( void *data, uint32_t buttons, int32_t x, int32_t y, gboolean absolute );
   313 gboolean input_register_key( const gchar *keysym, input_key_callback_t callback,
   314                              void *data, uint32_t value );
   316 void input_unregister_key( const gchar *keysym, input_key_callback_t callback,
   317                            void *data, uint32_t value );
   319 gboolean input_register_keygroup( lxdream_config_group_t group );
   320 void input_unregister_keygroup( lxdream_config_group_t group );
   321 gboolean input_keygroup_changed( void *data, lxdream_config_group_t group, unsigned key,
   322                              const gchar *oldval, const gchar *newval );
   324 /**
   325  * Register a hook to receive all keyboard input events
   326  */
   327 gboolean input_register_keyboard_hook( input_key_callback_t callback, void *data );
   328 void input_unregister_keyboard_hook( input_key_callback_t callback, void *data );
   330 /**
   331  * Register a mouse event hook.
   332  * @param relative TRUE if the caller wants relative mouse movement, FALSE for
   333  * absolute mouse positioning. It's not generally possible to receive both at the same time.
   334  */
   335 gboolean input_register_mouse_hook( gboolean relative, input_mouse_callback_t callback, void *data );
   336 void input_unregister_mouse_hook( input_mouse_callback_t callback, void *data );
   338 gboolean input_is_key_valid( const gchar *keysym );
   340 gboolean input_is_key_registered( const gchar *keysym );
   342 uint16_t input_keycode_to_dckeysym( uint16_t keycode );
   344 /********************** Display/Input methods ***********************/
   346 /**
   347  * Auxilliary input driver - provides input separate to and in addition to the
   348  * core UI/display. (primarily used for joystick devices)
   349  */
   350 typedef struct input_driver {
   351     const char *id; /* Short identifier to display in the UI for the device (eg "JS0" ) */
   353     /**
   354      * Given a particular keysym, return the keycode associated with it.
   355      * @param keysym The keysym to be resolved, ie "Tab"
   356      * @return the display-specific keycode, or 0 if the keysym cannot
   357      * be resolved.
   358      */
   359     uint16_t (*resolve_keysym)( struct input_driver *driver, const gchar *keysym );
   361     /**
   362      * Given a device-specific event code, convert it to a dreamcast keyboard code.
   363      * This is only required for actual keyboard devices, other devices should just
   364      * leave this method NULL.
   365      */
   366     uint16_t (*convert_to_dckeysym)( struct input_driver *driver, uint16_t keycode );
   368     /**
   369      * Given a device-specific event code, return the corresponding keysym.
   370      * The string should be newly allocated (caller will free)
   371      */
   372     gchar *(*get_keysym_for_keycode)( struct input_driver *driver, uint16_t keycode );
   374     /**
   375      * Destroy the input driver.
   376      */
   377     void (*destroy)( struct input_driver *driver );
   379 } *input_driver_t;       
   381 extern struct input_driver system_mouse_driver;
   383 /**
   384  * Register a new input driver (which must have a unique name)
   385  * @param driver the driver to register
   386  * @param max_keycode the highest possible keycode reported by the device
   387  * @return TRUE on success, FALSE on failure (eg driver already registed).
   388  */
   389 gboolean input_register_device( input_driver_t driver, uint16_t max_keycode );
   391 /**
   392  * Determine if the system has an input driver with the given unique ID.
   393  * @param id driver id to check
   394  * @return TRUE if the device exists, otherwise FALSE
   395  */
   396 gboolean input_has_device( const gchar *id );
   398 /**
   399  * Unregister an input driver.
   400  * @param driver the driver to unregister
   401  * If the driver is not in fact registered, this function has no effect.
   402  */
   403 void input_unregister_device( input_driver_t driver );
   405 /**
   406  * Called from the UI to indicate that the emulation window is focused (ie
   407  * able to receive input). This method is used to gate non-UI input devices -
   408  * when the display is not focused, all input events will be silently ignored.
   409  */
   410 void display_set_focused( gboolean has_focus );
   412 /**
   413  * Fire a keydown event on the specified device
   414  * @param input The input device source generating the event, or NULL for the 
   415  *        default GUI device
   416  * @param keycode The device-specific keycode
   417  * @param pressure The pressure of the key (0 to 127), where 0 is unpressed and
   418  *        127 is maximum pressure. Devices without pressure sensitivity should 
   419  *        always use MAX_PRESSURE (127) 
   420  */
   421 void input_event_keydown( input_driver_t input, uint16_t keycode, uint32_t pressure );
   423 void input_event_keyup( input_driver_t input, uint16_t keycode );
   425 /**
   426  * Receive an input mouse down event. Normally these should be absolute events when
   427  * the mouse is not grabbed, and relative when it is.
   428  * @param button the button pressed, where 0 == first button
   429  * @param x_axis The relative or absolute position of the mouse cursor on the X axis
   430  * @param y_axis The relative or absolute position of the mouse cursor on the Y axis
   431  * @param absolute If TRUE, x_axis and y_axis are the current window coordinates 
   432  *  of the mouse cursor. Otherwise, x_axis and y_axis are deltas from the previous mouse position.
   433  */
   434 void input_event_mousedown( uint16_t button, int32_t x_axis, int32_t y_axis, gboolean absolute );
   436 /**
   437  * Receive an input mouse up event. Normally these should be absolute events when
   438  * the mouse is not grabbed, and relative when it is.
   439  * @param button the button released, where 0 == first button
   440  * @param x_axis The relative or absolute position of the mouse cursor on the X axis
   441  * @param y_axis The relative or absolute position of the mouse cursor on the Y axis
   442  * @param absolute If TRUE, x_axis and y_axis are the current window coordinates 
   443  *  of the mouse cursor. Otherwise, x_axis and y_axis are deltas from the previous mouse position.
   444  */
   445 void input_event_mouseup( uint16_t button, int32_t x_axis, int32_t y_axis, gboolean absolute );
   447 /**
   448  * Receive an input mouse motion event. Normally these should be absolute events when
   449  * the mouse is not grabbed, and relative when it is.
   450  * @param x_axis The relative or absolute position of the mouse cursor on the X axis
   451  * @param y_axis The relative or absolute position of the mouse cursor on the Y axis
   452  * @param absolute If TRUE, x_axis and y_axis are the current window coordinates 
   453  *  of the mouse cursor. Otherwise, x_axis and y_axis are deltas from the previous mouse position.
   454  */
   455 void input_event_mousemove( int32_t x_axis, int32_t y_axis, gboolean absolute );
   457 /**
   458  * Given a keycode and the originating input driver, return the corresponding 
   459  * keysym. The caller is responsible for freeing the string.
   460  * @return a newly allocated string, or NULL of the keycode is unresolvable.
   461  */
   462 gchar *input_keycode_to_keysym( input_driver_t driver, uint16_t keycode );
   464 typedef void (*display_keysym_callback_t)( void *data, const gchar *keysym );
   466 /**
   467  * Set the keysym hook function (normally used by the UI to receive non-UI
   468  * input events during configuration.
   469  */
   470 void input_set_keysym_hook( display_keysym_callback_t hook, void *data );
   474 #ifdef __cplusplus
   475 }
   476 #endif
   477 #endif /* !lxdream_display_H */
.