Search
lxdream.org :: lxdream/src/pvr2/render.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/pvr2/render.c
changeset 219:dfd3292143f2
prev191:df4441cf3128
next221:cf5c6d326162
author nkeynes
date Tue Aug 29 08:12:13 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change Initial implementation of new background support
view annotate diff log raw
     1 /**
     2  * $Id: render.c,v 1.13 2006-08-29 08:12:13 nkeynes Exp $
     3  *
     4  * PVR2 Renderer support. This part is primarily
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #include "pvr2/pvr2.h"
    20 #include "asic.h"
    22 static int pvr2_render_colour_format[8] = {
    23     COLFMT_ARGB1555, COLFMT_RGB565, COLFMT_ARGB4444, COLFMT_ARGB1555,
    24     COLFMT_RGB888, COLFMT_ARGB8888, COLFMT_ARGB8888, COLFMT_ARGB4444 };
    27 /**
    28  * Describes a rendering buffer that's actually held in GL, for when we need
    29  * to fetch the bits back to vram.
    30  */
    31 typedef struct pvr2_render_buffer {
    32     sh4addr_t render_addr; /* The actual address rendered to in pvr ram */
    33     uint32_t size; /* Length of rendering region in bytes */
    34     int width, height;
    35     int colour_format;
    36 } *pvr2_render_buffer_t;
    38 struct pvr2_render_buffer front_buffer;
    39 struct pvr2_render_buffer back_buffer;
    41 typedef struct pvr2_bgplane_packed {
    42         uint32_t        poly_cfg, poly_mode;
    43         uint32_t        texture_mode;
    44         float           x1, y1, z1;
    45         uint32_t          colour1;
    46         float           x2, y2, z2;
    47         uint32_t          colour2;
    48         float           x3, y3, z3;
    49         uint32_t          colour3;
    50 } *pvr2_bgplane_packed_t;
    54 void pvr2_render_copy_to_sh4( pvr2_render_buffer_t buffer, 
    55 			      gboolean backBuffer );
    57 int pvr2_render_font_list = -1;
    58 int pvr2_render_trace = 0;
    60 int glPrintf( int x, int y, const char *fmt, ... )
    61 {
    62     va_list ap;     /* our argument pointer */
    63     char buf[256];
    64     int len;
    65     if (fmt == NULL)    /* if there is no string to draw do nothing */
    66         return;
    67     va_start(ap, fmt); 
    68     len = vsnprintf(buf, sizeof(buf), fmt, ap);
    69     va_end(ap);
    72     glPushAttrib(GL_LIST_BIT);
    73     glDisable( GL_DEPTH_TEST );
    74     glDisable( GL_BLEND );
    75     glDisable( GL_TEXTURE_2D );
    76     glDisable( GL_ALPHA_TEST );
    77     glDisable( GL_CULL_FACE );
    78     glListBase(pvr2_render_font_list - 32);
    79     glColor3f( 1.0, 1.0, 1.0 );
    80     glRasterPos2i( x, y );
    81     glCallLists(len, GL_UNSIGNED_BYTE, buf);
    82     glPopAttrib();
    84     return len;
    85 }
    87 void glDrawGrid( int width, int height )
    88 {
    89     int i;
    90     glDisable( GL_DEPTH_TEST );
    91     glLineWidth(1);
    93     glBegin( GL_LINES );
    94     glColor4f( 1.0, 1.0, 1.0, 1.0 );
    95     for( i=32; i<width; i+=32 ) {
    96 	glVertex3f( i, 0.0, 3.0 );
    97 	glVertex3f( i,height-1, 3.0 );
    98     }
   100     for( i=32; i<height; i+=32 ) {
   101 	glVertex3f( 0.0, i, 3.0 );
   102 	glVertex3f( width, i, 3.0 );
   103     }
   104     glEnd();
   106 }
   109 gboolean pvr2_render_init( void )
   110 {
   111     front_buffer.render_addr = -1;
   112     back_buffer.render_addr = -1;
   113 }
   115 /**
   116  * Invalidate any caching on the supplied address. Specifically, if it falls
   117  * within either the front buffer or back buffer, flush the buffer back to
   118  * PVR2 ram (note that front buffer flush may be corrupt under some
   119  * circumstances).
   120  */
   121 gboolean pvr2_render_invalidate( sh4addr_t address )
   122 {
   123     address = address & 0x1FFFFFFF;
   124     if( front_buffer.render_addr != -1 &&
   125 	front_buffer.render_addr <= address &&
   126 	(front_buffer.render_addr + front_buffer.size) > address ) {
   127 	pvr2_render_copy_to_sh4( &front_buffer, FALSE );
   128 	front_buffer.render_addr = -1;
   129 	return TRUE;
   130     } else if( back_buffer.render_addr != -1 &&
   131 	       back_buffer.render_addr <= address &&
   132 	       (back_buffer.render_addr + back_buffer.size) > address ) {
   133 	pvr2_render_copy_to_sh4( &back_buffer, TRUE );
   134 	back_buffer.render_addr = -1;
   135 	return TRUE;
   136     }
   137     return FALSE;
   138 }
   140 /**
   141  * Display a rendered frame if one is available.
   142  * @param address An address in PVR ram (0500000 range).
   143  * @return TRUE if a frame was available to be displayed, otherwise false.
   144  */
   145 gboolean pvr2_render_display_frame( uint32_t address )
   146 {
   147     if( front_buffer.render_addr == address ) {
   148 	/* Current front buffer is already displayed, so do nothing
   149 	 * and tell the caller that all is well.
   150 	 */
   151 	return TRUE;
   152     }
   153     if( back_buffer.render_addr == address ) {
   154 	/* The more useful case - back buffer is to be displayed. Swap
   155 	 * the buffers 
   156 	 */
   157 	display_driver->display_back_buffer();
   158 	front_buffer = back_buffer;
   159 	back_buffer.render_addr = -1;
   160 	return TRUE;
   161     }
   162     return FALSE;
   163 }	
   165 /**
   166  * Prepare the OpenGL context to receive instructions for a new frame.
   167  */
   168 static void pvr2_render_prepare_context( sh4addr_t render_addr, 
   169 					 uint32_t width, uint32_t height,
   170 					 uint32_t colour_format, 
   171 					 float bgplanez,
   172 					 gboolean texture_target )
   173 {
   174     /* Select and initialize the render context */
   175     display_driver->set_render_format( width, height, colour_format, texture_target );
   177     if( pvr2_render_font_list == -1 ) {
   178 	pvr2_render_font_list = video_glx_load_font( "-*-helvetica-*-r-normal--16-*-*-*-p-*-iso8859-1");
   179     }
   181     if( back_buffer.render_addr != -1 && 
   182 	back_buffer.render_addr != render_addr ) {
   183 	/* There's a current back buffer, and we're rendering somewhere else -
   184 	 * flush the back buffer back to vram and start a new back buffer
   185 	 */
   186 	pvr2_render_copy_to_sh4( &back_buffer, TRUE );
   187     }
   189     if( front_buffer.render_addr == render_addr ) {
   190 	/* In case we've been asked to render to the current front buffer -
   191 	 * invalidate the front buffer and render to the back buffer, ensuring
   192 	 * we swap at the next frame display.
   193 	 */
   194 	front_buffer.render_addr = -1;
   195     }
   196     back_buffer.render_addr = render_addr;
   197     back_buffer.width = width;
   198     back_buffer.height = height;
   199     back_buffer.colour_format = colour_format;
   200     back_buffer.size = width * height * colour_format_bytes[colour_format];
   202     /* Setup the display model */
   203     glDrawBuffer(GL_BACK);
   204     glShadeModel(GL_SMOOTH);
   205     glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
   206     glViewport( 0, 0, width, height );
   207     glMatrixMode(GL_PROJECTION);
   208     glLoadIdentity();
   209     glOrtho( 0, width, height, 0, bgplanez, -4 );
   210     glMatrixMode(GL_MODELVIEW);
   211     glLoadIdentity();
   212     glCullFace( GL_BACK );
   214     /* Clear out the buffers */
   215     glDisable( GL_SCISSOR_TEST );
   216     glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
   217     glClearDepth(bgplanez);
   218     glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );
   219 }
   222 #define MIN3( a,b,c ) ((a) < (b) ? ( (a) < (c) ? (a) : (c) ) : ((b) < (c) ? (b) : (c)) )
   223 #define MAX3( a,b,c ) ((a) > (b) ? ( (a) > (c) ? (a) : (c) ) : ((b) > (c) ? (b) : (c)) )
   225 /**
   226  * Render a complete scene into the OpenGL back buffer.
   227  * Note: this will probably need to be broken up eventually once timings are
   228  * determined.
   229  */
   230 void pvr2_render_scene( )
   231 {
   232     struct tile_descriptor *tile_desc =
   233 	(struct tile_descriptor *)mem_get_region(PVR2_RAM_BASE + MMIO_READ( PVR2, RENDER_TILEBASE ));
   235     uint32_t render_addr = MMIO_READ( PVR2, RENDER_ADDR1 );
   236     gboolean render_to_tex;
   237     if( render_addr & 0x01000000 ) {
   238 	render_addr = (render_addr & 0x00FFFFFF) + PVR2_RAM_BASE_INT;
   239 	/* Heuristic - if we're rendering to the interlaced region we're
   240 	 * probably creating a texture rather than rendering actual output.
   241 	 * We can optimise for this case a little
   242 	 */
   243 	render_to_tex = TRUE;
   244 	WARN( "Render to texture not supported properly yet" );
   245     } else {
   246 	render_addr = (render_addr & 0x00FFFFFF) + PVR2_RAM_BASE;
   247 	render_to_tex = FALSE;
   248     }
   250     float bgplanez = MMIO_READF( PVR2, RENDER_FARCLIP );
   251     uint32_t render_mode = MMIO_READ( PVR2, RENDER_MODE );
   252     int width = 640; /* FIXME - get this from the tile buffer */
   253     int height = 480;
   254     int colour_format = pvr2_render_colour_format[render_mode&0x07];
   255     pvr2_render_prepare_context( render_addr, width, height, colour_format, 
   256 				 bgplanez, render_to_tex );
   258     int clip_x = MMIO_READ( PVR2, RENDER_HCLIP ) & 0x03FF;
   259     int clip_y = MMIO_READ( PVR2, RENDER_VCLIP ) & 0x03FF;
   260     int clip_width = ((MMIO_READ( PVR2, RENDER_HCLIP ) >> 16) & 0x03FF) - clip_x + 1;
   261     int clip_height= ((MMIO_READ( PVR2, RENDER_VCLIP ) >> 16) & 0x03FF) - clip_y + 1;
   263     /* Fog setup goes here */
   265     /* Render the background plane */
   266     uint32_t bgplane_mode = MMIO_READ(PVR2, RENDER_BGPLANE);
   267     uint32_t *display_list = 
   268 	(uint32_t *)mem_get_region(PVR2_RAM_BASE + MMIO_READ( PVR2, RENDER_POLYBASE ));
   270     uint32_t *bgplane = display_list + (((bgplane_mode & 0x00FFFFFF)) >> 3) ;
   271     render_backplane( bgplane, width, height, bgplane_mode );
   273     pvr2_render_tilebuffer( width, height, clip_x, clip_y, 
   274 			    clip_x + clip_width, clip_y + clip_height );
   276     /* Post-render cleanup and update */
   278     /* Add frame, fps, etc data */
   279     //glDrawGrid( width, height );
   280     glPrintf( 4, 16, "Frame %d", pvr2_get_frame_count() );
   281     /* Generate end of render event */
   282     asic_event( EVENT_PVR_RENDER_DONE );
   283     DEBUG( "Rendered frame %d", pvr2_get_frame_count() );
   284 }
   287 /**
   288  * Flush the indicated render buffer back to PVR. Caller is responsible for
   289  * tracking whether there is actually anything in the buffer.
   290  *
   291  * @param buffer A render buffer indicating the address to store to, and the
   292  * format the data needs to be in.
   293  * @param backBuffer TRUE to flush the back buffer, FALSE for 
   294  * the front buffer.
   295  */
   296 void pvr2_render_copy_to_sh4( pvr2_render_buffer_t buffer, 
   297 			      gboolean backBuffer )
   298 {
   299     if( buffer->render_addr == -1 )
   300 	return;
   301     GLenum type, format = GL_RGBA;
   302     int line_size = buffer->width, size;
   304     switch( buffer->colour_format ) {
   305     case COLFMT_RGB565: 
   306 	type = GL_UNSIGNED_SHORT_5_6_5; 
   307 	format = GL_RGB; 
   308 	line_size <<= 1;
   309 	break;
   310     case COLFMT_RGB888: 
   311 	type = GL_UNSIGNED_INT; 
   312 	format = GL_RGB;
   313 	line_size = (line_size<<1)+line_size;
   314 	break;
   315     case COLFMT_ARGB1555: 
   316 	type = GL_UNSIGNED_SHORT_5_5_5_1; 
   317 	line_size <<= 1;
   318 	break;
   319     case COLFMT_ARGB4444: 
   320 	type = GL_UNSIGNED_SHORT_4_4_4_4; 
   321 	line_size <<= 1;
   322 	break;
   323     case COLFMT_ARGB8888: 
   324 	type = GL_UNSIGNED_INT_8_8_8_8; 
   325 	line_size <<= 2;
   326 	break;
   327     }
   328     size = line_size * buffer->height;
   330     if( backBuffer ) {
   331 	glFinish();
   332 	glReadBuffer( GL_BACK );
   333     } else {
   334 	glReadBuffer( GL_FRONT );
   335     }
   337     if( buffer->render_addr & 0xFF000000 == 0x04000000 ) {
   338 	/* Interlaced buffer. Go the double copy... :( */
   339 	char target[size];
   340 	glReadPixels( 0, 0, buffer->width, buffer->height, format, type, target );
   341 	pvr2_vram64_write( buffer->render_addr, target, size );
   342     } else {
   343 	/* Regular buffer */
   344 	char target[size];
   345 	glReadPixels( 0, 0, buffer->width, buffer->height, format, type, target );
   346 	pvr2_vram_write_invert( buffer->render_addr, target, size, line_size );
   347     }
   348 }
   351 /**
   352  * Copy data from PVR ram into the GL render buffer. 
   353  *
   354  * @param buffer A render buffer indicating the address to read from, and the
   355  * format the data is in.
   356  * @param backBuffer TRUE to write the back buffer, FALSE for 
   357  * the front buffer.
   358  */
   359 void pvr2_render_copy_from_sh4( pvr2_render_buffer_t buffer, 
   360 				gboolean backBuffer )
   361 {
   362     if( buffer->render_addr == -1 )
   363 	return;
   364     GLenum type, format = GL_RGBA;
   365     int size = buffer->width * buffer->height;
   367     switch( buffer->colour_format ) {
   368     case COLFMT_RGB565: 
   369 	type = GL_UNSIGNED_SHORT_5_6_5; 
   370 	format = GL_RGB; 
   371 	size <<= 1;
   372 	break;
   373     case COLFMT_RGB888: 
   374 	type = GL_UNSIGNED_INT; 
   375 	format = GL_RGB;
   376 	size = (size<<1)+size;
   377 	break;
   378     case COLFMT_ARGB1555: 
   379 	type = GL_UNSIGNED_SHORT_5_5_5_1; 
   380 	size <<= 1;
   381 	break;
   382     case COLFMT_ARGB4444: 
   383 	type = GL_UNSIGNED_SHORT_4_4_4_4; 
   384 	size <<= 1;
   385 	break;
   386     case COLFMT_ARGB8888: 
   387 	type = GL_UNSIGNED_INT_8_8_8_8; 
   388 	size <<= 2;
   389 	break;
   390     }
   392     if( backBuffer ) {
   393 	glDrawBuffer( GL_BACK );
   394     } else {
   395 	glDrawBuffer( GL_FRONT );
   396     }
   398     glRasterPos2i( 0, 0 );
   399     if( buffer->render_addr & 0xFF000000 == 0x04000000 ) {
   400 	/* Interlaced buffer. Go the double copy... :( */
   401 	char target[size];
   402 	pvr2_vram64_read( target, buffer->render_addr, size );
   403 	glDrawPixels( buffer->width, buffer->height, 
   404 		      format, type, target );
   405     } else {
   406 	/* Regular buffer - go direct */
   407 	char *target = mem_get_region( buffer->render_addr );
   408 	glDrawPixels( buffer->width, buffer->height, 
   409 		      format, type, target );
   410     }
   411 }
.