Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/util/SignalHandler.h @ 2442

Last change on this file since 2442 was 2261, checked in by landauf, 15 years ago

merged questsystem2 back to trunk

  • Property svn:eol-style set to native
  • Property svn:mergeinfo set to (toggle deleted branches)
    /code/branches/questsystem2/src/util/SignalHandler.hmergedeligible
    /code/branches/ceguilua/src/orxonox/SignalHandler.h1802-1808
    /code/branches/core3/src/orxonox/SignalHandler.h1572-1739
    /code/branches/gcc43/src/orxonox/SignalHandler.h1580
    /code/branches/gui/src/orxonox/SignalHandler.h1635-1723
    /code/branches/input/src/orxonox/SignalHandler.h1629-1636
    /code/branches/objecthierarchy/src/util/SignalHandler.h2100,​2110-2169
    /code/branches/script_trigger/src/orxonox/SignalHandler.h1295-1953,​1955
File size: 3.0 KB
RevLine 
[1505]1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (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 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Christoph Renner
24 *   Co-authors:
25 *      ...
26 *
27 */
[682]28
[1505]29/**
[2030]30    @file
[1755]31    @brief Declaration of the SignalHandler class.
[1505]32*/
33
[497]34#ifndef _SignalHandler_H__
35#define _SignalHandler_H__
36
[2030]37#include "UtilPrereqs.h"
[1062]38
[497]39#include <list>
40#include <string>
41
[2171]42namespace orxonox
43{
44    typedef int (*SignalCallback)( void * someData );
45}
[497]46
[1607]47#if ORXONOX_PLATFORM != ORXONOX_PLATFORM_WIN32
[497]48#include <signal.h>
49
[2171]50namespace orxonox
[497]51{
[2171]52    struct SignalRec
53    {
54        int signal;
55        sig_t handler;
56    };
[497]57
[2171]58    struct SignalCallbackRec
59    {
60        SignalCallback cb;
61        void * someData;
62    };
[497]63
64
[2171]65    typedef std::list<SignalRec> SignalRecList;
66    typedef std::list<SignalCallbackRec> SignalCallbackList;
[497]67
[2171]68    class SignalHandler
69    {
70    private:
71        SignalHandler();
72    public:
73        inline static SignalHandler* getInstance() { if (!SignalHandler::singletonRef) SignalHandler::singletonRef = new SignalHandler(); return SignalHandler::singletonRef; }
74        ~SignalHandler(){ SignalHandler::singletonRef = NULL; }
[497]75
[2171]76        void registerCallback( SignalCallback cb, void * someData );
[497]77
[2171]78        void doCatch( const std::string & appName, const std::string & filename );
79        void dontCatch();
[497]80
[2171]81    private:
82        static void sigHandler( int sig );
[497]83
[2171]84        void catchSignal( int sig );
85        SignalRecList sigRecList;
[497]86
[2171]87        SignalCallbackList callbackList;
[497]88
[2171]89        static SignalHandler * singletonRef;
[497]90
[2171]91        std::string appName;
92        std::string filename;
[1293]93
[2171]94        // used to turn on KeyAutoRepeat if OIS crashes
95        static bool bXAutoKeyRepeatOn_;
96    };
97}
[497]98
[1607]99#else /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 */
[682]100
[2171]101namespace orxonox
[497]102{
[2171]103    class _UtilExport SignalHandler
104    {
105    public:
106        inline static SignalHandler* getInstance() { if (!SignalHandler::singletonRef) SignalHandler::singletonRef = new SignalHandler(); return SignalHandler::singletonRef; };
107        void doCatch( const std::string & appName, const std::string & filename ) {};
108        void dontCatch() {};
109        void registerCallback( SignalCallback cb, void * someData ) {};
[497]110
[2171]111    private:
112        static SignalHandler * singletonRef;
113    };
114}
[497]115
[1607]116#endif /* ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 */
117
[497]118#endif /* _SignalHandler_H__ */
Note: See TracBrowser for help on using the repository browser.