//-----------------------------------------------------------------------------
//
//	ValueByte.h
//
//	Represents an 8-bit value
//
//	Copyright (c) 2010 Mal Lansell <openzwave@lansell.org>
//
//	SOFTWARE NOTICE AND LICENSE
//
//	This file is part of OpenZWave.
//
//	OpenZWave 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.
//
//	OpenZWave 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 OpenZWave.  If not, see <http://www.gnu.org/licenses/>.
//
//-----------------------------------------------------------------------------

#ifndef _ValueByte_H
#define _ValueByte_H

#include <string>
#include "Defs.h"
#include "value_classes/Value.h"

class TiXmlElement;

namespace OpenZWave
{
	namespace Internal
	{
		namespace VC
		{

			/** \brief Byte value sent to/received from a node.
			 * \ingroup ValueID
			 */
			class ValueByte: public Value
			{
				public:
					ValueByte(uint32 const _homeId, uint8 const _nodeId, ValueID::ValueGenre const _genre, uint8 const _commandClassId, uint8 const _instance, uint16 const _index, string const& _label, string const& _units, bool const _readOnly, bool const _writeOnly, uint8 const _value, uint8 const _pollIntensity);
					ValueByte();
					virtual ~ValueByte()
					{
					}

					bool Set(uint8 const _value);
					void OnValueRefreshed(uint8 const _value);
					void ConfirmNewValue()
					{
						OnValueRefreshed(m_newValue);
					};
					void SetTargetValue(uint8 const _target, uint32 _duration = 0);

					// From Value
					virtual string const GetAsString() const;
					virtual bool SetFromString(string const& _value);
					virtual void ReadXML(uint32 const _homeId, uint8 const _nodeId, uint8 const _commandClassId, TiXmlElement const* _valueElement);
					virtual void WriteXML(TiXmlElement* _valueElement);

					uint8 GetValue() const
					{
						return m_value;
					}

				private:
					uint8 m_value;				// the current value
					uint8 m_valueCheck;			// the previous value (used for double-checking spurious value reads)
					uint8 m_targetValue; 		// the Target Value, if the CC support it
					uint8 m_newValue;			// a new value to be set on the device (used by Supervision CC)
			};
		} // namespace VC
	} // namespace Internal
} // namespace OpenZWave

#endif

