/*
--------------------------------------------------------------------------------
This source file is part of SkyX.
Visit http://www.paradise-studios.net/products/skyx/

Copyright (C) 2009-2011 Xavier Verguín González <xavyiy@gmail.com>

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 2 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, write to the Free Software Foundation, Inc., 59 Temple
Place - Suite 330, Boston, MA 02111-1307, USA, or go to
http://www.gnu.org/copyleft/lesser.txt.
--------------------------------------------------------------------------------
*/

#ifndef _SkyX_MoonManager_H_
#define _SkyX_MoonManager_H_

#include "Prerequisites.h"

namespace SkyX
{
	class SkyX;

    class DllExport MoonManager 
	{
	public:
	    /** Constructor
		    @param s Parent SkyX pointer
		 */
		MoonManager(SkyX *s);

		/** Destructor 
		 */
		~MoonManager();

		/** Create all resources
		 */
		void create();

		/** Remove all resources
		 */
		void remove();

		/** Update moon phase
		    @param phase Moon phase in [-1,1] range, where -1 means fully covered Moon, 0 clear Moon and 1 fully covered Moon
		 */
		void updateMoonPhase(const Ogre::Real& phase);

		/** Update geometry
		    @param c Camera
		 */
		void updateGeometry(Ogre::Camera* c);
	
		/** Get moon billboard
		    @return Moon billboard
		 */
		inline Ogre::BillboardSet* getMoonBillboard()
		{
			return mMoonBillboard;
		}

		/** Get moon scene node
		    @return Moon scene node
		 */
		inline Ogre::SceneNode* getMoonSceneNode()
		{
			return mMoonSceneNode;
		}

		/** Set moon size
		    @param MoonSize Moon size
		 */
		inline void setMoonSize(const Ogre::Real& MoonSize)
		{
			mMoonSize = MoonSize;
		}

		/** Get moon size
		    @return Moon size
		 */
		inline const Ogre::Real& getMoonSize() const
		{
			return mMoonSize;
		}

		/** Set moon halo intensity
		    @param MoonHaloIntensity Moon halo intensity
		 */
		inline void setMoonHaloIntensity(const Ogre::Real& MoonHaloIntensity)
		{
			mMoonHaloIntensity = MoonHaloIntensity;
		}

		/** Get moon halo intensity
		    @return Moon halo intensity
		 */
		inline const Ogre::Real& getMoonHaloIntensity() const
		{
			return mMoonHaloIntensity;
		}

		/** Set moon halo strength
		    @param MoonHaloStrength Moon halo strength (linear/exponential fading)
		 */
		inline void setMoonHaloStrength(const Ogre::Real& MoonHaloStrength)
		{
			mMoonHaloStrength = MoonHaloStrength;
		}

		/** Get moon halo strength
		    @return Moon halo strength (linear/exponential fading)
		 */
		inline const Ogre::Real& getMoonHaloStrength() const
		{
			return mMoonHaloStrength;
		}

		/** Is moon manager created?
		    @return true if yes, false if not
		 */
		inline const bool& isCreated() const
		{
			return mCreated;
		}

	private:
		/** Update moon bounds
		    @param c Camera
	     */
		void _updateMoonBounds(Ogre::Camera* c);

		/// Moon billboard
		Ogre::BillboardSet* mMoonBillboard;
		/// Moon scene node
		Ogre::SceneNode* mMoonSceneNode;

		/// Is moon manager created?
		bool mCreated;

		/// Moon size
		Ogre::Real mMoonSize;
		/// Moon halo intensity
		Ogre::Real mMoonHaloIntensity;
		/// Moon halo strength
		Ogre::Real mMoonHaloStrength;

		/// SkyX parent pointer
		SkyX *mSkyX;
	};
}

#endif