Example #1
0
        ///
        /// 当Entity调用OnDestory的时候, 清理对Entity的引用
        ///
        public void ClearEntity(Entity entity)
        {
            Utils.Assert(entity == null, "Entity is null when signing unique id.");
            if (entity == null)
            {
                return;
            }

            int uniqueId = entity.UniqueID;

            if (entity.getEntityType == EntityType.Entity_Control)
            {
                ControllerEx ctlEx = (ControllerEx)entity;

                if (ctlCollection.ContainsKey(uniqueId))
                {
                    ctlCollection.Remove(uniqueId);
                }

                if (TypeIDRelation.ContainsKey(ctlEx.CtrlType))
                {
                    TypeIDRelation.Remove(ctlEx.CtrlType);
                }
            }
            else if (entity.getEntityType == EntityType.Entity_UI)
            {
                if (uiCollection.ContainsKey(uniqueId))
                {
                    uiCollection.Remove(uniqueId);
                }
            }
        }
Example #2
0
        ///
        /// 根据Entity的类型分配唯一ID
        ///
        public int SignID(Entity entity)
        {
            Utils.Assert(entity == null, "Entity is null when signing unique id.");
            if (entity == null)
            {
                return(-1);
            }

            //The instance id of an object is always guaranteed to be unique.
            int uniqueId = entity.GetInstanceID();

            entity.UniqueID = uniqueId;

            if (entity.getEntityType == EntityType.Entity_Control)
            {
                ControllerEx ctlEx = (ControllerEx)entity;
                ctlCollection[uniqueId]        = ctlEx;
                TypeIDRelation[ctlEx.CtrlType] = uniqueId;
            }
            else if (entity.getEntityType == EntityType.Entity_UI)
            {
                uiCollection[uniqueId] = (MonoBehaviorEx)entity;
            }

            return(uniqueId);
        }
Example #3
0
        /// <summary>
        /// 根据唯一ID获取Entity
        /// </summary>
        public ControllerEx getControllerByID(int ID)
        {
            ControllerEx entity = null;

            if (ctlCollection.ContainsKey(ID))
            {
                ctlCollection.TryGetValue(ID, out entity);
            }
            return(entity);
        }
Example #4
0
        /// <summary>
        /// 根据LogicalType获取Entity
        /// </summary>
        public ControllerEx getEntityByLogicalType(LogicalType type)
        {
            ControllerEx entity = null;
            int          ID     = -1;

            if (TypeIDRelation.TryGetValue(type, out ID))
            {
                entity = getControllerByID(ID);
            }
            return(entity);
        }
Example #5
0
        ///
        /// 只有当消息的接受者不存在的时候,才会去考虑创建消息的接受者
        /// 创建Controller
        ///
        void createController(int senderID, LogicalType receiver, MsgParam param)
        {
            string     name = receiver.ToString();
            GameObject go   = new GameObject(name);

            go.AddComponent(binder.getController(name));
            UnityUtils.AddChild(go, ControllerMain.CtrlMain.gameObject);

            ControllerEx ctrlEx = go.GetComponent <ControllerEx>();

            ctrlEx.CtrlType = receiver;
            AsyncTask.QueueOnMainThread(() => {
                param.Sender   = senderID;
                param.Receiver = go.GetInstanceID();
                ctrlEx.UI_OnReceive(param);
            }, 1f);
        }
Example #6
0
        public bool SendMessage(int senderID, int recID, MsgParam param)
        {
            param.Sender   = senderID;
            param.Receiver = recID;

            bool sent = false;

            if (param == null)
            {
                ConsoleEx.DebugLog("We can't send empty message to other.", ConsoleEx.RED);
                return(sent);
            }

            if (uiCollection.ContainsKey(recID))
            {
                ConsoleEx.DebugLog("We can't send message to UI layer.", ConsoleEx.RED);
                return(sent);
            }

            ControllerEx CtrlEx = null;

            if (ctlCollection.TryGetValue(recID, out CtrlEx))
            {
                if (CtrlEx != null)
                {
                    sent = true;
                    CtrlEx.UI_OnReceive(param);
                }
                else
                {
                    sent = false;
                }
            }
            else
            {
                sent = false;
                ConsoleEx.DebugLog("Controller doesn't instanciate yet.", ConsoleEx.YELLOW);
            }

            return(sent);
        }