Beispiel #1
0
    void Awake()
    {
        instance    = this;
        Paused      = pauseOnStart;
        timestopped = false;

        promiseTimer = new PromiseTimer();
    }
Beispiel #2
0
        internal void Start()
        {
            this.stopwatch    = new Stopwatch();
            this.timer        = new Timer(OnTimerTick, null, this.tickDuration, Timeout.Infinite);
            this.promiseTimer = new PromiseTimer();

            Console.WriteLine("[GameManager]: Started ticking every {0}ms", this.tickDuration);
        }
        public void wait_for_resolves_after_specified_time()
        {
            var testObject = new PromiseTimer();

            var testTime = 1f;
            var hasResolved = false;

            testObject.WaitFor(testTime)
                .Then(() => hasResolved = true)
                .Done();

            testObject.Update(2f);

            Assert.Equal(true, hasResolved);
        }
        public void wait_for_doesnt_resolve_before_specified_time()
        {
            var testObject = new PromiseTimer();

            var testTime = 2f;
            var hasResolved = false;

            testObject.WaitFor(testTime)
                .Then(() => hasResolved = true)
                .Done();

            testObject.Update(1f);

            Assert.Equal(false, hasResolved);
        }
Beispiel #5
0
        public void wait_for_doesnt_resolve_before_specified_time()
        {
            var testObject = new PromiseTimer();

            const float testTime    = 2f;
            var         hasResolved = false;

            testObject.WaitFor(testTime)
            .Then(() => hasResolved = true)
            .Done();

            testObject.Update(1f);

            Assert.Equal(false, hasResolved);
        }
Beispiel #6
0
        public void wait_for_resolves_after_specified_time()
        {
            var testObject = new PromiseTimer();

            const float testTime    = 1f;
            var         hasResolved = false;

            testObject.WaitFor(testTime)
            .Then(() => hasResolved = true)
            .Done();

            testObject.Update(2f);

            Assert.Equal(true, hasResolved);
        }
Beispiel #7
0
        public void when_predicate_throws_exception_reject_promise()
        {
            var testObject = new PromiseTimer();

            Exception expectedException = new Exception();
            Exception caughtException   = null;


            testObject
            .WaitUntil(timeData => throw expectedException)
            .Catch(ex => caughtException = ex)
            .Done();

            testObject.Update(1.0f);

            Assert.Equal(expectedException, caughtException);
        }
        public void wait_while_resolves_when_predicate_is_false()
        {
            var testObject = new PromiseTimer();

            var hasResovled = false;

            var doWait = true;

            testObject.WaitWhile(timeData => doWait)
                .Then(() => hasResovled = true)
                .Done();

            Assert.Equal(false, hasResovled);

            doWait = false;
            testObject.Update(1f);

            Assert.Equal(true, hasResovled);
        }
        public void wait_until_resolves_when_predicate_is_true()
        {
            var testObject = new PromiseTimer();

            var hasResolved = false;

            var doResolve = false;

            testObject.WaitUntil(timeData => doResolve)
                .Then(() => hasResolved = true)
                .Done();

            Assert.Equal(false, hasResolved);

            doResolve = true;
            testObject.Update(1f);

            Assert.Equal(true, hasResolved);
        }
Beispiel #10
0
        public GameSession(Game game)
        {
            this.game = game;
            //this.gameState = game.Init();

            this.players      = new Dictionary <string, Player>();
            this.playerEvents = new Dictionary <string, PlayerEvent>();

            this.gameTimer   = new PromiseTimer();
            this.playerTimer = new PromiseTimer();

            this.endPromise = new Promise();

            WaitForMinimumPlayers()    // Preparation phase = wait for enough players to join
            .Then(() => RunGame())     // Active phase = process ticks, passing the state to game and then sending results back
            .Then(() => SessionOver()) // End phase = send winner, save game state to disk, etc.
            .Then(() => endPromise.Resolve())
            .Done();
        }
Beispiel #11
0
        public void wait_until_elapsedUpdates_resolves_when_predicate_is_true()
        {
            var testObject = new PromiseTimer();

            const int testFrame   = 3;
            var       hasResolved = false;

            testObject.WaitUntil(timeData => timeData.elapsedUpdates == testFrame)
            .Then(() => hasResolved = true)
            .Done();

            Assert.False(hasResolved);

            testObject.Update(1);
            testObject.Update(2);
            testObject.Update(3);

            Assert.True(hasResolved);
        }
Beispiel #12
0
        public void wait_while_resolves_when_predicate_is_false()
        {
            var testObject = new PromiseTimer();

            var hasResovled = false;

            var doWait = true;

            testObject.WaitWhile(timeData => doWait)
            .Then(() => hasResovled = true)
            .Done();

            Assert.Equal(false, hasResovled);

            doWait = false;
            testObject.Update(1f);

            Assert.Equal(true, hasResovled);
        }
Beispiel #13
0
        public void wait_until_resolves_when_predicate_is_true()
        {
            var testObject = new PromiseTimer();

            var hasResolved = false;

            var doResolve = false;

            testObject.WaitUntil(timeData => doResolve)
            .Then(() => hasResolved = true)
            .Done();

            Assert.Equal(false, hasResolved);

            doResolve = true;
            testObject.Update(1f);

            Assert.Equal(true, hasResolved);
        }
Beispiel #14
0
        public void all_promises_are_updated_when_a_pending_promise_is_canceled_during_update()
        {
            var testObject = new PromiseTimer();

            var p1Updates = 0;
            var p2Updates = 0;
            var p3Updates = 0;

            var p1 = testObject
                     .WaitUntil(timeData =>
            {
                p1Updates++;

                return(false);
            });

            testObject
            .WaitUntil(timeData =>
            {
                p2Updates++;

                return(true);
            })
            .Then(() =>
            {
                testObject.Cancel(p1);
            });

            testObject
            .WaitUntil(timeData =>
            {
                p3Updates++;

                return(false);
            });

            testObject.Update(0.01f);

            Assert.Equal(1, p1Updates);
            Assert.Equal(1, p2Updates);
            Assert.Equal(1, p3Updates);
        }
Beispiel #15
0
        public void when_promise_is_cancelled_by_user_reject_promise()
        {
            var       testObject      = new PromiseTimer();
            Exception caughtException = null;


            var promise = testObject
                          .WaitUntil(timeData => timeData.elapsedTime > 1.0f);

            promise.Catch(ex => caughtException = ex);

            promise.Done(null, ex => caughtException = ex);

            testObject.Update(1.0f);
            testObject.Cancel(promise);
            testObject.Update(1.0f);

            Assert.IsType <PromiseCancelledException>(caughtException);
            Assert.Equal(caughtException.Message, "Promise was cancelled by user.");
        }
Beispiel #16
0
        public void predicate_is_removed_from_timer_after_exception_is_thrown()
        {
            var testObject = new PromiseTimer();

            var runCount = 0;

            testObject
            .WaitUntil(timeData =>
            {
                runCount++;

                throw new NotImplementedException();
            })
            .Done();

            testObject.Update(1.0f);
            testObject.Update(1.0f);

            Assert.Equal(1, runCount);
        }
Beispiel #17
0
        public void when_promise_is_not_cancelled_by_user_resolve_promise()
        {
            var       testObject      = new PromiseTimer();
            var       hasResolved     = false;
            Exception caughtException = null;


            var promise = testObject
                          .WaitUntil(timeData => timeData.elapsedTime > 1.0f)
                          .Then(() => hasResolved      = true)
                          .Catch(ex => caughtException = ex);

            promise.Done(null, ex => caughtException = ex);

            testObject.Update(1.0f);

            Assert.Equal(hasResolved, false);

            testObject.Update(1.0f);

            Assert.Equal(caughtException, null);
            Assert.Equal(hasResolved, true);
        }
Beispiel #18
0
 public UnityService(Camera mainCamera)
 {
     this.mainCamera = mainCamera;
     promiseTimer    = new PromiseTimer();
 }
        public void when_predicate_throws_exception_reject_promise()
        {
            var testObject = new PromiseTimer();

            Exception expectedException = new Exception();
            Exception caughtException = null;
           

            testObject
                .WaitUntil(timeData =>
                {
                    throw expectedException;
                })
                .Catch(ex => caughtException = ex)
                .Done();

            testObject.Update(1.0f);

            Assert.Equal(expectedException, caughtException);
        }
        public void predicate_is_removed_from_timer_after_exception_is_thrown()
        {
            var testObject = new PromiseTimer();

            var runCount = 0;

            testObject
                .WaitUntil(timeData =>
                {
                    runCount++;

                    throw new NotImplementedException();
                })
                .Done();

            testObject.Update(1.0f);
            testObject.Update(1.0f);

            Assert.Equal(1, runCount);
        }