[8711] | 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: Silvan Nellen |
---|
| 13 | co-programmer: Benjamin Grauer |
---|
| 14 | */ |
---|
| 15 | |
---|
| 16 | |
---|
[8093] | 17 | #include <string> |
---|
| 18 | #include <list> |
---|
[8085] | 19 | |
---|
[8408] | 20 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD |
---|
[8202] | 21 | |
---|
[8408] | 22 | |
---|
[8085] | 23 | #include "script_manager.h" |
---|
[8155] | 24 | #include "lunar.h" |
---|
[8093] | 25 | |
---|
[8202] | 26 | #include "script.h" |
---|
[10622] | 27 | #include "script_triggers/script_trigger.h" |
---|
[8202] | 28 | #include "luaincl.h" |
---|
[9869] | 29 | #include "loading/load_param_xml.h" |
---|
[10622] | 30 | #include "util/loading/factory.h" |
---|
[8202] | 31 | |
---|
| 32 | |
---|
| 33 | |
---|
[8239] | 34 | ScriptManager::ScriptManager(const TiXmlElement* root) |
---|
[8093] | 35 | { |
---|
[8239] | 36 | this->setName("ScriptManager"); |
---|
| 37 | |
---|
| 38 | if (root != NULL) |
---|
| 39 | this->loadParams(root); |
---|
[8093] | 40 | } |
---|
| 41 | |
---|
[8239] | 42 | |
---|
| 43 | |
---|
[8093] | 44 | ScriptManager::~ScriptManager() |
---|
| 45 | { |
---|
[8239] | 46 | this->flush(); |
---|
[8093] | 47 | } |
---|
| 48 | |
---|
[8138] | 49 | |
---|
[8155] | 50 | void ScriptManager::loadParams(const TiXmlElement* root) |
---|
| 51 | { |
---|
[8408] | 52 | BaseObject::loadParams(root); |
---|
[8211] | 53 | |
---|
[10622] | 54 | LoadParamXML(root, "Scripts", this, ScriptManager, createScripts); |
---|
[8210] | 55 | |
---|
[10622] | 56 | LoadParamXML(root, "ScriptTriggers", this, ScriptManager, createTriggers); |
---|
| 57 | |
---|
[8239] | 58 | } |
---|
[8210] | 59 | |
---|
| 60 | |
---|
[8155] | 61 | |
---|
[8239] | 62 | void ScriptManager::flush() |
---|
[8208] | 63 | { |
---|
[8210] | 64 | //Delete all scripts as they aren't deleted automatically |
---|
[9869] | 65 | while(!Script::objectList().empty()) |
---|
| 66 | delete Script::objectList().front(); |
---|
[9003] | 67 | //Delete all triggers |
---|
[9869] | 68 | while(!ScriptTrigger::objectList().empty()) |
---|
| 69 | delete ScriptTrigger::objectList().front(); |
---|
| 70 | |
---|
[8208] | 71 | } |
---|
| 72 | |
---|
[8202] | 73 | void ScriptManager::createScripts(const TiXmlElement* scripts) |
---|
[8093] | 74 | { |
---|
[8210] | 75 | |
---|
[8193] | 76 | LOAD_PARAM_START_CYCLE(scripts, object); |
---|
| 77 | { |
---|
| 78 | new Script(object); |
---|
| 79 | } |
---|
| 80 | LOAD_PARAM_END_CYCLE(object); |
---|
[8093] | 81 | |
---|
[8202] | 82 | } |
---|
[8131] | 83 | |
---|
[8202] | 84 | void ScriptManager::createTriggers(const TiXmlElement* triggers) |
---|
| 85 | { |
---|
[10622] | 86 | |
---|
[8202] | 87 | LOAD_PARAM_START_CYCLE(triggers, object); |
---|
[8155] | 88 | { |
---|
[10622] | 89 | Factory::fabricate(object); |
---|
[8202] | 90 | } |
---|
| 91 | LOAD_PARAM_END_CYCLE(object); |
---|
[8155] | 92 | |
---|
[8093] | 93 | } |
---|
| 94 | |
---|
[8171] | 95 | |
---|
[8212] | 96 | Script* ScriptManager::getScriptByFile(const std::string& file) |
---|
[8171] | 97 | { |
---|
[9869] | 98 | for (ObjectList<Script>::const_iterator it = Script::objectList().begin(); |
---|
| 99 | it != Script::objectList().end(); |
---|
| 100 | ++it) |
---|
| 101 | if( ((*it))->getFileName().compare(file) == 0) |
---|
| 102 | return (*it); |
---|
[8210] | 103 | |
---|
[8206] | 104 | return NULL; |
---|
[8171] | 105 | |
---|
| 106 | } |
---|