Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/orxonox/objects/quest/AddQuest.cc @ 2435

Last change on this file since 2435 was 2435, checked in by rgrieder, 15 years ago
  • updated msvc files
  • Fixed build by including util/Integer.h in NetworkPrereqs.h instead of util/Math.h
  • Fixed issue with a this pointer used in the base class c'tor initialisation
  • Fixed build under windows: INFINITE seems to be a macro, defined in winbase.h. Constant was somewhere in the quest files.
  • Fixed build: Only integral types can have header-file value when declared as static const. Float is not supported by the standard.
  • Fixed a potential bug in Planet.cc: "if (cond) doOne; doTwo" —> missing brances (indentation was correct, so I assume there have to be brances)
  • Corrected lots of indentation problems with tabs/spaces mix.
  • Changed all "@file Blubb.h" to "@file": Doxygen then assumes the actual filename. This gives more flexibility.
File size: 2.9 KB
RevLine 
[1992]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
[2261]29/**
[2435]30    @file
[2385]31    @brief Implementation of the AddQuest class.
[2261]32*/
33
[2105]34#include "OrxonoxStableHeaders.h"
35#include "AddQuest.h"
36
[2021]37#include <string>
[2261]38
[1992]39#include "core/CoreIncludes.h"
[2068]40#include "util/Exception.h"
[2021]41
[2261]42#include "orxonox/objects/infos/PlayerInfo.h"
[2021]43#include "QuestManager.h"
44#include "Quest.h"
[1992]45
[2435]46namespace orxonox
47{
[1992]48    CreateFactory(AddQuest);
49
[2261]50    /**
51    @brief
52        Constructor. Registers the object.
53    */
[2092]54    AddQuest::AddQuest(BaseObject* creator) : ChangeQuestStatus(creator)
[2021]55    {
[1992]56        RegisterObject(AddQuest);
57    }
[2092]58
[1992]59    /**
60    @brief
61        Destructor.
[2092]62    */
[1992]63    AddQuest::~AddQuest()
64    {
65    }
[2092]66
[2261]67    /**
68    @brief
69        Method for creating a AddQuest object through XML.
70    */
[2076]71    void AddQuest::XMLPort(Element& xmlelement, XMLPort::Mode mode)
72    {
73        SUPER(AddQuest, XMLPort, xmlelement, mode);
[2261]74       
75        COUT(3) << "New AddQuest, with target Quest {" << this->getQuestId() << "}, created." << std::endl;
[2076]76    }
[2092]77
[1992]78    /**
79    @brief
[2261]80        Invokes the QuestEffect.
[1992]81    @param player
[2261]82        The player the QuestEffect is invoked on.
[2068]83    @return
[2261]84        Returns true if the QuestEffect was successfully invoked.
[1992]85    */
[2261]86    bool AddQuest::invoke(PlayerInfo* player)
[1992]87    {
[2261]88        if(player == NULL) //!< Null-pointers are badass.
[2068]89        {
90            COUT(2) << "Input player is NULL." << std::endl;
91            return false;
92        }
[2092]93
[2261]94        COUT(3) << "AddQuest on player: " << player << " ." << std::endl;
95
[2068]96        try
97        {
[2093]98            Quest* quest = QuestManager::findQuest(this->getQuestId());
[2261]99            if(quest == NULL || !quest->start(player))
[2093]100            {
101               return false;
102            }
103        }
104        catch(const orxonox::Exception& ex)
105        {
[2068]106            COUT(2) << ex.getFullDescription() << std::endl;
107            return false;
[2093]108        }
[2092]109
[2385]110        COUT(3) << "Quest {" << this->getQuestId() << "} successfully added to player: " << player << " ." << std::endl;
[2093]111        return true;
[1992]112    }
113
114
115}
Note: See TracBrowser for help on using the repository browser.