Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/pickup/PickupIdentifier.cc @ 8858

Last change on this file since 8858 was 8858, checked in by landauf, 13 years ago

merged output branch back to trunk.

Changes:

  • you have to include util/Output.h instead of util/Debug.h
  • COUT(x) is now called orxout(level)
  • output levels are now defined by an enum instead of numbers. see util/Output.h for the definition
  • it's possible to use output contexts with orxout(level, context). see util/Output.h for some common contexts. you can define more contexts
  • you must use 'endl' at the end of an output message, '\n' does not flush the message

Output levels:

  • instead of COUT(0) use orxout()
  • instead of COUT(1) use orxout(user_error) or orxout(internal_error)
  • instead of COUT(2) use orxout(user_warning) or orxout(internal_warning)
  • instead of COUT(3) use orxout(user_status/user_info) or orxout(internal_status/internal_info)
  • instead of COUT(4) use orxout(verbose)
  • instead of COUT(5) use orxout(verbose_more)
  • instead of COUT(6) use orxout(verbose_ultra)

Guidelines:

  • user_* levels are for the user, visible in the console and the log-file
  • internal_* levels are for developers, visible in the log-file
  • verbose_* levels are for debugging, only visible if the context of the output is activated

Usage in C++:

  • orxout() << "message" << endl;
  • orxout(level) << "message" << endl;
  • orxout(level, context) << "message" << endl;

Usage in Lua:

  • orxout("message")
  • orxout(orxonox.level.levelname, "message")
  • orxout(orxonox.level.levelname, "context", "message")

Usage in Tcl (and in the in-game-console):

  • orxout levelname message
  • orxout_context levelname context message
  • shortcuts: log message, error message, warning message, status message, info message, debug message
  • Property svn:eol-style set to native
File size: 4.9 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Damian 'Mozork' Frick
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29/**
30    @file PickupIdentifier.cc
31    @brief Implementation of the PickupIdentifier class.
32*/
33
34#include "PickupIdentifier.h"
35
36#include "core/CoreIncludes.h"
37#include "core/Identifier.h"
38
39#include "interfaces/Pickupable.h"
40
41namespace orxonox
42{
43
44    /**
45    @brief
46        Constructor. Registers the object and initializes member variables.
47    */
48    PickupIdentifier::PickupIdentifier(Pickupable* pickup)
49    {
50        RegisterRootObject(PickupIdentifier);
51
52        if(pickup == NULL)
53            orxout(internal_error, context::pickups) << "PickupIdentifier was created without a valid Pickupable." << endl;
54
55        this->pickup_ = pickup;
56    }
57
58    PickupIdentifier::~PickupIdentifier()
59    {
60
61    }
62
63    /**
64    @brief
65        Compares two PickupIdentifiers and returns 0 if a == b, <0 if a < b and >0 if a > b for a.compare(b).
66    @param identifier
67        Pointer to the second PickupIdentifier, b.
68    @return
69        Returns an integer. 0 if the two compared PickupIdentifiers are the same, <0 if a < b and >0 if a > b.
70    */
71    int PickupIdentifier::compare(const PickupIdentifier* identifier) const
72    {
73        assert(identifier);
74        assert(identifier->pickup_);
75        assert(this->pickup_);
76
77        // If the classIdentifiers are not the same (meaning the PickupIdentifiers identify different classes), the obviously the two Pickupables identified by the PickupIdentifiers cannot be the same. An ordering is established through the alphabetical ordering of the respective classnames.
78        if(!identifier->pickup_->getIdentifier()->isExactlyA(this->pickup_->getIdentifier()))
79            return this->pickup_->getIdentifier()->getName().compare(identifier->pickup_->getIdentifier()->getName());
80
81        // If the class is the same for both PickupIdentifiers we go on to check the parameters of the class.
82        // If the two have a different number of parameters then obviously something is very wrong.
83        if(!(this->parameters_.size() == identifier->parameters_.size()))
84        {
85            orxout(internal_error, context::pickups) << "Something went wrong in PickupIdentifier!" << endl;
86            return this->parameters_.size()-identifier->parameters_.size();
87        }
88
89        // We iterate through all parameters and compare their values (which are strings). The first parameter is the most significant. The ordering is once again established by the alphabetical comparison of the two value strings.
90        for(std::map<std::string, std::string>::const_iterator it = this->parameters_.begin(); it != this->parameters_.end(); it++)
91        {
92            // If a parameter present in one of the identifiers is not found in the other, once again, something is very wrong.
93            if(identifier->parameters_.find(it->first) == identifier->parameters_.end())
94            {
95                orxout(internal_error, context::pickups) << "Something went wrong in PickupIdentifier!" << endl;
96                return -1;
97            }
98            if(identifier->parameters_.find(it->first)->second != it->second)
99                return it->second.compare(identifier->parameters_.find(it->first)->second);
100        }
101
102        return 0;
103    }
104
105    /**
106    @brief
107        Add a parameter to the PickupIdentifier.
108    @param name
109        The name of the parameter.
110    @param value
111        The value of the parameter.
112    @return
113        Returns false if the parameter already existed, true if not.
114    */
115    bool PickupIdentifier::addParameter(std::string & name, std::string & value)
116    {
117        orxout(verbose, context::pickups) << "PickupIdentifier " << name << ", " << value << endl;
118
119        if(!(this->parameters_.find(name) == this->parameters_.end()))
120        {
121            orxout(verbose, context::pickups) << "Request for adding a parameter that already exists for the PickupIdentififer was denied. name: '" << name << "', value: '" << value << "'."<<  endl;
122            return false;
123        }
124
125        this->parameters_[name] = value;
126
127        return true;
128    }
129
130}
Note: See TracBrowser for help on using the repository browser.