Exemple #1
0
        public override void Update()
        {
            if (CurrentInteractions.Count == 0)
            {
                return;
            }
            List <Interactable> toRemove = new List <Interactable>();

            foreach (KeyValuePair <Interactable, InteractingAgent> interaction in CurrentInteractions)
            {
                Interactable     interactable = interaction.Key;
                InteractingAgent currentAgent = interaction.Value;

                if (!interactable.Owner.Active || !currentAgent.Owner.Active || (currentAgent.Owner.Components.Get <Spatial>().Position - interactable.Owner.Components.Get <Spatial>().Position).Magnitude > currentAgent.MaxDistance)
                {
                    toRemove.Add(interactable);
                    interactable.InRange = false;
                    Owner.Events.InvokeEvent((Event) new InteractionRangeExit(null));
                }
            }

            foreach (Interactable interactable in toRemove)
            {
                CurrentInteractions.Remove(interactable);
            }
        }
Exemple #2
0
        public override void Input()
        {
            IEnumerable <InteractingAgent> agents = WatchedComponents.Where(c => c is InteractingAgent && c.Owner.Active).Select(c => c as InteractingAgent);

            foreach (Component rawC in WatchedComponents)
            {
                if (!rawC.Owner.Active)
                {
                    continue;
                }
                if (rawC is Interactable interactable)
                {
                    InteractingAgent currentAgent = null;
                    bool             inRange      = false;
                    foreach (InteractingAgent agent in agents)
                    {
                        if ((agent.Owner.Components.Get <Spatial>().Position - interactable.Owner.Components.Get <Spatial>().Position).Magnitude <= agent.MaxDistance)
                        {
                            currentAgent = agent;
                            inRange      = true;
                            break;
                        }
                    }
                    if (inRange != interactable.InRange)
                    {
                        if (inRange)
                        {
                            CurrentInteractions[interactable] = currentAgent;
                        }
                        else
                        {
                            CurrentInteractions.Remove(interactable);
                        }
                        Owner.Events.InvokeEvent(inRange ?
                                                 (Event) new InteractionRangeEnter(currentAgent, interactable) :
                                                 (Event) new InteractionRangeExit(null));
                        interactable.InRange = inRange;
                    }

                    if (inRange)
                    {
                        ButtonInput interact = Woofer.Controller.InputManager.ActiveInputMap.Interact;

                        if (interact.Consume())
                        {
                            Entity sendTo = interactable.EntityToActivate != 0 ? Owner.Entities[interactable.EntityToActivate] : interactable.Owner;
                            Owner.Events.InvokeEvent(new ActivationEvent(currentAgent, sendTo, null));
                        }
                    }
                }
            }
        }