當前位置: 首頁>>代碼示例>>C#>>正文


C# PointCollection.Where方法代碼示例

本文整理匯總了C#中System.Windows.Media.PointCollection.Where方法的典型用法代碼示例。如果您正苦於以下問題:C# PointCollection.Where方法的具體用法?C# PointCollection.Where怎麽用?C# PointCollection.Where使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Windows.Media.PointCollection的用法示例。


在下文中一共展示了PointCollection.Where方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: tick2

        //Tick do jogo
        public void tick2()
        {
            //Stopwatch para testar performance
            Stopwatch st1 = new Stopwatch();
            st1.Start();

            //Pega as direções armazenadas e joga pra direção atual
            if (subDir1 != Direcao.Nenhuma)
            {
                direction = subDir1;
                subDir1 = Direcao.Nenhuma;
            }
            if (subDir2 != Direcao.Nenhuma)
            {
                subDir1 = subDir2;
                subDir2 = Direcao.Nenhuma;
            }

            //Move snake para a proxima posição e executa o metodo
            if (direction == Direcao.Left)
            {
                posição.X -= dimension;
                moveRect();
            }
            else
            if (direction == Direcao.Right)
            {
                posição.X += dimension;
                moveRect();
            }
            else
            if (direction == Direcao.Up)
            {
                posição.Y -= dimension;
                moveRect();
            }
            else
            if (direction == Direcao.Down)
            {
                posição.Y += dimension;
                moveRect();
            }

            //Passa por todos os retangulos para mudar sua cor caso mude de tema e mudar o tamanho da Border
            PointCollection d = new PointCollection();
            for (int i = 0; i < rects.Count; i++)
            {
                d.Add(new Point(Canvas.GetLeft(rects[i]), Canvas.GetTop(rects[i])));
                rects[i].StrokeThickness = i / (double)rects.Count;
                if (i == rects.Count - 1)
                {
                    rects[i].StrokeThickness = 1.2;
                }
                if (rects[i].Fill != rectColor)
                {
                    rects[i].Fill = rectColor;
                }
                if (rects[i].Stroke != rectStrokeColor)
                {
                    rects[i].Stroke = rectStrokeColor;
                }
            }

            //Caso a cobra bata em si mesma
            if (d.Where(l => l == posição).Count() > 1)
            {
                Canvas.SetZIndex(rects.Last(), int.MaxValue);
                rects.Last().Fill = hitColor;
                t.Stop();
                MessageBox.Show("Nice");
                t.Dispose();
                return;
            }

            //Caso saia do quadrado
            if (posição.X > 29 * dimension || posição.Y > 29 * dimension || posição.X < 0 || posição.Y < 0)
            {
                rects.Last().Fill = hitColor;
                t.Stop();
                MessageBox.Show("Nice");
                t.Dispose();
            }

            //Teste de performance
            st1.Stop();
            Debug.WriteLine(st1.Elapsed);
        }
開發者ID:theguii,項目名稱:CSharpSnake,代碼行數:88,代碼來源:Jogo.cs


注:本文中的System.Windows.Media.PointCollection.Where方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。