2019-10-05 17:28:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "textures.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// This is not a real texture but will be added to the texture manager
|
|
|
|
// so that it can be handled like any other sky.
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class FSkyBox : public FTexture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
FTexture* faces[6] = {};
|
|
|
|
bool fliptop;
|
|
|
|
|
|
|
|
FSkyBox(const char *name);
|
2019-10-18 17:06:57 +00:00
|
|
|
FBitmap GetBgraBitmap(const PalEntry *, int *trans) override;
|
2019-10-05 17:28:05 +00:00
|
|
|
FImageSource *GetImage() const override;
|
|
|
|
|
|
|
|
|
|
|
|
void SetSize()
|
|
|
|
{
|
|
|
|
CopySize(faces[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Is3Face() const
|
|
|
|
{
|
|
|
|
return faces[5] == nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsFlipped() const
|
|
|
|
{
|
|
|
|
return fliptop;
|
|
|
|
}
|
|
|
|
};
|