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

Latest commit

 

History

History
133 lines (111 loc) · 3.66 KB

SDL_BeApp.cc

File metadata and controls

133 lines (111 loc) · 3.66 KB
 
Apr 26, 2001
Apr 26, 2001
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
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
23
24
25
26
27
28
29
/* 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
30
#include "SDL_BApp.h" /* SDL_BApp class definition */
Apr 26, 2001
Apr 26, 2001
31
32
33
34
35
#include "SDL_BeApp.h"
#include "SDL_thread.h"
#include "SDL_timer.h"
#include "SDL_error.h"
Jul 12, 2011
Jul 12, 2011
36
37
#include "../../video/bwindow/SDL_BWin.h"
Jul 22, 2011
Jul 22, 2011
38
39
40
#ifdef __cplusplus
extern "C" {
#endif
Apr 26, 2001
Apr 26, 2001
41
42
43
44
/* 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
45
46
static int
StartBeApp(void *unused)
Apr 26, 2001
Apr 26, 2001
47
{
Jul 10, 2006
Jul 10, 2006
48
BApplication *App;
Apr 26, 2001
Apr 26, 2001
49
Jul 12, 2011
Jul 12, 2011
50
App = new SDL_BApp("application/x-SDL-executable");
Apr 26, 2001
Apr 26, 2001
51
Jul 10, 2006
Jul 10, 2006
52
53
54
App->Run();
delete App;
return (0);
Apr 26, 2001
Apr 26, 2001
55
56
57
}
/* Initialize the Be Application, if it's not already started */
Jul 10, 2006
Jul 10, 2006
58
59
int
SDL_InitBeApp(void)
Apr 26, 2001
Apr 26, 2001
60
{
Jul 10, 2006
Jul 10, 2006
61
62
/* Create the BApplication that handles appserver interaction */
if (SDL_BeAppActive <= 0) {
Oct 2, 2011
Oct 2, 2011
63
SDL_AppThread = SDL_CreateThread(StartBeApp, "SDLApplication", NULL);
Jul 10, 2006
Jul 10, 2006
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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
86
} while ((be_app == NULL) || be_app->IsLaunching());
Jul 10, 2006
Jul 10, 2006
87
88
89
90
91
92
93
94
95
96
/* 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
97
98
99
}
/* Quit the Be Application, if there's nothing left to do */
Jul 10, 2006
Jul 10, 2006
100
101
void
SDL_QuitBeApp(void)
Apr 26, 2001
Apr 26, 2001
102
{
Jul 10, 2006
Jul 10, 2006
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* 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
117
}
Jul 10, 2006
Jul 10, 2006
118
Jul 22, 2011
Jul 22, 2011
119
120
121
122
123
124
/* vi: set ts=4 sw=4 expandtab: */
#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;
}
}