Click here to Skip to main content
15,885,216 members
Articles / Web Development / ASP.NET

Online Circular Chess in Silverlight, ASP.NET AJAX, WCF Web Services, and LINQ to SQL

Rate me:
Please Sign up or sign in to vote.
4.84/5 (61 votes)
31 Dec 2007CPOL34 min read 219.8K   1.9K   145  
An application for users to play Circular Chess over the internet based on Silverlight, ASP.NET AJAX, WCF Web Services, and LINQ to SQL.
using System;

namespace CChess
{
    public class CChessSquare
    {
        public CChessSquare(byte ring, byte square)
        {
            _ring = ring;
            _square = square;
        }

        private byte _ring;
        private byte _square;

        public byte Ring
        {
            get { return _ring; }
        }

        public byte Square
        {
            get { return _square; }
        }

        /// <summary>
        /// Gets the color of the square.
        /// </summary>
        public CChessColors Color
        {
            get
            {
                if (_ring % 2 == 0)
                {
                    if (_square % 2 == 0)
                    {
                        return CChessColors.White;
                    }
                    else
                    {
                        return CChessColors.Black;
                    }
                }
                else
                {
                    if (_square % 2 == 0)
                    {
                        return CChessColors.Black;
                    }
                    else
                    {
                        return CChessColors.White;
                    }
                }
            }
        }

        public override bool Equals(object right_hand)
        {
            if (right_hand == null)
            {
                return false;
            }

            if (ReferenceEquals(this, right_hand))
            {
                return true;
            }

            CChessSquare right_square = right_hand as CChessSquare;
            if (right_square == null)
            {
                return false;
            }

            return ((_square == right_square.Square) && (_ring == right_square.Ring));
        }
    }
}

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Israel Israel
My name is Julian, I was born in Argentina, but I've been living in Israel for 6 years already. I'm a high school student in my last year, I study computer science, physics and math.
Other than programming, I really enjoy watching anime and reading manga.

Comments and Discussions