Files
test2/intern/ghost/intern/GHOST_ISystem.cpp

109 lines
2.4 KiB
C++
Raw Normal View History

2011-02-25 11:28:33 +00:00
/*
* ***** BEGIN GPL LICENSE BLOCK *****
2002-10-12 11:37:38 +00:00
*
* 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 2
* of the License, or (at your option) any later version.
2002-10-12 11:37:38 +00:00
*
* 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, write to the Free Software Foundation,
2010-02-12 13:34:04 +00:00
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2002-10-12 11:37:38 +00:00
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*
* The Original Code is: all of this file.
*
* Contributor(s): none yet.
*
* ***** END GPL LICENSE BLOCK *****
2002-10-12 11:37:38 +00:00
*/
2011-02-25 11:28:33 +00:00
/** \file ghost/intern/GHOST_ISystem.cpp
* \ingroup GHOST
*/
2002-10-12 11:37:38 +00:00
/**
* Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 7, 2001
2002-10-12 11:37:38 +00:00
*/
#include "GHOST_ISystem.h"
#ifdef WITH_X11
# include "GHOST_SystemX11.h"
2002-10-12 11:37:38 +00:00
#else
# ifdef WITH_HEADLESS
# include "GHOST_SystemNULL.h"
# elif defined(WITH_GHOST_SDL)
# include "GHOST_SystemSDL.h"
# elif defined(WIN32)
# include "GHOST_SystemWin32.h"
2012-05-19 09:57:55 +00:00
# else
# ifdef __APPLE__
# include "GHOST_SystemCocoa.h"
# endif
2012-05-19 09:57:55 +00:00
# endif
2002-10-12 11:37:38 +00:00
#endif
GHOST_ISystem *GHOST_ISystem::m_system = NULL;
2002-10-12 11:37:38 +00:00
GHOST_TSuccess GHOST_ISystem::createSystem()
{
GHOST_TSuccess success;
if (!m_system) {
#ifdef WITH_X11
m_system = new GHOST_SystemX11();
#else
# ifdef WITH_HEADLESS
m_system = new GHOST_SystemNULL();
# elif defined(WITH_GHOST_SDL)
m_system = new GHOST_SystemSDL();
# elif defined(WIN32)
2012-05-19 09:57:55 +00:00
m_system = new GHOST_SystemWin32();
# else
# ifdef __APPLE__
m_system = new GHOST_SystemCocoa();
# endif
2012-05-19 09:57:55 +00:00
# endif
#endif
success = m_system != NULL ? GHOST_kSuccess : GHOST_kFailure;
2002-10-12 11:37:38 +00:00
}
else {
success = GHOST_kFailure;
}
if (success) {
success = m_system->init();
}
return success;
}
GHOST_TSuccess GHOST_ISystem::disposeSystem()
{
2006-07-06 01:16:30 +00:00
GHOST_TSuccess success = GHOST_kSuccess;
2002-10-12 11:37:38 +00:00
if (m_system) {
delete m_system;
m_system = NULL;
2002-10-12 11:37:38 +00:00
}
else {
success = GHOST_kFailure;
}
return success;
}
2012-05-19 09:57:55 +00:00
GHOST_ISystem *GHOST_ISystem::getSystem()
2002-10-12 11:37:38 +00:00
{
return m_system;
}