[32] | 1 | #pragma once |
---|
[221] | 2 | /* -*-c++-*- osgVisual - Copyright (C) 2009-2011 Torben Dannhauer |
---|
[32] | 3 | * |
---|
| 4 | * This library is based on OpenSceneGraph, open source and may be redistributed and/or modified under |
---|
| 5 | * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or |
---|
| 6 | * (at your option) any later version. The full license is in LICENSE file |
---|
| 7 | * included with this distribution, and on the openscenegraph.org website. |
---|
| 8 | * |
---|
| 9 | * osgVisual requires for some proprietary modules a license from the correspondig manufacturer. |
---|
| 10 | * You have to aquire licenses for all used proprietary modules. |
---|
| 11 | * |
---|
| 12 | * This library is distributed in the hope that it will be useful, |
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 15 | * OpenSceneGraph Public License for more details. |
---|
| 16 | */ |
---|
| 17 | |
---|
[86] | 18 | #include <osg/Notify> |
---|
| 19 | #include <osg/Referenced> |
---|
[32] | 20 | #include <osg/ArgumentParser> |
---|
| 21 | |
---|
| 22 | #include <osgViewer/Viewer> |
---|
| 23 | |
---|
[160] | 24 | // osgVisual specifiy includes |
---|
| 25 | #include <visual_util.h> |
---|
| 26 | |
---|
[157] | 27 | // Cluster |
---|
[183] | 28 | #include <dataIO_clusterDummy.h> |
---|
[58] | 29 | #ifdef USE_CLUSTER_ASIO_TCP_IOSTREAM |
---|
| 30 | #include <dataIO_clusterAsioTcpIostream.h> |
---|
| 31 | #endif |
---|
[85] | 32 | #ifdef USE_CLUSTER_ENET |
---|
| 33 | #include <dataIO_clusterENet.h> |
---|
| 34 | #endif |
---|
[183] | 35 | |
---|
[32] | 36 | |
---|
[58] | 37 | |
---|
[183] | 38 | |
---|
[157] | 39 | //ExtLink |
---|
[183] | 40 | #include <dataIO_extLinkDummy.h> |
---|
[32] | 41 | #ifdef USE_EXTLINK_VCL |
---|
| 42 | #include <dataIO_extLinkVCL.h> |
---|
| 43 | #endif |
---|
| 44 | |
---|
| 45 | |
---|
[157] | 46 | // Slot and transportContainer definitions |
---|
[32] | 47 | #include <dataIO_slot.h> |
---|
| 48 | #include <dataIO_transportContainer.h> |
---|
| 49 | |
---|
[157] | 50 | // XML Parser |
---|
| 51 | #include <stdio.h> |
---|
| 52 | #include <libxml/parser.h> |
---|
| 53 | #include <libxml/tree.h> |
---|
| 54 | |
---|
| 55 | // C++ stl libraries |
---|
[32] | 56 | #include <vector> |
---|
| 57 | |
---|
| 58 | |
---|
| 59 | |
---|
| 60 | |
---|
| 61 | namespace osgVisual { |
---|
| 62 | |
---|
| 63 | /** |
---|
| 64 | * \brief Zentrale Klasse für Datenanbindung des Sichtsystemnodes an das Gesamtsichtsystem bzw. dem Simulator. |
---|
| 65 | * |
---|
| 66 | * Damit nur eine Klasse instantiiert werden kann, ist diese Klasse als Singleton realisiert. |
---|
| 67 | * |
---|
| 68 | * |
---|
| 69 | * @author Torben Dannhauer |
---|
| 70 | * @date Nov 2009 |
---|
| 71 | */ |
---|
| 72 | class visual_dataIO : public osg::Referenced |
---|
| 73 | { |
---|
[88] | 74 | #include <leakDetection.h> |
---|
[32] | 75 | private: |
---|
| 76 | class dataIO_eventCallback : public osg::NodeCallback |
---|
| 77 | { |
---|
| 78 | public: |
---|
| 79 | /** |
---|
| 80 | * \brief Constructor, for setting the member variables. |
---|
| 81 | * |
---|
[234] | 82 | * @param dataIO_ : Pointer to the dataIO class. |
---|
[32] | 83 | */ |
---|
| 84 | dataIO_eventCallback(visual_dataIO* dataIO_):dataIO(dataIO_){}; |
---|
| 85 | |
---|
| 86 | /** |
---|
[234] | 87 | * \brief This function is executed as callback during event traversal. |
---|
[32] | 88 | * |
---|
| 89 | */ |
---|
| 90 | virtual void operator()(osg::Node* node, osg::NodeVisitor* nv); |
---|
| 91 | private: |
---|
| 92 | visual_dataIO* dataIO; |
---|
| 93 | }; |
---|
| 94 | osg::ref_ptr<dataIO_eventCallback> eventCallback; |
---|
| 95 | |
---|
| 96 | class dataIO_finalDrawCallback : public osg::Camera::DrawCallback |
---|
| 97 | { |
---|
| 98 | public: |
---|
| 99 | /** |
---|
| 100 | * \brief Constructor |
---|
| 101 | * |
---|
| 102 | */ |
---|
[96] | 103 | dataIO_finalDrawCallback(visual_dataIO* dataIO_):dataIO(dataIO_){}; |
---|
[32] | 104 | |
---|
| 105 | /** |
---|
| 106 | * \brief Operator executed at callback |
---|
| 107 | * |
---|
| 108 | */ |
---|
| 109 | virtual void operator () (const osg::Camera& camera) const; |
---|
| 110 | private: |
---|
| 111 | visual_dataIO* dataIO; |
---|
| 112 | }; |
---|
| 113 | |
---|
| 114 | osg::ref_ptr<dataIO_finalDrawCallback> finalDrawCallback; |
---|
| 115 | |
---|
[157] | 116 | /** |
---|
| 117 | * \brief Constructor: It is private to prevent creating instances via ptr* = new ..(). |
---|
| 118 | * |
---|
| 119 | */ |
---|
[32] | 120 | visual_dataIO(); |
---|
[157] | 121 | |
---|
| 122 | /** |
---|
| 123 | * \brief Copy-Constuctor: It is private to prevent getting instances via copying dataIO instance. |
---|
| 124 | * |
---|
| 125 | * @param cc : Instance to copy from. |
---|
| 126 | */ |
---|
[32] | 127 | visual_dataIO(const visual_dataIO& cc); |
---|
| 128 | |
---|
[157] | 129 | /** |
---|
| 130 | * \brief This function parses the XML config file for dataIO relevant parameters. |
---|
| 131 | * |
---|
| 132 | * @return : True if parsing was successful. |
---|
| 133 | */ |
---|
[186] | 134 | bool processXMLConfiguration(); |
---|
[157] | 135 | |
---|
| 136 | /** |
---|
| 137 | * \brief Todo: required? |
---|
| 138 | * |
---|
| 139 | * @return |
---|
| 140 | */ |
---|
[81] | 141 | osg::Matrixd calcViewMatrix(); |
---|
[157] | 142 | |
---|
| 143 | /** |
---|
| 144 | * Pointer to the base class of the extLink implementation. |
---|
| 145 | */ |
---|
[32] | 146 | osg::ref_ptr<dataIO_extLink> extLink; |
---|
[157] | 147 | |
---|
| 148 | /** |
---|
| 149 | * Pointer to the base class of the cluster implementation. |
---|
| 150 | */ |
---|
[32] | 151 | osg::ref_ptr<dataIO_cluster> cluster; |
---|
| 152 | |
---|
| 153 | /** |
---|
[157] | 154 | * Referenced pointer to the applications viewer. |
---|
[32] | 155 | */ |
---|
| 156 | osg::ref_ptr<osgViewer::Viewer> viewer; |
---|
| 157 | |
---|
[157] | 158 | /** |
---|
| 159 | * Referenced pointer transport contained user to transport the set of all slots to all rendering machines. |
---|
| 160 | */ |
---|
[32] | 161 | osg::ref_ptr<osgVisual::dataIO_transportContainer> slotContainer; |
---|
| 162 | |
---|
| 163 | /** |
---|
| 164 | * List of SLOT variables dataIO provides. |
---|
| 165 | */ |
---|
[118] | 166 | std::vector<dataIO_slot*> dataSlots; |
---|
[32] | 167 | |
---|
[157] | 168 | /** |
---|
| 169 | * Flag to indicate if dataIO is initialized. |
---|
| 170 | */ |
---|
| 171 | bool initialized; |
---|
| 172 | |
---|
| 173 | /** |
---|
[158] | 174 | * Curent clustermode of the application. Can be MASTER, SLAVE or STANDALONE. |
---|
| 175 | */ |
---|
| 176 | osgVisual::dataIO_cluster::clustermode clusterMode; |
---|
| 177 | |
---|
| 178 | /** |
---|
[160] | 179 | * XML config filename |
---|
| 180 | */ |
---|
| 181 | std::string configFileName; |
---|
| 182 | |
---|
| 183 | /** |
---|
[157] | 184 | * The eventCallback-class is friend to be able to work with all dataIO members without setters/getters. |
---|
| 185 | */ |
---|
[96] | 186 | friend class dataIO_eventCallback; |
---|
[157] | 187 | |
---|
| 188 | /** |
---|
| 189 | * The FinalDrawCallback-class is friend to be able to work with all dataIO members without setters/getters. |
---|
| 190 | */ |
---|
[96] | 191 | friend class dataIO_finalDrawCallback; |
---|
[32] | 192 | |
---|
| 193 | public: |
---|
[157] | 194 | /** |
---|
| 195 | * \brief Public destructor to allow singleton cleanup from extern |
---|
| 196 | * |
---|
| 197 | */ |
---|
[32] | 198 | ~visual_dataIO(); |
---|
| 199 | |
---|
| 200 | /** |
---|
[158] | 201 | * \brief This function returns an pointer to the singleton instance of dataIO. If no instance exist, it will be instantiated silently. |
---|
[32] | 202 | * |
---|
| 203 | * After instantiation, dataIO still needs to bei initiialized to configure working mode etc! |
---|
| 204 | * |
---|
| 205 | * @return : Pointer to the instance. |
---|
| 206 | */ |
---|
| 207 | static visual_dataIO* getInstance(); |
---|
| 208 | |
---|
[185] | 209 | void init(osgViewer::Viewer* viewer_, std::string configFileName); |
---|
[32] | 210 | void shutdown(); |
---|
| 211 | bool isMaster(){if (clusterMode==osgVisual::dataIO_cluster::MASTER) return true; else return false;}; |
---|
| 212 | bool isSlave(){if (clusterMode==osgVisual::dataIO_cluster::SLAVE) return true; else return false;}; |
---|
| 213 | bool isStandalone(){if (clusterMode==osgVisual::dataIO_cluster::STANDALONE) return true; else return false;}; |
---|
| 214 | |
---|
| 215 | // SLOT Access functions |
---|
| 216 | void* getSlotPointer(std::string slotName_, osgVisual::dataIO_slot::dataDirection direction_, osgVisual::dataIO_slot::varType variableTyp_ ); |
---|
| 217 | double getSlotDataAsDouble(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_ ); |
---|
| 218 | std::string getSlotDataAsString(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_ ); |
---|
[116] | 219 | osgVisual::dataIO_slot* setSlotData(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_, std::string sValue_ ); |
---|
| 220 | osgVisual::dataIO_slot* setSlotData(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_, double value_ ); |
---|
[32] | 221 | |
---|
| 222 | int getSlotNum() {return dataSlots.size();} |
---|
| 223 | |
---|
| 224 | }; |
---|
| 225 | |
---|
| 226 | |
---|
| 227 | } // END namespace osgVisual |
---|