Exemple #1
0
        /// <summary>
        /// Draws a model from beginning to an end.
        /// </summary>
        /// <param name="sender">Sender</param>
        /// <param name="args">Args</param>
        public void FullDraw(object sender, DrawWorldArgs args)
        {
            Bitmap.Dispatcher.Invoke(() =>
            {
                Stopwatch s = new Stopwatch();
                s.Start();
                byte[] color = new byte[args.CellTable.Size.X * args.CellTable.Size.Y * 4];

                for (int i = 0; i < args.CellTable.Size.X; i++)
                {
                    for (int j = 0; j < args.CellTable.Size.Y; j++)
                    {
                        int p            = args.CellTable.Size.X * j + i;
                        CellType c       = args.CellTable.Cells[i, j].CellType;
                        color[4 * p]     = c.Color.B;
                        color[4 * p + 1] = c.Color.G;
                        color[4 * p + 2] = c.Color.R;
                        color[4 * p + 3] = c.Color.A;
                    }
                }

                Bitmap.WritePixels(new Int32Rect(0, 0, args.CellTable.Size.X, args.CellTable.Size.Y), color, args.CellTable.Size.X * 4, 0);
                s.Stop();
                //Console.WriteLine("FullDraw of the model took: " + s.Elapsed.TotalSeconds + "s");
            });
        }
 public override void Update(object sender, DrawWorldArgs args)
 {
     foreach (GUIContextView v in views)
     {
         v.Update(sender, args);
     }
 }
Exemple #3
0
        /// <summary>
        /// Draws only changes of a model.
        /// </summary>
        /// <param name="sender">Sender</param>
        /// <param name="args">Args</param>
        public void DeltaDraw(object sender, DrawWorldArgs args)
        {
            Bitmap.Dispatcher.Invoke(() =>
            {
                Stopwatch s = new Stopwatch();
                s.Start();
                foreach (Vector2Int pos in args.Delta)
                {
                    byte[] color = new byte[4];

                    CellType c = args.CellTable.Cells[pos.X, pos.Y].CellType;
                    color[0]   = c.Color.B;
                    color[1]   = c.Color.G;
                    color[2]   = c.Color.R;
                    color[3]   = c.Color.A;

                    Bitmap.WritePixels(new Int32Rect(pos.X, pos.Y, 1, 1), color, 4, 0);
                }
                s.Stop();
                //Console.WriteLine("DeltaDraw of the model took: " + s.Elapsed.TotalSeconds+"s");
            });
        }
Exemple #4
0
 public override void Update(object sender, DrawWorldArgs args)
 {
     textBlock.Dispatcher.Invoke(() => { textBlock.Text = "Steps: " + args.Steps.ToString(); });
 }
 public virtual void Update(object sender, DrawWorldArgs args)
 {
     throw new NotImplementedException();
 }
Exemple #6
0
 public override void Update(object sender, DrawWorldArgs args)
 {
     DeltaDraw(sender, args);
 }