2016-09-14 18:01:13 +00:00
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright(C) 2004-2016 Christoph Oelckers
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with this program. If not, see http://www.gnu.org/licenses/
|
|
|
|
//
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
//
|
2013-06-23 07:49:34 +00:00
|
|
|
|
|
|
|
#include "doomtype.h"
|
|
|
|
#include "w_wad.h"
|
2017-03-17 20:12:09 +00:00
|
|
|
#include "textures.h"
|
|
|
|
#include "skyboxtexture.h"
|
2013-06-23 07:49:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2018-12-06 00:11:04 +00:00
|
|
|
FSkyBox::FSkyBox(const char *name)
|
|
|
|
: FTexture(name)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
|
|
|
faces[0]=faces[1]=faces[2]=faces[3]=faces[4]=faces[5]=NULL;
|
2018-03-25 18:26:16 +00:00
|
|
|
UseType = ETextureType::Override;
|
2018-04-02 11:00:33 +00:00
|
|
|
bSkybox = true;
|
2013-06-23 07:49:34 +00:00
|
|
|
fliptop = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2018-12-08 11:42:35 +00:00
|
|
|
TArray<uint8_t> FSkyBox::Get8BitPixels(bool alphatex)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2018-12-08 11:42:35 +00:00
|
|
|
if (faces[0]) return faces[0]->Get8BitPixels(alphatex);
|
|
|
|
return FTexture::Get8BitPixels(alphatex);
|
2013-06-23 07:49:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2018-12-08 16:23:15 +00:00
|
|
|
int FSkyBox::CopyPixels(FBitmap *bmp)
|
2013-06-23 07:49:34 +00:00
|
|
|
{
|
2018-12-08 16:23:15 +00:00
|
|
|
if (faces[0]) return faces[0]->CopyPixels(bmp);
|
2013-06-23 07:49:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|