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

Latest commit

 

History

History
137 lines (113 loc) · 3.7 KB

SDL_BeApp.cc

File metadata and controls

137 lines (113 loc) · 3.7 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Apr 8, 2011
Apr 8, 2011
2
Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
Apr 8, 2011
Apr 8, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Apr 26, 2001
Apr 26, 2001
20
*/
Feb 21, 2006
Feb 21, 2006
21
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
22
Oct 31, 2011
Oct 31, 2011
23
24
#ifdef __BEOS__
Apr 26, 2001
Apr 26, 2001
25
26
27
28
29
30
31
/* Handle the BeApp specific portions of the application */
#include <AppKit.h>
#include <storage/Path.h>
#include <storage/Entry.h>
#include <unistd.h>
Jul 12, 2011
Jul 12, 2011
32
#include "SDL_BApp.h" /* SDL_BApp class definition */
Apr 26, 2001
Apr 26, 2001
33
34
35
36
37
#include "SDL_BeApp.h"
#include "SDL_thread.h"
#include "SDL_timer.h"
#include "SDL_error.h"
Jul 12, 2011
Jul 12, 2011
38
39
#include "../../video/bwindow/SDL_BWin.h"
Jul 22, 2011
Jul 22, 2011
40
41
42
#ifdef __cplusplus
extern "C" {
#endif
Apr 26, 2001
Apr 26, 2001
43
44
45
46
/* Flag to tell whether or not the Be application is active or not */
int SDL_BeAppActive = 0;
static SDL_Thread *SDL_AppThread = NULL;
Jul 10, 2006
Jul 10, 2006
47
48
static int
StartBeApp(void *unused)
Apr 26, 2001
Apr 26, 2001
49
{
Jul 10, 2006
Jul 10, 2006
50
BApplication *App;
Apr 26, 2001
Apr 26, 2001
51
Jul 12, 2011
Jul 12, 2011
52
App = new SDL_BApp("application/x-SDL-executable");
Apr 26, 2001
Apr 26, 2001
53
Jul 10, 2006
Jul 10, 2006
54
55
56
App->Run();
delete App;
return (0);
Apr 26, 2001
Apr 26, 2001
57
58
59
}
/* Initialize the Be Application, if it's not already started */
Jul 10, 2006
Jul 10, 2006
60
61
int
SDL_InitBeApp(void)
Apr 26, 2001
Apr 26, 2001
62
{
Jul 10, 2006
Jul 10, 2006
63
64
/* Create the BApplication that handles appserver interaction */
if (SDL_BeAppActive <= 0) {
Oct 2, 2011
Oct 2, 2011
65
SDL_AppThread = SDL_CreateThread(StartBeApp, "SDLApplication", NULL);
Jul 10, 2006
Jul 10, 2006
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
if (SDL_AppThread == NULL) {
SDL_SetError("Couldn't create BApplication thread");
return (-1);
}
/* Change working to directory to that of executable */
app_info info;
if (B_OK == be_app->GetAppInfo(&info)) {
entry_ref ref = info.ref;
BEntry entry;
if (B_OK == entry.SetTo(&ref)) {
BPath path;
if (B_OK == path.SetTo(&entry)) {
if (B_OK == path.GetParent(&path)) {
chdir(path.Path());
}
}
}
}
do {
SDL_Delay(10);
Aug 27, 2008
Aug 27, 2008
88
} while ((be_app == NULL) || be_app->IsLaunching());
Jul 10, 2006
Jul 10, 2006
89
90
91
92
93
94
95
96
97
98
/* Mark the application active */
SDL_BeAppActive = 0;
}
/* Increment the application reference count */
++SDL_BeAppActive;
/* The app is running, and we're ready to go */
return (0);
Apr 26, 2001
Apr 26, 2001
99
100
101
}
/* Quit the Be Application, if there's nothing left to do */
Jul 10, 2006
Jul 10, 2006
102
103
void
SDL_QuitBeApp(void)
Apr 26, 2001
Apr 26, 2001
104
{
Jul 10, 2006
Jul 10, 2006
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* Decrement the application reference count */
--SDL_BeAppActive;
/* If the reference count reached zero, clean up the app */
if (SDL_BeAppActive == 0) {
if (SDL_AppThread != NULL) {
if (be_app != NULL) { /* Not tested */
be_app->PostMessage(B_QUIT_REQUESTED);
}
SDL_WaitThread(SDL_AppThread, NULL);
SDL_AppThread = NULL;
}
/* be_app should now be NULL since be_app has quit */
}
Apr 26, 2001
Apr 26, 2001
119
}
Jul 10, 2006
Jul 10, 2006
120
Jul 22, 2011
Jul 22, 2011
121
122
123
124
#ifdef __cplusplus
}
#endif
Jul 12, 2011
Jul 12, 2011
125
126
/* SDL_BApp functions */
void SDL_BApp::ClearID(SDL_BWin *bwin) {
Jul 13, 2011
Jul 13, 2011
127
128
_SetSDLWindow(NULL, bwin->GetID());
int32 i = _GetNumWindowSlots() - 1;
Jul 27, 2011
Jul 27, 2011
129
while(i >= 0 && GetSDLWindow(i) == NULL) {
Jul 13, 2011
Jul 13, 2011
130
_PopBackWindow();
Jul 12, 2011
Jul 12, 2011
131
132
133
--i;
}
}
Oct 31, 2011
Oct 31, 2011
134
135
136
137
#endif /* __BEOS__ */
/* vi: set ts=4 sw=4 expandtab: */