2012-09-04 16:45:16 +00:00
# include "Renderer.h"
2012-08-29 18:53:53 +00:00
# include <bcm_host.h>
# include <iostream>
# include <bcm_host.h>
# include <GLES/gl.h>
# include <EGL/egl.h>
# include <EGL/eglext.h>
# include "Font.h"
2012-09-29 18:14:31 +00:00
# include <SDL/SDL.h>
# include "InputManager.h"
2012-08-29 18:53:53 +00:00
namespace Renderer
{
2012-09-29 18:14:31 +00:00
SDL_Surface * sdlScreen ;
2012-08-29 18:53:53 +00:00
EGLDisplay display ;
EGLSurface surface ;
EGLContext context ;
EGLConfig config ;
static EGL_DISPMANX_WINDOW_T nativewindow ;
2012-08-29 21:52:25 +00:00
unsigned int display_width = 0 ;
unsigned int display_height = 0 ;
2012-09-16 19:18:11 +00:00
unsigned int getScreenWidth ( ) { return display_width ; }
unsigned int getScreenHeight ( ) { return display_height ; }
2012-08-29 21:52:25 +00:00
bool createSurface ( ) //unsigned int display_width, unsigned int display_height)
2012-08-29 18:53:53 +00:00
{
2012-10-13 18:35:13 +00:00
if ( SDL_Init ( SDL_INIT_VIDEO | SDL_INIT_JOYSTICK | SDL_INIT_AUDIO ) ! = 0 )
2012-09-29 18:14:31 +00:00
{
std : : cerr < < " Error initializing SDL! \n " ;
std : : cerr < < SDL_GetError ( ) < < " \n " ;
2012-10-13 18:35:13 +00:00
std : : cerr < < " Are you in the 'video', 'audio', and 'input' groups? Is X closed? Is your firmware up to date? Are you using at least the 192/64 memory split? \n " ;
2012-09-29 18:14:31 +00:00
return false ;
}
sdlScreen = SDL_SetVideoMode ( 1 , 1 , 0 , SDL_SWSURFACE ) ;
if ( sdlScreen = = NULL )
{
std : : cerr < < " Error creating SDL window for input! \n " ;
return false ;
}
//have to reload config to re-open SDL joysticks
InputManager : : loadConfig ( ) ;
2012-09-16 19:18:11 +00:00
std : : cout < < " Creating surface... " ;
2012-08-29 18:53:53 +00:00
DISPMANX_ELEMENT_HANDLE_T dispman_element ;
DISPMANX_DISPLAY_HANDLE_T dispman_display ;
DISPMANX_UPDATE_HANDLE_T dispman_update ;
VC_RECT_T dst_rect ;
VC_RECT_T src_rect ;
display = eglGetDisplay ( EGL_DEFAULT_DISPLAY ) ;
if ( display = = EGL_NO_DISPLAY )
{
std : : cerr < < " Error getting display! \n " ;
return false ;
}
bool result = eglInitialize ( display , NULL , NULL ) ;
if ( result = = EGL_FALSE )
{
std : : cerr < < " Error initializing display! \n " ;
return false ;
}
result = eglBindAPI ( EGL_OPENGL_ES_API ) ;
if ( result = = EGL_FALSE )
{
std : : cerr < < " Error binding API! \n " ;
return false ;
}
static const EGLint config_attributes [ ] =
{
EGL_RED_SIZE , 8 ,
EGL_GREEN_SIZE , 8 ,
EGL_BLUE_SIZE , 8 ,
EGL_ALPHA_SIZE , 8 ,
EGL_SURFACE_TYPE , EGL_WINDOW_BIT ,
EGL_NONE
} ;
GLint numConfigs ;
result = eglChooseConfig ( display , config_attributes , & config , 1 , & numConfigs ) ;
if ( result = = EGL_FALSE )
{
std : : cerr < < " Error choosing config! \n " ;
return false ;
}
context = eglCreateContext ( display , config , EGL_NO_CONTEXT , NULL ) ;
if ( context = = EGL_NO_CONTEXT )
{
std : : cout < < " Error: " < < eglGetError ( ) < < " \n " ;
std : : cerr < < " Error getting context! \n " ;
return false ;
}
2012-08-29 21:52:25 +00:00
if ( ! display_width | | ! display_height )
2012-08-29 18:53:53 +00:00
{
2012-08-29 21:52:25 +00:00
bool success = graphics_get_display_size ( 0 , & display_width , & display_height ) ; //0 = LCD
if ( success < 0 )
{
std : : cerr < < " Error getting display size! \n " ;
return false ;
}
2012-08-29 18:53:53 +00:00
}
2012-09-16 19:18:11 +00:00
std : : cout < < display_width < < " x " < < display_height < < " ... " ;
2012-08-29 18:53:53 +00:00
dst_rect . x = 0 ; dst_rect . y = 0 ;
dst_rect . width = display_width ; dst_rect . height = display_height ;
src_rect . x = 0 ; src_rect . y = 0 ;
src_rect . width = display_width < < 16 ; src_rect . height = display_height < < 16 ;
dispman_display = vc_dispmanx_display_open ( 0 ) ; //0 = LCD
dispman_update = vc_dispmanx_update_start ( 0 ) ;
dispman_element = vc_dispmanx_element_add ( dispman_update , dispman_display , 0 /*layer*/ , & dst_rect , 0 /*src*/ , & src_rect , DISPMANX_PROTECTION_NONE , 0 /*alpha*/ , 0 /*clamp*/ , DISPMANX_NO_ROTATE /*transform*/ ) ;
nativewindow . element = dispman_element ;
nativewindow . width = display_width ; nativewindow . height = display_height ;
vc_dispmanx_update_submit_sync ( dispman_update ) ;
surface = eglCreateWindowSurface ( display , config , & nativewindow , NULL ) ;
if ( surface = = EGL_NO_SURFACE )
{
std : : cerr < < " Error creating window surface! \n " ;
return false ;
}
result = eglMakeCurrent ( display , surface , surface , context ) ;
if ( result = = EGL_FALSE )
{
std : : cerr < < " Error with eglMakeCurrent! \n " ;
return false ;
}
2012-09-16 19:18:11 +00:00
std : : cout < < " success! \n " ;
2012-08-29 18:53:53 +00:00
return true ;
}
void swapBuffers ( )
{
eglSwapBuffers ( display , surface ) ;
2012-08-29 21:52:25 +00:00
glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ;
2012-08-29 18:53:53 +00:00
}
void destroySurface ( )
{
eglSwapBuffers ( display , surface ) ;
eglMakeCurrent ( display , EGL_NO_SURFACE , EGL_NO_SURFACE , EGL_NO_CONTEXT ) ;
eglDestroySurface ( display , surface ) ;
eglDestroyContext ( display , context ) ;
eglTerminate ( display ) ;
2012-09-04 16:45:16 +00:00
display = EGL_NO_DISPLAY ;
surface = EGL_NO_SURFACE ;
context = EGL_NO_CONTEXT ;
2012-10-26 20:28:15 +00:00
SDL_FreeSurface ( sdlScreen ) ;
sdlScreen = NULL ;
SDL_Quit ( ) ;
2012-08-29 18:53:53 +00:00
}
bool init ( int w , int h )
{
2012-08-29 21:52:25 +00:00
if ( w )
display_width = w ;
if ( h )
display_height = h ;
bool createdSurface = createSurface ( ) ;
if ( ! createdSurface )
2012-08-29 18:53:53 +00:00
return false ;
2012-08-29 21:52:25 +00:00
glViewport ( 0 , 0 , display_width , display_height ) ;
glOrthof ( 0 , display_width , display_height , 0 , - 1.0 , 1.0 ) ;
2012-08-29 19:22:05 +00:00
glClearColor ( 1.0f , 1.0f , 1.0f , 1.0f ) ;
2012-08-29 18:53:53 +00:00
2012-09-04 16:45:16 +00:00
onInit ( ) ;
2012-08-29 18:53:53 +00:00
return true ;
}
void deinit ( )
{
2012-09-04 16:45:16 +00:00
onDeinit ( ) ;
2012-08-29 18:53:53 +00:00
destroySurface ( ) ;
}
} ;