Epple-II/src/gui.cpp

52 lines
1.5 KiB
C++
Raw Normal View History

2012-04-21 00:04:34 +00:00
/*
epple2
Copyright (C) 2008 by Chris Mosher <chris@mosher.mine.nu>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY, without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
2013-10-10 03:23:33 +00:00
*/
2012-04-21 00:04:34 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2013-10-10 03:23:33 +00:00
#include <iostream>
2012-04-21 00:04:34 +00:00
#include "gui.h"
#include <SDL2/SDL.h>
2012-04-21 00:04:34 +00:00
2013-10-10 03:23:33 +00:00
// Create, initialize, and cable together the UI objects to serve this
// program
2012-04-21 00:04:34 +00:00
2013-10-10 03:23:33 +00:00
GUI::GUI() {
const int result = SDL_Init(SDL_INIT_TIMER | SDL_INIT_AUDIO | SDL_INIT_VIDEO);
if (result != 0) {
throw GUI::NotInitException();
}
2012-04-21 00:04:34 +00:00
2013-10-10 03:23:33 +00:00
const SDL_bool ok = SDL_SetHint(SDL_HINT_RENDER_DRIVER, "opengles2");
if (ok != SDL_TRUE) {
std::cerr << "could not set opengles2 rendering" << std::endl;
// maybe it's OK, so don't throw GUI::NotInitException();
}
SDL_ShowCursor(0);
2012-04-21 00:04:34 +00:00
}
2013-10-10 03:23:33 +00:00
GUI::~GUI() {
SDL_Quit();
2012-04-21 00:04:34 +00:00
}
GUI::NotInitException::NotInitException() :
2013-10-10 03:23:33 +00:00
runtime_error("Unable to initialize SDL") {
SDL_GetError();
2012-04-21 00:04:34 +00:00
}