ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libBASS/BASS_interface.cpp
(Generate patch)

Comparing trunk/OOPSE/libBASS/BASS_interface.cpp (file contents):
Revision 828 by gezelter, Tue Oct 28 16:03:06 2003 UTC vs.
Revision 957 by gezelter, Mon Jan 19 16:08:21 2004 UTC

# Line 15 | Line 15 | typedef enum { GLOBAL_BLK, MOLECULE_BLK, ATOM_BLK, BON
15   // Globals ************************************************
16  
17   typedef enum { GLOBAL_BLK, MOLECULE_BLK, ATOM_BLK, BOND_BLK, BEND_BLK,
18 <               TORSION_BLK, COMPONENT_BLK, ZCONSTRAINT_BLK } block_type;
18 >               TORSION_BLK, COMPONENT_BLK, ZCONSTRAINT_BLK,
19 >               RIGIDBODY_BLK } block_type;
20  
21   block_type current_block = GLOBAL_BLK;
22   #define MAX_NEST 20 // the max number of nested blocks
# Line 55 | Line 56 | int event_handler( event* the_event ){
56        incr_block( ZCONSTRAINT_BLK );
57        handled = the_globals->newZconstraint( the_event );
58        break;
59 +
60 +    case RIGIDBODY:
61 +      incr_block( RIGIDBODY_BLK );
62 +      handled = the_stamps->newRigidBody( the_event );
63 +      break;
64        
65      case COMPONENT:
66        incr_block( COMPONENT_BLK );
# Line 100 | Line 106 | int event_handler( event* the_event ){
106        handled = the_stamps->newTorsion( the_event );
107        break;
108  
109 +    case RIGIDBODY:
110 +      incr_block( RIGIDBODY_BLK );
111 +      handled = the_stamps->newRigidBody( the_event );
112 +      break;
113 +
114      case ASSIGNMENT:
115        handled = the_stamps->moleculeAssign( the_event );
116        break;
# Line 112 | Line 123 | int event_handler( event* the_event ){
123      default:
124        the_event->err_msg =
125          strdup( "Not a valid molecule event\n" );
126 +      return 0;
127 +    }
128 +    break;
129 +
130 +
131 +  case RIGIDBODY_BLK:
132 +    
133 +    switch( the_event->event_type ){
134 +      
135 +    case ATOM:
136 +      incr_block( ATOM_BLK );
137 +      handled = the_stamps->newAtom( the_event );
138 +      break;
139 +      
140 +    case POSITION:
141 +      handled = the_stamps->rigidBodyPosition( the_event );
142 +      break;
143 +      
144 +    case ORIENTATION:
145 +      handled = the_stamps->rigidBodyOrientation( the_event );
146 +      break;
147 +
148 +    case ASSIGNMENT:
149 +      handled = the_stamps->rigidBodyAssign( the_event );
150 +      break;
151 +
152 +    case BLOCK_END:
153 +      decr_block();
154 +      handled = the_stamps->rigidBodyEnd( the_event );
155 +      break;
156 +
157 +    default:
158 +      the_event->err_msg =
159 +        strdup( "Not a valid RigidBody event\n" );
160        return 0;
161      }
162      break;
163  
164 +
165    case ATOM_BLK:
166      
167      switch( the_event->event_type ){

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines