Mercurial > sdl-ios-xcode
annotate src/main/beos/SDL_BeApp.cc @ 1323:be736c197ceb
Fixed compile warning
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 03 Feb 2006 06:01:23 +0000 |
parents | c9b51268668f |
children | 604d73db6802 |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
855
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
855
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
855
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
855
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
855
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
855
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
855
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 /* Handle the BeApp specific portions of the application */ | |
24 | |
25 #include <AppKit.h> | |
26 #include <storage/Path.h> | |
27 #include <storage/Entry.h> | |
28 #include <stdlib.h> | |
573
6c3fa3b5e397
Fixed build error on BeOS
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
29 #include <string.h> |
0 | 30 #include <unistd.h> |
31 | |
32 #include "SDL_BeApp.h" | |
33 #include "SDL_thread.h" | |
34 #include "SDL_timer.h" | |
35 #include "SDL_error.h" | |
36 | |
37 /* Flag to tell whether or not the Be application is active or not */ | |
38 int SDL_BeAppActive = 0; | |
39 static SDL_Thread *SDL_AppThread = NULL; | |
40 | |
41 static int StartBeApp(void *unused) | |
42 { | |
43 BApplication *App; | |
44 | |
45 App = new BApplication("application/x-SDL-executable"); | |
46 | |
47 App->Run(); | |
48 delete App; | |
49 return(0); | |
50 } | |
51 | |
52 /* Initialize the Be Application, if it's not already started */ | |
53 int SDL_InitBeApp(void) | |
54 { | |
55 /* Create the BApplication that handles appserver interaction */ | |
56 if ( SDL_BeAppActive <= 0 ) { | |
57 SDL_AppThread = SDL_CreateThread(StartBeApp, NULL); | |
58 if ( SDL_AppThread == NULL ) { | |
59 SDL_SetError("Couldn't create BApplication thread"); | |
60 return(-1); | |
61 } | |
62 | |
855
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
63 /* Change working to directory to that of executable */ |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
64 app_info info; |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
65 if (B_OK == be_app->GetAppInfo(&info)) { |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
66 entry_ref ref = info.ref; |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
67 BEntry entry; |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
68 if (B_OK == entry.SetTo(&ref)) { |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
69 BPath path; |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
70 if (B_OK == path.SetTo(&entry)) { |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
71 if (B_OK == path.GetParent(&path)) { |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
72 chdir(path.Path()); |
0 | 73 } |
74 } | |
855
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
75 } |
aa4ac9e65d92
I noticed MacOSX SDL sets up working directory to parent of executable.
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
76 } |
0 | 77 |
78 do { | |
79 SDL_Delay(10); | |
80 } while ( (be_app == NULL) || be_app->IsLaunching() ); | |
81 | |
82 /* Mark the application active */ | |
83 SDL_BeAppActive = 0; | |
84 } | |
85 | |
86 /* Increment the application reference count */ | |
87 ++SDL_BeAppActive; | |
88 | |
89 /* The app is running, and we're ready to go */ | |
90 return(0); | |
91 } | |
92 | |
93 /* Quit the Be Application, if there's nothing left to do */ | |
94 void SDL_QuitBeApp(void) | |
95 { | |
96 /* Decrement the application reference count */ | |
97 --SDL_BeAppActive; | |
98 | |
99 /* If the reference count reached zero, clean up the app */ | |
100 if ( SDL_BeAppActive == 0 ) { | |
101 if ( SDL_AppThread != NULL ) { | |
102 if ( be_app != NULL ) { /* Not tested */ | |
103 be_app->PostMessage(B_QUIT_REQUESTED); | |
104 } | |
105 SDL_WaitThread(SDL_AppThread, NULL); | |
106 SDL_AppThread = NULL; | |
107 } | |
108 /* be_app should now be NULL since be_app has quit */ | |
109 } | |
110 } |