Ejemplo n.º 1
0
        public static void Run(this SkillWatcherComponent self, int type, SkillPara para)
        {
            List <ISkillWatcher> list;

            if (!self.allWatchers.TryGetValue(type, out list))
            {
                return;
            }
            for (int i = 0; i < list.Count; i++)
            {
                ISkillWatcher numericWatcher = list[i];
                numericWatcher.Run(para);
            }
        }
Ejemplo n.º 2
0
        private static void Init(this SkillWatcherComponent self)
        {
            self.allWatchers = new Dictionary <int, List <ISkillWatcher> >();

            var types = Game.EventSystem.GetTypes(typeof(SkillWatcherAttribute));

            for (int j = 0; j < types.Count; j++)
            {
                Type     type  = types[j];
                object[] attrs = type.GetCustomAttributes(typeof(SkillWatcherAttribute), false);

                for (int i = 0; i < attrs.Length; i++)
                {
                    SkillWatcherAttribute numericWatcherAttribute = (SkillWatcherAttribute)attrs[i];
                    ISkillWatcher         obj = (ISkillWatcher)Activator.CreateInstance(type);
                    if (!self.allWatchers.ContainsKey(numericWatcherAttribute.SkillStepType))
                    {
                        self.allWatchers.Add(numericWatcherAttribute.SkillStepType, new List <ISkillWatcher>());
                    }
                    self.allWatchers[numericWatcherAttribute.SkillStepType].Add(obj);
                }
            }
        }