Ejemplo n.º 1
0
    IEnumerator CheckForNearbyObjectiveItems()
    {
        // Debug.Log("Start Coroutine CheckForNearbyObjectiveItems()");
        while (isCityDorg)
        {
            // Note: Importantly, we are depending on objective items being on the "Color" layer
            //          If they are ever to change layers, this will need to be edited
            Collider[] colliders = Physics.OverlapSphere(dorgAI.player.transform.position, sensorRadius, detectionLayers);

            // Debug.Log("# Colliders: " + colliders.Length);
            if (colliders.Length > 0)
            {
                foreach (Collider collider in colliders)
                {
                    ObjectivePickupable objectiveItem = collider.GetComponent <ObjectivePickupable>();
                    // Debug.Log("objectiveItem: " + objectiveItem);
                    if (objectiveItem && objectiveItem != lastDetectedObjectiveItem && !GameProgress.HasObjectiveItemBeenPickedUp(objectiveItem.type))
                    {
                        // TODO: Have Dorg investigate and call attention to this object
                        Debug.Log("Objective not yet picked up DETECTED");
                        lastDetectedObjectiveItem = objectiveItem;
                        EventBus.PublishEvent(new UntouchedObjectiveItemDetectedEvent(objectiveItem));
                    }
                }
            }
            else
            {
                lastDetectedObjectiveItem = null;
            }

            yield return(new WaitForSeconds(checkFrequency));
        }
    }
Ejemplo n.º 2
0
 private void OnUntouchedObjectiveItemDetectedEvent(UntouchedObjectiveItemDetectedEvent e)
 {
     // What if we have more than one objective item in range...?
     Debug.Log("OnUntouchedObjectiveItemDetectedEvent( " + e.objectiveItem + " )");
     if (!untouchedObjectiveItem)
     {
         timeElapsedInRange = 0f;                          // Continuing incrementing current time elapsed if one has already been in range
     }
     untouchedObjectiveItem = e.objectiveItem;
 }
Ejemplo n.º 3
0
    public override void Interact(Pickupable heldItem)
    {
        // Debug.Log("Interact with DoorToHome whild holding: " + heldItem);
        if (heldItem && heldItem is ObjectivePickupable)
        {
            // Debug.Log("Held Item is ObjectivePickupable");
            ObjectivePickupable objectiveItem = (ObjectivePickupable)heldItem;
            GameProgress.CompleteObjective(objectiveItem.type);
            Object.Destroy(heldItem.gameObject);
        }

        StartCoroutine(EnterHome(heldItem));
        //EventBus.PublishEvent(new ReturnHomeEvent(heldItem));
        FMODUnity.RuntimeManager.PlayOneShotAttached("event:/SFX/Interactables/Door_Open", FindObjectOfType <PlayerMovement>().gameObject);
    }
Ejemplo n.º 4
0
 private void Update()
 {
     if (untouchedObjectiveItem)
     {
         // Debug.Log("Untouched Objective Item: " + untouchedObjectiveItem);
         // Debug.Log("Dorg AI: " + dorgAI);
         // Debug.Log("Player: " + dorgAI.player);
         if (Vector3.Distance(dorgAI.player.transform.position, untouchedObjectiveItem.transform.position) <= dorgSensor.sensorRadius + sensorRangeHysteresis)
         {
             // TODO: Do not increment time while game is paused
             timeElapsedInRange += Time.deltaTime;
         }
         else
         {
             Debug.Log("Untouched Objective Item Fell Out Of VALID Range");
             untouchedObjectiveItem = null;
             timeElapsedInRange     = 0f;
         }
     }
 }
Ejemplo n.º 5
0
    public override void DoUpdate()
    {
        if (canPause && (Input.GetKeyUp(KeyCode.Escape) || player.GetButtonUp("Pause")))
        {
            this.stateMachine.ChangeState(pauseMenuState);
            return;
        }

        if (debugCheatsEnabled)
        {
            // Hold back tick, then press 'O' to cheat an objective item in front of you
            if (Input.GetKey(KeyCode.BackQuote) && Input.GetKeyDown(KeyCode.O))
            {
                // Debug.Log("Cheat Keys Hit");
                ObjectivePickupable objectiveItem = GameObject.FindObjectOfType <ObjectivePickupable>();
                if (objectiveItem)
                {
                    // Debug.Log("Objective Item Found");
                    if (Vector3.Distance(movement.transform.position, objectiveItem.transform.position) > 5f)
                    {
                        Debug.Log("Dropping " + objectiveItem + " in front of player.");
                        Vector3 playerForwardDirection = movement.transform.TransformDirection(Vector3.forward);
                        objectiveItem.transform.position = movement.transform.position + (playerForwardDirection * 3f) + Vector3.up;
                    }
                }
            }
        }

        if (Input.GetKey("space") || player.GetAxis("ShowPhoto") > 0)
        {
            photo.ShowPhoto();
        }
        else
        {
            photo.HidePhoto();
        }

        Interactable focusedInteractable = interactionDetector.GeInteractableInFocus(); // Note: the held item is never focused

        // Handle Movement & Looking
        if (focusedInteractable == null || !focusedInteractable.IsInteractionRestrictingMovement())
        {
            float keyboardVertical   = Input.GetAxisRaw("Vertical");
            float keyboardHorizontal = Input.GetAxisRaw("Horizontal");

            float forward = Mathf.Abs(keyboardVertical) > 0 ? keyboardVertical : player.GetAxis("Move Vertical");
            float strafe  = Mathf.Abs(keyboardHorizontal) > 0 ? keyboardHorizontal : player.GetAxis("Move Horizontal");

            Vector3 moveVector = Vector3.forward * forward + Vector3.right * strafe;
            moveVector = moveVector.sqrMagnitude > 1f ? moveVector.normalized : moveVector;
            bool isRunning = (Input.GetKey(KeyCode.LeftShift) || Input.GetKey(KeyCode.RightShift) || player.GetAxis("Run") > 0f);
            movement.Move(moveVector, isRunning);
        }

        if (focusedInteractable == null || !focusedInteractable.IsInteractionRestrictingView())
        {
            float lookX = player.GetAxis("Look Horizontal"); // Input.GetAxis("Mouse X");
            float lookY = player.GetAxis("Look Vertical");   // Input.GetAxis("Mouse Y");

            Vector2 lookVector = Vector2.up * lookY + Vector2.right * lookX;
            playerView.Look(lookVector); // Looking along vertical axis only rotates the camera view
            playerView.AddToYaw(lookX);  // Looking along horizontal axis rotates the player
        }

        ///                                 IsInteracting == true               isInteracting == false
        /// focusedInteractable == null               N\A               |        attempt pick up / drop
        ///                              -------------------------------|--------------------------------------
        /// focusedInteractable != null     handle multi interaction    |     begin interaction attempt

        // Handle Interactions
        if (focusedInteractable != null)
        {
            // Handle Beginning of Interaction
            if (!focusedInteractable.IsInteracting())
            {
                // Handle Picking Up item
                Pickupable focusedPickupable = focusedInteractable.GetComponent <Pickupable>();
                if (focusedPickupable != null && pickupHolder.GetHeldItem() == null)
                {
                    // Possibly split out pick and and drop if we map these actions to different inputs
                    bool pickUp = player.GetButtonDown("Pickup/Drop"); // Input.GetMouseButtonDown(0);
                    if (pickUp)
                    {
                        Debug.Log("Pick Up at " + Time.time);
                    }
                    if (pickUp)
                    {
                        pickupHolder.TryPickupOrDrop(); // This will try to pickup when held item is null
                    }
                }
                // Attempt beginning of iteraction
                else
                {
                    bool interact = player.GetButtonDown("Interact"); // Input.GetMouseButtonDown(0);
                    if (interact)
                    {
                        Debug.Log("Interact at " + Time.time);
                    }
                    if (interact && focusedInteractable != null)
                    {
                        interactionDetector.PerformInteraction();
                    }
                }
            }
            // Handle Multiple Input Interaction
            else
            {
                // Do stuff here
            }
        }
        // Drop item
        else
        {
            // Possibly split out pick and and drop if we map these actions to different inputs
            bool drop = player.GetButtonDown("Pickup/Drop"); // Input.GetMouseButtonDown(0);
            if (drop)
            {
                Debug.Log("Drop at " + Time.time);
            }
            if (drop)
            {
                pickupHolder.TryPickupOrDrop(); // This will drop the held item if not null
            }
        }
    }
Ejemplo n.º 6
0
 public UntouchedObjectiveItemDetectedEvent(ObjectivePickupable objectiveItem)
 {
     this.objectiveItem = objectiveItem;
 }
Ejemplo n.º 7
0
 public ObjectiveItemPickedUpEvent(ObjectivePickupable objectiveItem)
 {
     this.objectiveItem = objectiveItem;
 }