source: osgVisual/src/dataIO/visual_dataIO.cpp @ 70

Last change on this file since 70 was 70, checked in by Torben Dannhauer, 14 years ago

sky silverlining vereinfacht.

File size: 10.0 KB
Line 
1/* -*-c++-*- osgVisual - Copyright (C) 2009-2010 Torben Dannhauer
2 *
3 * This library is based on OpenSceneGraph, open source and may be redistributed and/or modified under
4 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
5 * (at your option) any later version.  The full license is in LICENSE file
6 * included with this distribution, and on the openscenegraph.org website.
7 *
8 * osgVisual requires for some proprietary modules a license from the correspondig manufacturer.
9 * You have to aquire licenses for all used proprietary modules.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * OpenSceneGraph Public License for more details.
15*/
16
17#include "visual_dataIO.h"
18
19using namespace osgVisual;
20
21visual_dataIO::visual_dataIO()
22{
23        OSG_NOTIFY( osg::ALWAYS ) << "visual_dataIO constructed" << std::endl;
24
25        initialized = false;
26}
27
28visual_dataIO::~visual_dataIO()
29{
30        OSG_NOTIFY( osg::ALWAYS ) << "visual_dataIO destructed" << std::endl;
31}
32
33visual_dataIO* visual_dataIO::getInstance()
34{
35        static visual_dataIO instance; 
36        return &instance; 
37};
38
39void visual_dataIO::init(osgViewer::Viewer* viewer_, osg::ArgumentParser& arguments_)
40{
41        OSG_NOTIFY( osg::ALWAYS ) << "visual_dataIO init()" << std::endl;
42
43        // Init variables
44        viewer = viewer_;
45
46        // Parse operating Mode
47    if (arguments_.read("-m"))
48        {
49                OSG_NOTIFY( osg::ALWAYS ) << "Configure osgVisual as MASTER" << std::endl;
50                clusterMode = osgVisual::dataIO_cluster::MASTER;
51                // Create Container:
52                slotContainer = new osgVisual::dataIO_transportContainer();
53        }
54        else if (arguments_.read("-s"))
55        {
56                OSG_NOTIFY( osg::ALWAYS ) << "Configure osgVisual as SLAVE" << std::endl;
57                clusterMode = osgVisual::dataIO_cluster::SLAVE;
58                slotContainer = NULL;   // Slave only recieves container, therefor set this Pointer null.
59        }
60        else
61        {
62                OSG_NOTIFY( osg::ALWAYS ) << "Configure osgVisual as STANDALONE" << std::endl;
63                clusterMode = osgVisual::dataIO_cluster::STANDALONE;
64                // Create Container:
65                slotContainer = new osgVisual::dataIO_transportContainer();
66        }
67
68        // Create Cluster.
69        #ifdef USE_CLUSTER_DUMMY
70                cluster = new dataIO_clusterDummy();
71        #endif
72        #ifdef USE_CLUSTER_ASIO_TCP_IOSTREAM
73                cluster = new dataIO_clusterAsioTcpIostream();
74        #endif
75        #ifdef USE_CLUSTER_UDP
76                cluster = new dataIO_clusterUDP();
77        #endif
78        #ifdef USE_CLUSTER_ENET
79                cluster = new dataIO_clusterENet();
80                cluster->enableHardSync( false );       /** \todo : rebuild this structure in cluster.h and move it this way to a general implementation. */
81        #endif
82        if(cluster.valid())
83                //cluster->init(arguments_, clusterMode, slotContainer, true, false);
84                cluster->init(arguments_, viewer_, clusterMode, slotContainer, false, true);
85
86        // Create extLink.
87        #ifdef USE_EXTLINK_DUMMY
88                extLink = new dataIO_extLinkDummy( dataSlots );
89        #endif
90        #ifdef USE_EXTLINK_VCL
91                extLink = new dataIO_extLinkVCL( dataSlots );
92        #endif
93        extLink->init();
94
95       
96
97        // Install callbacks to perform DataIO activities every frame:
98        //// EventCallback at the absolute beginning of the frame
99        eventCallback = new dataIO_eventCallback(this);
100        viewer->getCamera()->setEventCallback( eventCallback );
101        //// FinalDrawCallback at the end of event and update handling, but BEFORE rendering the frame
102        finalDrawCallback = new dataIO_finalDrawCallback(this);
103        viewer->getCamera()->setFinalDrawCallback( finalDrawCallback );
104
105        initialized = true;
106}
107
108void visual_dataIO::shutdown()
109{
110        if(initialized)
111        {
112                OSG_NOTIFY( osg::ALWAYS ) << "Shutdown visual_dataIO..." << std::endl;
113
114                viewer->getCamera()->removeEventCallback( eventCallback );
115                eventCallback = NULL;
116                viewer->getCamera()->setFinalDrawCallback( NULL );
117                finalDrawCallback = NULL;
118               
119                viewer = NULL;
120               
121
122                if(cluster.valid())
123                        cluster->shutdown();
124                if(extLink.valid())
125                extLink->shutdown();
126        }
127}
128
129void visual_dataIO::dataIO_eventCallback::operator()(osg::Node* node, osg::NodeVisitor* nv)
130{
131        // perform all actions for the eventDrawCallback.
132        OSG_NOTIFY( osg::INFO ) << "---- Executing EventCallback.." <<  std::endl;
133
134        switch( dataIO->clusterMode )
135        {
136                case osgVisual::dataIO_cluster::MASTER : 
137                        {
138                                dataIO->extLink->readTO_OBJvalues();
139                                dataIO->cluster->sendTO_OBJvaluesToSlaves();
140                        }
141                        break;
142                case osgVisual::dataIO_cluster::SLAVE : 
143                        {
144                                dataIO->cluster->readTO_OBJvaluesFromMaster();
145                        }
146                        break;
147                case osgVisual::dataIO_cluster::STANDALONE : 
148                        {
149                                dataIO->extLink->readTO_OBJvalues();
150                        }
151                        break;
152                default:
153                        OSG_NOTIFY( osg::FATAL ) << "ERROR: Unkown clustermode!" <<  std::endl;
154                        break;
155        };
156}
157
158void visual_dataIO::dataIO_finalDrawCallback::operator() (const osg::Camera& camera) const
159{
160        // perform all actions for the initialDrawCallback.
161        OSG_NOTIFY( osg::INFO ) << "---- Executing InitialDrawCallback.." << std::endl;
162
163        switch( dataIO->clusterMode )
164        {
165                case osgVisual::dataIO_cluster::MASTER : 
166                        {
167                                dataIO->extLink->writebackFROM_OBJvalues();
168                                dataIO->cluster->waitForAllReadyToSwap();
169                                dataIO->cluster->sendSwapCommand();
170                        }
171                        break;
172                case osgVisual::dataIO_cluster::SLAVE : 
173                        {
174                                dataIO->cluster->reportAsReadyToSwap();
175                                dataIO->cluster->waitForSwap();
176                        }
177                        break;
178                case osgVisual::dataIO_cluster::STANDALONE : 
179                        {
180                                dataIO->extLink->writebackFROM_OBJvalues();
181                        }
182                        break;
183                default:
184                        OSG_NOTIFY( osg::FATAL ) << "ERROR: visual_dataIO::dataIO_finalDrawCallback::operator() - Unkown clustermode!" <<  std::endl;
185                        break;
186        };
187}
188
189void* visual_dataIO::getSlotPointer(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_, osgVisual::dataIO_slot::varType variableTyp_ )
190{
191        // iterate through slotlist. If found, return pointer, else add slot to list and return pointer
192        for (unsigned int i=0; i<dataSlots.size(); i++)
193        {
194                // Check if this variable name&-type already exists
195                if( dataSlots[i].variableName == variableName_ && dataSlots[i].direction == direction_  && dataSlots[i].variableType ==  variableTyp_)
196                {
197                        //OSG_NOTIFY( osg::INFO ) << "visual_dataIO::getSlotPointer() - Slot found at position " << i << std::endl;
198                        // Return pointer to the value
199                        if (variableTyp_ == osgVisual::dataIO_slot::STRING )
200                                return &(dataSlots[i].sValue);
201                        else
202                                return &(dataSlots[i].value);
203                }
204        }
205
206        // Slot does not exist -> add it to slot list
207        //OSG_NOTIFY( osg::INFO ) << "visual_dataIO::getSlotPointer() - Slot not found, will add as new slot " << std::endl;
208        dataIO_slot newSlot;
209        newSlot.variableName = variableName_;
210        newSlot.variableType = variableTyp_;
211        newSlot.value = 0;
212        newSlot.sValue = "";
213        dataSlots.push_back( newSlot );
214        if (variableTyp_ == osgVisual::dataIO_slot::STRING )
215                return &(dataSlots.back().sValue);
216        else
217        {
218                return &(dataSlots.back().value);
219        }
220}
221
222double visual_dataIO::getSlotDataAsDouble(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_ )
223{
224        // iterate through slotlist. If found, return value
225        for (unsigned int i=0; i<dataSlots.size(); i++)
226        {
227                // Check if this variable name&-type already exists
228                if( dataSlots[i].variableName == variableName_ && dataSlots[i].direction == direction_  && dataSlots[i].variableType == osgVisual::dataIO_slot::DOUBLE )
229                {
230                        //OSG_NOTIFY( osg::INFO ) << "visual_dataIO::getSlotDataAsDouble() - Slot found at position " << i << std::endl;
231                        return dataSlots[i].value;
232                }
233        }
234        return 0;
235}
236
237std::string visual_dataIO::getSlotDataAsString(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_ )
238{
239        // iterate through slotlist. If found, return value
240        for (unsigned int i=0; i<dataSlots.size(); i++)
241        {
242                // Check if this variable name&-type already exists
243                if( dataSlots[i].variableName == variableName_ && dataSlots[i].direction == direction_  && dataSlots[i].variableType == osgVisual::dataIO_slot::STRING )
244                {
245                        //OSG_NOTIFY( osg::INFO ) << "visual_dataIO::getSlotDataAsDouble() - Slot found at position " << i << std::endl;
246                        return dataSlots[i].sValue;
247                }
248        }
249        return "";
250}
251
252void visual_dataIO::setSlotData(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_, std::string sValue_ )
253{
254        bool slotFound = false;
255        // iterate through slotlist. If found, return pointer, else add slot to list
256        for (unsigned int i=0; i<dataSlots.size(); i++)
257        {
258                // Check if this variable name&-type already exists
259                if( dataSlots[i].variableName == variableName_ && dataSlots[i].direction == direction_ && dataSlots[i].variableType ==  osgVisual::dataIO_slot::STRING)
260                {
261                        // Update value
262                        dataSlots[i].sValue = sValue_;
263                        slotFound = true;
264                }
265               
266        }
267
268        if (!slotFound)
269        {
270                // Slot does not exist -> add it to slot list
271                dataIO_slot newSlot;
272                newSlot.variableName = variableName_;
273                newSlot.direction = direction_;
274                newSlot.variableType = osgVisual::dataIO_slot::STRING;
275                newSlot.value = 0;
276                newSlot.sValue = sValue_;
277                dataSlots.push_back( newSlot );
278        }
279}
280
281void visual_dataIO::setSlotData(std::string variableName_, osgVisual::dataIO_slot::dataDirection direction_, double value_ )
282{
283        // iterate through slotlist. If found, return pointer, else add slot to list
284        bool slotFound = false;
285        for (unsigned int i=0; i<dataSlots.size(); i++)
286        {
287                // Check if this variableName & -type already exists
288                if( dataSlots[i].variableName == variableName_ && dataSlots[i].direction == direction_ && dataSlots[i].variableType ==  osgVisual::dataIO_slot::DOUBLE)
289                {
290                        // Update value
291                        //OSG_NOTIFY( osg::ALWAYS ) << "setSlotData: " << variableName_ << " - value: " << value_ << std::endl;
292                        dataSlots[i].value = value_;
293                        slotFound = true;
294                }       
295        }
296
297        if (!slotFound)
298        {
299                // Slot does not exist -> add it to slot list
300                dataIO_slot newSlot;
301                newSlot.variableName = variableName_;
302                newSlot.direction = direction_;
303                newSlot.variableType = osgVisual::dataIO_slot::DOUBLE;
304                newSlot.value = value_;
305                newSlot.sValue = "";
306                dataSlots.push_back( newSlot );
307        }
308}
Note: See TracBrowser for help on using the repository browser.