From b5c4ad14da4339f0e11175ab78a3609588271c80 Mon Sep 17 00:00:00 2001 From: dfighter1985 Date: Thu, 28 Jun 2012 07:35:11 +0200 Subject: [PATCH] CHANGED: #1471 CDBViewQuantity is now part of the NELGUI library and is under the NLGUI namespace. --- .../include/nel/gui}/dbview_quantity.h | 48 ++--- code/nel/src/gui/dbview_quantity.cpp | 114 +++++++++++ .../src/interface_v3/dbview_quantity.cpp | 114 ----------- .../src/interface_v3/interface_parser.cpp | 190 +----------------- 4 files changed, 141 insertions(+), 325 deletions(-) rename code/{ryzom/client/src/interface_v3 => nel/include/nel/gui}/dbview_quantity.h (59%) create mode 100644 code/nel/src/gui/dbview_quantity.cpp delete mode 100644 code/ryzom/client/src/interface_v3/dbview_quantity.cpp diff --git a/code/ryzom/client/src/interface_v3/dbview_quantity.h b/code/nel/include/nel/gui/dbview_quantity.h similarity index 59% rename from code/ryzom/client/src/interface_v3/dbview_quantity.h rename to code/nel/include/nel/gui/dbview_quantity.h index a693a46d3..d692f0785 100644 --- a/code/ryzom/client/src/interface_v3/dbview_quantity.h +++ b/code/nel/include/nel/gui/dbview_quantity.h @@ -20,38 +20,40 @@ #define NL_DBVIEW_QUANTITY_H #include "nel/misc/types_nl.h" - #include "nel/gui/view_text.h" - -// *************************************************************************** -/** - * Display a text in the form of val / max or "empty" - * \author Lionel Berenguier - * \author Nevrax France - * \date 2002 - */ -class CDBViewQuantity : public CViewText +namespace NLGUI { -public: - /// Constructor - CDBViewQuantity(const TCtorParam ¶m); + // *************************************************************************** + /** + * Display a text in the form of val / max or "empty" + * \author Lionel Berenguier + * \author Nevrax France + * \date 2002 + */ + class CDBViewQuantity : public CViewText + { + public: - virtual bool parse (xmlNodePtr cur, CInterfaceGroup * parentGroup); - virtual void draw (); + /// Constructor + CDBViewQuantity(const TCtorParam ¶m); + + virtual bool parse (xmlNodePtr cur, CInterfaceGroup * parentGroup); + virtual void draw (); -protected: - CInterfaceProperty _Number; - CInterfaceProperty _NumberMax; - sint32 _Cache; - sint32 _CacheMax; - ucstring _EmptyText; + protected: + CInterfaceProperty _Number; + CInterfaceProperty _NumberMax; + sint32 _Cache; + sint32 _CacheMax; + ucstring _EmptyText; - void buildTextFromCache(); -}; + void buildTextFromCache(); + }; +} #endif // NL_DBVIEW_QUANTITY_H diff --git a/code/nel/src/gui/dbview_quantity.cpp b/code/nel/src/gui/dbview_quantity.cpp new file mode 100644 index 000000000..fb6241339 --- /dev/null +++ b/code/nel/src/gui/dbview_quantity.cpp @@ -0,0 +1,114 @@ +// Ryzom - MMORPG Framework +// 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 . + + +#include "nel/gui/dbview_quantity.h" +#include "nel/misc/xml_auto_ptr.h" +#include "nel/misc/i18n.h" + +using namespace std; +using namespace NL3D; +using namespace NLMISC; + + +NLMISC_REGISTER_OBJECT(CViewBase, CDBViewQuantity, std::string, "text_quantity"); + +namespace NLGUI +{ + + // *************************************************************************** + CDBViewQuantity::CDBViewQuantity(const TCtorParam ¶m) + : CViewText(param) + { + } + + + + // *************************************************************************** + bool CDBViewQuantity::parse (xmlNodePtr cur, CInterfaceGroup * parentGroup) + { + if(!CViewText::parse(cur, parentGroup)) + return false; + + // link to the db + CXMLAutoPtr ptr; + ptr = xmlGetProp (cur, (xmlChar*)"value"); + if ( ptr ) + _Number.link ( ptr ); + else + { + nlinfo ("no value in %s", _Id.c_str()); + return false; + } + ptr = xmlGetProp (cur, (xmlChar*)"valuemax"); + if ( ptr ) + _NumberMax.link ( ptr ); + else + { + nlinfo ("no max value in %s", _Id.c_str()); + return false; + } + + // empty opt + ptr = xmlGetProp (cur, (xmlChar*)"emptytext"); + if(ptr) + { + const char *propPtr = ptr; + _EmptyText = ucstring(propPtr); + if ((strlen(propPtr)>2) && (propPtr[0] == 'u') && (propPtr[1] == 'i')) + _EmptyText = CI18N::get (propPtr); + } + + // init cache. + _Cache= 0; + _CacheMax= 0; + buildTextFromCache(); + + return true; + } + + // *************************************************************************** + void CDBViewQuantity::draw () + { + // change text + sint32 val= _Number.getSInt32(); + sint32 valMax= _NumberMax.getSInt32(); + if(_Cache!=val || _CacheMax!=valMax) + { + _Cache= val; + _CacheMax=valMax; + buildTextFromCache(); + } + + // parent call + CViewText::draw(); + } + + // *************************************************************************** + void CDBViewQuantity::buildTextFromCache() + { + if(_Cache==0 && !_EmptyText.empty()) + { + setText(_EmptyText); + } + else + { + char buf[256]; + smprintf(buf, 256, "%d/%d", _Cache, _CacheMax); + setText(toString((const char*)buf)); + } + } +} diff --git a/code/ryzom/client/src/interface_v3/dbview_quantity.cpp b/code/ryzom/client/src/interface_v3/dbview_quantity.cpp deleted file mode 100644 index 6f95ddbc9..000000000 --- a/code/ryzom/client/src/interface_v3/dbview_quantity.cpp +++ /dev/null @@ -1,114 +0,0 @@ -// Ryzom - MMORPG Framework -// 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 . - - - - -#include "stdpch.h" - -#include "dbview_quantity.h" -#include "interface_manager.h" -#include "nel/misc/xml_auto_ptr.h" - -using namespace std; -using namespace NL3D; -using namespace NLMISC; - - -NLMISC_REGISTER_OBJECT(CViewBase, CDBViewQuantity, std::string, "text_quantity"); - -// *************************************************************************** -CDBViewQuantity::CDBViewQuantity(const TCtorParam ¶m) - : CViewText(param) -{ -} - - - -// *************************************************************************** -bool CDBViewQuantity::parse (xmlNodePtr cur, CInterfaceGroup * parentGroup) -{ - if(!CViewText::parse(cur, parentGroup)) - return false; - - // link to the db - CXMLAutoPtr ptr; - ptr = xmlGetProp (cur, (xmlChar*)"value"); - if ( ptr ) - _Number.link ( ptr ); - else - { - nlinfo ("no value in %s", _Id.c_str()); - return false; - } - ptr = xmlGetProp (cur, (xmlChar*)"valuemax"); - if ( ptr ) - _NumberMax.link ( ptr ); - else - { - nlinfo ("no max value in %s", _Id.c_str()); - return false; - } - - // empty opt - ptr = xmlGetProp (cur, (xmlChar*)"emptytext"); - if(ptr) - { - const char *propPtr = ptr; - _EmptyText = ucstring(propPtr); - if ((strlen(propPtr)>2) && (propPtr[0] == 'u') && (propPtr[1] == 'i')) - _EmptyText = CI18N::get (propPtr); - } - - // init cache. - _Cache= 0; - _CacheMax= 0; - buildTextFromCache(); - - return true; -} - -// *************************************************************************** -void CDBViewQuantity::draw () -{ - // change text - sint32 val= _Number.getSInt32(); - sint32 valMax= _NumberMax.getSInt32(); - if(_Cache!=val || _CacheMax!=valMax) - { - _Cache= val; - _CacheMax=valMax; - buildTextFromCache(); - } - - // parent call - CViewText::draw(); -} - -// *************************************************************************** -void CDBViewQuantity::buildTextFromCache() -{ - if(_Cache==0 && !_EmptyText.empty()) - { - setText(_EmptyText); - } - else - { - char buf[256]; - smprintf(buf, 256, "%d/%d", _Cache, _CacheMax); - setText(toString((const char*)buf)); - } -} diff --git a/code/ryzom/client/src/interface_v3/interface_parser.cpp b/code/ryzom/client/src/interface_v3/interface_parser.cpp index b8f36ea00..d07a8f154 100644 --- a/code/ryzom/client/src/interface_v3/interface_parser.cpp +++ b/code/ryzom/client/src/interface_v3/interface_parser.cpp @@ -49,7 +49,7 @@ #include "nel/gui/dbview_bar.h" #include "nel/gui/dbview_bar3.h" #include "nel/gui/dbview_number.h" -#include "dbview_quantity.h" +#include "nel/gui/dbview_quantity.h" #include "nel/gui/dbview_digit.h" // Ctrl #include "nel/gui/ctrl_scroll.h" @@ -1405,106 +1405,10 @@ bool CInterfaceParser::parseGroup (xmlNodePtr cur, CInterfaceGroup * parentGroup { group = dynamic_cast(NLMISC_GET_FACTORY(CViewBase, std::string).createObject("interface_group", CViewBase::TCtorParam())); } -// if (stricmp(ptr, "list") == 0) -// group = new CGroupList; -// else if (stricmp(ptr, "container") == 0) -// group = new CGroupContainer; -// else if (stricmp(ptr, "frame") == 0) -// group = new CGroupFrame; -// else if (stricmp(ptr, "modal") == 0) -// group = new CGroupModal; -// else if (stricmp(ptr, "modal_get_key") == 0) -// group = new CGroupModalGetKey; -// else if (stricmp(ptr, "menu") == 0) -// group = new CGroupMenu; -// else if (stricmp(ptr, "select_number") == 0) -// group = new CDBGroupSelectNumber; -// else if (stricmp(ptr, "tree") == 0) -// group = new CGroupTree; -// else if (stricmp(ptr, "list_sheet") == 0) -// group = new CDBGroupListSheet; -// else if (stricmp(ptr, "scroll_text") == 0) -// group = new CGroupScrollText; -// else if (stricmp(ptr, "html") == 0) -// group = new CGroupHTML; -// else if (stricmp(ptr, "html_input_offset") == 0) -// group = new CGroupHTMLInputOffset; -// else if (stricmp(ptr, "forum_html") == 0) -// group = new CGroupHTMLForum; -// else if (stricmp(ptr, "mail_html") == 0) -// group = new CGroupHTMLMail; -// else if (stricmp(ptr, "qcm_html") == 0) -// group = new CGroupHTMLQCM; -// else if (stricmp(ptr, "quick_help") == 0) -// group = new CGroupQuickHelp; -// else if (stricmp(ptr, "cs_html") == 0) -// group = new CGroupHTMLCS; -// else if (stricmp(ptr, "compas") == 0) -// group = new CGroupCompas; -// else if (stricmp(ptr, "menu_compas") == 0) -// group = new CGroupCompasMenu; -// else if (stricmp(ptr, "in_scene") == 0) -// group = new CGroupInScene; -// else if (stricmp(ptr, "in_scene_user_info") == 0) -// group = new CGroupInSceneUserInfo; -// else if (stricmp(ptr, "in_scene_bubble") == 0) -// group = new CGroupInSceneBubble; -// else if (stricmp(ptr, "edit_box") == 0) -// group = new CGroupEditBox; -// else if (stricmp(ptr, "career") == 0) -// group = new CGroupCareer; -// else if (stricmp(ptr, "job") == 0) -// group = new CGroupJob; -// else if (stricmp(ptr, "skills_displayer") == 0) -// group = new CGroupSkills; -// else if (stricmp(ptr, "combo_box") == 0) -// group = new CDBGroupComboBox; -// else if (stricmp(ptr, "list_sheet_text") == 0) -// group = new CDBGroupListSheetText; -// else if (stricmp(ptr, "list_sheet_trade") == 0) -// group = new CDBGroupListSheetTrade; -// else if (stricmp(ptr, "list_sheet_mission") == 0) -// group = new CDBGroupListSheetMission; -// else if (stricmp(ptr, "list_sheet_guild") == 0) -// group = new CDBGroupListAscensor; -// else if (stricmp(ptr, "list_sheet_bag") == 0) -// group = new CDBGroupListSheetBag; -// else if (stricmp(ptr, "list_icon_bag") == 0) -// group = new CDBGroupIconListBag; -// else if (stricmp(ptr, "list_sheet_filter_clm_slot") == 0) -// group = new CDBGroupListSheetFilterCLMSlot; -// else if (stricmp(ptr, "list_sheet_filter_exchangeable") == 0) -// group = new CDBGroupListSheetFilterExchangeable; -// else if (stricmp(ptr, "build_phrase") == 0) -// group = new CDBGroupBuildPhrase; -// else if (stricmp(ptr, "list_sheet_phraseid") == 0) -// group = new CDBGroupListSheetTextPhraseId; -// else if (stricmp(ptr, "list_sheet_compo_brick") == 0) -// group = new CDBGroupListSheetTextBrickComposition; -// else if (stricmp(ptr, "list_sheet_share") == 0) -// group = new CDBGroupListSheetTextShare; -// else if (stricmp(ptr, "map") == 0) -// group = new CGroupMap; -// else if (stricmp(ptr, "container_windows") == 0) -// group = new CGroupContainerWindows; -// else if (stricmp(ptr, "phrase_skill_filter") == 0) -// group = new CGroupPhraseSkillFilter; -// else if (stricmp(ptr, "list_sheet_bonus_malus") == 0) -// group = new CDBGroupListSheetBonusMalus; -// else if (stricmp(ptr, "tab") == 0) -// group = new CGroupTab; -// else if (stricmp(ptr, "list_sheet_text_phrase") == 0) -// group = new CDBGroupListSheetTextPhrase; -// else if (stricmp(ptr, "list_sheet_icon_phrase") == 0) -// group = new CDBGroupListSheetIconPhrase; -// else if (stricmp(ptr, "table") == 0) -// group = new CGroupTable; -// else -// group = new CInterfaceGroup; + } else group = dynamic_cast(NLMISC_GET_FACTORY(CViewBase, std::string).createObject("interface_group", CViewBase::TCtorParam())); -// group = new CInterfaceGroup; // parse the group attributes if (!group->parse(cur,parentGroup)) @@ -1608,40 +1512,6 @@ bool CInterfaceParser::parseControl (xmlNodePtr cur, CInterfaceGroup * parentGro ctrl = dynamic_cast(NLMISC_GET_FACTORY(CViewBase, std::string).createObject(string((const char*)ptr), CViewBase::TCtorParam())); -// if (!strcmp(ptr,"button")) -// { -// ctrl = new CCtrlButton; -// } -// else if (stricmp(ptr, "scroll") == 0) -// { -// ctrl = new CCtrlScroll; -// } -// else if (stricmp(ptr, "colpick") == 0) -// { -// ctrl = new CCtrlColPick; -// } -// else if (stricmp(ptr, "tooltip") == 0) -// { -// ctrl = new CCtrlToolTip; -// } - // DB CTRL -// else if ( !strcmp(ptr,"sheet")) -// { -// ctrl = new CDBCtrlSheet; -// } -// else if ( !strcmp(ptr,"text_button")) -// { -// ctrl = new CCtrlTextButton; -// } -// else if ( !strcmp(ptr,"button_link")) -// { -// ctrl = new CCtrlLink; -// } -// else if ( !strcmp(ptr,"tab_button")) -// { -// ctrl = new CCtrlTabButton; -// } - if (ctrl) { if (!ctrl->parse(cur,parentGroup)) @@ -1684,62 +1554,6 @@ bool CInterfaceParser::parseView(xmlNodePtr cur, CInterfaceGroup * parentGroup, } view = NLMISC_GET_FACTORY(CViewBase, std::string).createObject(string((const char*)ptr), CViewBase::TCtorParam()); -// if ( !strcmp(ptr,"text")) -// { -// view = new CViewText; -// } -// else if ( !strcmp(ptr,"text_formated")) -// { -// view = new CViewTextFormated; -// } -// else if ( !strcmp(ptr,"text_id")) -// { -// view = new CViewTextID; -// } -// else if ( !strcmp(ptr,"text_id_formated")) -// { -// view = new CViewTextIDFormated; -// } -// else if ( !strcmp(ptr,"text_number")) -// { -// view = new CDBViewNumber; -// } -// else if ( !strcmp(ptr,"text_quantity")) -// { -// view = new CDBViewQuantity; -// } -// else if ( !strcmp(ptr,"digit")) -// { -// view = new CDBViewDigit; -// } -// else if ( !strcmp(ptr,"bitmap")) -// { -// view = new CViewBitmap; -// } -// else if ( !strcmp(ptr,"bar")) -// { -// view = new CDBViewBar; -// } -// else if ( !strcmp(ptr,"bar3")) -// { -// view = new CDBViewBar3; -// } -// else if ( !strcmp(ptr,"bitmap_faber_mp")) -// { -// view = new CViewBitmapFaberMp; -// } -// else if (!strcmp(ptr, "bitmap_combo")) -// { -// view = new CViewBitmapCombo; -// } -// else if (!strcmp(ptr, "radar")) -// { -// view = new CViewRadar; -// } -// else if ( !strcmp(ptr,"pointer")) -// { -// view = _Pointer = new CViewPointer; -// } if ( !strcmp(ptr,"pointer")) {