Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
120 lines (102 loc) · 3.16 KB

SDL_quit.c

File metadata and controls

120 lines (102 loc) · 3.16 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library 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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
/* General quit handling code for SDL */
Feb 6, 2006
Feb 6, 2006
26
#ifdef HAVE_SIGNAL_H
Apr 26, 2001
Apr 26, 2001
27
28
29
30
31
32
33
#include <signal.h>
#endif
#include "SDL_events.h"
#include "SDL_events_c.h"
Feb 6, 2006
Feb 6, 2006
34
#ifdef HAVE_SIGNAL_H
Jul 10, 2006
Jul 10, 2006
35
36
static void
SDL_HandleSIG(int sig)
Apr 26, 2001
Apr 26, 2001
37
{
Jul 10, 2006
Jul 10, 2006
38
39
/* Reset the signal handler */
signal(sig, SDL_HandleSIG);
Apr 26, 2001
Apr 26, 2001
40
Jul 10, 2006
Jul 10, 2006
41
42
/* Signal a quit interrupt */
SDL_SendQuit();
Apr 26, 2001
Apr 26, 2001
43
}
Feb 6, 2006
Feb 6, 2006
44
#endif /* HAVE_SIGNAL_H */
Apr 26, 2001
Apr 26, 2001
45
46
/* Public functions */
Jul 10, 2006
Jul 10, 2006
47
48
int
SDL_QuitInit(void)
Apr 26, 2001
Apr 26, 2001
49
{
Mar 16, 2011
Mar 16, 2011
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifdef HAVE_SIGACTION
struct sigaction action;
sigaction(SIGINT, NULL, &action);
if ( action.sa_handler == SIG_DFL && action.sa_sigaction == SIG_DFL ) {
action.sa_handler = SDL_HandleSIG;
sigaction(SIGINT, &action, NULL);
}
sigaction(SIGTERM, NULL, &action);
if ( action.sa_handler == SIG_DFL && action.sa_sigaction == SIG_DFL ) {
action.sa_handler = SDL_HandleSIG;
sigaction(SIGTERM, &action, NULL);
}
#elif HAVE_SIGNAL_H
Jul 10, 2006
Jul 10, 2006
63
64
65
66
67
68
69
70
71
void (*ohandler) (int);
/* Both SIGINT and SIGTERM are translated into quit interrupts */
ohandler = signal(SIGINT, SDL_HandleSIG);
if (ohandler != SIG_DFL)
signal(SIGINT, ohandler);
ohandler = signal(SIGTERM, SDL_HandleSIG);
if (ohandler != SIG_DFL)
signal(SIGTERM, ohandler);
Feb 6, 2006
Feb 6, 2006
72
#endif /* HAVE_SIGNAL_H */
Apr 26, 2001
Apr 26, 2001
73
Jul 10, 2006
Jul 10, 2006
74
75
/* That's it! */
return (0);
Apr 26, 2001
Apr 26, 2001
76
}
Jul 10, 2006
Jul 10, 2006
77
78
79
void
SDL_QuitQuit(void)
Aug 21, 2005
Aug 21, 2005
80
{
Mar 16, 2011
Mar 16, 2011
81
82
83
84
85
86
87
88
89
90
91
92
93
#ifdef HAVE_SIGACTION
struct sigaction action;
sigaction(SIGINT, NULL, &action);
if ( action.sa_handler == SDL_HandleSIG ) {
action.sa_handler = SIG_DFL;
sigaction(SIGINT, &action, NULL);
}
sigaction(SIGTERM, NULL, &action);
if ( action.sa_handler == SDL_HandleSIG ) {
action.sa_handler = SIG_DFL;
sigaction(SIGTERM, &action, NULL);
}
#elif HAVE_SIGNAL_H
Jul 10, 2006
Jul 10, 2006
94
95
96
97
98
99
100
101
void (*ohandler) (int);
ohandler = signal(SIGINT, SIG_DFL);
if (ohandler != SDL_HandleSIG)
signal(SIGINT, ohandler);
ohandler = signal(SIGTERM, SIG_DFL);
if (ohandler != SDL_HandleSIG)
signal(SIGTERM, ohandler);
Feb 6, 2006
Feb 6, 2006
102
#endif /* HAVE_SIGNAL_H */
Aug 21, 2005
Aug 21, 2005
103
}
Apr 26, 2001
Apr 26, 2001
104
105
/* This function returns 1 if it's okay to close the application window */
Jul 10, 2006
Jul 10, 2006
106
107
int
SDL_SendQuit(void)
Apr 26, 2001
Apr 26, 2001
108
{
Jul 10, 2006
Jul 10, 2006
109
110
111
int posted;
posted = 0;
Mar 25, 2010
Mar 25, 2010
112
if (SDL_GetEventState(SDL_QUIT) == SDL_ENABLE) {
Jul 10, 2006
Jul 10, 2006
113
114
115
116
117
SDL_Event event;
event.type = SDL_QUIT;
posted = (SDL_PushEvent(&event) > 0);
}
return (posted);
Apr 26, 2001
Apr 26, 2001
118
}
Jul 10, 2006
Jul 10, 2006
119
120
/* vi: set ts=4 sw=4 expandtab: */