< Summary

Class:DCL.Components.OnPointerEvent
Assembly:MainScripts
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Components/UUIDComponent/OnPointerEvent.cs
Covered lines:37
Uncovered lines:5
Coverable lines:42
Total lines:183
Line coverage:88% (37 of 42)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
OnPointerEvent()0%110100%
Model()0%110100%
GetDataFromJSON(...)0%110100%
GetActionButton()0%6.65060%
Initialize(...)0%220100%
GetActionButton()0%110100%
SetHoverState(...)0%110100%
SetEventColliders(...)0%110100%
IsVisible()0%5.125083.33%
IsAtHoverDistance(...)0%110100%
ApplyChanges(...)0%220100%
ShouldShowHoverFeedback()0%110100%
OnDestroy()0%220100%
Report(...)0%2100%
GetEventType()0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Components/UUIDComponent/OnPointerEvent.cs

#LineLine coverage
 1using System;
 2using System.Collections;
 3using DCL.Controllers;
 4using DCL.Helpers;
 5using DCL.Interface;
 6using DCL.Models;
 7using UnityEngine;
 8using Ray = UnityEngine.Ray;
 9
 10namespace DCL.Components
 11{
 12    public enum PointerInputEventType
 13    {
 14        NONE,
 15        CLICK,
 16        DOWN,
 17        UP
 18    }
 19
 20    public interface IPointerEvent : IMonoBehaviour
 21    {
 22        IDCLEntity entity { get; }
 23        void SetHoverState(bool state);
 24        bool IsAtHoverDistance(float distance);
 25        bool IsVisible();
 26    }
 27
 28    public interface IPointerInputEvent : IPointerEvent
 29    {
 30        void Report(WebInterface.ACTION_BUTTON buttonId, Ray ray, HitInfo hit);
 31        PointerInputEventType GetEventType();
 32        WebInterface.ACTION_BUTTON GetActionButton();
 33        bool ShouldShowHoverFeedback();
 34    }
 35
 36    public class OnPointerEventHandler : IDisposable
 37    {
 38        public static bool enableInteractionHoverFeedback = true;
 39        public OnPointerEventColliders eventColliders { get; private set; }
 40
 41        private IDCLEntity entity;
 42
 43        public OnPointerEventHandler() { eventColliders = new OnPointerEventColliders(); }
 44
 45        public void SetColliders(IDCLEntity entity)
 46        {
 47            this.entity = entity;
 48            eventColliders.Initialize(entity);
 49        }
 50
 51        public void SetFeedbackState(bool showFeedback, bool hoverState, string button, string hoverText)
 52        {
 53            var hoverCanvasController = InteractionHoverCanvasController.i;
 54
 55            if (!enableInteractionHoverFeedback || hoverCanvasController == null)
 56                return;
 57
 58            hoverCanvasController.enabled = showFeedback;
 59
 60            if (showFeedback)
 61            {
 62                if (hoverState)
 63                    hoverCanvasController.Setup(button, hoverText, entity);
 64
 65                hoverCanvasController.SetHoverState(hoverState);
 66            }
 67        }
 68
 69        public string GetMeshName(Collider collider)
 70        {
 71            if (collider == null || eventColliders == null)
 72                return null;
 73
 74            return eventColliders.GetMeshName(collider);
 75        }
 76
 77        public void Dispose() { eventColliders.Dispose(); }
 78    }
 79
 80    public class OnPointerEvent : UUIDComponent, IPointerInputEvent
 81    {
 182        public static bool enableInteractionHoverFeedback = true;
 83
 84        [System.Serializable]
 85        public new class Model : UUIDComponent.Model
 86        {
 19987            public string button = WebInterface.ACTION_BUTTON.ANY.ToString();
 19988            public string hoverText = "Interact";
 19989            public float distance = 10f;
 19990            public bool showFeedback = true;
 91
 5092            public override BaseModel GetDataFromJSON(string json) { return Utils.SafeFromJson<Model>(json); }
 93
 94            public WebInterface.ACTION_BUTTON GetActionButton()
 95            {
 28096                switch (button)
 97                {
 98                    case "PRIMARY":
 199                        return WebInterface.ACTION_BUTTON.PRIMARY;
 100                    case "SECONDARY":
 0101                        return WebInterface.ACTION_BUTTON.SECONDARY;
 102                    case "POINTER":
 0103                        return WebInterface.ACTION_BUTTON.POINTER;
 104                    default:
 279105                        return WebInterface.ACTION_BUTTON.ANY;
 106                }
 107            }
 108        }
 109
 110        public OnPointerEventHandler pointerEventHandler;
 111
 112        public override void Initialize(IParcelScene scene, IDCLEntity entity)
 113        {
 34114            base.Initialize(scene, entity);
 115
 34116            if (model == null)
 34117                model = new OnPointerEvent.Model();
 118
 34119            pointerEventHandler = new OnPointerEventHandler();
 34120            SetEventColliders(entity);
 121
 34122            entity.OnShapeUpdated -= SetEventColliders;
 34123            entity.OnShapeUpdated += SetEventColliders;
 34124        }
 125
 280126        public WebInterface.ACTION_BUTTON GetActionButton() { return ((Model) this.model).GetActionButton(); }
 127
 128        public void SetHoverState(bool hoverState)
 129        {
 294130            Model model = (Model) this.model;
 294131            pointerEventHandler.SetFeedbackState(model.showFeedback, hoverState, model.button, model.hoverText);
 294132        }
 133
 144134        void SetEventColliders(IDCLEntity entity) { pointerEventHandler.SetColliders(entity); }
 135
 136        public bool IsVisible()
 137        {
 293138            if (entity == null)
 0139                return false;
 140
 293141            bool isVisible = false;
 142
 293143            if (entity.meshesInfo != null &&
 144                entity.meshesInfo.renderers != null &&
 145                entity.meshesInfo.renderers.Length > 0)
 146            {
 293147                isVisible = entity.meshesInfo.renderers[0].enabled;
 148            }
 149
 293150            return isVisible;
 151        }
 152
 153        public bool IsAtHoverDistance(float distance)
 154        {
 289155            Model model = this.model as Model;
 289156            return distance <= model.distance;
 157        }
 158
 159        public override IEnumerator ApplyChanges(BaseModel newModel)
 160        {
 50161            this.model = newModel ?? new Model();
 50162            return null;
 163        }
 164
 165        public bool ShouldShowHoverFeedback()
 166        {
 278167            Model model = this.model as Model;
 278168            return model.showFeedback;
 169        }
 170
 171        void OnDestroy()
 172        {
 34173            if (entity != null)
 34174                entity.OnShapeUpdated -= SetEventColliders;
 175
 34176            pointerEventHandler.Dispose();
 34177        }
 178
 0179        public virtual void Report(WebInterface.ACTION_BUTTON buttonId, Ray ray, HitInfo hit) { }
 180
 0181        public virtual PointerInputEventType GetEventType() { return PointerInputEventType.NONE; }
 182    }
 183}