1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*
$Id: app_beos.cpp,v 1.2 2000/07/18 17:04:27 sphair Exp $
------------------------------------------------------------------------
ClanLib, the platform independent game SDK.
This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
version 2. See COPYING for details.
For a total list of contributers see CREDITS.
------------------------------------------------------------------------
File purpose:
main. Initialization of the BeOS version of ClanLib.
*/
#include "app_beos.h"
#include "API/Core/System/clanapp.h"
#include "Core/Display/Be/clanwindowscreen.h"
#include <OS.h>
#include <Alert.h>
extern "C"
{
#include <Hermes/Hermes.h>
}
// Minor hack. The datafile compiler calls this function. Under win32 it will
// create a console window for cout.
void redirect_to_console(const char *title)
{
}
int main()
{
DBG("initializing Hermes...");
Hermes_Init();
LibApplication* lapp = new LibApplication();
lapp->Run();
delete lapp;
}
LibApplication::LibApplication() : BApplication("application/x-vnd.ClanSoft-ClanLib")
{
}
void LibApplication::ReadyToRun()
{
if (CL_ClanApplication::app == NULL)
{
BAlert* noProgram = new BAlert("ClanLib", "No program instance found", "Kick ass!", "Use Be!", "Have fun!", B_WIDTH_AS_USUAL, B_STOP_ALERT);
noProgram->Go();
PostMessage(B_QUIT_REQUESTED);
return;
}
DBG("starting app's main");
CL_ClanApplication::app->main(largc, largv);
DBG("quitting");
PostMessage(B_QUIT_REQUESTED);
}
void LibApplication::ArgvReceived(int32 argc, char **argv)
{
largc = argc;
largv = new char*[argc];
for (int i=0; i<argc; i++)
{
largv[i] = new char[strlen(argv[i])];
strcpy( largv[i], argv[i] );
}
}
bool LibApplication::QuitRequested()
{
DBG("QuitRequested()");
is_quitting = true;
return true;
}
|