bbce869a56cc88de4a5f3a791539fb161aabd0a9
[debian/openrocket] / src / net / sf / openrocket / rocketcomponent / RocketComponent.java
1 package net.sf.openrocket.rocketcomponent;
2
3 import net.sf.openrocket.l10n.Translator;
4 import net.sf.openrocket.logging.LogHelper;
5 import net.sf.openrocket.preset.ComponentPreset;
6 import net.sf.openrocket.startup.Application;
7 import net.sf.openrocket.util.ArrayList;
8 import net.sf.openrocket.util.BugException;
9 import net.sf.openrocket.util.ChangeSource;
10 import net.sf.openrocket.util.Coordinate;
11 import net.sf.openrocket.util.Invalidator;
12 import net.sf.openrocket.util.LineStyle;
13 import net.sf.openrocket.util.MathUtil;
14 import net.sf.openrocket.util.SafetyMutex;
15 import net.sf.openrocket.util.UniqueID;
16
17 import javax.swing.event.ChangeListener;
18 import java.awt.*;
19 import java.util.ArrayDeque;
20 import java.util.Collection;
21 import java.util.Deque;
22 import java.util.Iterator;
23 import java.util.List;
24 import java.util.NoSuchElementException;
25
26
27 public abstract class RocketComponent implements ChangeSource, Cloneable, Iterable<RocketComponent> {
28         private static final LogHelper log = Application.getLogger();
29         private static final Translator trans = Application.getTranslator();
30         
31         /*
32          * Text is suitable to the form
33          *    Position relative to:  <title>
34          */
35         public enum Position {
36                 /** Position relative to the top of the parent component. */
37                 //// Top of the parent component
38                 TOP(trans.get("RocketComponent.Position.TOP")),
39                 /** Position relative to the middle of the parent component. */
40                 //// Middle of the parent component
41                 MIDDLE(trans.get("RocketComponent.Position.MIDDLE")),
42                 /** Position relative to the bottom of the parent component. */
43                 //// Bottom of the parent component
44                 BOTTOM(trans.get("RocketComponent.Position.BOTTOM")),
45                 /** Position after the parent component (for body components). */
46                 //// After the parent component
47                 AFTER(trans.get("RocketComponent.Position.AFTER")),
48                 /** Specify an absolute X-coordinate position. */
49                 //// Tip of the nose cone
50                 ABSOLUTE(trans.get("RocketComponent.Position.ABSOLUTE"));
51                 
52                 private String title;
53                 
54                 Position(String title) {
55                         this.title = title;
56                 }
57                 
58                 @Override
59                 public String toString() {
60                         return title;
61                 }
62         }
63         
64         /**
65          * A safety mutex that can be used to prevent concurrent access to this component.
66          */
67         protected SafetyMutex mutex = SafetyMutex.newInstance();
68         
69         ////////  Parent/child trees
70         /**
71          * Parent component of the current component, or null if none exists.
72          */
73         private RocketComponent parent = null;
74         
75         /**
76          * List of child components of this component.
77          */
78         private ArrayList<RocketComponent> children = new ArrayList<RocketComponent>();
79         
80
81         ////////  Parameters common to all components:
82         
83         /**
84          * Characteristic length of the component.  This is used in calculating the coordinate
85          * transformations and positions of other components in reference to this component.
86          * This may and should be used as the "true" length of the component, where applicable.
87          * By default it is zero, i.e. no translation.
88          */
89         protected double length = 0;
90         
91         /**
92          * Positioning of this component relative to the parent component.
93          */
94         protected Position relativePosition;
95         
96         /**
97          * Offset of the position of this component relative to the normal position given by
98          * relativePosition.  By default zero, i.e. no position change.
99          */
100         protected double position = 0;
101         
102
103         // Color of the component, null means to use the default color
104         private Color color = null;
105         private LineStyle lineStyle = null;
106         
107
108         // Override mass/CG
109         private double overrideMass = 0;
110         private boolean massOverriden = false;
111         private double overrideCGX = 0;
112         private boolean cgOverriden = false;
113         
114         private boolean overrideSubcomponents = false;
115         
116
117         // User-given name of the component
118         private String name = null;
119         
120         // User-specified comment
121         private String comment = "";
122         
123         // Unique ID of the component
124         private String id = null;
125         
126         // Preset component this component is based upon
127         private ComponentPreset presetComponent = null;
128         
129
130         /**
131          * Used to invalidate the component after calling {@link #copyFrom(RocketComponent)}.
132          */
133         private Invalidator invalidator = new Invalidator(this);
134         
135         
136         ////  NOTE !!!  All fields must be copied in the method copyFrom()!  ////
137         
138
139
140         /**
141          * Default constructor.  Sets the name of the component to the component's static name
142          * and the relative position of the component.
143          */
144         public RocketComponent(Position relativePosition) {
145                 // These must not fire any events, due to Rocket undo system initialization
146                 this.name = getComponentName();
147                 this.relativePosition = relativePosition;
148                 newID();
149         }
150         
151         ////////////  Methods that must be implemented  ////////////
152         
153
154         /**
155          * Static component name.  The name may not vary of the parameters, it must be static.
156          */
157         public abstract String getComponentName(); // Static component type name
158         
159         /**
160          * Return the component mass (regardless of mass overriding).
161          */
162         public abstract double getComponentMass(); // Mass of non-overridden component
163         
164         /**
165          * Return the component CG and mass (regardless of CG or mass overriding).
166          */
167         public abstract Coordinate getComponentCG(); // CG of non-overridden component
168         
169
170         /**
171          * Return the longitudinal (around the y- or z-axis) unitary moment of inertia.
172          * The unitary moment of inertia is the moment of inertia with the assumption that
173          * the mass of the component is one kilogram.  The inertia is measured in
174          * respect to the non-overridden CG.
175          *
176          * @return   the longitudinal unitary moment of inertia of this component.
177          */
178         public abstract double getLongitudinalUnitInertia();
179         
180         
181         /**
182          * Return the rotational (around the x-axis) unitary moment of inertia.
183          * The unitary moment of inertia is the moment of inertia with the assumption that
184          * the mass of the component is one kilogram.  The inertia is measured in
185          * respect to the non-overridden CG.
186          *
187          * @return   the rotational unitary moment of inertia of this component.
188          */
189         public abstract double getRotationalUnitInertia();
190         
191         
192         /**
193          * Test whether this component allows any children components.  This method must
194          * return true if and only if {@link #isCompatible(Class)} returns true for any
195          * rocket component class.
196          *
197          * @return      <code>true</code> if children can be attached to this component, <code>false</code> otherwise.
198          */
199         public abstract boolean allowsChildren();
200         
201         /**
202          * Test whether the given component type can be added to this component.  This type safety
203          * is enforced by the <code>addChild()</code> methods.  The return value of this method
204          * may change to reflect the current state of this component (e.g. two components of some
205          * type cannot be placed as children).
206          *
207          * @param type  The RocketComponent class type to add.
208          * @return      Whether such a component can be added.
209          */
210         public abstract boolean isCompatible(Class<? extends RocketComponent> type);
211         
212         
213         /* Non-abstract helper method */
214         /**
215          * Test whether the given component can be added to this component.  This is equivalent
216          * to calling <code>isCompatible(c.getClass())</code>.
217          *
218          * @param c  Component to test.
219          * @return   Whether the component can be added.
220          * @see #isCompatible(Class)
221          */
222         public final boolean isCompatible(RocketComponent c) {
223                 mutex.verify();
224                 return isCompatible(c.getClass());
225         }
226         
227         
228
229         /**
230          * Return a collection of bounding coordinates.  The coordinates must be such that
231          * the component is fully enclosed in their convex hull.
232          *
233          * @return      a collection of coordinates that bound the component.
234          */
235         public abstract Collection<Coordinate> getComponentBounds();
236         
237         /**
238          * Return true if the component may have an aerodynamic effect on the rocket.
239          */
240         public abstract boolean isAerodynamic();
241         
242         /**
243          * Return true if the component may have an effect on the rocket's mass.
244          */
245         public abstract boolean isMassive();
246         
247         
248
249
250
251         ////////////  Methods that may be overridden  ////////////
252         
253
254         /**
255          * Shift the coordinates in the array corresponding to radial movement.  A component
256          * that has a radial position must shift the coordinates in this array suitably.
257          * If the component is clustered, then a new array must be returned with a
258          * coordinate for each cluster.
259          * <p>
260          * The default implementation simply returns the array, and thus produces no shift.
261          *
262          * @param c   an array of coordinates to shift.
263          * @return    an array of shifted coordinates.  The method may modify the contents
264          *                        of the passed array and return the array itself.
265          */
266         public Coordinate[] shiftCoordinates(Coordinate[] c) {
267                 checkState();
268                 return c;
269         }
270         
271         
272         /**
273          * Called when any component in the tree fires a ComponentChangeEvent.  This is by
274          * default a no-op, but subclasses may override this method to e.g. invalidate
275          * cached data.  The overriding method *must* call
276          * <code>super.componentChanged(e)</code> at some point.
277          *
278          * @param e  The event fired
279          */
280         protected void componentChanged(ComponentChangeEvent e) {
281                 // No-op
282                 checkState();
283         }
284         
285         
286
287
288         /**
289          * Return the user-provided name of the component, or the component base
290          * name if the user-provided name is empty.  This can be used in the UI.
291          *
292          * @return A string describing the component.
293          */
294         @Override
295         public final String toString() {
296                 mutex.verify();
297                 if (name.length() == 0)
298                         return getComponentName();
299                 else
300                         return name;
301         }
302         
303         
304         /**
305          * Create a string describing the basic component structure from this component downwards.
306          * @return      a string containing the rocket structure
307          */
308         public final String toDebugString() {
309                 mutex.lock("toDebugString");
310                 try {
311                         StringBuilder sb = new StringBuilder();
312                         toDebugString(sb);
313                         return sb.toString();
314                 } finally {
315                         mutex.unlock("toDebugString");
316                 }
317         }
318         
319         private void toDebugString(StringBuilder sb) {
320                 sb.append(this.getClass().getSimpleName()).append('@').append(System.identityHashCode(this));
321                 sb.append("[\"").append(this.getName()).append('"');
322                 for (RocketComponent c : this.children) {
323                         sb.append("; ");
324                         c.toDebugString(sb);
325                 }
326                 sb.append(']');
327         }
328         
329         
330         /**
331          * Make a deep copy of the rocket component tree structure from this component
332          * downwards for copying purposes.  Each component in the copy will be assigned
333          * a new component ID, making it a safe copy.  This method does not fire any events.
334          *
335          * @return A deep copy of the structure.
336          */
337         public final RocketComponent copy() {
338                 RocketComponent clone = copyWithOriginalID();
339                 
340                 Iterator<RocketComponent> iterator = clone.iterator(true);
341                 while (iterator.hasNext()) {
342                         iterator.next().newID();
343                 }
344                 return clone;
345         }
346         
347         
348
349         /**
350          * Make a deep copy of the rocket component tree structure from this component
351          * downwards while maintaining the component ID's.  The purpose of this method is
352          * to allow copies to be created with the original ID's for the purpose of the
353          * undo/redo mechanism.  This method should not be used for other purposes,
354          * such as copy/paste.  This method does not fire any events.
355          * <p>
356          * This method must be overridden by any component that refers to mutable objects,
357          * or if some fields should not be copied.  This should be performed by
358          * <code>RocketComponent c = super.copyWithOriginalID();</code> and then cloning/modifying
359          * the appropriate fields.
360          * <p>
361          * This is not performed as serializing/deserializing for performance reasons.
362          *
363          * @return A deep copy of the structure.
364          */
365         protected RocketComponent copyWithOriginalID() {
366                 mutex.lock("copyWithOriginalID");
367                 try {
368                         checkState();
369                         RocketComponent clone;
370                         try {
371                                 clone = (RocketComponent) this.clone();
372                         } catch (CloneNotSupportedException e) {
373                                 throw new BugException("CloneNotSupportedException encountered, report a bug!", e);
374                         }
375                         
376                         // Reset the mutex
377                         clone.mutex = SafetyMutex.newInstance();
378                         
379                         // Reset all parent/child information
380                         clone.parent = null;
381                         clone.children = new ArrayList<RocketComponent>();
382                         
383                         // Add copied children to the structure without firing events.
384                         for (RocketComponent child : this.children) {
385                                 RocketComponent childCopy = child.copyWithOriginalID();
386                                 // Don't use add method since it fires events
387                                 clone.children.add(childCopy);
388                                 childCopy.parent = clone;
389                         }
390                         
391                         this.checkComponentStructure();
392                         clone.checkComponentStructure();
393                         
394                         return clone;
395                 } finally {
396                         mutex.unlock("copyWithOriginalID");
397                 }
398         }
399         
400         
401         //////////////  Methods that may not be overridden  ////////////
402         
403
404
405         ////////// Common parameter setting/getting //////////
406         
407         /**
408          * Return the color of the object to use in 2D figures, or <code>null</code>
409          * to use the default color.
410          */
411         public final Color getColor() {
412                 mutex.verify();
413                 return color;
414         }
415         
416         /**
417          * Set the color of the object to use in 2D figures.
418          */
419         public final void setColor(Color c) {
420                 if ((color == null && c == null) ||
421                                 (color != null && color.equals(c)))
422                         return;
423                 
424                 checkState();
425                 this.color = c;
426                 fireComponentChangeEvent(ComponentChangeEvent.NONFUNCTIONAL_CHANGE);
427         }
428         
429         
430         public final LineStyle getLineStyle() {
431                 mutex.verify();
432                 return lineStyle;
433         }
434         
435         public final void setLineStyle(LineStyle style) {
436                 if (this.lineStyle == style)
437                         return;
438                 checkState();
439                 this.lineStyle = style;
440                 fireComponentChangeEvent(ComponentChangeEvent.NONFUNCTIONAL_CHANGE);
441         }
442         
443         
444
445
446         /**
447          * Get the current override mass.  The mass is not necessarily in use
448          * at the moment.
449          *
450          * @return  the override mass
451          */
452         public final double getOverrideMass() {
453                 mutex.verify();
454                 return overrideMass;
455         }
456         
457         /**
458          * Set the current override mass.  The mass is not set to use by this
459          * method.
460          *
461          * @param m  the override mass
462          */
463         public final void setOverrideMass(double m) {
464                 if (MathUtil.equals(m, overrideMass))
465                         return;
466                 checkState();
467                 overrideMass = Math.max(m, 0);
468                 if (massOverriden)
469                         fireComponentChangeEvent(ComponentChangeEvent.MASS_CHANGE);
470         }
471         
472         /**
473          * Return whether mass override is active for this component.  This does NOT
474          * take into account whether a parent component is overriding the mass.
475          *
476          * @return  whether the mass is overridden
477          */
478         public final boolean isMassOverridden() {
479                 mutex.verify();
480                 return massOverriden;
481         }
482         
483         /**
484          * Set whether the mass is currently overridden.
485          *
486          * @param o  whether the mass is overridden
487          */
488         public final void setMassOverridden(boolean o) {
489                 if (massOverriden == o) {
490                         return;
491                 }
492                 checkState();
493                 massOverriden = o;
494                 fireComponentChangeEvent(ComponentChangeEvent.MASS_CHANGE);
495         }
496         
497         
498
499
500
501         /**
502          * Return the current override CG.  The CG is not necessarily overridden.
503          *
504          * @return  the override CG
505          */
506         public final Coordinate getOverrideCG() {
507                 mutex.verify();
508                 return getComponentCG().setX(overrideCGX);
509         }
510         
511         /**
512          * Return the x-coordinate of the current override CG.
513          *
514          * @return      the x-coordinate of the override CG.
515          */
516         public final double getOverrideCGX() {
517                 mutex.verify();
518                 return overrideCGX;
519         }
520         
521         /**
522          * Set the current override CG to (x,0,0).
523          *
524          * @param x  the x-coordinate of the override CG to set.
525          */
526         public final void setOverrideCGX(double x) {
527                 if (MathUtil.equals(overrideCGX, x))
528                         return;
529                 checkState();
530                 this.overrideCGX = x;
531                 if (isCGOverridden())
532                         fireComponentChangeEvent(ComponentChangeEvent.MASS_CHANGE);
533                 else
534                         fireComponentChangeEvent(ComponentChangeEvent.NONFUNCTIONAL_CHANGE);
535         }
536         
537         /**
538          * Return whether the CG is currently overridden.
539          *
540          * @return  whether the CG is overridden
541          */
542         public final boolean isCGOverridden() {
543                 mutex.verify();
544                 return cgOverriden;
545         }
546         
547         /**
548          * Set whether the CG is currently overridden.
549          *
550          * @param o  whether the CG is overridden
551          */
552         public final void setCGOverridden(boolean o) {
553                 if (cgOverriden == o) {
554                         return;
555                 }
556                 checkState();
557                 cgOverriden = o;
558                 fireComponentChangeEvent(ComponentChangeEvent.MASS_CHANGE);
559         }
560         
561         
562
563         /**
564          * Return whether the mass and/or CG override overrides all subcomponent values
565          * as well.  The default implementation is a normal getter/setter implementation,
566          * however, subclasses are allowed to override this behavior if some subclass
567          * always or never overrides subcomponents.  In this case the subclass should
568          * also override {@link #isOverrideSubcomponentsEnabled()} to return
569          * <code>false</code>.
570          *
571          * @return      whether the current mass and/or CG override overrides subcomponents as well.
572          */
573         public boolean getOverrideSubcomponents() {
574                 mutex.verify();
575                 return overrideSubcomponents;
576         }
577         
578         
579         /**
580          * Set whether the mass and/or CG override overrides all subcomponent values
581          * as well.  See {@link #getOverrideSubcomponents()} for details.
582          *
583          * @param override      whether the mass and/or CG override overrides all subcomponent.
584          */
585         public void setOverrideSubcomponents(boolean override) {
586                 if (overrideSubcomponents == override) {
587                         return;
588                 }
589                 checkState();
590                 overrideSubcomponents = override;
591                 fireComponentChangeEvent(ComponentChangeEvent.MASS_CHANGE);
592         }
593         
594         /**
595          * Return whether the option to override all subcomponents is enabled or not.
596          * The default implementation returns <code>false</code> if neither mass nor
597          * CG is overridden, <code>true</code> otherwise.
598          * <p>
599          * This method may be overridden if the setting of overriding subcomponents
600          * cannot be set.
601          *
602          * @return      whether the option to override subcomponents is currently enabled.
603          */
604         public boolean isOverrideSubcomponentsEnabled() {
605                 mutex.verify();
606                 return isCGOverridden() || isMassOverridden();
607         }
608         
609         
610
611
612         /**
613          * Get the user-defined name of the component.
614          */
615         public final String getName() {
616                 mutex.verify();
617                 return name;
618         }
619         
620         /**
621          * Set the user-defined name of the component.  If name==null, sets the name to
622          * the default name, currently the component name.
623          */
624         public final void setName(String name) {
625                 if (this.name.equals(name)) {
626                         return;
627                 }
628                 checkState();
629                 if (name == null || name.matches("^\\s*$"))
630                         this.name = getComponentName();
631                 else
632                         this.name = name;
633                 fireComponentChangeEvent(ComponentChangeEvent.NONFUNCTIONAL_CHANGE);
634         }
635         
636         
637         /**
638          * Return the comment of the component.  The component may contain multiple lines
639          * using \n as a newline separator.
640          *
641          * @return  the comment of the component.
642          */
643         public final String getComment() {
644                 mutex.verify();
645                 return comment;
646         }
647         
648         /**
649          * Set the comment of the component.
650          *
651          * @param comment  the comment of the component.
652          */
653         public final void setComment(String comment) {
654                 if (this.comment.equals(comment))
655                         return;
656                 checkState();
657                 if (comment == null)
658                         this.comment = "";
659                 else
660                         this.comment = comment;
661                 fireComponentChangeEvent(ComponentChangeEvent.NONFUNCTIONAL_CHANGE);
662         }
663         
664         
665
666         /**
667          * Return the preset component that this component is based upon.
668          * 
669          * @return      the preset component, or <code>null</code> if this is not based on a preset.
670          */
671         public final ComponentPreset getPresetComponent() {
672                 return presetComponent;
673         }
674         
675         /**
676          * Set the preset component this component is based upon and load all of the 
677          * preset values.
678          * 
679          * @param preset        the preset component to load, or <code>null</code> to clear the preset.
680          */
681         public final void loadPreset(ComponentPreset preset) {
682                 if (presetComponent == preset) {
683                         return;
684                 }
685                 
686                 if (preset == null) {
687                         clearPreset();
688                         return;
689                 }
690                 
691                 if (preset.getComponentClass() != this.getClass()) {
692                         throw new IllegalArgumentException("Attempting to load preset of type " + preset.getComponentClass()
693                                                 + " into component of type " + this.getClass());
694                 }
695                 
696                 RocketComponent root = getRoot();
697                 final Rocket rocket;
698                 if (root instanceof Rocket) {
699                         rocket = (Rocket) root;
700                 } else {
701                         rocket = null;
702                 }
703                 
704                 try {
705                         if (rocket != null) {
706                                 rocket.freeze();
707                         }
708                         
709                         loadFromPreset(preset.getPrototype());
710                         
711                         this.presetComponent = preset;
712                         fireComponentChangeEvent(ComponentChangeEvent.NONFUNCTIONAL_CHANGE);
713                         
714                 } finally {
715                         if (rocket != null) {
716                                 rocket.thaw();
717                         }
718                 }
719         }
720         
721         
722         /**
723          * Load component properties from the specified preset.  The preset is guaranteed
724          * to be of the correct type.
725          * <p>
726          * This method should fire the appropriate events related to the changes.  The rocket
727          * is frozen by the caller, so the events will be automatically combined.
728          * <p>
729          * This method must FIRST perform the preset loading and THEN call super.loadFromPreset().
730          * This is because mass setting requires the dimensions to be set beforehand.
731          * 
732          * @param preset        the preset to load from
733          */
734         protected void loadFromPreset(RocketComponent preset) {
735                 // No-op
736         }
737         
738         
739         /**
740          * Clear the current component preset.  This does not affect the component properties
741          * otherwise.
742          */
743         public final void clearPreset() {
744                 if (presetComponent == null)
745                         return;
746                 presetComponent = null;
747                 fireComponentChangeEvent(ComponentChangeEvent.NONFUNCTIONAL_CHANGE);
748         }
749         
750         
751
752         /**
753          * Returns the unique ID of the component.
754          *
755          * @return      the ID of the component.
756          */
757         public final String getID() {
758                 return id;
759         }
760         
761         /**
762          * Generate a new ID for this component.
763          */
764         private final void newID() {
765                 mutex.verify();
766                 this.id = UniqueID.uuid();
767         }
768         
769         
770
771
772         /**
773          * Get the characteristic length of the component, for example the length of a body tube
774          * of the length of the root chord of a fin.  This is used in positioning the component
775          * relative to its parent.
776          *
777          * If the length of a component is settable, the class must define the setter method
778          * itself.
779          */
780         public final double getLength() {
781                 mutex.verify();
782                 return length;
783         }
784         
785         /**
786          * Get the positioning of the component relative to its parent component.
787          * This is one of the enums of {@link Position}.  A setter method is not provided,
788          * but can be provided by a subclass.
789          */
790         public final Position getRelativePosition() {
791                 mutex.verify();
792                 return relativePosition;
793         }
794         
795         
796         /**
797          * Set the positioning of the component relative to its parent component.
798          * The actual position of the component is maintained to the best ability.
799          * <p>
800          * The default implementation is of protected visibility, since many components
801          * do not support setting the relative position.  A component that does support
802          * it should override this with a public method that simply calls this
803          * supermethod AND fire a suitable ComponentChangeEvent.
804          *
805          * @param position      the relative positioning.
806          */
807         protected void setRelativePosition(RocketComponent.Position position) {
808                 if (this.relativePosition == position)
809                         return;
810                 checkState();
811                 
812                 // Update position so as not to move the component
813                 if (this.parent != null) {
814                         double thisPos = this.toRelative(Coordinate.NUL, this.parent)[0].x;
815                         
816                         switch (position) {
817                         case ABSOLUTE:
818                                 this.position = this.toAbsolute(Coordinate.NUL)[0].x;
819                                 break;
820                         
821                         case TOP:
822                                 this.position = thisPos;
823                                 break;
824                         
825                         case MIDDLE:
826                                 this.position = thisPos - (this.parent.length - this.length) / 2;
827                                 break;
828                         
829                         case BOTTOM:
830                                 this.position = thisPos - (this.parent.length - this.length);
831                                 break;
832                         
833                         default:
834                                 throw new BugException("Unknown position type: " + position);
835                         }
836                 }
837                 
838                 this.relativePosition = position;
839                 fireComponentChangeEvent(ComponentChangeEvent.BOTH_CHANGE);
840         }
841
842
843     /**
844      * Determine position relative to given position argument.  Note: This is a side-effect free method.  No state
845      * is modified.  It's exactly like setRelativePosition without the 'set'.
846      *
847      * @param thePosition the relative position to be used as the basis for the computation
848      *
849      * @return double position of the component relative to the parent, with respect to <code>position</code>
850      */
851     public double asPositionValue (Position thePosition) {
852         if (this.relativePosition == thePosition) {
853             return this.position;
854         }
855         double result = this.position;
856         if (this.parent != null) {
857             double thisPos = this.toRelative(Coordinate.NUL, this.parent)[0].x;
858
859             switch (thePosition) {
860             case ABSOLUTE:
861                 result = this.toAbsolute(Coordinate.NUL)[0].x;
862                 break;
863             case TOP:
864                 result = thisPos;
865                 break;
866             case MIDDLE:
867                 result = thisPos - (this.parent.length - this.length) / 2;
868                 break;
869             case BOTTOM:
870                 result = thisPos - (this.parent.length - this.length);
871                 break;
872             default:
873                 throw new BugException("Unknown position type: " + thePosition);
874             }
875         }
876         return result;
877     }
878
879         /**
880          * Get the position value of the component.  The exact meaning of the value is
881          * dependent on the current relative positioning.
882          *
883          * @return  the positional value.
884          */
885         public final double getPositionValue() {
886                 mutex.verify();
887                 return position;
888         }
889         
890         
891         /**
892          * Set the position value of the component.  The exact meaning of the value
893          * depends on the current relative positioning.
894          * <p>
895          * The default implementation is of protected visibility, since many components
896          * do not support setting the relative position.  A component that does support
897          * it should override this with a public method that simply calls this
898          * supermethod AND fire a suitable ComponentChangeEvent.
899          *
900          * @param value         the position value of the component.
901          */
902         public void setPositionValue(double value) {
903                 if (MathUtil.equals(this.position, value))
904                         return;
905                 checkState();
906                 this.position = value;
907         }
908         
909         
910
911         ///////////  Coordinate changes  ///////////
912         
913         /**
914          * Returns coordinate c in absolute coordinates.  Equivalent to toComponent(c,null).
915          */
916         public Coordinate[] toAbsolute(Coordinate c) {
917                 checkState();
918                 return toRelative(c, null);
919         }
920         
921         
922         /**
923          * Return coordinate <code>c</code> described in the coordinate system of
924          * <code>dest</code>.  If <code>dest</code> is <code>null</code> returns
925          * absolute coordinates.
926          * <p>
927          * This method returns an array of coordinates, each of which represents a
928          * position of the coordinate in clustered cases.  The array is guaranteed
929          * to contain at least one element.
930          * <p>
931          * The current implementation does not support rotating components.
932          *
933          * @param c    Coordinate in the component's coordinate system.
934          * @param dest Destination component coordinate system.
935          * @return     an array of coordinates describing <code>c</code> in coordinates
936          *                         relative to <code>dest</code>.
937          */
938         public final Coordinate[] toRelative(Coordinate c, RocketComponent dest) {
939                 checkState();
940                 mutex.lock("toRelative");
941                 try {
942                         double absoluteX = Double.NaN;
943                         RocketComponent search = dest;
944                         Coordinate[] array = new Coordinate[1];
945                         array[0] = c;
946                         
947                         RocketComponent component = this;
948                         while ((component != search) && (component.parent != null)) {
949                                 
950                                 array = component.shiftCoordinates(array);
951                                 
952                                 switch (component.relativePosition) {
953                                 case TOP:
954                                         for (int i = 0; i < array.length; i++) {
955                                                 array[i] = array[i].add(component.position, 0, 0);
956                                         }
957                                         break;
958                                 
959                                 case MIDDLE:
960                                         for (int i = 0; i < array.length; i++) {
961                                                 array[i] = array[i].add(component.position +
962                                                                 (component.parent.length - component.length) / 2, 0, 0);
963                                         }
964                                         break;
965                                 
966                                 case BOTTOM:
967                                         for (int i = 0; i < array.length; i++) {
968                                                 array[i] = array[i].add(component.position +
969                                                                 (component.parent.length - component.length), 0, 0);
970                                         }
971                                         break;
972                                 
973                                 case AFTER:
974                                         // Add length of all previous brother-components with POSITION_RELATIVE_AFTER
975                                         int index = component.parent.children.indexOf(component);
976                                         assert (index >= 0);
977                                         for (index--; index >= 0; index--) {
978                                                 RocketComponent comp = component.parent.children.get(index);
979                                                 double componentLength = comp.getTotalLength();
980                                                 for (int i = 0; i < array.length; i++) {
981                                                         array[i] = array[i].add(componentLength, 0, 0);
982                                                 }
983                                         }
984                                         for (int i = 0; i < array.length; i++) {
985                                                 array[i] = array[i].add(component.position + component.parent.length, 0, 0);
986                                         }
987                                         break;
988                                 
989                                 case ABSOLUTE:
990                                         search = null; // Requires back-search if dest!=null
991                                         if (Double.isNaN(absoluteX)) {
992                                                 absoluteX = component.position;
993                                         }
994                                         break;
995                                 
996                                 default:
997                                         throw new BugException("Unknown relative positioning type of component" +
998                                                         component + ": " + component.relativePosition);
999                                 }
1000                                 
1001                                 component = component.parent; // parent != null
1002                         }
1003                         
1004                         if (!Double.isNaN(absoluteX)) {
1005                                 for (int i = 0; i < array.length; i++) {
1006                                         array[i] = array[i].setX(absoluteX + c.x);
1007                                 }
1008                         }
1009                         
1010                         // Check whether destination has been found or whether to backtrack
1011                         // TODO: LOW: Backtracking into clustered components uses only one component
1012                         if ((dest != null) && (component != dest)) {
1013                                 Coordinate[] origin = dest.toAbsolute(Coordinate.NUL);
1014                                 for (int i = 0; i < array.length; i++) {
1015                                         array[i] = array[i].sub(origin[0]);
1016                                 }
1017                         }
1018                         
1019                         return array;
1020                 } finally {
1021                         mutex.unlock("toRelative");
1022                 }
1023         }
1024         
1025         
1026         /**
1027          * Recursively sum the lengths of all subcomponents that have position
1028          * Position.AFTER.
1029          *
1030          * @return  Sum of the lengths.
1031          */
1032         private final double getTotalLength() {
1033                 checkState();
1034                 this.checkComponentStructure();
1035                 mutex.lock("getTotalLength");
1036                 try {
1037                         double l = 0;
1038                         if (relativePosition == Position.AFTER)
1039                                 l = length;
1040                         for (int i = 0; i < children.size(); i++)
1041                                 l += children.get(i).getTotalLength();
1042                         return l;
1043                 } finally {
1044                         mutex.unlock("getTotalLength");
1045                 }
1046         }
1047         
1048         
1049
1050         /////////// Total mass and CG calculation ////////////
1051         
1052         /**
1053          * Return the (possibly overridden) mass of component.
1054          *
1055          * @return The mass of the component or the given override mass.
1056          */
1057         public final double getMass() {
1058                 mutex.verify();
1059                 if (massOverriden)
1060                         return overrideMass;
1061                 return getComponentMass();
1062         }
1063         
1064         /**
1065          * Return the (possibly overridden) center of gravity and mass.
1066          *
1067          * Returns the CG with the weight of the coordinate set to the weight of the component.
1068          * Both CG and mass may be separately overridden.
1069          *
1070          * @return The CG of the component or the given override CG.
1071          */
1072         public final Coordinate getCG() {
1073                 checkState();
1074                 if (cgOverriden)
1075                         return getOverrideCG().setWeight(getMass());
1076                 
1077                 if (massOverriden)
1078                         return getComponentCG().setWeight(getMass());
1079                 
1080                 return getComponentCG();
1081         }
1082         
1083         
1084         /**
1085          * Return the longitudinal (around the y- or z-axis) moment of inertia of this component.
1086          * The moment of inertia is scaled in reference to the (possibly overridden) mass
1087          * and is relative to the non-overridden CG.
1088          *
1089          * @return    the longitudinal moment of inertia of this component.
1090          */
1091         public final double getLongitudinalInertia() {
1092                 checkState();
1093                 return getLongitudinalUnitInertia() * getMass();
1094         }
1095         
1096         /**
1097          * Return the rotational (around the y- or z-axis) moment of inertia of this component.
1098          * The moment of inertia is scaled in reference to the (possibly overridden) mass
1099          * and is relative to the non-overridden CG.
1100          *
1101          * @return    the rotational moment of inertia of this component.
1102          */
1103         public final double getRotationalInertia() {
1104                 checkState();
1105                 return getRotationalUnitInertia() * getMass();
1106         }
1107         
1108         
1109
1110         ///////////  Children handling  ///////////
1111         
1112
1113         /**
1114          * Adds a child to the rocket component tree.  The component is added to the end
1115          * of the component's child list.  This is a helper method that calls
1116          * {@link #addChild(RocketComponent,int)}.
1117          *
1118          * @param component  The component to add.
1119          * @throws IllegalArgumentException  if the component is already part of some
1120          *                                                                       component tree.
1121          * @see #addChild(RocketComponent,int)
1122          */
1123         public final void addChild(RocketComponent component) {
1124                 checkState();
1125                 addChild(component, children.size());
1126         }
1127         
1128         
1129         /**
1130          * Adds a child to the rocket component tree.  The component is added to
1131          * the given position of the component's child list.
1132          * <p>
1133          * This method may be overridden to enforce more strict component addition rules.
1134          * The tests should be performed first and then this method called.
1135          *
1136          * @param component     The component to add.
1137          * @param index         Position to add component to.
1138          * @throws IllegalArgumentException  If the component is already part of
1139          *                                                                       some component tree.
1140          */
1141         public void addChild(RocketComponent component, int index) {
1142                 checkState();
1143                 if (component.parent != null) {
1144                         throw new IllegalArgumentException("component " + component.getComponentName() +
1145                                         " is already in a tree");
1146                 }
1147                 if (!isCompatible(component)) {
1148                         throw new IllegalStateException("Component " + component.getComponentName() +
1149                                         " not currently compatible with component " + getComponentName());
1150                 }
1151                 
1152                 children.add(index, component);
1153                 component.parent = this;
1154                 
1155                 this.checkComponentStructure();
1156                 component.checkComponentStructure();
1157                 
1158                 fireAddRemoveEvent(component);
1159         }
1160         
1161         
1162         /**
1163          * Removes a child from the rocket component tree.
1164          *
1165          * @param n  remove the n'th child.
1166          * @throws IndexOutOfBoundsException  if n is out of bounds
1167          */
1168         public final void removeChild(int n) {
1169                 checkState();
1170                 RocketComponent component = children.remove(n);
1171                 component.parent = null;
1172                 
1173                 this.checkComponentStructure();
1174                 component.checkComponentStructure();
1175                 
1176                 fireAddRemoveEvent(component);
1177         }
1178         
1179         /**
1180          * Removes a child from the rocket component tree.  Does nothing if the component
1181          * is not present as a child.
1182          *
1183          * @param component             the component to remove
1184          * @return                              whether the component was a child
1185          */
1186         public final boolean removeChild(RocketComponent component) {
1187                 checkState();
1188                 
1189                 component.checkComponentStructure();
1190                 
1191                 if (children.remove(component)) {
1192                         component.parent = null;
1193                         
1194                         this.checkComponentStructure();
1195                         component.checkComponentStructure();
1196                         
1197                         fireAddRemoveEvent(component);
1198                         return true;
1199                 }
1200                 return false;
1201         }
1202         
1203         
1204
1205
1206         /**
1207          * Move a child to another position.
1208          *
1209          * @param component     the component to move
1210          * @param index the component's new position
1211          * @throws IllegalArgumentException If an illegal placement was attempted.
1212          */
1213         public final void moveChild(RocketComponent component, int index) {
1214                 checkState();
1215                 if (children.remove(component)) {
1216                         children.add(index, component);
1217                         
1218                         this.checkComponentStructure();
1219                         component.checkComponentStructure();
1220                         
1221                         fireAddRemoveEvent(component);
1222                 }
1223         }
1224         
1225         
1226         /**
1227          * Fires an AERODYNAMIC_CHANGE, MASS_CHANGE or OTHER_CHANGE event depending on the
1228          * type of component removed.
1229          */
1230         private void fireAddRemoveEvent(RocketComponent component) {
1231                 Iterator<RocketComponent> iter = component.iterator(true);
1232                 int type = ComponentChangeEvent.TREE_CHANGE;
1233                 while (iter.hasNext()) {
1234                         RocketComponent c = iter.next();
1235                         if (c.isAerodynamic())
1236                                 type |= ComponentChangeEvent.AERODYNAMIC_CHANGE;
1237                         if (c.isMassive())
1238                                 type |= ComponentChangeEvent.MASS_CHANGE;
1239                 }
1240                 
1241                 fireComponentChangeEvent(type);
1242         }
1243         
1244         
1245         public final int getChildCount() {
1246                 checkState();
1247                 this.checkComponentStructure();
1248                 return children.size();
1249         }
1250         
1251         public final RocketComponent getChild(int n) {
1252                 checkState();
1253                 this.checkComponentStructure();
1254                 return children.get(n);
1255         }
1256         
1257         public final List<RocketComponent> getChildren() {
1258                 checkState();
1259                 this.checkComponentStructure();
1260                 return children.clone();
1261         }
1262         
1263         
1264         /**
1265          * Returns the position of the child in this components child list, or -1 if the
1266          * component is not a child of this component.
1267          *
1268          * @param child  The child to search for.
1269          * @return  Position in the list or -1 if not found.
1270          */
1271         public final int getChildPosition(RocketComponent child) {
1272                 checkState();
1273                 this.checkComponentStructure();
1274                 return children.indexOf(child);
1275         }
1276         
1277         /**
1278          * Get the parent component of this component.  Returns <code>null</code> if the component
1279          * has no parent.
1280          *
1281          * @return  The parent of this component or <code>null</code>.
1282          */
1283         public final RocketComponent getParent() {
1284                 checkState();
1285                 return parent;
1286         }
1287         
1288         /**
1289          * Get the root component of the component tree.
1290          *
1291          * @return  The root component of the component tree.
1292          */
1293         public final RocketComponent getRoot() {
1294                 checkState();
1295                 RocketComponent gp = this;
1296                 while (gp.parent != null)
1297                         gp = gp.parent;
1298                 return gp;
1299         }
1300         
1301         /**
1302          * Returns the root Rocket component of this component tree.  Throws an
1303          * IllegalStateException if the root component is not a Rocket.
1304          *
1305          * @return  The root Rocket component of the component tree.
1306          * @throws  IllegalStateException  If the root component is not a Rocket.
1307          */
1308         public final Rocket getRocket() {
1309                 checkState();
1310                 RocketComponent r = getRoot();
1311                 if (r instanceof Rocket)
1312                         return (Rocket) r;
1313                 throw new IllegalStateException("getRocket() called with root component "
1314                                 + r.getComponentName());
1315         }
1316         
1317         
1318         /**
1319          * Return the Stage component that this component belongs to.  Throws an
1320          * IllegalStateException if a Stage is not in the parentage of this component.
1321          *
1322          * @return      The Stage component this component belongs to.
1323          * @throws      IllegalStateException   if a Stage component is not in the parentage.
1324          */
1325         public final Stage getStage() {
1326                 checkState();
1327                 RocketComponent c = this;
1328                 while (c != null) {
1329                         if (c instanceof Stage)
1330                                 return (Stage) c;
1331                         c = c.getParent();
1332                 }
1333                 throw new IllegalStateException("getStage() called without Stage as a parent.");
1334         }
1335         
1336         /**
1337          * Return the stage number of the stage this component belongs to.  The stages
1338          * are numbered from zero upwards.
1339          *
1340          * @return   the stage number this component belongs to.
1341          */
1342         public final int getStageNumber() {
1343                 checkState();
1344                 if (parent == null) {
1345                         throw new IllegalArgumentException("getStageNumber() called for root component");
1346                 }
1347                 
1348                 RocketComponent stage = this;
1349                 while (!(stage instanceof Stage)) {
1350                         stage = stage.parent;
1351                         if (stage == null || stage.parent == null) {
1352                                 throw new IllegalStateException("getStageNumber() could not find parent " +
1353                                                 "stage.");
1354                         }
1355                 }
1356                 return stage.parent.getChildPosition(stage);
1357         }
1358         
1359         
1360         /**
1361          * Find a component with the given ID.  The component tree is searched from this component
1362          * down (including this component) for the ID and the corresponding component is returned,
1363          * or null if not found.
1364          *
1365          * @param idToFind  ID to search for.
1366          * @return    The component with the ID, or null if not found.
1367          */
1368         public final RocketComponent findComponent(String idToFind) {
1369                 checkState();
1370                 Iterator<RocketComponent> iter = this.iterator(true);
1371                 while (iter.hasNext()) {
1372                         RocketComponent c = iter.next();
1373                         if (c.getID().equals(idToFind))
1374                                 return c;
1375                 }
1376                 return null;
1377         }
1378         
1379         
1380         // TODO: Move these methods elsewhere (used only in SymmetricComponent)
1381         public final RocketComponent getPreviousComponent() {
1382                 checkState();
1383                 this.checkComponentStructure();
1384                 if (parent == null)
1385                         return null;
1386                 int pos = parent.getChildPosition(this);
1387                 if (pos < 0) {
1388                         StringBuffer sb = new StringBuffer();
1389                         sb.append("Inconsistent internal state: ");
1390                         sb.append("this=").append(this).append('[')
1391                                         .append(System.identityHashCode(this)).append(']');
1392                         sb.append(" parent.children=[");
1393                         for (int i = 0; i < parent.children.size(); i++) {
1394                                 RocketComponent c = parent.children.get(i);
1395                                 sb.append(c).append('[').append(System.identityHashCode(c)).append(']');
1396                                 if (i < parent.children.size() - 1)
1397                                         sb.append(", ");
1398                         }
1399                         sb.append(']');
1400                         throw new IllegalStateException(sb.toString());
1401                 }
1402                 assert (pos >= 0);
1403                 if (pos == 0)
1404                         return parent;
1405                 RocketComponent c = parent.getChild(pos - 1);
1406                 while (c.getChildCount() > 0)
1407                         c = c.getChild(c.getChildCount() - 1);
1408                 return c;
1409         }
1410         
1411         // TODO: Move these methods elsewhere (used only in SymmetricComponent)
1412         public final RocketComponent getNextComponent() {
1413                 checkState();
1414                 if (getChildCount() > 0)
1415                         return getChild(0);
1416                 
1417                 RocketComponent current = this;
1418                 RocketComponent nextParent = this.parent;
1419                 
1420                 while (nextParent != null) {
1421                         int pos = nextParent.getChildPosition(current);
1422                         if (pos < nextParent.getChildCount() - 1)
1423                                 return nextParent.getChild(pos + 1);
1424                         
1425                         current = nextParent;
1426                         nextParent = current.parent;
1427                 }
1428                 return null;
1429         }
1430         
1431         
1432         ///////////  Event handling  //////////
1433         //
1434         // Listener lists are provided by the root Rocket component,
1435         // a single listener list for the whole rocket.
1436         //
1437         
1438         /**
1439          * Adds a ComponentChangeListener to the rocket tree.  The listener is added to the root
1440          * component, which must be of type Rocket (which overrides this method).  Events of all
1441          * subcomponents are sent to all listeners.
1442          *
1443          * @throws IllegalStateException - if the root component is not a Rocket
1444          */
1445         public void addComponentChangeListener(ComponentChangeListener l) {
1446                 checkState();
1447                 getRocket().addComponentChangeListener(l);
1448         }
1449         
1450         /**
1451          * Removes a ComponentChangeListener from the rocket tree.  The listener is removed from
1452          * the root component, which must be of type Rocket (which overrides this method).
1453          * Does nothing if the root component is not a Rocket.  (The asymmetry is so
1454          * that listeners can always be removed just in case.)
1455          *
1456          * @param l  Listener to remove
1457          */
1458         public void removeComponentChangeListener(ComponentChangeListener l) {
1459                 if (parent != null) {
1460                         getRoot().removeComponentChangeListener(l);
1461                 }
1462         }
1463         
1464         
1465         /**
1466          * Adds a <code>ChangeListener</code> to the rocket tree.  This is identical to
1467          * <code>addComponentChangeListener()</code> except that it uses a
1468          * <code>ChangeListener</code>.  The same events are dispatched to the
1469          * <code>ChangeListener</code>, as <code>ComponentChangeEvent</code> is a subclass
1470          * of <code>ChangeEvent</code>.
1471          *
1472          * @throws IllegalStateException - if the root component is not a <code>Rocket</code>
1473          */
1474         @Override
1475         public void addChangeListener(ChangeListener l) {
1476                 checkState();
1477                 getRocket().addChangeListener(l);
1478         }
1479         
1480         /**
1481          * Removes a ChangeListener from the rocket tree.  This is identical to
1482          * removeComponentChangeListener() except it uses a ChangeListener.
1483          * Does nothing if the root component is not a Rocket.  (The asymmetry is so
1484          * that listeners can always be removed just in case.)
1485          *
1486          * @param l  Listener to remove
1487          */
1488         @Override
1489         public void removeChangeListener(ChangeListener l) {
1490                 if (this.parent != null) {
1491                         getRoot().removeChangeListener(l);
1492                 }
1493         }
1494         
1495         
1496         /**
1497          * Fires a ComponentChangeEvent on the rocket structure.  The call is passed to the
1498          * root component, which must be of type Rocket (which overrides this method).
1499          * Events of all subcomponents are sent to all listeners.
1500          *
1501          * If the component tree root is not a Rocket, the event is ignored.  This is the
1502          * case when constructing components not in any Rocket tree.  In this case it
1503          * would be impossible for the component to have listeners in any case.
1504          *
1505          * @param e  Event to send
1506          */
1507         protected void fireComponentChangeEvent(ComponentChangeEvent e) {
1508                 checkState();
1509                 if (parent == null) {
1510                         /* Ignore if root invalid. */
1511                         log.debug("Attempted firing event " + e + " with root " + this.getComponentName() + ", ignoring event");
1512                         return;
1513                 }
1514                 getRoot().fireComponentChangeEvent(e);
1515         }
1516         
1517         
1518         /**
1519          * Fires a ComponentChangeEvent of the given type.  The source of the event is set to
1520          * this component.
1521          *
1522          * @param type  Type of event
1523          * @see #fireComponentChangeEvent(ComponentChangeEvent)
1524          */
1525         protected void fireComponentChangeEvent(int type) {
1526                 fireComponentChangeEvent(new ComponentChangeEvent(this, type));
1527         }
1528         
1529         
1530         /**
1531          * Checks whether this component has been invalidated and should no longer be used.
1532          * This is a safety check that in-place replaced components are no longer used.
1533          * All non-trivial methods (with the exception of methods simply getting a property)
1534          * should call this method before changing or computing anything.
1535          *
1536          * @throws      BugException    if this component has been invalidated by {@link #copyFrom(RocketComponent)}.
1537          */
1538         protected void checkState() {
1539                 invalidator.check(true);
1540                 mutex.verify();
1541         }
1542         
1543         
1544         /**
1545          * Check that the local component structure is correct.  This can be called after changing
1546          * the component structure in order to verify the integrity.
1547          * <p>
1548          * TODO: Remove this after the "inconsistent internal state" bug has been corrected
1549          */
1550         public void checkComponentStructure() {
1551                 if (this.parent != null) {
1552                         // Test that this component is found in parent's children with == operator
1553                         if (!containsExact(this.parent.children, this)) {
1554                                 throw new BugException("Inconsistent component structure detected, parent does not contain this " +
1555                                                 "component as a child, parent=" + parent.toDebugString() + " this=" + this.toDebugString());
1556                         }
1557                 }
1558                 for (RocketComponent child : this.children) {
1559                         if (child.parent != this) {
1560                                 throw new BugException("Inconsistent component structure detected, child does not have this component " +
1561                                                 "as the parent, this=" + this.toDebugString() + " child=" + child.toDebugString() +
1562                                                 " child.parent=" + (child.parent == null ? "null" : child.parent.toDebugString()));
1563                         }
1564                 }
1565         }
1566         
1567         // Check whether the list contains exactly the searched-for component (with == operator)
1568         private boolean containsExact(List<RocketComponent> haystack, RocketComponent needle) {
1569                 for (RocketComponent c : haystack) {
1570                         if (needle == c) {
1571                                 return true;
1572                         }
1573                 }
1574                 return false;
1575         }
1576         
1577         
1578         ///////////  Iterators  //////////
1579         
1580         /**
1581          * Returns an iterator that iterates over all children and sub-children.
1582          * <p>
1583          * The iterator iterates through all children below this object, including itself if
1584          * <code>returnSelf</code> is true.  The order of the iteration is not specified
1585          * (it may be specified in the future).
1586          * <p>
1587          * If an iterator iterating over only the direct children of the component is required,
1588          * use <code>component.getChildren().iterator()</code>.
1589          *
1590          * TODO: HIGH: Remove this after merges have been done
1591          *
1592          * @param returnSelf boolean value specifying whether the component itself should be
1593          *                                       returned
1594          * @return An iterator for the children and sub-children.
1595          * @deprecated Use {@link #iterator(boolean)} instead
1596          */
1597         @Deprecated
1598         public final Iterator<RocketComponent> deepIterator(boolean returnSelf) {
1599                 return iterator(returnSelf);
1600         }
1601         
1602         
1603         /**
1604          * Returns an iterator that iterates over all children and sub-children, including itself.
1605          * <p>
1606          * This method is equivalent to <code>deepIterator(true)</code>.
1607          *
1608          * TODO: HIGH: Remove this after merges have been done
1609          *
1610          * @return An iterator for this component, its children and sub-children.
1611          * @deprecated Use {@link #iterator()} instead
1612          */
1613         @Deprecated
1614         public final Iterator<RocketComponent> deepIterator() {
1615                 return iterator();
1616         }
1617         
1618         
1619
1620         /**
1621          * Returns an iterator that iterates over all children and sub-children.
1622          * <p>
1623          * The iterator iterates through all children below this object, including itself if
1624          * <code>returnSelf</code> is true.  The order of the iteration is not specified
1625          * (it may be specified in the future).
1626          * <p>
1627          * If an iterator iterating over only the direct children of the component is required,
1628          * use <code>component.getChildren().iterator()</code>.
1629          *
1630          * @param returnSelf boolean value specifying whether the component itself should be
1631          *                                       returned
1632          * @return An iterator for the children and sub-children.
1633          */
1634         public final Iterator<RocketComponent> iterator(boolean returnSelf) {
1635                 checkState();
1636                 return new RocketComponentIterator(this, returnSelf);
1637         }
1638         
1639         
1640         /**
1641          * Returns an iterator that iterates over this component, its children and sub-children.
1642          * <p>
1643          * This method is equivalent to <code>iterator(true)</code>.
1644          *
1645          * @return An iterator for this component, its children and sub-children.
1646          */
1647         @Override
1648         public final Iterator<RocketComponent> iterator() {
1649                 return iterator(true);
1650         }
1651         
1652         
1653
1654
1655
1656         /**
1657          * Compare component equality based on the ID of this component.  Only the
1658          * ID and class type is used for a basis of comparison.
1659          */
1660         @Override
1661         public boolean equals(Object obj) {
1662                 if (this == obj)
1663                         return true;
1664                 if (obj == null)
1665                         return false;
1666                 if (this.getClass() != obj.getClass())
1667                         return false;
1668                 RocketComponent other = (RocketComponent) obj;
1669                 return this.id.equals(other.id);
1670         }
1671         
1672         
1673
1674         @Override
1675         public int hashCode() {
1676                 return id.hashCode();
1677         }
1678         
1679         
1680
1681         ////////////  Helper methods for subclasses
1682         
1683
1684
1685
1686         /**
1687          * Helper method to add rotationally symmetric bounds at the specified coordinates.
1688          * The X-axis value is <code>x</code> and the radius at the specified position is
1689          * <code>r</code>.
1690          */
1691         protected static final void addBound(Collection<Coordinate> bounds, double x, double r) {
1692                 bounds.add(new Coordinate(x, -r, -r));
1693                 bounds.add(new Coordinate(x, r, -r));
1694                 bounds.add(new Coordinate(x, r, r));
1695                 bounds.add(new Coordinate(x, -r, r));
1696         }
1697         
1698         
1699         protected static final Coordinate ringCG(double outerRadius, double innerRadius,
1700                         double x1, double x2, double density) {
1701                 return new Coordinate((x1 + x2) / 2, 0, 0,
1702                                 ringMass(outerRadius, innerRadius, x2 - x1, density));
1703         }
1704         
1705         protected static final double ringMass(double outerRadius, double innerRadius,
1706                         double length, double density) {
1707                 return Math.PI * (MathUtil.pow2(outerRadius) - MathUtil.pow2(innerRadius)) *
1708                                         length * density;
1709         }
1710         
1711         protected static final double ringLongitudinalUnitInertia(double outerRadius,
1712                         double innerRadius, double length) {
1713                 // 1/12 * (3 * (r1^2 + r2^2) + h^2)
1714                 return (3 * (MathUtil.pow2(innerRadius) + MathUtil.pow2(outerRadius)) + MathUtil.pow2(length)) / 12;
1715         }
1716         
1717         protected static final double ringRotationalUnitInertia(double outerRadius,
1718                         double innerRadius) {
1719                 // 1/2 * (r1^2 + r2^2)
1720                 return (MathUtil.pow2(innerRadius) + MathUtil.pow2(outerRadius)) / 2;
1721         }
1722         
1723         
1724
1725         ////////////  OTHER
1726         
1727
1728         /**
1729          * Loads the RocketComponent fields from the given component.  This method is meant
1730          * for in-place replacement of a component.  It is used with the undo/redo
1731          * mechanism and when converting a finset into a freeform fin set.
1732          * This component must not have a parent, otherwise this method will fail.
1733          * <p>
1734          * The child components in the source tree are copied into the current tree, however,
1735          * the original components should not be used since they represent old copies of the
1736          * components.  It is recommended to invalidate them by calling {@link #invalidate()}.
1737          * <p>
1738          * This method returns a list of components that should be invalidated after references
1739          * to them have been removed (for example by firing appropriate events).  The list contains
1740          * all children and sub-children of the current component and the entire component
1741          * tree of <code>src</code>.
1742          *
1743          * @return      a list of components that should not be used after this call.
1744          */
1745         protected List<RocketComponent> copyFrom(RocketComponent src) {
1746                 checkState();
1747                 List<RocketComponent> toInvalidate = new ArrayList<RocketComponent>();
1748                 
1749                 if (this.parent != null) {
1750                         throw new UnsupportedOperationException("copyFrom called for non-root component, parent=" +
1751                                         this.parent.toDebugString() + ", this=" + this.toDebugString());
1752                 }
1753                 
1754                 // Add current structure to be invalidated
1755                 Iterator<RocketComponent> iterator = this.iterator(false);
1756                 while (iterator.hasNext()) {
1757                         toInvalidate.add(iterator.next());
1758                 }
1759                 
1760                 // Remove previous components
1761                 for (RocketComponent child : this.children) {
1762                         child.parent = null;
1763                 }
1764                 this.children.clear();
1765                 
1766                 // Copy new children to this component
1767                 for (RocketComponent c : src.children) {
1768                         RocketComponent copy = c.copyWithOriginalID();
1769                         this.children.add(copy);
1770                         copy.parent = this;
1771                 }
1772                 
1773                 this.checkComponentStructure();
1774                 src.checkComponentStructure();
1775                 
1776                 // Set all parameters
1777                 this.length = src.length;
1778                 this.relativePosition = src.relativePosition;
1779                 this.position = src.position;
1780                 this.color = src.color;
1781                 this.lineStyle = src.lineStyle;
1782                 this.overrideMass = src.overrideMass;
1783                 this.massOverriden = src.massOverriden;
1784                 this.overrideCGX = src.overrideCGX;
1785                 this.cgOverriden = src.cgOverriden;
1786                 this.overrideSubcomponents = src.overrideSubcomponents;
1787                 this.name = src.name;
1788                 this.comment = src.comment;
1789                 this.id = src.id;
1790                 
1791                 // Add source components to invalidation tree
1792                 for (RocketComponent c : src) {
1793                         toInvalidate.add(c);
1794                 }
1795                 
1796                 return toInvalidate;
1797         }
1798         
1799         protected void invalidate() {
1800                 invalidator.invalidate();
1801         }
1802         
1803         
1804         //////////  Iterator implementation  ///////////
1805         
1806         /**
1807          * Private inner class to implement the Iterator.
1808          *
1809          * This iterator is fail-fast if the root of the structure is a Rocket.
1810          */
1811         private static class RocketComponentIterator implements Iterator<RocketComponent> {
1812                 // Stack holds iterators which still have some components left.
1813                 private final Deque<Iterator<RocketComponent>> iteratorStack = new ArrayDeque<Iterator<RocketComponent>>();
1814                 
1815                 private final Rocket root;
1816                 private final int treeModID;
1817                 
1818                 private final RocketComponent original;
1819                 private boolean returnSelf = false;
1820                 
1821                 // Construct iterator with component's child's iterator, if it has elements
1822                 public RocketComponentIterator(RocketComponent c, boolean returnSelf) {
1823                         
1824                         RocketComponent gp = c.getRoot();
1825                         if (gp instanceof Rocket) {
1826                                 root = (Rocket) gp;
1827                                 treeModID = root.getTreeModID();
1828                         } else {
1829                                 root = null;
1830                                 treeModID = -1;
1831                         }
1832                         
1833                         Iterator<RocketComponent> i = c.children.iterator();
1834                         if (i.hasNext())
1835                                 iteratorStack.push(i);
1836                         
1837                         this.original = c;
1838                         this.returnSelf = returnSelf;
1839                 }
1840                 
1841                 @Override
1842                 public boolean hasNext() {
1843                         checkID();
1844                         if (returnSelf)
1845                                 return true;
1846                         return !iteratorStack.isEmpty(); // Elements remain if stack is not empty
1847                 }
1848                 
1849                 @Override
1850                 public RocketComponent next() {
1851                         Iterator<RocketComponent> i;
1852                         
1853                         checkID();
1854                         
1855                         // Return original component first
1856                         if (returnSelf) {
1857                                 returnSelf = false;
1858                                 return original;
1859                         }
1860                         
1861                         // Peek first iterator from stack, throw exception if empty
1862                         i = iteratorStack.peek();
1863                         if (i == null) {
1864                                 throw new NoSuchElementException("No further elements in RocketComponent iterator");
1865                         }
1866                         
1867                         // Retrieve next component of the iterator, remove iterator from stack if empty
1868                         RocketComponent c = i.next();
1869                         if (!i.hasNext())
1870                                 iteratorStack.pop();
1871                         
1872                         // Add iterator of component children to stack if it has children
1873                         i = c.children.iterator();
1874                         if (i.hasNext())
1875                                 iteratorStack.push(i);
1876                         
1877                         return c;
1878                 }
1879                 
1880                 private void checkID() {
1881                         if (root != null) {
1882                                 if (root.getTreeModID() != treeModID) {
1883                                         throw new IllegalStateException("Rocket modified while being iterated");
1884                                 }
1885                         }
1886                 }
1887                 
1888                 @Override
1889                 public void remove() {
1890                         throw new UnsupportedOperationException("remove() not supported by " +
1891                                         "RocketComponent iterator");
1892                 }
1893         }
1894         
1895 }