Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/util/loading/load_param.cc @ 9773

Last change on this file since 9773 was 9771, checked in by bensch, 18 years ago

first step in the direction of parameter descriptions… again

File size: 3.2 KB
RevLine 
[4597]1/*
[4250]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
[4285]12   main-programmer: Benjamin Grauer
[4250]13   co-programmer: ...
14*/
15
[5654]16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_LOADING
17
[7193]18#include "util/loading/load_param.h"
[9765]19#include "load_param_class_description.h"
[9727]20#include "compiler.h"
21#include "debug.h"
[4256]22/**
[9763]23 * @brief Constructs a new LoadParameter
[5653]24 * @param root the XML-element to load this Parameter from
25 * @param paramName the Parameter to load
26 * @param object the BaseObject, to load this parameter on to (will be cast to executor's Parameter)
[9763]27 * @param inLoadCycle If we are in a LoadCycle (loading differs.).
[5653]28 */
[9769]29LoadParamBase::LoadParamBase(const TiXmlElement* root, const std::string& paramName, bool inLoadCycle)
30    :  paramName(paramName), inLoadCycle(inLoadCycle)
[5645]31{
[5654]32  // determin the LoadString.
33  if (likely(!inLoadCycle))
[6613]34    this->loadElem = grabParameterElement(root, paramName);
[7221]35  else if (paramName == root->Value())
[6613]36    this->loadElem = (TiXmlElement*)root->FirstChild();
[5645]37  else
[6613]38    this->loadElem = NULL;
[9727]39}
[5651]40
[9727]41
42/**
43 * @param descriptionText The text to set as a description for this Parameter
44 * @returns a pointer to itself.
45 */
[9770]46void LoadParamBase::describe(const ClassID& classID, const std::string& descriptionText)
[9727]47{
[9770]48  PRINTF(5)("Describing Class '%s'(id:%d) Parameter '%s': description '%s'\n",
49  classID.name().c_str(), classID.id(), paramName.c_str(), descriptionText.c_str());
50
[9771]51  LoadParamClassDescription::describeClass(classID, paramName, descriptionText);
52}
[9770]53
[9771]54/**
55 * @brief sets the Values of the Description to a usefull text.
56 */
57void LoadParamBase::setDescriptionValues(const ClassID& classID, unsigned int paramCount, const MultiType* const defaultValues, bool retVal)
58{
59  LoadParamClassDescription::setValuesOf(classID, paramName, paramCount, defaultValues, retVal);
[9727]60}
61
62
[5655]63//////////////////////
64// HELPER FUNCTIONS //
65//////////////////////
[4492]66/**
[4836]67 * @param root: The XML-element to grab a parameter from
68 * @param parameterName: the parameter to grab
69 * @returns the Value of the parameter if found, NULL otherwise
[4492]70*/
[9771]71std::string LoadParamBase::grabParameter(const TiXmlElement* root, const std::string& parameterName)
[4492]72{
[9770]73  const TiXmlElement* const element = grabParameterElement(root, parameterName);
74  if (element != NULL)
75    return element->Value();
76  else
[7198]77  {
[9770]78    static std::string empty("");
79    return empty;
[7198]80  }
[4492]81}
[6613]82
83/**
84 * @param root: The XML-element to grab a parameter from
85 * @param parameterName: the parameter to grab
86 * @returns the Element of the parameter if found, NULL otherwise
87 */
[9770]88const TiXmlElement* LoadParamBase::grabParameterElement(const TiXmlElement* root, const std::string& parameterName)
[6613]89{
90  const TiXmlElement* element;
91  const TiXmlNode* node;
92
[7221]93  if (root == NULL)
[6613]94    return NULL;
95
96  element = root->FirstChildElement( parameterName);
97  if( element == NULL) return NULL;
98
99  node = element->FirstChild();
100  while( node != NULL)
101  {
102    if( node->ToText()) return (TiXmlElement*)node;
103    node = node->NextSibling();
104  }
105  return NULL;
106}
107
108
109
Note: See TracBrowser for help on using the repository browser.