openclonk/src/landscape/C4Sky.h

67 lines
2.0 KiB
C++

/*
* OpenClonk, http://www.openclonk.org
*
* Copyright (c) 1998-2000 Matthes Bender
* Copyright (c) 2001, 2005 Sven Eberhardt
* Copyright (c) 2007 Günther Brammer
* Copyright (c) 2001-2009, RedWolf Design GmbH, http://www.clonk.de
*
* Portions might be copyrighted by other authors who have contributed
* to OpenClonk.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
* See isc_license.txt for full license and disclaimer.
*
* "Clonk" is a registered trademark of Matthes Bender.
* See clonk_trademark_license.txt for full license.
*/
/* Small member of the landscape class to handle the sky background */
#ifndef INC_C4Sky
#define INC_C4Sky
#include "C4Real.h"
#define C4SkyPM_Fixed 0 // sky parallax mode: fixed
#define C4SkyPM_Wind 1 // sky parallax mode: blown by the wind
class C4Group;
class C4TargetFacet;
class C4Sky
{
public:
C4Sky() { Default(); }
~C4Sky();
void Default(); // zero fields
bool Init(bool fSavegame);
void Clear();
void SetColor(int32_t iIndex, int32_t iRed, int32_t iGreen, int32_t iBlue);
void SetFadePalette(int32_t *ipColors);
void Draw(C4TargetFacet &cgo); // draw sky
DWORD GetSkyFadeClr(int32_t iY); // get sky color at iY
void Execute(); // move sky
bool SetModulation(DWORD dwWithClr, DWORD dwBackClr); // adjust the way the sky is blitted
DWORD GetModulation(bool fBackClr)
{ return fBackClr ? BackClr : Modulation; }
void CompileFunc(StdCompiler *pComp);
protected:
int32_t Width, Height;
uint32_t Modulation;
int32_t BackClr; // background color behind sky
bool BackClrEnabled; // is the background color enabled?
public:
class C4Surface * Surface;
C4Real xdir,ydir; // sky movement speed
C4Real x,y; // sky movement pos
int32_t ParX, ParY; // parallax movement in xdir/ydir
uint32_t FadeClr1, FadeClr2;
int32_t ParallaxMode; // sky scrolling mode
};
#endif