コード例 #1
0
ファイル: SwordFish.cs プロジェクト: pyh0884/Retrieve
 // Start is called before the first frame update
 void Start()
 {
     anim      = GetComponent <Animator>();
     _Main     = new Coroutines.Coroutine(Main());
     gm        = FindObjectOfType <GameManager>();
     tempSpeed = strikeSpeed;
 }
コード例 #2
0
 public void Init()
 {
     c = 0;
     system = new CoroutineSystem(); //create the coroutine system
     Coroutine routine = new Coroutine { Function = Hello() };
     system.AddCoroutine(routine);
 }
コード例 #3
0
ファイル: Boss4Ai.cs プロジェクト: pyh0884/Retrieve
 // Start is called before the first frame update
 void Start()
 {
     st = new GameObject();
     st.AddComponent <ShakeTest>();
     anim  = GetComponent <Animator>();
     _Main = new Coroutines.Coroutine(Main());
 }
コード例 #4
0
ファイル: stabStab.cs プロジェクト: pyh0884/Retrieve
 void Start()
 {
     anim      = GetComponent <Animator>();
     rb        = GetComponent <Rigidbody2D>();
     _Main     = new Coroutines.Coroutine(Main());
     gm        = FindObjectOfType <GameManager>();
     tempSpeed = moveSpeed;
 }
コード例 #5
0
    Coroutines.Coroutine _Main;    //协程根节点

    void Start()
    {
        st = new GameObject();
        st.AddComponent <ShakeTest>();
        anim  = GetComponent <Animator>();
        sr    = GetComponent <SpriteRenderer>();
        _Main = new Coroutines.Coroutine(Main());        //根节点初始化
    }
コード例 #6
0
ファイル: SKill2.cs プロジェクト: pyh0884/Retrieve
 void Start()
 {
     //Destroy(gameObject, 3);
     FindEnemy();
     _Main    = new Coroutines.Coroutine(Main());
     gm       = FindObjectOfType <GameManager>();
     coll     = GetComponent <Collider2D>();
     HitTimes = 4 + gm.levels[1];
 }
コード例 #7
0
        //private IEnumerator WaitCancel(COROUTINE co, CancellationToken cancellationToken)
        //{
        //    while (!co.IsDone)
        //    {
        //        yield return null;
        //    }
        //}


        private IEnumerator CoroutineToRoutine(COROUTINE co)
        {
            yield return(co);

            if (IsRequreReturnValue(co))
            {
                yield return(new YieldReturn(co.ReturnValue));
            }
        }
コード例 #8
0
        private void _QueueRoutine(COROUTINE coroutine, IEnumerator routine)
        {
            //if (coroutineData == null)
            {
                if (routine is COROUTINE)
                {
                    routine = CoroutineToRoutine((COROUTINE)routine);
                }
            }
            var cancelToken = GetCancelToken(coroutine);

            if (cancelToken != null)
            {
                if (cancelToken.IsCancellationRequested)
                {
                    SetCoroutineCanceled(coroutine);
                    return;
                }
                //UnityScheduler.StartCoroutine(WaitCancel(coroutine, cancelToken));
            }
            UnityScheduler.StartCoroutine(AsCoroutine(coroutine, routine));
            SetReady(coroutine);
        }
コード例 #9
0
 // Use this for initialization
 void Start()
 {
     Destroy(gameObject, 3);
     _Main = new Coroutines.Coroutine(Main());
 }
コード例 #10
0
 // Use this for initialization
 void Start()
 {
     _Main = new Coroutines.Coroutine(Main());
 }
コード例 #11
0
 public void AddCoroutine(Coroutine coroutine)
 {
     coroutines.Push(coroutine);
 }
コード例 #12
0
ファイル: stabStab.cs プロジェクト: pyh0884/Retrieve
 void Start()
 {
     anim  = GetComponent <Animator>();
     rb    = GetComponent <Rigidbody2D>();
     _Main = new Coroutines.Coroutine(Main());
 }
コード例 #13
0
ファイル: GameMachine.cs プロジェクト: jdwalker/Jamchester
 public void TransitionToPlayer()
 {
     _Main = new Coroutines.Coroutine(RunTransition());
 }
コード例 #14
0
 // Use this for initialization
 void Start()
 {
     _OverlayCanvas.gameObject.SetActive(false);
     _Main = new Coroutines.Coroutine(Main());
 }
コード例 #15
0
        //public override void Cancel(object context, object id)
        //{
        //    MonoBehaviour unity = unityScheduler;
        //    if (id is UnityEngine.Coroutine)
        //    {
        //        var co = (UnityEngine.Coroutine)id;
        //        unity.StopCoroutine(co);
        //    }
        //    else if (id is string)
        //    {
        //        unity.StopCoroutine((string)id);
        //    }
        //    else if (id is IEnumerator)
        //    {
        //        unity.StopCoroutine((IEnumerator)id);
        //    }
        //}

        //public override void CancelAll(object context)
        //{
        //    MonoBehaviour unity = unityScheduler;
        //    unity.StopAllCoroutines();
        //}



        private IEnumerator AsCoroutine(COROUTINE coroutine, IEnumerator routine)
        {
            object            yieldReturn;
            bool              hasNext;
            Exception         exception         = null;
            COROUTINE         waitForCoroutine  = null;
            CancellationToken cancellationToken = GetCancelToken(coroutine);

            while (true)
            {
                if (!coroutine.IsDone)
                {
                    waitForCoroutine = GetWaitForCoroutine(coroutine);
                    if (waitForCoroutine != null)
                    {
                        //wait done
                        while (!waitForCoroutine.IsDone && !coroutine.IsDone)
                        {
                            if (cancellationToken != null && cancellationToken.IsCancellationRequested)
                            {
                                SetCoroutineCanceled(coroutine);
                                break;
                            }
                            yield return(null);
                        }
                        SetWaitForCoroutine(coroutine, null);

                        var ex = waitForCoroutine.Exception;
                        if (!coroutine.IsDone)
                        {
                            if (ex != null)
                            {
                                ICatchable catchable = waitForCoroutine as ICatchable;
                                if (catchable != null)
                                {
                                    try
                                    {
                                        catchable.HandleException(ex);
                                    }
                                    catch (Exception ex2)
                                    {
                                        var newEx = new CoroutineAggregateException(ex2);
                                        newEx = newEx.Flatten();
                                        SetCoroutineException(coroutine, newEx, true);
                                        break;
                                    }
                                }
                                else
                                {
                                    SetCoroutineException(coroutine, ex, false);
                                    break;
                                }
                            }
                        }
                        else
                        {
                            break;
                        }
                    }
                    else
                    {
                        hasNext = false;


                        if (cancellationToken != null && cancellationToken.IsCancellationRequested)
                        {
                            SetCoroutineCanceled(coroutine);
                            break;
                        }

                        lock (lockObj)
                        {
                            PushCurrent();

                            try
                            {
                                hasNext = routine.MoveNext();
                                if (!hasNext)
                                {
                                    CheckReturnValue(coroutine);
                                }
                            }
                            catch (Exception ex)
                            {
                                exception = ex;
                            }
                            finally
                            {
                                PopCurrent();
                            }
                        }

                        if (exception != null)
                        {
                            var aggEx = new CoroutineAggregateException(exception);
                            aggEx = aggEx.Flatten();
                            SetCoroutineException(coroutine, aggEx, true);
                            break;
                        }

                        if (!hasNext)
                        {
                            break;
                        }

                        yieldReturn = routine.Current;

                        //if (yieldReturn != null)
                        //{
                        //    IEnumerator convertRoutine;
                        //    if (ConvertToRoutine(yieldReturn, out convertRoutine))
                        //        yieldReturn = convertRoutine;
                        //}

                        if (yieldReturn != null)
                        {
                            if (yieldReturn is IYield)
                            {
                                if (yieldReturn is COROUTINE)
                                {
                                    waitForCoroutine = (COROUTINE)yieldReturn;
                                    SetWaitForCoroutine(coroutine, waitForCoroutine);
                                }
                                else if (yieldReturn is WaitForMilliseconds)
                                {
                                    float atTime = (float)(Time + ((WaitForMilliseconds)yieldReturn).Milliseconds * 0.001f);
                                    while (Time < atTime)
                                    {
                                        if (cancellationToken != null && cancellationToken.IsCancellationRequested)
                                        {
                                            SetCoroutineCanceled(coroutine);
                                            break;
                                        }
                                        yield return(null);
                                    }
                                }
                                else if (yieldReturn is WaitForFrame)
                                {
                                    int frameCount = ((WaitForFrame)yieldReturn).FrameCount;
                                    if (frameCount <= 0)
                                    {
                                        yield return(null);
                                    }
                                    else
                                    {
                                        for (int i = 0; i < frameCount; i++)
                                        {
                                            if (cancellationToken != null && cancellationToken.IsCancellationRequested)
                                            {
                                                SetCoroutineCanceled(coroutine);
                                                break;
                                            }
                                            yield return(null);
                                        }
                                    }
                                }
                                else if (yieldReturn is YieldReturn)
                                {
                                    YieldReturn ret = (YieldReturn)yieldReturn;
                                    SetCoroutineReturnValue(coroutine, ret);
                                }
                                else if (yieldReturn is CustomYield)
                                {
                                    CustomYield customYield = (CustomYield)yieldReturn;
                                    SetWaitForCoroutine(coroutine, QueueRoutine(customYield));
                                }
                                else
                                {
                                    throw new CoroutineUnknownYieldTypeException(yieldReturn.GetType());
                                }
                            }
                            else if (yieldReturn is IEnumerable)
                            {
                                SetWaitForCoroutine(coroutine, QueueRoutine(((IEnumerable)yieldReturn).GetEnumerator()));
                            }
                            else if (yieldReturn is IEnumerator)
                            {
                                SetWaitForCoroutine(coroutine, QueueRoutine((IEnumerator)yieldReturn));
                            }
                            else
                            {
                                IEnumerator tmp;
                                if (ConvertToRoutine(yieldReturn, out tmp))
                                {
                                    SetWaitForCoroutine(coroutine, QueueRoutine(tmp));
                                }
                                else
                                {
                                    // ignore handle
                                    yield return(yieldReturn);
                                }
                            }
                        }
                        else
                        {
                            yield return(null);
                        }
                    }
                }


                if (coroutine.IsDone)
                {
                    break;
                }
            }

            if (!coroutine.IsDone)
            {
                SetCoroutineDone(coroutine);
            }
            else
            {
                if (!coroutine.IsRanToCompletion)
                {
                    exception = coroutine.Exception;
                    if (exception != null && !IsCoroutineHandleException(coroutine))
                    {
                        if (!IsReady(coroutine))
                        {
                            yield return(null);
                        }
                        if (!IsCoroutineHandleException(coroutine))
                        {
                            throw exception;
                        }
                    }
                }
            }
        }