Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/util/loading/load_param_description.cc @ 9772

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

nice description again for the load_params

File size: 3.1 KB
Line 
1/*
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:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#include "load_param_description.h"
17
18#include "multi_type.h"
19#include "debug.h"
20
21/**
22 * @param paramName the name of the parameter to load
23 */
24LoadParamDescription::LoadParamDescription(const std::string& paramName)
25    : _name(paramName), _parameterCount(0)
26{ }
27
28/**
29 *  removes all the alocated memory
30 */
31LoadParamDescription::~LoadParamDescription()
32{}
33
34/**
35 * @param descriptionText The text to set as a description for this Parameter
36 */
37void LoadParamDescription::setDescription(const std::string& descriptionText)
38{
39  this->_description = descriptionText;
40}
41
42void LoadParamDescription::setValues(unsigned int paramCount,
43                                     const MultiType* const defaultValues,
44                                     bool retVal)
45{
46  this->_parameterCount = paramCount;
47  for (unsigned int i = 0; i < paramCount; ++i)
48  {
49    this->_defaultValues.push_back(defaultValues[i].getString());
50    this->_types.push_back(MultiType::MultiTypeToString(defaultValues[i].getType()));
51  }
52
53}
54
55
56/**
57 *  prints out this parameter, its input method and the description (if availiable)
58 */
59void LoadParamDescription::print() const
60{
61  PRINT(0)(" <%s>", this->_name.c_str());
62  for (unsigned int i = 0; i < this->_parameterCount; i++)
63  {
64    if (i > 0)
65      PRINT(3)(",");
66    // FIXME
67    //     switch (this->types[i])
68    //     {
69    //       default:
70    //         PRINTF(3)("none");
71    //         break;
72    //       case ParameterBool:
73    //         PRINT(3)("bool");
74    //         break;
75    //       case ParameterChar:
76    //         PRINT(3)("char");
77    //         break;
78    //       case ParameterString:
79    //         PRINT(3)("string");
80    //         break;
81    //       case ParameterInt:
82    //         PRINT(3)("int");
83    //         break;
84    //       case ParameterUInt:
85    //         PRINT(3)("Uint");
86    //         break;
87    //       case ParameterFloat:
88    //         PRINT(3)("float");
89    //         break;
90    //       case ParameterLong:
91    //         PRINT(3)("long");
92    //         break;
93    //       case ParameterXML:
94    //         PRINT(3)("XML");
95    //         break;
96    //     }
97  }
98  PRINT(0)("</%s>", this->_name.c_str());
99  if (!this->_description.empty())
100    PRINT(3)(" -- %s", this->_description.c_str());
101  // default values
102  if (this->_parameterCount > 0)
103  {
104    PRINT(0)(" (Default: ");
105    for (unsigned int i = 0; i < this->_parameterCount; i++)
106    {
107      if (i > 0)
108        PRINT(0)(", ");
109      if (this->_types[i] == "string")
110      { // leave brackets !!
111        PRINT(0)("\"%s\"", this->_defaultValues[i].c_str());
112      }
113      else
114      {
115        PRINT(0)("%s", this->_defaultValues[i].c_str());
116      }
117    }
118    PRINT(0)(")");
119  }
120  PRINT(0)("\n");
121}
122
123
Note: See TracBrowser for help on using the repository browser.