Click here to Skip to main content
15,881,380 members
Articles / Programming Languages / C#

Game Of Life 2 Life Wars

Rate me:
Please Sign up or sign in to vote.
4.11/5 (8 votes)
29 Sep 20032 min read 76.5K   1.4K   27  
A variation on the Game Of Life Theme
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;

namespace Square
{
	public class BottomLeftSquare : Square.StandardSquare
	{
		private System.ComponentModel.IContainer components = null;

		public BottomLeftSquare()
		{
			// This call is required by the Windows Form Designer.
			InitializeComponent();

			// TODO: Add any initialization after the InitializeComponent call
		}

		public override string Directions
		{
			get
			{
				return "BOTTOMLEFT";
			}
		}

		public override string SquareType
		{
			get
			{
				return "BOTTOMLEFT";
			}
		}



		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if (components != null) 
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			// 
			// BottomLeftSquare
			// 
			this.Name = "BottomLeftSquare";
			this.Paint += new System.Windows.Forms.PaintEventHandler(this.OnPaint);

		}
		#endregion

		private void OnPaint(object sender, System.Windows.Forms.PaintEventArgs e)
		{
			Graphics grfx = e.Graphics;

			int nWidth = this.Width/2;
			int nHeight = this.Height/2;


			Rectangle bottomRect = new Rectangle( nWidth/2, this.Height - nHeight/2, nWidth, nHeight/2 );
			Rectangle leftRect = new Rectangle( 0, nHeight/2, nWidth/2, nHeight );
			Rectangle centerRect = new Rectangle( nWidth/2, nHeight/2, nWidth, nHeight );
			

			grfx.FillRectangle( PathBrush, bottomRect );

			grfx.FillRectangle( PathBrush, leftRect );

			grfx.FillRectangle( PathBrush, centerRect );


			if( CritterIsAnt == true )
			{
				if( PathPheromone > 0 )
				{
					double dHeight = this.Height;
					double dMaxPath = MaxPathPheromone;
					double dPath = PathPheromone;

					grfx.DrawLine( PathPheromonePen, 1, ( int )dHeight, 1, ( int )( dHeight - ( ( dHeight / dMaxPath ) * dPath ) ) );
				}

				if( DrawAnt == true )
				{
					Ant.DrawTheAnt( grfx, this.Width, this.Height );
				}
			}		
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions