Package org.mt4j.components.clusters

Examples of org.mt4j.components.clusters.Cluster


      lastTimeHitTest = now;
     
  //    /*//TODO anders machen..z.b. geclusterte comps einfach als kinder von
      //�bergeordnetem clusterpoly machen? aber mit clusterPoly.setComposite(TRUE);
      //Clusterpoly pickable machen damit das hier nicht gebraucht wird?
      Cluster sel = this.getClusterManager().getCluster(closest3DComp);
        if (sel != null){
          closest3DComp = sel;
        }
  //     */
       
View Full Code Here


   
    //FIXME THIS IS A HACK! WE SHOULD REPLACE CLUSTERS WITH NORMAL COMPONENTS INSTEAD!
    //Update cluster components
    Cluster[] clusters = getClusterManager().getClusters();
    for (int i = 0; i < clusters.length; i++) {
      Cluster cluster = clusters[i];
      cluster.updateComponent(updateTime);
    }
   
    this.drawUpdateRecursive(this, updateTime, graphics);
//    System.out.println("Culled objects: " + culledObjects);
  }
View Full Code Here

        IdragClusterable[] selectedComps = dse.getClusteredComponents();
       
        //Create new selection only if at least more than 1 is selected
        if (selectedComps.length > 1){
          //Create new Cluster
          Cluster cluster = new Cluster(pa, dse.getSelectionPoly());
          //Attach a cam to the cluster because it doesent have the canvas as a parent as it is now..
          cluster.attachCamera(selectedComps[0].getViewingCamera());
         
          //Add gestures //TODO what about the isRotatable/dragable settings of the childs?
          //TODO What if we want to click a item of the cluster only? ->Maybe cluster should
          //delegate other gestures to the components..
//          cluster.assignGestureClassAndAction(DragGestureAnalyzer.class,    new DefaultDragAction());
          cluster.registerInputProcessor(new DragProcessor(pa));
          cluster.addGestureListener(DragProcessor.class, new DefaultDragAction());
         
          cluster.addGestureListener(DragProcessor.class, new InertiaDragAction());
         
          cluster.registerInputProcessor(new RotateProcessor(pa));
          cluster.addGestureListener(RotateProcessor.class, new DefaultRotateAction());
         
          cluster.registerInputProcessor(new ScaleProcessor(pa));
          cluster.addGestureListener(ScaleProcessor.class,  new DefaultScaleAction());
         
          dse.getSelectionPoly().setFillColor(new MTColor(100,150,250, 50));
         
          dse.getSelectionPoly().setGestureAllowance(DragProcessor.class, true);
          dse.getSelectionPoly().setGestureAllowance(RotateProcessor.class, true);
          dse.getSelectionPoly().setGestureAllowance(ScaleProcessor.class, true);
         
         
          System.out.println("\n" + selectedComps.length + " Selected:");
//          int n = -1;
          int n = Integer.MAX_VALUE;
          //Set all cards selected
          for (IdragClusterable currentComp : selectedComps){
            System.out.print((currentComp).getName() + "  "); //remove later
           
            if (currentComp instanceof MTComponent){//Add selected comps to selection - RIGHT NOW ONLY SUPPORTS INSTANCES OF MTCOMPONENT!
              MTComponent mtCurrentComp = (MTComponent)currentComp;
             
///////////////////////////////             
              // Listen to destroy events of the clustered components, to remove them from
              // the cluster and pack the polygon.
              mtCurrentComp.addStateChangeListener(StateChange.COMPONENT_DESTROYED, new StateChangeListener(){
                public void stateChanged(StateChangeEvent evt) {
                  if (evt.getSource() instanceof MTComponent) {
                    MTComponent sourceComp = (MTComponent) evt.getSource();
                   
                    //Remove component from cluster it is in
                    Cluster clusterOfComponent = clusterMgr.getCluster(sourceComp);
                    if (clusterOfComponent != null){
                      ((IdragClusterable)sourceComp).setSelected(false);
                      //Remvove the component from its former selection
                      clusterOfComponent.removeChild(sourceComp);
                     
                      //System.out.println("Comp destroyed and removed from cluster: " + sourceComp.getName());
                     
                      //remove the former selection from the selectionmanager if it consists only of 1 less components
                      if (clusterOfComponent.getChildCount() <= 2){
                        clusterMgr.removeCluster(clusterOfComponent);
                       
                      }else{
                        //Tighten convex hull of reduced cluster
                        clusterOfComponent.packClusterPolygon();
                      }
                    }
                  }
                }
              });
////////////////////////////////
             
              //Remove comp from former selection if it is in a new selection
              Cluster formerSelection = clusterMgr.getCluster(currentComp);
              if (formerSelection != null){
                formerSelection.removeChild(mtCurrentComp);
                //Remove the former selection from the selectionmanager if it consists only of 1 less components
                if (formerSelection.getChildCount() <= 2){ //2 because the selection polygon is also always in the selection
//                  SceneManager.getInstance().getCurrentScene().getMainCanvas().getSelectionManager().removeSelection(formerSelection);
                  clusterMgr.removeCluster(formerSelection);
                }else{
                  //Tighten convex hull of reduced cluster
                  formerSelection.packClusterPolygon();
                }
              }
             
              //Get the last index of the selected component in the parent list to know where to add the selectionpoly
              if (mtCurrentComp.getParent() != null){
                int indexInParentList = mtCurrentComp.getParent().getChildIndexOf(mtCurrentComp);
//                if (indexInParentList > n){
//                  n = indexInParentList;
//                }
                if (indexInParentList < n){
                  n = indexInParentList;
                }
              }
               
              //ADD components to the selection and set it to selected
              cluster.addChild(mtCurrentComp);
              currentComp.setSelected(true);
            }//if instance mtbasecomp
          }//for
         
          //Draw a convex hull around all selected shapes
          cluster.packClusterPolygon();
          dse.getSelectionPoly().setLineStipple((short)0xDDDD);
          dse.getSelectionPoly().setStrokeColor(new MTColor(0,0,0,255));
         
          //Add the selection poly 1 index after the index of the highest index of the selected components
          if (selectedComps[0] instanceof MTComponent
            && ((MTComponent)selectedComps[0]).getParent() != null){
              MTComponent firstSelectedComp = (MTComponent)selectedComps[0];
             
//              System.out.println("n:" + n);
//              System.out.println("Parent childcount: " + firstSelectedComp.getParent().getChildCount());
             
              firstSelectedComp.getParent().addChild(n, dse.getSelectionPoly());
             
//              if (n < firstSelectedComp.getParent().getChildCount())
//                firstSelectedComp.getParent().addChild(n+1, dse.getSelectionPoly());
//              else //FIXME this has caused out of bounds
//                firstSelectedComp.getParent().addChild(n, dse.getSelectionPoly());
            }
         
          //Add selection to selection manager
          clusterMgr.addCluster(cluster);
        //IF exactly 1 component is selected and its already part of an selection remove it from it without making a new selection with it
        }else if (selectedComps.length == 1){
          for (IdragClusterable currentComp : selectedComps){
            if (currentComp instanceof MTComponent){//Add selected comps to selection - RIGHT NOW ONLY SUPPORTS INSTANCES OF MTCOMPONENT!
              //Remove comp from former selection if it is in a new selection
              Cluster formerSelection = clusterMgr.getCluster(currentComp);
              if (formerSelection != null){
                currentComp.setSelected(false);
                //Remvove the component from its former selection
                formerSelection.removeChild((MTComponent)currentComp);
                //remove the former selection from the selectionmanager if it consists only of 1 less components
                if (formerSelection.getChildCount() <= 2){
                  clusterMgr.removeCluster(formerSelection);
                }else{
                  //Tighten convex hull of reduced cluster
                  formerSelection.packClusterPolygon();
                }
              }
            }
          }
         
View Full Code Here

TOP

Related Classes of org.mt4j.components.clusters.Cluster

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.