2010-05-06 00:08:41 +00:00
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
// Copyright (C) 2010 Winch Gate Property Limited
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
2012-06-08 23:37:43 +00:00
# include "nel/gui/interface_group.h"
2012-05-24 16:23:51 +00:00
# include "nel/gui/interface_property.h"
2012-06-02 19:48:11 +00:00
# include "nel/gui/view_renderer.h"
2012-06-08 23:37:43 +00:00
# include "nel/gui/widget_manager.h"
2012-06-02 19:48:11 +00:00
# include "nel/gui/db_manager.h"
2012-06-08 23:37:43 +00:00
# include "nel/gui/interface_link.h"
2012-02-08 00:58:15 +00:00
# include "nel/misc/xml_auto_ptr.h"
2012-05-23 02:13:58 +00:00
# include "nel/gui/lua_ihm.h"
2012-06-08 23:37:43 +00:00
# include "nel/gui/lua_ihm.h"
2010-05-06 00:08:41 +00:00
# include "nel/misc/mem_stream.h"
//
using namespace std ;
using namespace NLMISC ;
2012-06-09 01:57:40 +00:00
namespace NLGUI
2010-05-06 00:08:41 +00:00
{
2012-07-22 00:46:33 +00:00
bool CInterfaceElement : : editorMode = false ;
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
CInterfaceElement : : ~ CInterfaceElement ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( _Links ) // remove any link that point to that element
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
for ( TLinkVect : : iterator it = _Links - > begin ( ) ; it ! = _Links - > end ( ) ; + + it )
{
( * it ) - > removeTarget ( this ) ;
}
delete _Links ;
2010-05-06 00:08:41 +00:00
}
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : parseError ( CInterfaceGroup * parentGroup , const char * reason )
{
string tmp = string ( " cannot parse view: " ) + getId ( ) + " , parent: " + parentGroup - > getId ( ) ;
nlinfo ( tmp . c_str ( ) ) ;
if ( reason )
nlinfo ( " reason : %s " , reason ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
void CInterfaceElement : : setIdRecurse ( const std : : string & newID )
{
std : : string baseId = _Parent ? _Parent - > getId ( ) : " ui " ;
setId ( baseId + " : " + newID ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
std : : string CInterfaceElement : : getShortId ( ) const
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
std : : string : : size_type last = _Id . find_last_of ( ' : ' ) ;
if ( last ! = std : : string : : npos )
{
return _Id . substr ( last + 1 ) ;
}
return _Id ;
2010-05-06 00:08:41 +00:00
}
2012-07-27 06:14:16 +00:00
std : : string CInterfaceElement : : stripId ( const std : : string & fullId )
{
std : : string id = fullId ;
std : : string : : size_type i = id . find_last_of ( ' : ' ) ;
if ( i ! = std : : string : : npos )
id = id . substr ( i + 1 , id . size ( ) - 1 ) ;
return id ;
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
bool CInterfaceElement : : parse ( xmlNodePtr cur , CInterfaceGroup * parentGroup )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
// parse the basic properties
CXMLAutoPtr ptr ( ( const char * ) xmlGetProp ( cur , ( xmlChar * ) " id " ) ) ;
if ( ptr )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( parentGroup )
{
_Id = ( ( CInterfaceElement * ) parentGroup ) - > _Id ;
}
else
{
_Id = " ui " ;
}
_Id + = " : " + string ( ( const char * ) ptr ) ;
2010-05-06 00:08:41 +00:00
}
else
{
2012-06-09 01:57:40 +00:00
nlinfo ( " error no id in an element " ) ;
return false ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " active " ) ;
_Active = true ;
if ( ptr )
{
_Active = convertBool ( ptr ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
_Parent = parentGroup ;
// parse location. If these properties are not specified, set them to 0
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " x " ) ;
_X = 0 ;
if ( ptr ) fromString ( ( const char * ) ptr , _X ) ;
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " y " ) ;
_Y = 0 ;
if ( ptr ) fromString ( ( const char * ) ptr , _Y ) ;
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " w " ) ;
_W = 0 ;
if ( parentGroup ! = NULL )
_W = parentGroup - > getW ( ) ;
if ( ptr ) fromString ( ( const char * ) ptr , _W ) ;
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " h " ) ;
_H = 0 ;
if ( parentGroup ! = NULL )
_H = parentGroup - > getH ( ) ;
if ( ptr ) fromString ( ( const char * ) ptr , _H ) ;
// snapping
// ptr = (char*) xmlGetProp( cur, (xmlChar*)"snap" );
// _Snap = 1;
// if (ptr)
// fromString((const char*)ptr, _Snap);
// if (_Snap <= 0)
// {
// parseError(parentGroup, "snap must be > 0" );
// return false;
// }
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " posref " ) ;
_ParentPosRef = Hotspot_BL ;
_PosRef = Hotspot_BL ;
if ( ptr )
{
convertHotSpotCouple ( ptr . getDatas ( ) , _ParentPosRef , _PosRef ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " posparent " ) ;
if ( ptr )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( strcmp ( ptr , " parent " ) ) // is ptr != "parent"
{
string idparent ;
if ( parentGroup )
idparent = parentGroup - > getId ( ) + " : " ;
else
idparent = " ui: " ;
2012-07-13 03:37:09 +00:00
CWidgetManager : : getInstance ( ) - > getParser ( ) - > addParentPositionAssociation ( this , idparent + string ( ( const char * ) ptr ) ) ;
2012-06-09 01:57:40 +00:00
}
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " sizeparent " ) ;
if ( ptr )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
string idparent = ptr ;
idparent = NLMISC : : strlwr ( idparent ) ;
if ( idparent ! = " parent " )
{
if ( parentGroup )
idparent = parentGroup - > getId ( ) + " : " + string ( ( const char * ) ptr ) ;
else
idparent = " ui: " + string ( ( const char * ) ptr ) ;
}
2010-05-06 00:08:41 +00:00
else
2012-06-09 01:57:40 +00:00
{
if ( parentGroup )
idparent = parentGroup - > getId ( ) ;
}
2012-07-13 03:37:09 +00:00
CWidgetManager : : getInstance ( ) - > getParser ( ) - > addParentSizeAssociation ( this , idparent ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " sizeref " ) ;
_SizeRef = 0 ;
_SizeDivW = 10 ;
_SizeDivH = 10 ;
if ( ptr )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
parseSizeRef ( ptr . getDatas ( ) ) ;
}
// snapSize();
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " global_color " ) ;
if ( ptr )
{
_ModulateGlobalColor = convertBool ( ptr ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " render_layer " ) ;
if ( ptr ) fromString ( ( const char * ) ptr , _RenderLayer ) ;
ptr = ( char * ) xmlGetProp ( cur , ( xmlChar * ) " avoid_resize_parent " ) ;
if ( ptr ) _AvoidResizeParent = convertBool ( ptr ) ;
return true ;
}
2012-07-26 18:12:24 +00:00
std : : string CInterfaceElement : : getProperty ( const std : : string & name ) const
{
if ( name = = " id " )
{
2012-07-28 21:12:22 +00:00
return stripId ( getId ( ) ) ;
2012-07-26 18:12:24 +00:00
}
else
if ( name = = " active " )
{
if ( getActive ( ) )
return " true " ;
else
return " false " ;
}
2012-07-27 06:14:16 +00:00
else
if ( name = = " x " )
{
return NLMISC : : toString ( getX ( ) ) ;
}
else
if ( name = = " y " )
{
return NLMISC : : toString ( getY ( ) ) ;
}
else
if ( name = = " w " )
{
return NLMISC : : toString ( getW ( ) ) ;
}
else
if ( name = = " h " )
{
return NLMISC : : toString ( getH ( ) ) ;
}
else
if ( name = = " posref " )
{
std : : string posref ;
posref = HotSpotToString ( getParentPosRef ( ) ) ;
posref + = " " ;
posref + = HotSpotToString ( getPosRef ( ) ) ;
return posref ;
}
else
if ( name = = " sizeref " )
{
2012-07-27 22:17:41 +00:00
return getSizeRefAsString ( _SizeRef , _SizeDivW , _SizeDivH ) ;
2012-07-27 06:14:16 +00:00
}
if ( name = = " posparent " )
{
return CWidgetManager : : getInstance ( ) - > getParser ( ) - > getParentPosAssociation ( ( CInterfaceElement * ) this ) ;
}
else
if ( name = = " sizeparent " )
{
return CWidgetManager : : getInstance ( ) - > getParser ( ) - > getParentSizeAssociation ( ( CInterfaceElement * ) this ) ;
}
else
if ( name = = " global_color " )
{
return toString ( _ModulateGlobalColor ) ;
}
else
if ( name = = " render_layer " )
{
return toString ( _RenderLayer ) ;
}
else
if ( name = = " avoid_resize_parent " )
{
return toString ( _AvoidResizeParent ) ;
}
2012-07-26 18:12:24 +00:00
2012-07-30 04:33:36 +00:00
nlwarning ( " Invalid property '%s' queried for widget '%s' " , name . c_str ( ) , _Id . c_str ( ) ) ;
2012-07-26 18:12:24 +00:00
return " " ;
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : setSizeRef ( const std : : string & sizeref )
{
parseSizeRef ( sizeref . c_str ( ) ) ;
}
// ------------------------------------------------------------------------------------------------
std : : string CInterfaceElement : : getSizeRefAsString ( ) const
2012-07-27 22:17:41 +00:00
{
return getSizeRefAsString ( _SizeRef , _SizeDivW , _SizeDivH ) ;
}
std : : string CInterfaceElement : : getSizeRefAsString ( const sint32 & sizeRef , const sint32 & sizeDivW , sint32 const & sizeDivH ) const
2012-06-09 01:57:40 +00:00
{
2012-07-27 06:14:16 +00:00
std : : string s ;
2012-07-27 22:17:41 +00:00
if ( ( sizeRef & 1 ) ! = 0 )
2012-07-27 06:14:16 +00:00
{
s + = " w " ;
2012-07-27 22:17:41 +00:00
if ( sizeDivW < 10 )
s + = toString ( sizeDivW ) ;
2012-07-27 06:14:16 +00:00
}
if ( ( _SizeRef & 2 ) ! = 0 )
{
s + = " h " ;
2012-07-27 22:17:41 +00:00
if ( sizeDivH < 10 )
s + = toString ( sizeDivH ) ;
2012-07-27 06:14:16 +00:00
}
return s ;
2012-06-09 01:57:40 +00:00
}
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : parseSizeRef ( const char * sizeRefStr )
{
parseSizeRef ( sizeRefStr , _SizeRef , _SizeDivW , _SizeDivH ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : parseSizeRef ( const char * sizeRefStr , sint32 & sizeRef , sint32 & sizeDivW , sint32 & sizeDivH )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
nlassert ( sizeRefStr ) ;
sizeRef = 0 ;
sizeDivW = 10 ;
sizeDivH = 10 ;
2010-05-06 00:08:41 +00:00
sint32 nWhat = 0 ;
2012-06-09 01:57:40 +00:00
const char * seekPtr = sizeRefStr ;
2010-05-06 00:08:41 +00:00
while ( * seekPtr ! = 0 )
{
if ( ( * seekPtr = = ' w ' ) | | ( * seekPtr = = ' W ' ) )
{
2012-06-09 01:57:40 +00:00
sizeRef | = 1 ;
2010-05-06 00:08:41 +00:00
nWhat = 1 ;
}
if ( ( * seekPtr = = ' h ' ) | | ( * seekPtr = = ' H ' ) )
{
2012-06-09 01:57:40 +00:00
sizeRef | = 2 ;
2010-05-06 00:08:41 +00:00
nWhat = 2 ;
}
if ( ( * seekPtr > = ' 1 ' ) & & ( * seekPtr < = ' 9 ' ) )
{
if ( nWhat ! = 0 )
{
if ( nWhat = = 1 )
2012-06-09 01:57:40 +00:00
sizeDivW = * seekPtr - ' 0 ' ;
2010-05-06 00:08:41 +00:00
if ( nWhat = = 2 )
2012-06-09 01:57:40 +00:00
sizeDivH = * seekPtr - ' 0 ' ;
2010-05-06 00:08:41 +00:00
}
}
+ + seekPtr ;
}
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : updateCoords ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
_XReal = _X ;
_YReal = _Y ;
_WReal = getW ( ) ;
_HReal = getH ( ) ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
CInterfaceElement * el = NULL ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// Modif Pos
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
if ( _ParentPos ! = NULL )
el = _ParentPos ;
else
el = _Parent ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
if ( el = = NULL )
return ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
_XReal + = el - > _XReal ;
_YReal + = el - > _YReal ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
THotSpot hsParent = _ParentPosRef ;
if ( hsParent & Hotspot_Mx )
_YReal + = el - > _HReal / 2 ;
if ( hsParent & Hotspot_Tx )
_YReal + = el - > _HReal ;
if ( hsParent & Hotspot_xM )
_XReal + = el - > _WReal / 2 ;
if ( hsParent & Hotspot_xR )
_XReal + = el - > _WReal ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// Modif Size
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
if ( _ParentSize ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
el = _ParentSize ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
else
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( _ParentPos ! = NULL )
el = _ParentPos ;
else
el = _Parent ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
if ( el = = NULL )
return ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
if ( _SizeRef & 1 )
_WReal + = _SizeDivW * el - > _WReal / 10 ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
if ( _SizeRef & 2 )
_HReal + = _SizeDivH * el - > _HReal / 10 ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
THotSpot hs = _PosRef ;
if ( hs & Hotspot_Mx )
_YReal - = _HReal / 2 ;
if ( hs & Hotspot_Tx )
_YReal - = _HReal ;
if ( hs & Hotspot_xM )
_XReal - = _WReal / 2 ;
if ( hs & Hotspot_xR )
_XReal - = _WReal ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : getCorner ( sint32 & px , sint32 & py , THotSpot hs )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
px = _XReal ;
py = _YReal ;
if ( hs & 1 ) px + = _WReal ;
if ( hs & 2 ) px + = _WReal > > 1 ;
if ( hs & 8 ) py + = _HReal ;
if ( hs & 16 ) py + = _HReal > > 1 ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : move ( sint32 dx , sint32 dy )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
_X + = dx ;
_Y + = dy ;
invalidateCoords ( ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
/*void CInterfaceElement::resizeBR (sint32 sizeW, sint32 sizeH)
{
uint32 i = i / 0 ;
THotSpot hs = _PosRef ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
sint32 dw = sizeW - _W ;
sint32 dh = sizeH - _H ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
sint32 snap = _Snap ;
nlassert ( snap > 0 ) ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
if ( hs & 8 ) // is top ?
{
sint32 newH = dh + _H ;
if ( snap > 1 )
newH - = newH % snap ;
_H = newH ;
}
if ( hs & 32 ) // is bottom ?
{
sint32 newH = dh + _H ;
if ( snap > 1 )
newH - = newH % snap ;
_Y = _H - newH + _Y ;
_H = newH ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
if ( hs & 1 ) // is right ?
{
sint32 newW = dw + _W ;
if ( snap > 1 )
newW - = newW % snap ;
_X = newW - _W + _X ;
_W = newW ;
}
if ( hs & 4 ) // is left ?
{
sint32 newW = dw + _W ;
if ( snap > 1 )
newW - = newW % snap ;
_W = newW ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// DO NOT TREAT THE MIDDLE HOTSPOT CASE
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
invalidateCoords ( ) ;
} */
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
/*void CInterfaceElement::snapSize()
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
sint32 snap = _Snap ;
nlassert ( snap > 0 ) ;
2010-05-06 00:08:41 +00:00
if ( snap > 1 )
2012-06-09 01:57:40 +00:00
{
_W = _W - ( _W % snap ) ;
_H = _H - ( _H % snap ) ;
}
} */
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : setW ( sint32 w )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
_W = w ;
// sint32 snap = _Snap;
// nlassert(snap > 0);
// if (snap > 1)
// {
// _W = _W - (_W % snap);
// }
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : setH ( sint32 h )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
_H = h ;
// sint32 snap = _Snap;
// nlassert(snap > 0);
// if (snap > 1)
// {
// _H = _H - (_H % snap);
// }
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
CInterfaceGroup * CInterfaceElement : : getRootWindow ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( _Parent = = NULL )
return NULL ;
if ( _Parent - > getParent ( ) = = NULL )
return dynamic_cast < CInterfaceGroup * > ( this ) ;
return _Parent - > getRootWindow ( ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
uint CInterfaceElement : : getParentDepth ( ) const
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
uint depth = 0 ;
CInterfaceGroup * parent = _Parent ;
while ( parent ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
parent = parent - > getParent ( ) ;
depth + + ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
return depth ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
bool CInterfaceElement : : isActiveThroughParents ( ) const
{
if ( ! getActive ( ) )
return false ;
if ( _Parent = = NULL )
return false ;
// is it the root window?
if ( _Parent - > getParent ( ) = = NULL )
// yes and getActive() is true => the element is visible!
return true ;
else
return _Parent - > isActiveThroughParents ( ) ;
}
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : relativeSInt64Read ( CInterfaceProperty & rIP , const string & prop , const char * val ,
const string & defVal )
{
if ( val = = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
rIP . readSInt64 ( defVal . c_str ( ) , _Id + " : " + prop ) ;
2010-05-06 00:08:41 +00:00
}
else
{
2012-06-09 01:57:40 +00:00
if ( isdigit ( * val ) | | * val = = ' - ' )
{
rIP . readSInt64 ( val , _Id + " : " + prop ) ;
return ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
sint32 decal = 0 ;
if ( val [ 0 ] = = ' : ' )
decal = 1 ;
if ( NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( val + decal , false ) ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
rIP . readSInt64 ( val + decal , _Id + " : " + prop ) ;
return ;
}
else
{
string sTmp ;
CInterfaceElement * pIEL = this ;
while ( pIEL ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
sTmp = pIEL - > getId ( ) + " : " + string ( val + decal ) ;
if ( NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( sTmp , false ) ! = NULL )
{
rIP . readSInt64 ( sTmp . c_str ( ) , _Id + " : " + prop ) ;
return ;
}
pIEL = pIEL - > getParent ( ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
rIP . readSInt64 ( val + decal , _Id + " : " + prop ) ;
}
2010-05-06 00:08:41 +00:00
}
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : relativeSInt32Read ( CInterfaceProperty & rIP , const string & prop , const char * val ,
const string & defVal )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( val = = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
rIP . readSInt32 ( defVal . c_str ( ) , _Id + " : " + prop ) ;
2010-05-06 00:08:41 +00:00
}
else
{
2012-06-09 01:57:40 +00:00
if ( isdigit ( * val ) | | * val = = ' - ' )
{
rIP . readSInt32 ( val , _Id + " : " + prop ) ;
return ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
sint32 decal = 0 ;
if ( val [ 0 ] = = ' : ' )
decal = 1 ;
if ( NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( val + decal , false ) ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
rIP . readSInt32 ( val + decal , _Id + " : " + prop ) ;
return ;
}
else
{
string sTmp ;
CInterfaceElement * pIEL = this ;
while ( pIEL ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
sTmp = pIEL - > getId ( ) + " : " + string ( val + decal ) ;
if ( NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( sTmp , false ) ! = NULL )
{
rIP . readSInt32 ( sTmp . c_str ( ) , _Id + " : " + prop ) ;
return ;
}
pIEL = pIEL - > getParent ( ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
rIP . readSInt32 ( val + decal , _Id + " : " + prop ) ;
}
2010-05-06 00:08:41 +00:00
}
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : relativeBoolRead ( CInterfaceProperty & rIP , const string & prop , const char * val ,
const string & defVal )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( val = = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
rIP . readBool ( defVal . c_str ( ) , _Id + " : " + prop ) ;
2010-05-06 00:08:41 +00:00
}
else
{
2012-06-09 01:57:40 +00:00
sint32 decal = 0 ;
if ( val [ 0 ] = = ' : ' )
decal = 1 ;
if ( NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( val + decal , false ) ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
rIP . readBool ( val + decal , _Id + " : " + prop ) ;
return ;
}
else
{
string sTmp ;
CInterfaceElement * pIEL = this ;
while ( pIEL ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
sTmp = pIEL - > getId ( ) + " : " + string ( val + decal ) ;
if ( NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( sTmp , false ) ! = NULL )
{
rIP . readBool ( sTmp . c_str ( ) , _Id + " : " + prop ) ;
return ;
}
pIEL = pIEL - > getParent ( ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
rIP . readBool ( val + decal , _Id + " : " + prop ) ;
}
2010-05-06 00:08:41 +00:00
}
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : relativeRGBARead ( CInterfaceProperty & rIP , const std : : string & prop , const char * val , const std : : string & defVal )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( val = = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
rIP . readRGBA ( defVal . c_str ( ) , _Id + " : " + prop ) ;
2010-05-06 00:08:41 +00:00
}
else
{
2012-06-09 01:57:40 +00:00
if ( isdigit ( * val ) | | * val = = ' - ' )
{
rIP . readRGBA ( val , _Id + " : " + prop ) ;
return ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
sint32 decal = 0 ;
if ( val [ 0 ] = = ' : ' )
decal = 1 ;
if ( NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( val + decal , false ) ! = NULL )
{
rIP . readRGBA ( val + decal , _Id + " : " + prop ) ;
return ;
}
else
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
string sTmp ;
CInterfaceElement * pIEL = this ;
while ( pIEL ! = NULL )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
sTmp = pIEL - > getId ( ) + " : " + string ( val + decal ) ;
if ( NLGUI : : CDBManager : : getInstance ( ) - > getDbProp ( sTmp , false ) ! = NULL )
{
rIP . readRGBA ( sTmp . c_str ( ) , _Id + " : " + prop ) ;
return ;
}
pIEL = pIEL - > getParent ( ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
rIP . readRGBA ( val + decal , _Id + " : " + prop ) ;
}
2010-05-06 00:08:41 +00:00
}
}
2012-07-27 06:14:16 +00:00
std : : string CInterfaceElement : : HotSpotToString ( THotSpot spot )
{
switch ( spot )
{
case Hotspot_TL :
return " TL " ;
break ;
case Hotspot_TM :
return " TM " ;
break ;
case Hotspot_TR :
return " TR " ;
break ;
case Hotspot_ML :
return " ML " ;
break ;
case Hotspot_MM :
return " MM " ;
break ;
case Hotspot_MR :
return " MR " ;
break ;
case Hotspot_BL :
return " BL " ;
break ;
case Hotspot_BM :
return " BM " ;
break ;
case Hotspot_BR :
return " BR " ;
break ;
}
return " " ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
THotSpot CInterfaceElement : : convertHotSpot ( const char * ptr )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( ! strnicmp ( ptr , " TL " , 2 ) )
{
return Hotspot_TL ;
}
else if ( ! strnicmp ( ptr , " TM " , 2 ) )
{
return Hotspot_TM ;
}
else if ( ! strnicmp ( ptr , " TR " , 2 ) )
{
return Hotspot_TR ;
}
else if ( ! strnicmp ( ptr , " ML " , 2 ) )
{
return Hotspot_ML ;
}
else if ( ! strnicmp ( ptr , " MM " , 2 ) )
{
return Hotspot_MM ;
}
else if ( ! strnicmp ( ptr , " MR " , 2 ) )
{
return Hotspot_MR ;
}
else if ( ! strnicmp ( ptr , " BL " , 2 ) )
{
return Hotspot_BL ;
}
else if ( ! strnicmp ( ptr , " BM " , 2 ) )
{
return Hotspot_BM ;
}
else if ( ! strnicmp ( ptr , " BR " , 2 ) )
{
return Hotspot_BR ;
}
else
return Hotspot_BL ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : convertHotSpotCouple ( const char * ptr , THotSpot & parentPosRef , THotSpot & posRef )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
nlassert ( ptr ) ;
// *** first hotspot
// skip any space or tab
while ( * ptr = = ' \t ' | | * ptr = = ' ' )
ptr + + ;
// convert first
parentPosRef = convertHotSpot ( ptr ) ;
// *** second hotspot
// must be at least 2 letter and a space
nlassert ( strlen ( ptr ) > = 3 ) ;
ptr + = 3 ;
// skip any space or tab
while ( * ptr = = ' \t ' | | * ptr = = ' ' )
ptr + + ;
// convert second
posRef = convertHotSpot ( ptr ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
NLMISC : : CRGBA CInterfaceElement : : convertColor ( const char * ptr )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
return NLMISC : : CRGBA : : stringToRGBA ( ptr ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
bool CInterfaceElement : : convertBool ( const char * ptr )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
string str = ptr ;
NLMISC : : strlwr ( str ) ;
return str = = " true " ? true : false ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
NLMISC : : CVector CInterfaceElement : : convertVector ( const char * ptr )
{
float x = 0.0f , y = 0.0f , z = 0.0f ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
sscanf ( ptr , " %f %f %f " , & x , & y , & z ) ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
return CVector ( x , y , z ) ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : convertPixelsOrRatio ( const char * ptr , sint32 & pixels , float & ratio )
{
std : : string value = ptr ;
if ( ! value . empty ( ) )
{
if ( value [ value . size ( ) - 1 ] = = ' % ' )
{
value . resize ( value . size ( ) - 1 ) ;
fromString ( value , ratio ) ;
ratio / = 100.f ;
clamp ( ratio , 0.f , 1.f ) ;
}
else
{
fromString ( value , pixels ) ;
}
}
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : addLink ( CInterfaceLink * link )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
nlassert ( link ! = NULL ) ;
if ( ! _Links )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
_Links = new TLinkVect ;
}
TLinkSmartPtr linkPtr ( link ) ;
TLinkVect : : const_iterator it = std : : find ( _Links - > begin ( ) , _Links - > end ( ) , linkPtr ) ;
if ( it ! = _Links - > end ( ) )
{
// Link already appened : this can be the case when a link has several targets property that belong to the same element, in this case, one single ptr in the vector is enough.
// nlwarning("Link added twice");
2010-05-06 00:08:41 +00:00
}
else
{
2012-06-09 01:57:40 +00:00
_Links - > push_back ( linkPtr ) ;
2010-05-06 00:08:41 +00:00
}
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : removeLink ( CInterfaceLink * link )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
nlassert ( link ! = NULL ) ;
if ( ! _Links )
{
nlwarning ( " No link added " ) ;
return ;
}
TLinkVect : : iterator it = std : : find ( _Links - > begin ( ) , _Links - > end ( ) , TLinkSmartPtr ( link ) ) ;
if ( it = = _Links - > end ( ) )
{
nlwarning ( " Unknown link " ) ;
return ;
}
_Links - > erase ( it ) ; // kill the smart ptr, maybe deleting the link.
if ( _Links - > empty ( ) )
{
delete _Links ;
_Links = NULL ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
CInterfaceElement * CInterfaceElement : : getMasterGroup ( ) const
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( getParent ( ) = = NULL )
return const_cast < CInterfaceElement * > ( this ) ;
else
return getParent ( ) - > getMasterGroup ( ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
CInterfaceGroup * CInterfaceElement : : getParentContainer ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
CInterfaceElement * parent = this ;
while ( parent )
{
CInterfaceGroup * gc = dynamic_cast < CInterfaceGroup * > ( parent ) ;
if ( ( gc ! = NULL ) & & gc - > isGroupContainer ( ) )
return gc ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
parent = parent - > getParent ( ) ;
}
return NULL ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
bool CInterfaceElement : : isIn ( sint x , sint y ) const
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
return ( x > = _XReal ) & &
( x < ( _XReal + _WReal ) ) & &
( y > _YReal ) & &
( y < = ( _YReal + _HReal ) ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
bool CInterfaceElement : : isIn ( sint x , sint y , uint width , uint height ) const
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
return ( x + ( sint ) width ) > = _XReal & &
( y + ( sint ) height ) > _YReal & &
x < ( _XReal + _WReal ) & &
y < = ( _YReal + _HReal ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
bool CInterfaceElement : : isIn ( const CInterfaceElement & other ) const
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
return isIn ( other . _XReal , other . _YReal , other . _WReal , other . _HReal ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ------------------------------------------------------------------------------------------------
void CInterfaceElement : : setActive ( bool state )
{
if ( _Active ! = state )
{
_Active = state ;
invalidateCoords ( ) ;
}
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : invalidateCoords ( uint8 numPass )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
// Get the "Root Group" ie the 1st son of the master group of us (eg "ui:interface:rootgroup" )
CInterfaceGroup * parent = getParent ( ) ;
// if our parent is NULL, then we are the master group (error!)
if ( parent = = NULL )
return ;
// if our grandfather is NULL, then our father is the Master Group => we are the "Root group"
if ( parent - > getParent ( ) = = NULL )
{
parent = dynamic_cast < CInterfaceGroup * > ( this ) ;
}
else
{
// parent is the root group when is grandFather is NULL
while ( parent - > getParent ( ) - > getParent ( ) ! = NULL )
{
parent = parent - > getParent ( ) ;
}
}
2012-06-06 20:31:47 +00:00
2012-06-09 01:57:40 +00:00
// invalidate the "root group"
if ( parent )
{
uint8 & val = static_cast < CInterfaceElement * > ( parent ) - > _InvalidCoords ;
val = max ( val , numPass ) ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : checkCoords ( )
2010-05-06 00:08:41 +00:00
{
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
bool CInterfaceElement : : isSonOf ( const CInterfaceElement * other ) const
{
const CInterfaceElement * currElem = this ;
do
{
if ( currElem = = other ) return true ;
currElem = currElem - > _Parent ;
}
while ( currElem ) ;
return false ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : resetInvalidCoords ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
_InvalidCoords = 0 ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : updateAllLinks ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( _Links )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
for ( TLinkVect : : iterator it = _Links - > begin ( ) ; it ! = _Links - > end ( ) ; + + it )
{
( * it ) - > update ( ) ;
}
2010-05-06 00:08:41 +00:00
}
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : copyOptionFrom ( const CInterfaceElement & other )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
_Active = other . _Active ;
_InvalidCoords = other . _InvalidCoords ;
_XReal = other . _XReal ;
_YReal = other . _YReal ;
_WReal = other . _WReal ;
_HReal = other . _HReal ;
_X = other . _X ;
_Y = other . _Y ;
_XReal = other . _XReal ;
_YReal = other . _YReal ;
_PosRef = other . _PosRef ;
_ParentPosRef = other . _ParentPosRef ;
_SizeRef = other . _SizeRef ;
_SizeDivW = other . _SizeDivW ;
_SizeDivH = other . _SizeDivH ;
_ModulateGlobalColor = other . _ModulateGlobalColor ;
_RenderLayer = other . _RenderLayer ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : center ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
// center the pc
CViewRenderer & vr = * CViewRenderer : : getInstance ( ) ;
uint32 sw , sh ;
vr . getScreenSize ( sw , sh ) ;
setX ( sw / 2 - getWReal ( ) / 2 ) ;
setY ( sh / 2 + getHReal ( ) / 2 ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : renderWiredQuads ( TRenderWired type , const std : : string & uiFilter )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
CCtrlBase * ctrlBase = dynamic_cast < CCtrlBase * > ( this ) ;
CInterfaceGroup * groupBase = dynamic_cast < CInterfaceGroup * > ( this ) ;
if (
( ( type = = RenderView ) & & ( ctrlBase = = NULL ) & & ( groupBase = = NULL ) ) | |
( ( type = = RenderCtrl ) & & ( ctrlBase ! = NULL ) & & ( groupBase = = NULL ) ) | |
( ( type = = RenderGroup ) & & ( ctrlBase ! = NULL ) & & ( groupBase ! = NULL ) ) )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( ! _Active ) return ;
// if there is an uiFilter, the end of _Id must match it
if ( ! uiFilter . empty ( ) & & ( uiFilter . size ( ) > _Id . size ( ) | |
_Id . compare ( _Id . size ( ) - uiFilter . size ( ) , string : : npos , uiFilter ) ! = 0 )
)
return ;
CViewRenderer & vr = * CViewRenderer : : getInstance ( ) ;
vr . drawWiredQuad ( _XReal , _YReal , _WReal , _HReal ) ;
drawHotSpot ( _PosRef , CRGBA : : Red ) ;
if ( _Parent ) _Parent - > drawHotSpot ( _ParentPosRef , CRGBA : : Blue ) ;
2010-05-06 00:08:41 +00:00
}
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : drawHotSpot ( THotSpot hs , CRGBA col )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
const sint32 radius = 2 ;
sint32 px , py ;
//
if ( hs & Hotspot_Bx )
{
py = _YReal + radius ;
}
else if ( hs & Hotspot_Mx )
{
py = _YReal + _HReal / 2 ;
}
else
{
py = _YReal + _HReal - radius ;
}
//
if ( hs & Hotspot_xL )
{
px = _XReal + radius ;
}
else if ( hs & Hotspot_xM )
{
px = _XReal + _WReal / 2 ;
}
else
{
px = _XReal + _WReal - radius ;
}
2012-06-01 01:41:44 +00:00
CViewRenderer & vr = * CViewRenderer : : getInstance ( ) ;
2012-06-09 01:57:40 +00:00
vr . drawFilledQuad ( px - radius , py - radius , radius * 2 , radius * 2 , col ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : invalidateContent ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
CInterfaceElement * elm = this ;
while ( elm )
{
// Call back
elm - > onInvalidateContent ( ) ;
// Get the parent
elm = elm - > getParent ( ) ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : visit ( CInterfaceElementVisitor * visitor )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
nlassert ( visitor ) ;
visitor - > visit ( this ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : serialConfig ( NLMISC : : IStream & f )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
if ( f . isReading ( ) )
{
throw NLMISC : : ENewerStream ( f ) ;
nlassert ( 0 ) ;
}
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : onFrameUpdateWindowPos ( sint dx , sint dy )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
_XReal + = dx ;
_YReal + = dy ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : dummySet ( sint32 /* value */ )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
nlwarning ( " Element can't be written. " ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
void CInterfaceElement : : dummySet ( const std : : string & /* value */ )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
nlwarning ( " Element can't be written. " ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
int CInterfaceElement : : luaUpdateCoords ( CLuaState & ls )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
CLuaIHM : : checkArgCount ( ls , " updateCoords " , 0 ) ;
updateCoords ( ) ;
return 0 ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
int CInterfaceElement : : luaInvalidateCoords ( CLuaState & ls )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
CLuaIHM : : checkArgCount ( ls , " updateCoords " , 0 ) ;
2010-05-06 00:08:41 +00:00
invalidateCoords ( ) ;
2012-06-09 01:57:40 +00:00
return 0 ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
int CInterfaceElement : : luaInvalidateContent ( CLuaState & ls )
{
CLuaIHM : : checkArgCount ( ls , " invalidateContent " , 0 ) ;
invalidateContent ( ) ;
return 0 ;
}
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// ***************************************************************************
int CInterfaceElement : : luaCenter ( CLuaState & ls )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
CLuaIHM : : checkArgCount ( ls , " center " , 0 ) ;
center ( ) ;
return 0 ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
int CInterfaceElement : : luaSetPosRef ( CLuaState & ls )
{
CLuaIHM : : checkArgCount ( ls , " setPosRef " , 1 ) ;
CLuaIHM : : check ( ls , ls . isString ( 1 ) , " setPosRef() requires a string in param 1 " ) ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// get hotspot
THotSpot newParentPosRef , newPosRef ;
convertHotSpotCouple ( ls . toString ( 1 ) , newParentPosRef , newPosRef ) ;
2010-05-06 00:08:41 +00:00
2012-06-09 01:57:40 +00:00
// if different from current, set,a nd invalidate coords
if ( newParentPosRef ! = getParentPosRef ( ) | | newPosRef ! = getPosRef ( ) )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
setParentPosRef ( newParentPosRef ) ;
setPosRef ( newPosRef ) ;
invalidateCoords ( ) ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
return 0 ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
int CInterfaceElement : : luaSetParentPos ( CLuaState & ls )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
CLuaIHM : : checkArgCount ( ls , " setParentPos " , 1 ) ;
CInterfaceElement * ie = CLuaIHM : : getUIOnStack ( ls , 1 ) ;
if ( ie )
{
setParentPos ( ie ) ;
}
return 0 ;
2010-05-06 00:08:41 +00:00
}
2012-06-09 01:57:40 +00:00
// ***************************************************************************
CInterfaceElement * CInterfaceElement : : clone ( )
2010-05-06 00:08:41 +00:00
{
2012-06-09 01:57:40 +00:00
NLMISC : : CMemStream dupStream ;
nlassert ( ! dupStream . isReading ( ) ) ;
CInterfaceGroup * oldParent = _Parent ;
_Parent = NULL ;
CInterfaceElement * oldParentPos = _ParentPos ;
CInterfaceElement * oldParentSize = _ParentSize ;
if ( _ParentPos = = oldParent ) _ParentPos = NULL ;
if ( _ParentSize = = oldParent ) _ParentSize = NULL ;
CInterfaceElement * begunThisCloneWarHas = NULL ;
try
{
if ( dupStream . isReading ( ) )
{
dupStream . invert ( ) ;
}
CInterfaceElement * self = this ;
dupStream . serialPolyPtr ( self ) ;
std : : vector < uint8 > datas ( dupStream . length ( ) ) ;
std : : copy ( dupStream . buffer ( ) , dupStream . buffer ( ) + dupStream . length ( ) , datas . begin ( ) ) ;
dupStream . resetPtrTable ( ) ;
dupStream . invert ( ) ;
dupStream . fill ( & datas [ 0 ] , ( uint32 ) datas . size ( ) ) ;
dupStream . serialPolyPtr ( begunThisCloneWarHas ) ;
}
catch ( const NLMISC : : EStream & )
{
// no-op -> caller has to handle the failure because NULL will be returned
}
//
_Parent = oldParent ;
_ParentPos = oldParentPos ;
_ParentSize = oldParentSize ;
//
return begunThisCloneWarHas ;
}
// ***************************************************************************
void CInterfaceElement : : serial ( NLMISC : : IStream & f )
{
f . serialPolyPtr ( _Parent ) ;
f . serial ( _Id ) ;
f . serial ( _Active ) ;
f . serial ( _InvalidCoords ) ;
f . serial ( _XReal , _YReal , _WReal , _HReal ) ;
f . serial ( _X , _Y , _W , _H ) ;
f . serialEnum ( _PosRef ) ;
f . serialEnum ( _ParentPosRef ) ;
_ParentPos . serialPolyPtr ( f ) ;
f . serial ( _SizeRef ) ;
f . serial ( _SizeDivW , _SizeDivH ) ;
_ParentSize . serialPolyPtr ( f ) ;
f . serial ( _ModulateGlobalColor ) ;
f . serial ( _RenderLayer ) ;
f . serial ( _AvoidResizeParent ) ;
nlassert ( _Links = = NULL ) ; // not supported
}
// ***************************************************************************
void CInterfaceElement : : serialAH ( NLMISC : : IStream & f , IActionHandler * & ah )
{
std : : string ahName ;
if ( f . isReading ( ) )
{
f . serial ( ahName ) ;
ah = CAHManager : : getInstance ( ) - > getActionHandler ( ahName ) ;
}
else
{
ahName = CAHManager : : getInstance ( ) - > getActionHandlerName ( ah ) ;
f . serial ( ahName ) ;
}
2010-05-06 00:08:41 +00:00
}
2012-07-11 04:44:34 +00:00
bool CInterfaceElement : : isInGroup ( CInterfaceGroup * group )
{
CInterfaceGroup * parent = getParent ( ) ;
while ( parent ! = NULL )
{
if ( parent = = group )
return true ;
else
parent = parent - > getParent ( ) ;
}
return false ;
}
2010-05-06 00:08:41 +00:00
2012-07-16 04:16:43 +00:00
CStringMapper * CStringShared : : _UIStringMapper = NULL ;
void CStringShared : : createStringMapper ( )
{
if ( _UIStringMapper = = NULL )
_UIStringMapper = CStringMapper : : createLocalMapper ( ) ;
}
void CStringShared : : deleteStringMapper ( )
{
delete _UIStringMapper ;
}
2012-06-09 01:57:40 +00:00
}
2010-05-06 00:08:41 +00:00