Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ScriptableController_HS17/src/orxonox/Level.cc @ 11549

Last change on this file since 11549 was 11549, checked in by kohlia, 6 years ago

Not working yet

  • Property svn:eol-style set to native
File size: 8.2 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 *      Fabian 'x3n' Landau
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "Level.h"
30
31#include "util/Math.h"
32#include "util/SubString.h"
33#include "core/CoreIncludes.h"
34#include "core/Loader.h"
35#include "core/Template.h"
36#include "core/XMLFile.h"
37#include "core/XMLPort.h"
38#include "core/module/PluginReference.h"
39
40#include "infos/PlayerInfo.h"
41#include "gametypes/Gametype.h"
42#include "overlays/OverlayGroup.h"
43#include "LevelManager.h"
44#include "scriptablecontroller/scriptable_controller.h"
45
46namespace orxonox
47{
48    RegisterClass(Level);
49
50    Level::Level(Context* context) : BaseObject(context), Synchronisable(context), Context(context)
51    {
52        RegisterObject(Level);
53
54        this->setLevel(WeakPtr<Level>(this)); // store a weak-pointer to itself (a strong-pointer would create a recursive dependency)
55
56        this->registerVariables();
57        this->xmlfilename_ = this->getFilename();
58        this->xmlfile_ = nullptr;
59    }
60
61    Level::~Level()
62    {
63        if (this->isInitialized())
64        {
65            if (LevelManager::exists())
66                LevelManager::getInstance().releaseActivity(this);
67
68            if (this->xmlfile_)
69                Loader::getInstance().unload(this->xmlfile_);
70
71            this->unloadPlugins();
72        }
73    }
74
75    void Level::XMLPort(Element& xmlelement, XMLPort::Mode mode)
76    {
77        SUPER(Level, XMLPort, xmlelement, mode);
78
79        XMLPortParam(Level, "plugins",  setPluginsString,  getPluginsString,  xmlelement, mode);
80        XMLPortParam(Level, "gametype", setGametypeString, getGametypeString, xmlelement, mode).defaultValues("Gametype");
81
82        XMLPortParamLoadOnly(Level, "script", setScript, xmlelement, mode);
83
84        XMLPortObject(Level, MeshLodInformation, "lodinformation", addLodInfo, getLodInfo, xmlelement, mode);
85        XMLPortObjectExtended(Level, BaseObject, "", addObject, getObject, xmlelement, mode, true, false);
86
87        if(this->level_script_ != "")
88        {
89            this->controller_ = new ScriptableController(this->getContext());
90            this->controller_->runScript(this->level_script_);
91        }
92    }
93
94    void Level::registerVariables()
95    {
96        registerVariable(this->xmlfilename_,            VariableDirection::ToClient, new NetworkCallback<Level>(this, &Level::networkcallback_applyXMLFile));
97        registerVariable(this->name_,                   VariableDirection::ToClient, new NetworkCallback<Level>(this, &Level::changedName));
98        registerVariable(this->networkTemplateNames_,   VariableDirection::ToClient, new NetworkCallback<Level>(this, &Level::networkCallbackTemplatesChanged));
99    }
100
101    void Level::networkcallback_applyXMLFile()
102    {
103        orxout(user_status) << "Loading level \"" << this->xmlfilename_ << "\"..." << endl;
104
105        ClassTreeMask mask;
106        mask.exclude(Class(BaseObject));
107        mask.include(Class(Template));
108        mask.include(Class(OverlayGroup)); // HACK to include the ChatOverlay
109
110        this->xmlfile_ = new XMLFile(mask, this->xmlfilename_);
111
112        Loader::getInstance().load(this->xmlfile_);
113    }
114
115    void Level::networkCallbackTemplatesChanged()
116    {
117        for(const std::string& name : this->networkTemplateNames_)
118        {
119            assert(Template::getTemplate(name));
120            Template::getTemplate(name)->applyOn(this);
121        }
122    }
123
124    void Level::setPluginsString(const std::string& pluginsString)
125    {
126        // unload old plugins
127        this->unloadPlugins();
128
129        // load new plugins
130        this->pluginsString_ = pluginsString;
131        SubString tokens(pluginsString, ",");
132        for (size_t i = 0; i < tokens.size(); ++i)
133            this->plugins_.push_back(new PluginReference(tokens[i]));
134    }
135
136    void Level::unloadPlugins()
137    {
138        // use destroyLater() - this ensures that plugins are not unloaded too early.
139        // Note: When a level gets unloaded, the Level object is usually the last object that gets destroyed. This is because all other
140        //       objects inside a level have a StrongPtr (in BaseObject) that references the Level object. This means that the Level
141        //       object is only destroyed, when all StrongPtrs that pointed to it were destroyed. But at the time when the last StrongPtr
142        //       is destroyed, the other object is not yet fully destroyed because the StrongPtr is destroyed in ~BaseObject (and this
143        //       means that e.g. ~Identifiable was not yet called for this object). This means that technically there are still other
144        //       objects alive when ~Level is called. This is the reason why we cannot directly destroy() the Plugins - instead we need
145        //       to call destroyLater() to ensure that no instances from this plugin exist anymore.
146        for (PluginReference* plugin : this->plugins_)
147            plugin->destroyLater();
148        this->plugins_.clear();
149    }
150
151    void Level::setGametypeString(const std::string& gametype)
152    {
153        Identifier* identifier = ClassByString(gametype);
154
155        if (!identifier || !identifier->isA(Class(Gametype)))
156        {
157            orxout(internal_error) << "\"" << gametype << "\" is not a valid gametype." << endl;
158            identifier = Class(Gametype);
159            this->gametype_ = "Gametype";
160        }
161        else
162            this->gametype_ = gametype;
163
164        Gametype* rootgametype = orxonox_cast<Gametype*>(identifier->fabricate(this));
165
166        // store a weak-pointer to the gametype to avoid a circular dependency between this level and the gametype (which has a strong-reference on this level)
167        this->setGametype(WeakPtr<Gametype>(rootgametype));
168
169        rootgametype->init(); // call init() AFTER the gametype was set
170
171        if (LevelManager::exists())
172            LevelManager::getInstance().requestActivity(this);
173    }
174
175
176    void Level::addObject(BaseObject* object)
177    {
178        this->objects_.push_back(object);
179        if(this->controller_ != nullptr)
180            object->registerToScriptableController(this->controller_);
181    }
182
183    BaseObject* Level::getObject(unsigned int index) const
184    {
185        unsigned int i = 0;
186        for (BaseObject* object : this->objects_)
187        {
188            if (i == index)
189                return object;
190            ++i;
191        }
192        return nullptr;
193    }
194
195    void Level::addLodInfo(MeshLodInformation* lodInformation)
196    {
197        std::string meshName = lodInformation->getMeshName();
198//         this->lodInformation_.insert(std::make_pair(meshName,lodInformation));
199        if( this->lodInformation_.find(meshName) != this->lodInformation_.end())
200            orxout(verbose, context::lod) << "replacing lod information for " << meshName << endl;
201        this->lodInformation_[meshName] = lodInformation;
202    }
203
204    MeshLodInformation* Level::getLodInfo(std::string meshName) const
205    {
206        if(this->lodInformation_.find(meshName)!=this->lodInformation_.end())
207            return this->lodInformation_.find(meshName)->second;
208
209        return nullptr;
210    }
211
212    void Level::playerEntered(PlayerInfo* player)
213    {
214        orxout(internal_info) << "player entered level (id: " << player->getClientID() << ", name: " << player->getName() << ')' << endl;
215        player->switchGametype(this->getGametype());
216    }
217
218    void Level::playerLeft(PlayerInfo* player)
219    {
220        orxout(internal_info) << "player left level (id: " << player->getClientID() << ", name: " << player->getName() << ')' << endl;
221        player->switchGametype(nullptr);
222    }
223}
Note: See TracBrowser for help on using the repository browser.