| 1 | /* |
|---|
| 2 | ----------------------------------------------------------------------------- |
|---|
| 3 | This source file is part of OGRE |
|---|
| 4 | (Object-oriented Graphics Rendering Engine) |
|---|
| 5 | For the latest info, see http://www.ogre3d.org/ |
|---|
| 6 | |
|---|
| 7 | Copyright (c) 2000-2006 Torus Knot Software Ltd |
|---|
| 8 | Also see acknowledgements in Readme.html |
|---|
| 9 | |
|---|
| 10 | You may use this sample code for anything you like, it is not covered by the |
|---|
| 11 | LGPL like the rest of the engine. |
|---|
| 12 | ----------------------------------------------------------------------------- |
|---|
| 13 | */ |
|---|
| 14 | /* |
|---|
| 15 | ----------------------------------------------------------------------------- |
|---|
| 16 | Filename: envmap.cpp |
|---|
| 17 | Description: Shows OGRE's environment mapping feature as well as the |
|---|
| 18 | blending modes available when using multiple texture layers |
|---|
| 19 | ----------------------------------------------------------------------------- |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | #include "Smoke.h" |
|---|
| 23 | |
|---|
| 24 | #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 |
|---|
| 25 | #define WIN32_LEAN_AND_MEAN |
|---|
| 26 | #include "windows.h" |
|---|
| 27 | #endif |
|---|
| 28 | |
|---|
| 29 | #ifdef __cplusplus |
|---|
| 30 | extern "C" { |
|---|
| 31 | #endif |
|---|
| 32 | |
|---|
| 33 | #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 |
|---|
| 34 | INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT ) |
|---|
| 35 | #else |
|---|
| 36 | int main(int argc, char **argv) |
|---|
| 37 | #endif |
|---|
| 38 | { |
|---|
| 39 | // Create application object |
|---|
| 40 | ParticleApplication app; |
|---|
| 41 | |
|---|
| 42 | try { |
|---|
| 43 | app.go(); |
|---|
| 44 | } catch( Exception& e ) { |
|---|
| 45 | #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32 |
|---|
| 46 | MessageBox( NULL, e.getFullDescription().c_str(), "An exception has occured!", MB_OK | MB_ICONERROR | MB_TASKMODAL); |
|---|
| 47 | #else |
|---|
| 48 | std::cerr << "An exception has occured: " << e.getFullDescription(); |
|---|
| 49 | #endif |
|---|
| 50 | } |
|---|
| 51 | |
|---|
| 52 | |
|---|
| 53 | return 0; |
|---|
| 54 | } |
|---|
| 55 | |
|---|
| 56 | #ifdef __cplusplus |
|---|
| 57 | } |
|---|
| 58 | #endif |
|---|