Package org.jdesktop.wonderland.server.cell

Examples of org.jdesktop.wonderland.server.cell.CellMO$ManagedCellChildrenChangeListenerSrv


     * @param cellID The cell which launched the app.
     * @param exitValue The exit value of the app.
     */
    public void appExitted (CellID cellID, int exitValue) {
        getProviderCellsLaunched().remove(cellID);
        CellMO cell = CellManagerMO.getCell(cellID);
        if (cell != null) {
            if (!(cell instanceof AppConventionalCellMO)) {
                logger.warning("Cell to whom we are reporting app exit is not an AppConventionalMO");
            }
            ((AppConventionalCellMO)cell).appExitted(exitValue);
View Full Code Here


        ProviderCellsLaunched cellList = getProviderCellsLaunched();
        Iterator<CellID> it = cellList.getIterator();
        while (it.hasNext()) {
           
            CellID cellID = it.next();
            CellMO cell = CellManagerMO.getCell(cellID);
            if (cell == null) {
                logger.warning("Cannot find cell " + cellID);
                continue;
            }
            if (!(cell instanceof AppConventionalCellMO)) {
View Full Code Here

  public TreatmentCreatedListenerImpl(CellID cellID) {
      this.cellID = cellID;
  }

        public void treatmentCreated(Treatment treatment, Player player) {
      CellMO cellMO = CellManagerMO.getCellManager().getCell(cellID);

      if (cellMO == null) {
    logger.warning("No cellMO for " + cellID);
    return;
      }

            AudioTreatmentComponentMO audioTreatmentComponentMO =
    cellMO.getComponent(AudioTreatmentComponentMO.class);

      checkForParentWithCOS(cellMO, audioTreatmentComponentMO);
        }
View Full Code Here

            return;
        }
        launchesInFlight.remove(cellID);
        AppContext.getDataManager().markForUpdate(this);

        CellMO cell = CellManagerMO.getCell(cellID);
        if (cell == null) {
            logger.warning("Cannot find cell to which to report app launch result, launch request = " +
                           launchReq);
            return;
        }
View Full Code Here

  if (proximityListener != null) {
      return;
  }

  CellMO cellMO = CellManagerMO.getCellManager().getCell(info.getCellID());

        if (cellMO.getComponent(ProximityComponentMO.class) == null) {
            cellMO.addComponent(new ProximityComponentMO(cellMO));
        }

  ProximityComponentMO component = cellMO.getComponent(ProximityComponentMO.class);

        BoundingVolume[] bounds = new BoundingVolume[1];

  AudioGroup ag = AppContext.getManager(VoiceManager.class).getVoiceManagerParameters().livePlayerAudioGroup;
View Full Code Here

  if (proximityListener == null) {
      logger.warning("No proximity listener for " + info.getCellID());
      return;
  }

  CellMO cellMO = CellManagerMO.getCellManager().getCell(info.getCellID());

  ProximityComponentMO component = cellMO.getComponent(ProximityComponentMO.class);
  component.removeProximityListener(proximityListener);
    }
View Full Code Here

      return;
  }

  myTransformChangeListener = new MyTransformChangeListener();

  CellMO cellMO = cellRef.get();

  cellMO.addTransformChangeListener(myTransformChangeListener);
    }
View Full Code Here

      logger.fine("localTransform " + localTransform + " world "
          + localToWorldTransform);

      String callID;

      CellMO cellMO = cellRef.get();

      if (cellMO instanceof OrbCellMO) {
    callID = ((OrbCellMO) cellMO).getCallID();
      } else {
          callID = CallID.getCallID(cellRef.get().getCellID());
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.server.cell.CellMO$ManagedCellChildrenChangeListenerSrv

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.