mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
343 lines
16 KiB
Text
Executable file
343 lines
16 KiB
Text
Executable file
1412103034
|
|
2 2
|
|
11 libp3dgraph 4 YJkp 12 panda3d.core
|
|
12
|
|
12 18 DataGraphTraverser 0 4 24 38 DataGraphTraverser::DataGraphTraverser 0 2 1 2 228
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
90
|
|
DataGraphTraverser::DataGraphTraverser(Thread *current_thread = ((get_current_thread())));
|
|
|
|
13 19 ~DataGraphTraverser 0 4 24 39 DataGraphTraverser::~DataGraphTraverser 0 0 227
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::Destructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
46
|
|
DataGraphTraverser::~DataGraphTraverser(void);
|
|
|
|
14 18 get_current_thread 0 4 24 38 DataGraphTraverser::get_current_thread 0 1 3 841
|
|
// Filename: dataGraphTraverser.I
|
|
// Created by: drose (11Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::get_current_thread
|
|
// Access: Public
|
|
// Description: Returns the currently-executing thread object, as
|
|
// passed to the DataGraphTraverser constructor.
|
|
////////////////////////////////////////////////////////////////////
|
|
66
|
|
inline Thread *DataGraphTraverser::get_current_thread(void) const;
|
|
|
|
15 8 traverse 0 4 24 28 DataGraphTraverser::traverse 0 1 4 308
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::traverse
|
|
// Access: Public
|
|
// Description: Starts the traversal of the data graph at the
|
|
// indicated root node.
|
|
////////////////////////////////////////////////////////////////////
|
|
51
|
|
void DataGraphTraverser::traverse(PandaNode *node);
|
|
|
|
16 14 traverse_below 0 4 24 34 DataGraphTraverser::traverse_below 0 1 5 418
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::traverse_below
|
|
// Access: Public
|
|
// Description: Continues the traversal to all the children of the
|
|
// indicated node, passing in the given data, without
|
|
// actually calling transmit_data() on the given node.
|
|
////////////////////////////////////////////////////////////////////
|
|
89
|
|
void DataGraphTraverser::traverse_below(PandaNode *node, DataNodeTransmit const &output);
|
|
|
|
17 17 collect_leftovers 0 4 24 37 DataGraphTraverser::collect_leftovers 0 1 6 452
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::collect_leftovers
|
|
// Access: Public
|
|
// Description: Pick up any nodes that didn't get completely
|
|
// traversed. These must be nodes that have multiple
|
|
// parents, with at least one parent completely outside
|
|
// of the data graph.
|
|
////////////////////////////////////////////////////////////////////
|
|
49
|
|
void DataGraphTraverser::collect_leftovers(void);
|
|
|
|
18 8 DataNode 0 4 25 18 DataNode::DataNode 0 1 7 929
|
|
// Filename: dataNode.I
|
|
// Created by: drose (11Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::Copy Constructor
|
|
// Access: Protected
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
60
|
|
inline DataNode::DataNode(basic_string< char > const &name);
|
|
|
|
19 12 write_inputs 0 4 25 22 DataNode::write_inputs 0 1 8 334
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::write_inputs
|
|
// Access: Published
|
|
// Description: Writes to the indicated ostream a list of all the
|
|
// inputs this DataNode might expect to receive.
|
|
////////////////////////////////////////////////////////////////////
|
|
48
|
|
void DataNode::write_inputs(ostream &out) const;
|
|
|
|
20 13 write_outputs 0 4 25 23 DataNode::write_outputs 0 1 9 327
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::write_outputs
|
|
// Access: Published
|
|
// Description: Writes to the indicated ostream a list of all the
|
|
// outputs this DataNode might generate.
|
|
////////////////////////////////////////////////////////////////////
|
|
49
|
|
void DataNode::write_outputs(ostream &out) const;
|
|
|
|
21 17 write_connections 0 4 25 27 DataNode::write_connections 0 1 10 381
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::write_connections
|
|
// Access: Published
|
|
// Description: Writes to the indicated ostream a list of all the
|
|
// connections currently showing between this DataNode
|
|
// and its parent(s).
|
|
////////////////////////////////////////////////////////////////////
|
|
53
|
|
void DataNode::write_connections(ostream &out) const;
|
|
|
|
22 14 get_class_type 0 4 25 24 DataNode::get_class_type 0 1 11 0
|
|
49
|
|
static TypeHandle DataNode::get_class_type(void);
|
|
|
|
23 9 ~DataNode 0 4 25 19 DataNode::~DataNode 0 0 0
|
|
26
|
|
DataNode::~DataNode(void);
|
|
|
|
11
|
|
1 14 Dtool_YJkpu2uT 0 7 2 29 13 14 Dtool_YJkpu2uT 228 ////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
//////////////////////////////////////////////////////////////////// 1 14 current_thread 1 27
|
|
2 14 Dtool_YJkp6KPF 0 7 2 29 13 14 Dtool_YJkp6KPF 228 ////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
//////////////////////////////////////////////////////////////////// 0
|
|
3 14 Dtool_YJkpiU4k 0 7 4 27 0 14 Dtool_YJkpiU4k 841 // Filename: dataGraphTraverser.I
|
|
// Created by: drose (11Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::get_current_thread
|
|
// Access: Public
|
|
// Description: Returns the currently-executing thread object, as
|
|
// passed to the DataGraphTraverser constructor.
|
|
//////////////////////////////////////////////////////////////////// 1 4 this 3 30
|
|
4 14 Dtool_YJkpPaYd 0 4 5 33 0 14 Dtool_YJkpPaYd 308 ////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::traverse
|
|
// Access: Public
|
|
// Description: Starts the traversal of the data graph at the
|
|
// indicated root node.
|
|
//////////////////////////////////////////////////////////////////// 2 4 this 3 29 4 node 1 32
|
|
5 14 Dtool_YJkplThv 0 4 6 33 0 14 Dtool_YJkplThv 418 ////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::traverse_below
|
|
// Access: Public
|
|
// Description: Continues the traversal to all the children of the
|
|
// indicated node, passing in the given data, without
|
|
// actually calling transmit_data() on the given node.
|
|
//////////////////////////////////////////////////////////////////// 3 4 this 3 29 4 node 1 32 6 output 1 34
|
|
6 14 Dtool_YJkp8nIW 0 4 7 33 0 14 Dtool_YJkp8nIW 452 ////////////////////////////////////////////////////////////////////
|
|
// Function: DataGraphTraverser::collect_leftovers
|
|
// Access: Public
|
|
// Description: Pick up any nodes that didn't get completely
|
|
// traversed. These must be nodes that have multiple
|
|
// parents, with at least one parent completely outside
|
|
// of the data graph.
|
|
//////////////////////////////////////////////////////////////////// 1 4 this 3 29
|
|
7 14 Dtool_YJkpbRQs 0 7 10 38 23 14 Dtool_YJkpbRQs 702 // Filename: dataNode.I
|
|
// Created by: drose (11Mar02)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::Constructor
|
|
// Access: Public
|
|
// Description:
|
|
//////////////////////////////////////////////////////////////////// 1 4 name 1 37
|
|
8 14 Dtool_YJkp4fqQ 0 4 11 33 0 14 Dtool_YJkp4fqQ 334 ////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::write_inputs
|
|
// Access: Published
|
|
// Description: Writes to the indicated ostream a list of all the
|
|
// inputs this DataNode might expect to receive.
|
|
//////////////////////////////////////////////////////////////////// 2 4 this 3 39 3 out 1 41
|
|
9 14 Dtool_YJkpUk5z 0 4 12 33 0 14 Dtool_YJkpUk5z 327 ////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::write_outputs
|
|
// Access: Published
|
|
// Description: Writes to the indicated ostream a list of all the
|
|
// outputs this DataNode might generate.
|
|
//////////////////////////////////////////////////////////////////// 2 4 this 3 39 3 out 1 41
|
|
10 14 Dtool_YJkpUqT4 0 4 13 33 0 14 Dtool_YJkpUqT4 381 ////////////////////////////////////////////////////////////////////
|
|
// Function: DataNode::write_connections
|
|
// Access: Published
|
|
// Description: Writes to the indicated ostream a list of all the
|
|
// connections currently showing between this DataNode
|
|
// and its parent(s).
|
|
//////////////////////////////////////////////////////////////////// 2 4 this 3 39 3 out 1 41
|
|
11 14 Dtool_YJkpPSzN 0 7 14 44 0 14 Dtool_YJkpPSzN 0 0
|
|
21
|
|
24 18 DataGraphTraverser 0 26625 18 DataGraphTraverser 18 DataGraphTraverser 0 0 0 1 12 13 0 4 14 15 16 17 0 0 0 0 0 486
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : DataGraphTraverser
|
|
// Description : This object supervises the traversal of the data
|
|
// graph and the moving of data from one DataNode to its
|
|
// children. The data graph is used to manage data from
|
|
// input devices, etc. See the overview of the data
|
|
// graph in dataNode.h.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
25 8 DataNode 0 141313 8 DataNode 8 DataNode 0 0 0 1 18 23 0 4 19 20 21 22 0 0 1 0 26 0 0 0 0 695
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : DataNode
|
|
// Description : The fundamental type of node for the data graph. The
|
|
// DataNode class is itself primarily intended as an
|
|
// abstract class; it defines no inputs and no outputs.
|
|
// Most kinds of data nodes will derive from this to
|
|
// specify the inputs and outputs in the constructor.
|
|
//
|
|
// DataNode does not attempt to cycle its data with a
|
|
// PipelineCycler. The data graph is intended to be
|
|
// used only within a single thread.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
26 9 PandaNode 0 2049 9 PandaNode 9 PandaNode 0 0 0 0 0 0 0 0 0 0 0 0 374
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : PandaNode
|
|
// Description : A basic node of the scene graph or data graph. This
|
|
// is the base class of all specialized nodes, and also
|
|
// serves as a generic node with no special properties.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
27 8 Thread * 0 8576 8 Thread * 8 Thread * 0 0 28 0 0 0 0 0 0 0 0 0 0
|
|
|
|
28 6 Thread 0 2048 6 Thread 6 Thread 0 0 0 0 0 0 0 0 0 0 0 0 668
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : Thread
|
|
// Description : A thread; that is, a lightweight process. This is an
|
|
// abstract base class; to use it, you must subclass
|
|
// from it and redefine thread_main().
|
|
//
|
|
// The thread itself will keep a reference count on the
|
|
// Thread object while it is running; when the thread
|
|
// returns from its root function, the Thread object
|
|
// will automatically be destructed if no other pointers
|
|
// are referencing it.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
29 20 DataGraphTraverser * 0 8576 20 DataGraphTraverser * 20 DataGraphTraverser * 0 0 24 0 0 0 0 0 0 0 0 0 0
|
|
|
|
30 26 DataGraphTraverser const * 0 8576 26 DataGraphTraverser const * 26 DataGraphTraverser const * 0 0 31 0 0 0 0 0 0 0 0 0 0
|
|
|
|
31 24 DataGraphTraverser const 0 8832 24 DataGraphTraverser const 24 DataGraphTraverser const 0 0 24 0 0 0 0 0 0 0 0 0 0
|
|
|
|
32 11 PandaNode * 0 8576 11 PandaNode * 11 PandaNode * 0 0 26 0 0 0 0 0 0 0 0 0 0
|
|
|
|
33 4 void 0 8194 4 void 4 void 0 6 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
34 24 DataNodeTransmit const * 0 8576 24 DataNodeTransmit const * 24 DataNodeTransmit const * 0 0 35 0 0 0 0 0 0 0 0 0 0
|
|
|
|
35 22 DataNodeTransmit const 0 8832 22 DataNodeTransmit const 22 DataNodeTransmit const 0 0 36 0 0 0 0 0 0 0 0 0 0
|
|
|
|
36 16 DataNodeTransmit 0 1050624 16 DataNodeTransmit 16 DataNodeTransmit 0 0 0 0 0 0 0 0 0 0 0 0 415
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : DataNodeTransmit
|
|
// Description : Encapsulates the data generated from (or sent into)
|
|
// any particular DataNode. This is basically just an
|
|
// array of EventParameters, one for each registered
|
|
// input or output wire.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
37 13 atomic string 0 2 13 atomic string 13 atomic string 0 7 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
38 10 DataNode * 0 8576 10 DataNode * 10 DataNode * 0 0 25 0 0 0 0 0 0 0 0 0 0
|
|
|
|
39 16 DataNode const * 0 8576 16 DataNode const * 16 DataNode const * 0 0 40 0 0 0 0 0 0 0 0 0 0
|
|
|
|
40 14 DataNode const 0 8832 14 DataNode const 14 DataNode const 0 0 25 0 0 0 0 0 0 0 0 0 0
|
|
|
|
41 9 ostream * 0 8576 9 ostream * 9 ostream * 0 0 42 0 0 0 0 0 0 0 0 0 0
|
|
|
|
42 7 ostream 0 2048 7 ostream 7 ostream 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
43 10 TypeHandle 0 2048 10 TypeHandle 10 TypeHandle 0 0 0 0 0 0 0 0 0 0 0 0 1098
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : TypeHandle
|
|
// Description : TypeHandle is the identifier used to differentiate
|
|
// C++ class types. Any C++ classes that inherit from
|
|
// some base class, and must be differentiated at run
|
|
// time, should store a static TypeHandle object that
|
|
// can be queried through a static member function
|
|
// named get_class_type(). Most of the time, it is also
|
|
// desirable to inherit from TypedObject, which provides
|
|
// some virtual functions to return the TypeHandle for a
|
|
// particular instance.
|
|
//
|
|
// At its essence, a TypeHandle is simply a unique
|
|
// identifier that is assigned by the TypeRegistry. The
|
|
// TypeRegistry stores a tree of TypeHandles, so that
|
|
// ancestry of a particular type may be queried, and the
|
|
// type name may be retrieved for run-time display.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
44 12 TypeHandle * 0 8576 12 TypeHandle * 12 TypeHandle * 0 0 43 0 0 0 0 0 0 0 0 0 0
|
|
|
|
0
|
|
0
|
|
0
|