diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-02 21:53:36 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-02 21:53:36 +0000 |
commit | 88b41d7c9ffe40248218a7af58d92910c6737679 (patch) | |
tree | 3535eef1d6585a0c522255323d865d568bb58671 /src/main.cpp | |
parent | 56797f661324ca160d1f7b3b678be9b1eaf8b534 (diff) | |
download | mana-client-88b41d7c9ffe40248218a7af58d92910c6737679.tar.gz mana-client-88b41d7c9ffe40248218a7af58d92910c6737679.tar.bz2 mana-client-88b41d7c9ffe40248218a7af58d92910c6737679.tar.xz mana-client-88b41d7c9ffe40248218a7af58d92910c6737679.zip |
Moved graphics setup code into the graphics class.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 78 |
1 files changed, 16 insertions, 62 deletions
diff --git a/src/main.cpp b/src/main.cpp index 580a838a..c2ea4886 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -75,7 +75,6 @@ short map_port; char map_name[16]; unsigned char state; unsigned char screen_mode; -int displayFlags, screenW, screenH, bitDepth; bool useOpenGL = false; volatile int framesToDraw = 0; @@ -231,82 +230,37 @@ void init_engine() } SDL_WM_SetCaption("The Mana World", NULL); + SDL_WM_SetIcon(IMG_Load(TMW_DATADIR "data/icons/tmw-icon.png"), NULL); #ifdef USE_OPENGL useOpenGL = (config.getValue("opengl", 0) == 1); #endif - displayFlags = SDL_ANYFORMAT; - - if ((int)config.getValue("screen", 0) == 1) { - displayFlags |= SDL_FULLSCREEN; - } - - if (useOpenGL) { - displayFlags |= SDL_OPENGL; - SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); - } - else { - if ((int)config.getValue("hwaccel", 0)) { - logger->log("Attempting to use hardware acceleration."); - displayFlags |= SDL_HWSURFACE | SDL_DOUBLEBUF; - } - else { - displayFlags |= SDL_SWSURFACE; - } - } + int width, height, bpp; + bool fullscreen, hwaccel; - screenW = (int)config.getValue("screenwidth", 800); - screenH = (int)config.getValue("screenheight", 600); + width = (int)config.getValue("screenwidth", 800); + height = (int)config.getValue("screenheight", 600); + bpp = 0; + fullscreen = ((int)config.getValue("screen", 0) == 1); + hwaccel = ((int)config.getValue("hwaccel", 0) == 1); - SDL_WM_SetIcon(IMG_Load(TMW_DATADIR "data/icons/tmw-icon.png"), NULL); + // Create the graphics context + graphics = new Graphics(); - SDL_Surface *screen = SDL_SetVideoMode(screenW, screenH, 0, displayFlags); - if (screen == NULL) { - std::cerr << "Couldn't set " << screenW << "x" << screenH << "x" << - bitDepth << " video mode: " << SDL_GetError() << std::endl; + // Try to set the desired video mode + if (!graphics->setVideoMode(width, height, bpp, fullscreen, hwaccel)) { + std::cerr << "Couldn't set " << width << "x" << height << "x" << + bpp << " video mode: " << SDL_GetError() << std::endl; exit(1); } - char videoDriverName[64]; - - if (SDL_VideoDriverName(videoDriverName, 64)) { - logger->log("Using video driver: %s", videoDriverName); - } - else { - logger->log("Using video driver: unkown"); - } - - const SDL_VideoInfo *vi = SDL_GetVideoInfo(); - - logger->log("Possible to create hardware surfaces: %s", - ((vi->hw_available) ? "yes" : "no")); - logger->log("Window manager available: %s", - ((vi->wm_available) ? "yes" : "no")); - logger->log("Accelerated hardware to hardware blits: %s", - ((vi->blit_hw) ? "yes" : "no")); - logger->log("Accelerated hardware to hardware colorkey blits: %s", - ((vi->blit_hw_CC) ? "yes" : "no")); - logger->log("Accelerated hardware to hardware alpha blits: %s", - ((vi->blit_hw_A) ? "yes" : "no")); - logger->log("Accelerated software to hardware blits: %s", - ((vi->blit_sw) ? "yes" : "no")); - logger->log("Accelerated software to hardware colorkey blits: %s", - ((vi->blit_sw_CC) ? "yes" : "no")); - logger->log("Accelerated software to hardware alpha blits: %s", - ((vi->blit_sw_A) ? "yes" : "no")); - logger->log("Accelerated color fills: %s", - ((vi->blit_fill) ? "yes" : "no")); - logger->log("Available video memory: %d", vi->video_mem); - - //vfmt Pixel format of the video device + // Initialize for drawing + graphics->_beginDraw(); // Initialize item manager itemDb = new ItemManager(); - // Create the graphics context - graphics = new Graphics(screen); - login_wallpaper = resman->getImage( "graphics/images/login_wallpaper.png"); Image *playerImg = resman->getImage( |