/usr/include/MYGUI/MyGUI_OgrePlatform.h is in libmygui-dev 3.2.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 85 | /*!
@file
@author Albert Semenov
@date 04/2009
*/
#ifndef MYGUI_OGRE_PLATFORM_H_
#define MYGUI_OGRE_PLATFORM_H_
#include "MyGUI_Prerequest.h"
#include "MyGUI_OgreTexture.h"
#include "MyGUI_OgreVertexBuffer.h"
#include "MyGUI_OgreRenderManager.h"
#include "MyGUI_OgreDataManager.h"
#include "MyGUI_OgreDiagnostic.h"
#include "MyGUI_OgreTexture.h"
#include "MyGUI_LogManager.h"
#include "MyGUI_LastHeader.h"
namespace MyGUI
{
class OgrePlatform
{
public:
OgrePlatform() :
mIsInitialise(false)
{
mLogManager = new LogManager();
mRenderManager = new OgreRenderManager();
mDataManager = new OgreDataManager();
}
~OgrePlatform()
{
assert(!mIsInitialise);
delete mRenderManager;
delete mDataManager;
delete mLogManager;
}
void initialise(Ogre::RenderWindow* _window, Ogre::SceneManager* _scene, const std::string& _group = Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME, const std::string& _logName = MYGUI_PLATFORM_LOG_FILENAME)
{
assert(!mIsInitialise);
mIsInitialise = true;
if (!_logName.empty())
LogManager::getInstance().createDefaultSource(_logName);
mRenderManager->initialise(_window, _scene);
mDataManager->initialise(_group);
}
void shutdown()
{
assert(mIsInitialise);
mIsInitialise = false;
mRenderManager->shutdown();
mDataManager->shutdown();
}
OgreRenderManager* getRenderManagerPtr()
{
assert(mIsInitialise);
return mRenderManager;
}
OgreDataManager* getDataManagerPtr()
{
assert(mIsInitialise);
return mDataManager;
}
private:
bool mIsInitialise;
OgreRenderManager* mRenderManager;
OgreDataManager* mDataManager;
LogManager* mLogManager;
};
} // namespace MyGUI
#endif // MYGUI_OGRE_PLATFORM_H_
|