Exemplo n.º 1
0
        private static bool ExecQueue(long thisTime, bool checkTime)
        {
            if (CLAnim.anims == null)
            {
                return(false);
            }
            CLAnim anim = CLAnim.anims;

            while (anim != null)
            {
                if (CLAnim.anims == anim || anim.parallel)
                {
                    if (
#if __ANDROID__ //let's keep that for Android only for now since only Android devices have reported that
                        anim.execute != null &&
#endif
                        anim.execute(thisTime, checkTime))
                    {
                        CLAnim.RemoveAnim(anim);
                    }
                }
                anim = anim.next;
            }
            if (CLAnim.anims == null)
            {
                return(false);
            }
            return(true);
        }
Exemplo n.º 2
0
 public static void AddToTop(CLAnim animAdd, bool nextParallel = false)
 {
     animAdd.next = CLAnim.anims;
     CLAnim.anims = animAdd;
     if (nextParallel && CLAnim.anims.next != null)
     {
         CLAnim.anims.next.parallel = true;
     }
 }
Exemplo n.º 3
0
        public static void AddToQueue(CLAnim animAdd, bool parallel = false)
        {
            animAdd.parallel = parallel;
            if (CLAnim.anims == null)
            {
                CLAnim.anims = animAdd;
                return;
            }
            CLAnim anim = CLAnim.anims;

            while (anim.next != null)
            {
                anim = anim.next;
            }
            anim.next = animAdd;
        }
Exemplo n.º 4
0
        private static void RemoveAnim(CLAnim animRemove)
        {
            CLAnim anim = CLAnim.anims, animPrev = null;

            for (; anim != null && anim != animRemove; animPrev = anim, anim = anim.next)
            {
                ;
            }
            if (anim == null)
            {
                return;
            }
            if (animPrev != null)
            {
                animPrev.next = anim.next;
            }
            else
            {
                CLAnim.anims = anim.next;
            }
        }
Exemplo n.º 5
0
 public static bool ExecQueue(long thisTime)
 {
     return(CLAnim.ExecQueue(thisTime, false));
 }
Exemplo n.º 6
0
 public static bool CheckTimes(long thisTime)
 {
     return(CLAnim.ExecQueue(thisTime, true));
 }