Search
lxdream.org :: lxdream/src/display.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/display.h
changeset 863:a5e5310061e2
prev850:28782ebbd01d
next1010:a506a2f66180
author nkeynes
date Mon Jan 26 07:26:24 2009 +0000 (15 years ago)
permissions -rw-r--r--
last change Add read_byte_for_write mem function for correct implementation of AND.B and friends
with TLB enabled.
Add read_byte and read_long MMIO stubs to do correct sign extension of IO reads
file annotate diff log raw
nkeynes@144
     1
/**
nkeynes@561
     2
 * $Id$
nkeynes@144
     3
 *
nkeynes@144
     4
 * The PC side of the video support (responsible for actually displaying / 
nkeynes@144
     5
 * rendering frames)
nkeynes@144
     6
 *
nkeynes@144
     7
 * Copyright (c) 2005 Nathan Keynes.
nkeynes@144
     8
 *
nkeynes@144
     9
 * This program is free software; you can redistribute it and/or modify
nkeynes@144
    10
 * it under the terms of the GNU General Public License as published by
nkeynes@144
    11
 * the Free Software Foundation; either version 2 of the License, or
nkeynes@144
    12
 * (at your option) any later version.
nkeynes@144
    13
 *
nkeynes@144
    14
 * This program is distributed in the hope that it will be useful,
nkeynes@144
    15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
nkeynes@144
    16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
nkeynes@144
    17
 * GNU General Public License for more details.
nkeynes@144
    18
 */
nkeynes@144
    19
nkeynes@736
    20
#ifndef lxdream_display_H
nkeynes@736
    21
#define lxdream_display_H 1
nkeynes@144
    22
nkeynes@669
    23
#define GL_GLEXT_PROTOTYPES 1
nkeynes@669
    24
nkeynes@144
    25
#include <stdint.h>
nkeynes@700
    26
#include <stdio.h>
nkeynes@144
    27
#include <glib.h>
nkeynes@540
    28
#include "lxdream.h"
nkeynes@755
    29
#include "gettext.h"
nkeynes@540
    30
#ifdef APPLE_BUILD
nkeynes@540
    31
#include <OpenGL/gl.h>
nkeynes@540
    32
#include <OpenGL/glext.h>
nkeynes@540
    33
#else
nkeynes@327
    34
#include <GL/gl.h>
nkeynes@540
    35
#include <GL/glext.h>
nkeynes@540
    36
#endif
nkeynes@144
    37
nkeynes@144
    38
#ifdef __cplusplus
nkeynes@144
    39
extern "C" {
nkeynes@144
    40
#endif
nkeynes@144
    41
nkeynes@144
    42
/**
nkeynes@477
    43
 * Supported colour formats. Note that BGRA4444 is only ever used for texture
nkeynes@144
    44
 * rendering (it's not valid for display purposes).
nkeynes@144
    45
 */
nkeynes@477
    46
#define COLFMT_BGRA1555  0
nkeynes@144
    47
#define COLFMT_RGB565    1
nkeynes@477
    48
#define COLFMT_BGRA4444  2
nkeynes@144
    49
#define COLFMT_YUV422    3 /* 8-bit YUV (texture source only) */
nkeynes@477
    50
#define COLFMT_BGR888    4 /* 24-bit BGR */
nkeynes@477
    51
#define COLFMT_BGRA8888  5
nkeynes@144
    52
#define COLFMT_INDEX4    6 /* 4 bit indexed colour (texture source only) */
nkeynes@144
    53
#define COLFMT_INDEX8    7 /* 8-bit indexed colour (texture source only) */
nkeynes@477
    54
#define COLFMT_BGR0888   8 /* 32-bit BGR */
nkeynes@477
    55
#define COLFMT_RGB888    9 /* 24-bit RGB (ie GL native) */
nkeynes@327
    56
nkeynes@850
    57
/**
nkeynes@850
    58
 * The standard display size (for the purposes of mouse inputs, etc, is 640x480 -
nkeynes@850
    59
 * events should be adjusted accordingly if this is not the actual window size.
nkeynes@850
    60
 */ 
nkeynes@850
    61
#define DISPLAY_WIDTH 640
nkeynes@850
    62
#define DISPLAY_HEIGHT 480
nkeynes@850
    63
    
nkeynes@327
    64
struct colour_format {
nkeynes@327
    65
    GLint type, format, int_format;
nkeynes@327
    66
    int bpp;
nkeynes@327
    67
};
nkeynes@327
    68
extern struct colour_format colour_formats[];
nkeynes@144
    69
nkeynes@162
    70
extern int colour_format_bytes[];
nkeynes@162
    71
nkeynes@352
    72
/**
nkeynes@352
    73
 * Structure to hold pixel data held in GL buffers.
nkeynes@352
    74
 */
nkeynes@477
    75
struct render_buffer {
nkeynes@352
    76
    uint32_t width;
nkeynes@352
    77
    uint32_t height;
nkeynes@144
    78
    uint32_t rowstride;
nkeynes@674
    79
    uint32_t colour_format;
nkeynes@352
    80
    sh4addr_t address; /* Address buffer was rendered to, or -1 for unrendered */
nkeynes@352
    81
    uint32_t size; /* Size of buffer in bytes, must be width*height*bpp */
nkeynes@477
    82
    gboolean inverted;/* True if the buffer is upside down */
nkeynes@674
    83
    uint32_t scale;
nkeynes@805
    84
    GLuint tex_id;    /* texture bound to render buffer, if any (0 = none). 
nkeynes@805
    85
                       * The render buffer does not own the texture */
nkeynes@424
    86
    unsigned int buf_id; /* driver-specific buffer id, if applicable */
nkeynes@352
    87
    gboolean flushed; /* True if the buffer has been flushed to vram */
nkeynes@477
    88
};
nkeynes@144
    89
nkeynes@144
    90
/**
nkeynes@352
    91
 * Structure to hold pixel data stored in pvr2 vram, as opposed to data in
nkeynes@352
    92
 * GL buffers.
nkeynes@352
    93
 */
nkeynes@477
    94
struct frame_buffer {
nkeynes@352
    95
    uint32_t width;
nkeynes@352
    96
    uint32_t height;
nkeynes@352
    97
    uint32_t rowstride;
nkeynes@674
    98
    uint32_t colour_format;
nkeynes@352
    99
    sh4addr_t address;
nkeynes@352
   100
    uint32_t size; /* Size of buffer in bytes, must be width*height*bpp */
nkeynes@477
   101
    gboolean inverted;/* True if the buffer is upside down */
nkeynes@502
   102
    unsigned char *data;
nkeynes@477
   103
};
nkeynes@352
   104
nkeynes@863
   105
struct display_capabilities {
nkeynes@863
   106
    int stencil_bits; /* 0 = no stencil buffer */
nkeynes@863
   107
};
nkeynes@863
   108
nkeynes@352
   109
/**
nkeynes@352
   110
 * Core video driver - exports function to setup a GL context, as well as handle
nkeynes@352
   111
 * keyboard input and display resultant output.
nkeynes@144
   112
 */
nkeynes@144
   113
typedef struct display_driver {
nkeynes@144
   114
    char *name;
nkeynes@144
   115
    /**
nkeynes@700
   116
     * Short (<60 chars) description of the driver. This should be marked for
nkeynes@700
   117
     * localization.
nkeynes@700
   118
     */
nkeynes@700
   119
    char *description;
nkeynes@700
   120
    /**
nkeynes@144
   121
     * Initialize the driver. This is called only once at startup time, and
nkeynes@144
   122
     * is guaranteed to be called before any other methods.
nkeynes@144
   123
     * @return TRUE if the driver was successfully initialized, otherwise
nkeynes@144
   124
     * FALSE.
nkeynes@144
   125
     */
nkeynes@144
   126
    gboolean (*init_driver)(void);
nkeynes@144
   127
nkeynes@144
   128
    /**
nkeynes@144
   129
     * Cleanly shutdown the driver. Normally only called at system shutdown
nkeynes@144
   130
     * time.
nkeynes@144
   131
     */
nkeynes@144
   132
    void (*shutdown_driver)(void);
nkeynes@144
   133
nkeynes@144
   134
    /**
nkeynes@144
   135
     * Given a particular keysym, return the keycode associated with it.
nkeynes@144
   136
     * @param keysym The keysym to be resolved, ie "Tab"
nkeynes@144
   137
     * @return the display-specific keycode, or 0 if the keysym cannot
nkeynes@144
   138
     * be resolved.
nkeynes@144
   139
     */
nkeynes@144
   140
    uint16_t (*resolve_keysym)( const gchar *keysym );
nkeynes@144
   141
nkeynes@144
   142
    /**
nkeynes@608
   143
     * Given a native system keycode, convert it to a dreamcast keyboard code.
nkeynes@608
   144
     */
nkeynes@608
   145
    uint16_t (*convert_to_dckeysym)( uint16_t keycode );
nkeynes@608
   146
nkeynes@608
   147
    /**
nkeynes@614
   148
     * Given a device-specific event code, return the corresponding keysym.
nkeynes@614
   149
     * The string should be newly allocated (caller will free)
nkeynes@614
   150
     */
nkeynes@614
   151
    gchar *(*get_keysym_for_keycode)( uint16_t keycode );
nkeynes@614
   152
nkeynes@614
   153
    /**
nkeynes@805
   154
     * Create a render target with the given width and height. If a texture ID
nkeynes@805
   155
     * is supplied (non-zero), the render buffer writes its output to that texture.
nkeynes@805
   156
     * @param tex_id 0 or a valid GL texture name which must have been initialized to
nkeynes@805
   157
     * the correct dimensions. 
nkeynes@144
   158
     */
nkeynes@805
   159
    render_buffer_t (*create_render_buffer)( uint32_t width, uint32_t height, GLuint tex_id );
nkeynes@144
   160
nkeynes@144
   161
    /**
nkeynes@352
   162
     * Destroy the specified render buffer and release any associated
nkeynes@352
   163
     * resources.
nkeynes@144
   164
     */
nkeynes@352
   165
    void (*destroy_render_buffer)( render_buffer_t buffer );
nkeynes@352
   166
nkeynes@144
   167
    /**
nkeynes@352
   168
     * Set the current rendering target to the specified buffer.
nkeynes@144
   169
     */
nkeynes@352
   170
    gboolean (*set_render_target)( render_buffer_t buffer );
nkeynes@352
   171
nkeynes@352
   172
    /**
nkeynes@805
   173
     * Complete rendering and clear the current rendering target. If the 
nkeynes@805
   174
     * buffer has a bound texture, it will be updated if necessary.
nkeynes@805
   175
     */
nkeynes@805
   176
    void (*finish_render)( render_buffer_t buffer );
nkeynes@805
   177
    
nkeynes@805
   178
    /**
nkeynes@477
   179
     * Load the supplied frame buffer into the given render buffer.
nkeynes@477
   180
     * Included here to allow driver-specific optimizations.
nkeynes@352
   181
     */
nkeynes@477
   182
    void (*load_frame_buffer)( frame_buffer_t frame, render_buffer_t render );
nkeynes@352
   183
nkeynes@352
   184
    /**
nkeynes@352
   185
     * Display a single frame using a previously rendered GL buffer.
nkeynes@352
   186
     */
nkeynes@669
   187
    void (*display_render_buffer)( render_buffer_t buffer );
nkeynes@144
   188
nkeynes@144
   189
    /**
nkeynes@144
   190
     * Display a single blanked frame using a fixed colour for the
nkeynes@477
   191
     * entire frame (specified in BGR888 format). 
nkeynes@144
   192
     */
nkeynes@669
   193
    void (*display_blank)( uint32_t rgb );
nkeynes@144
   194
nkeynes@144
   195
    /**
nkeynes@352
   196
     * Copy the image data from the GL buffer to the target memory buffer,
nkeynes@352
   197
     * using the format etc from the buffer. This may force a glFinish()
nkeynes@352
   198
     * but does not invalidate the buffer.
nkeynes@477
   199
     * @param target buffer to fill with image data, which must be large enough
nkeynes@477
   200
     *  to accomodate the image.
nkeynes@477
   201
     * @param buffer Render buffer to read from.
nkeynes@477
   202
     * @param rowstride rowstride of the target data
nkeynes@477
   203
     * @param format colour format to output the data in.
nkeynes@144
   204
     */
nkeynes@477
   205
    gboolean (*read_render_buffer)( unsigned char *target, render_buffer_t buffer,
nkeynes@736
   206
            int rowstride, int format );
nkeynes@352
   207
nkeynes@863
   208
    struct display_capabilities capabilities;
nkeynes@144
   209
} *display_driver_t;
nkeynes@144
   210
nkeynes@700
   211
/**
nkeynes@700
   212
 * Print the configured video drivers to the output stream, one to a line.
nkeynes@700
   213
 */
nkeynes@700
   214
void print_display_drivers( FILE *out );
nkeynes@531
   215
display_driver_t get_display_driver_by_name( const char *name );
nkeynes@370
   216
gboolean display_set_driver( display_driver_t driver );
nkeynes@144
   217
nkeynes@144
   218
extern uint32_t pvr2_frame_counter;
nkeynes@144
   219
nkeynes@144
   220
extern display_driver_t display_driver;
nkeynes@144
   221
nkeynes@144
   222
extern struct display_driver display_gtk_driver;
nkeynes@681
   223
extern struct display_driver display_osx_driver;
nkeynes@144
   224
extern struct display_driver display_null_driver;
nkeynes@144
   225
nkeynes@144
   226
/****************** Input methods **********************/
nkeynes@144
   227
nkeynes@849
   228
#define MAX_MOUSE_BUTTONS 32
nkeynes@849
   229
nkeynes@614
   230
typedef void (*input_key_callback_t)( void *data, uint32_t value, uint32_t pressure, gboolean isKeyDown );
nkeynes@144
   231
nkeynes@608
   232
/**
nkeynes@608
   233
 * Callback to receive mouse input events
nkeynes@608
   234
 * @param data pointer passed in at the time the hook was registered
nkeynes@608
   235
 * @param buttons bitmask of button states, where bit 0 is button 0 (left), bit 1 is button
nkeynes@608
   236
 * 1 (middle), bit 2 is button 2 (right) and so forth.
nkeynes@608
   237
 * @param x Horizontal movement since the last invocation (in relative mode) or window position 
nkeynes@608
   238
 * (in absolute mode).
nkeynes@608
   239
 * @param y Vertical movement since the last invocation (in relative mode) or window position
nkeynes@608
   240
 * (in absolute mode).
nkeynes@839
   241
 * @param absolute If TRUE, x and y are the current window coordinates 
nkeynes@839
   242
 *  of the mouse cursor. Otherwise, x and y are deltas from the previous mouse position.
nkeynes@608
   243
 */
nkeynes@839
   244
typedef void (*input_mouse_callback_t)( void *data, uint32_t buttons, int32_t x, int32_t y, gboolean absolute );
nkeynes@608
   245
nkeynes@144
   246
gboolean input_register_key( const gchar *keysym, input_key_callback_t callback,
nkeynes@736
   247
                             void *data, uint32_t value );
nkeynes@144
   248
nkeynes@451
   249
void input_unregister_key( const gchar *keysym, input_key_callback_t callback,
nkeynes@736
   250
                           void *data, uint32_t value );
nkeynes@144
   251
nkeynes@608
   252
/**
nkeynes@849
   253
 * Register a hook to receive all keyboard input events
nkeynes@608
   254
 */
nkeynes@849
   255
gboolean input_register_keyboard_hook( input_key_callback_t callback, void *data );
nkeynes@849
   256
void input_unregister_keyboard_hook( input_key_callback_t callback, void *data );
nkeynes@608
   257
nkeynes@608
   258
/**
nkeynes@608
   259
 * Register a mouse event hook.
nkeynes@608
   260
 * @param relative TRUE if the caller wants relative mouse movement, FALSE for
nkeynes@608
   261
 * absolute mouse positioning. It's not generally possible to receive both at the same time.
nkeynes@608
   262
 */
nkeynes@608
   263
gboolean input_register_mouse_hook( gboolean relative, input_mouse_callback_t callback, void *data );
nkeynes@608
   264
void input_unregister_mouse_hook( input_mouse_callback_t callback, void *data );
nkeynes@608
   265
nkeynes@144
   266
gboolean input_is_key_valid( const gchar *keysym );
nkeynes@144
   267
nkeynes@144
   268
gboolean input_is_key_registered( const gchar *keysym );
nkeynes@144
   269
nkeynes@614
   270
uint16_t input_keycode_to_dckeysym( uint16_t keycode );
nkeynes@144
   271
nkeynes@614
   272
/********************** Display/Input methods ***********************/
nkeynes@614
   273
nkeynes@614
   274
/**
nkeynes@614
   275
 * Auxilliary input driver - provides input separate to and in addition to the
nkeynes@614
   276
 * core UI/display. (primarily used for joystick devices)
nkeynes@614
   277
 */
nkeynes@614
   278
typedef struct input_driver {
nkeynes@614
   279
    const char *id; /* Short identifier to display in the UI for the device (eg "JS0" ) */
nkeynes@614
   280
nkeynes@614
   281
    /**
nkeynes@614
   282
     * Given a particular keysym, return the keycode associated with it.
nkeynes@614
   283
     * @param keysym The keysym to be resolved, ie "Tab"
nkeynes@614
   284
     * @return the display-specific keycode, or 0 if the keysym cannot
nkeynes@614
   285
     * be resolved.
nkeynes@614
   286
     */
nkeynes@614
   287
    uint16_t (*resolve_keysym)( struct input_driver *driver, const gchar *keysym );
nkeynes@614
   288
nkeynes@614
   289
    /**
nkeynes@614
   290
     * Given a device-specific event code, convert it to a dreamcast keyboard code.
nkeynes@614
   291
     * This is only required for actual keyboard devices, other devices should just
nkeynes@614
   292
     * leave this method NULL.
nkeynes@614
   293
     */
nkeynes@614
   294
    uint16_t (*convert_to_dckeysym)( struct input_driver *driver, uint16_t keycode );
nkeynes@614
   295
nkeynes@614
   296
    /**
nkeynes@614
   297
     * Given a device-specific event code, return the corresponding keysym.
nkeynes@614
   298
     * The string should be newly allocated (caller will free)
nkeynes@614
   299
     */
nkeynes@614
   300
    gchar *(*get_keysym_for_keycode)( struct input_driver *driver, uint16_t keycode );
nkeynes@614
   301
nkeynes@614
   302
    /**
nkeynes@614
   303
     * Destroy the input driver.
nkeynes@614
   304
     */
nkeynes@614
   305
    void (*destroy)( struct input_driver *driver );
nkeynes@614
   306
nkeynes@614
   307
} *input_driver_t;       
nkeynes@614
   308
nkeynes@849
   309
extern struct input_driver system_mouse_driver;
nkeynes@849
   310
nkeynes@614
   311
/**
nkeynes@614
   312
 * Register a new input driver (which must have a unique name)
nkeynes@614
   313
 * @param driver the driver to register
nkeynes@614
   314
 * @param max_keycode the highest possible keycode reported by the device
nkeynes@614
   315
 * @return TRUE on success, FALSE on failure (eg driver already registed).
nkeynes@614
   316
 */
nkeynes@614
   317
gboolean input_register_device( input_driver_t driver, uint16_t max_keycode );
nkeynes@614
   318
nkeynes@614
   319
/**
nkeynes@615
   320
 * Determine if the system has an input driver with the given unique ID.
nkeynes@615
   321
 * @param id driver id to check
nkeynes@615
   322
 * @return TRUE if the device exists, otherwise FALSE
nkeynes@615
   323
 */
nkeynes@615
   324
gboolean input_has_device( const gchar *id );
nkeynes@615
   325
nkeynes@615
   326
/**
nkeynes@614
   327
 * Unregister an input driver.
nkeynes@614
   328
 * @param driver the driver to unregister
nkeynes@614
   329
 * If the driver is not in fact registered, this function has no effect.
nkeynes@614
   330
 */
nkeynes@614
   331
void input_unregister_device( input_driver_t driver );
nkeynes@614
   332
nkeynes@614
   333
/**
nkeynes@614
   334
 * Called from the UI to indicate that the emulation window is focused (ie
nkeynes@614
   335
 * able to receive input). This method is used to gate non-UI input devices -
nkeynes@614
   336
 * when the display is not focused, all input events will be silently ignored.
nkeynes@614
   337
 */
nkeynes@614
   338
void display_set_focused( gboolean has_focus );
nkeynes@614
   339
nkeynes@614
   340
void input_event_keydown( input_driver_t input, uint16_t keycode, uint32_t pressure );
nkeynes@614
   341
nkeynes@614
   342
void input_event_keyup( input_driver_t input, uint16_t keycode, uint32_t pressure );
nkeynes@144
   343
nkeynes@839
   344
/**
nkeynes@849
   345
 * Receive an input mouse down event. Normally these should be absolute events when
nkeynes@839
   346
 * the mouse is not grabbed, and relative when it is.
nkeynes@849
   347
 * @param button the button pressed, where 0 == first button
nkeynes@839
   348
 * @param x_axis The relative or absolute position of the mouse cursor on the X axis
nkeynes@839
   349
 * @param y_axis The relative or absolute position of the mouse cursor on the Y axis
nkeynes@839
   350
 * @param absolute If TRUE, x_axis and y_axis are the current window coordinates 
nkeynes@839
   351
 *  of the mouse cursor. Otherwise, x_axis and y_axis are deltas from the previous mouse position.
nkeynes@839
   352
 */
nkeynes@849
   353
void input_event_mousedown( uint16_t button, int32_t x_axis, int32_t y_axis, gboolean absolute );
nkeynes@849
   354
nkeynes@849
   355
/**
nkeynes@849
   356
 * Receive an input mouse up event. Normally these should be absolute events when
nkeynes@849
   357
 * the mouse is not grabbed, and relative when it is.
nkeynes@849
   358
 * @param button the button released, where 0 == first button
nkeynes@849
   359
 * @param x_axis The relative or absolute position of the mouse cursor on the X axis
nkeynes@849
   360
 * @param y_axis The relative or absolute position of the mouse cursor on the Y axis
nkeynes@849
   361
 * @param absolute If TRUE, x_axis and y_axis are the current window coordinates 
nkeynes@849
   362
 *  of the mouse cursor. Otherwise, x_axis and y_axis are deltas from the previous mouse position.
nkeynes@849
   363
 */
nkeynes@849
   364
void input_event_mouseup( uint16_t button, int32_t x_axis, int32_t y_axis, gboolean absolute );
nkeynes@849
   365
nkeynes@849
   366
/**
nkeynes@849
   367
 * Receive an input mouse motion event. Normally these should be absolute events when
nkeynes@849
   368
 * the mouse is not grabbed, and relative when it is.
nkeynes@849
   369
 * @param x_axis The relative or absolute position of the mouse cursor on the X axis
nkeynes@849
   370
 * @param y_axis The relative or absolute position of the mouse cursor on the Y axis
nkeynes@849
   371
 * @param absolute If TRUE, x_axis and y_axis are the current window coordinates 
nkeynes@849
   372
 *  of the mouse cursor. Otherwise, x_axis and y_axis are deltas from the previous mouse position.
nkeynes@849
   373
 */
nkeynes@849
   374
void input_event_mousemove( int32_t x_axis, int32_t y_axis, gboolean absolute );
nkeynes@144
   375
nkeynes@770
   376
/**
nkeynes@770
   377
 * Given a keycode and the originating input driver, return the corresponding 
nkeynes@770
   378
 * keysym. The caller is responsible for freeing the string.
nkeynes@770
   379
 * @return a newly allocated string, or NULL of the keycode is unresolvable.
nkeynes@770
   380
 */
nkeynes@770
   381
gchar *input_keycode_to_keysym( input_driver_t driver, uint16_t keycode );
nkeynes@614
   382
nkeynes@614
   383
typedef void (*display_keysym_callback_t)( void *data, const gchar *keysym );
nkeynes@614
   384
nkeynes@614
   385
/**
nkeynes@614
   386
 * Set the keysym hook function (normally used by the UI to receive non-UI
nkeynes@614
   387
 * input events during configuration.
nkeynes@614
   388
 */
nkeynes@614
   389
void input_set_keysym_hook( display_keysym_callback_t hook, void *data );
nkeynes@614
   390
nkeynes@614
   391
nkeynes@144
   392
nkeynes@144
   393
#ifdef __cplusplus
nkeynes@144
   394
}
nkeynes@144
   395
#endif
nkeynes@736
   396
#endif /* !lxdream_display_H */
.