2012-09-12 22:54:32 +00:00
|
|
|
#ifndef MWRENDER_CHARACTERPREVIEW_H
|
|
|
|
#define MWRENDER_CHARACTERPREVIEW_H
|
|
|
|
|
|
|
|
#include <OgreRenderTarget.h>
|
|
|
|
|
|
|
|
namespace MWRender
|
|
|
|
{
|
|
|
|
|
2012-09-13 17:03:31 +00:00
|
|
|
class NpcAnimation;
|
|
|
|
|
2012-09-12 22:54:32 +00:00
|
|
|
class CharacterPreview
|
|
|
|
{
|
|
|
|
public:
|
2012-09-13 17:03:31 +00:00
|
|
|
CharacterPreview(Ogre::SceneManager* sceneMgr, Ogre::SceneNode* node, int sizeX, int sizeY, const std::string& name,
|
|
|
|
Ogre::Vector3 position, Ogre::Vector3 lookAt);
|
2012-09-12 22:54:32 +00:00
|
|
|
|
2012-09-13 17:03:31 +00:00
|
|
|
protected:
|
2012-09-12 22:54:32 +00:00
|
|
|
Ogre::TexturePtr mTexture;
|
|
|
|
Ogre::RenderTarget* mRenderTarget;
|
|
|
|
Ogre::Viewport* mViewport;
|
|
|
|
|
|
|
|
Ogre::Camera* mCamera;
|
|
|
|
|
|
|
|
Ogre::SceneManager* mSceneMgr;
|
|
|
|
Ogre::SceneNode* mNode;
|
2012-09-13 17:03:31 +00:00
|
|
|
|
|
|
|
int mSizeX;
|
|
|
|
int mSizeY;
|
|
|
|
};
|
|
|
|
|
|
|
|
class InventoryPreview : public CharacterPreview
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InventoryPreview(Ogre::SceneManager* sceneMgr, Ogre::SceneNode* node);
|
|
|
|
|
|
|
|
void update(int sizeX, int sizeY);
|
|
|
|
|
|
|
|
void setNpcAnimation (NpcAnimation* anim);
|
|
|
|
|
|
|
|
private:
|
|
|
|
NpcAnimation* mAnimation;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RaceSelectionPreview : public CharacterPreview
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RaceSelectionPreview(Ogre::SceneManager* sceneMgr, Ogre::SceneNode* node);
|
|
|
|
|
|
|
|
void update(float angle);
|
2012-09-12 22:54:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|