Examples of simulateCalls()


Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

      PlayTreatmentMessage m = (PlayTreatmentMessage) message;

      logger.fine("play treatment " + m.getTreatment()
    + " to " + listing.getExternalCallID() + " echo " + m.echo());

            if (listing.simulateCalls() == true) {
    return;
      }

      try {
    externalCall.playTreatment(m.getTreatment());
View Full Code Here

Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

  }

  if (msg instanceof PlaceCallMessage) {
            //Our phone cell is asking us to begin a new call.

      if (listing.simulateCalls() == false) {
    relock(sender);
      }

      logger.fine("Got place call message " + externalCallID);
View Full Code Here

Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

      //playerSetup.y =  translation.y;
      //playerSetup.z =  translation.z;
      playerSetup.isOutworlder = true;
      playerSetup.isLivePlayer = true;

            if (listing.simulateCalls() == false) {
          PhoneStatusListener phoneStatusListener =
        new PhoneStatusListener(phoneCellMO, listing, clientID);

          if (softphoneCall == null || softphonePlayer == null) {
        logger.warning("Softphone player is not connected!");
View Full Code Here

Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

                /*
     * Set the call audio to whisper mode until the caller
     * chooses to join the call.
     */
                if (listing.simulateCalls() == false) {
                    //Mute the two participants to the outside world
                    logger.fine("attenuate other groups");
        softphonePlayer.attenuateOtherGroups(audioGroup, 0, 0);
                    logger.fine("back from attenuate other groups");
                }
View Full Code Here

Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

    phoneCellMO.getWorldBounds().getCenter(center);

          center.setY((float).5);

                new Orb(listing.getContactName(), listing.getContactName(),
        externalCallID, center, .1, listing.simulateCalls());
      }

            if (listing.simulateCalls() == false) {
                //Place the calls audio at the phones position
             Vector3f location = new Vector3f();
View Full Code Here

Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

                new Orb(listing.getContactName(), listing.getContactName(),
        externalCallID, center, .1, listing.simulateCalls());
      }

            if (listing.simulateCalls() == false) {
                //Place the calls audio at the phones position
             Vector3f location = new Vector3f();

                location = phoneCellMO.getWorldTransform(null).getTranslation(location);
View Full Code Here

Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

  }

  if (msg instanceof JoinCallMessage) {
            //Our phone cell wants us to join the call into the world.
           
            if (listing.simulateCalls() == false) {
                //Stop any current ringing.
          try {
                    softphoneCall.stopTreatment("ring_tone.au");
          } catch (IOException e) {
        logger.fine("Unable to stop treatment to " + softphoneCall + ":  "
View Full Code Here

Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

    center, .1, false);
      return;
  }

  if (msg instanceof EndCallMessage) {
      logger.fine("simulate is " + listing.simulateCalls()
    + " external call " + externalCall);

            if (listing.simulateCalls() == false) {
    relock(sender);
View Full Code Here

Examples of org.jdesktop.wonderland.modules.phone.common.CallListing.simulateCalls()

  if (msg instanceof EndCallMessage) {
      logger.fine("simulate is " + listing.simulateCalls()
    + " external call " + externalCall);

            if (listing.simulateCalls() == false) {
    relock(sender);

    if (externalCall != null) {
        try {
                        vm.endCall(externalCall, true);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.