Portfolio

Wednesday, March 6, 2013

So I have been gone for awhile ,but now i'm back i'm going to try to post alot more 
about C# and Xna topics on game development I no a bit more and i am starting to make
A game project from scratch so i will be trying to update my blog on the reg.Brother MFC-J825DW Wireless All-in-One Inkjet Printer - (Google Affiliate Ad)

Thursday, June 21, 2012

 
This is animated spritesheet class example that you
can animate any sprite in no time it does have 
magic numbers but you can deal with taking care
of that yourself and the example can be 
downloaded on the right. check it out people!

Saturday, June 16, 2012

Cannon 3 project C# And Xna

Cannon3 with Xna with source code
download it now full of comments.
http://www.mediafire.com/download.php?1g8o14hlnpu8qen





This is all the graphics used for
Cannon3 project.

Friday, June 15, 2012

I have just uploaded Cannon 2 it is a updated verison
of cannon 1 with Object-oriented programming. 
Check it out 
namespace cannon2
{
    class GameObject
    {
 
        private Point position;
        private Point velocity;
        private PictureBox texture;
 
        #region properties
 
        public Point Position
        {
            get { return position; }
            set { position = value; }
        }
        public Point Velocity
        {
            get { return velocity; }
            set { velocity = value; }
        }
        public PictureBox Texture
        {
            get { return texture; }
            set { texture = value; }
        }
        public Point origin
        {
            get
            {
                 return  new Point(texture.Width / 2texture.Height / 2);
            }
        }
 
        #endregion
 
        public void Update()
        {
            this.position = new Point(this.position.X + this.velocity.X,
                                        this.position.Y + this.velocity.Y);
        }
 
        public void Draw()
        {
            this.texture.Location = new Point(this.position.X - this.origin.X,
                                              this.position.Y - this.origin.Y);
        }
 
    }
}

Wednesday, June 13, 2012

Cannon1 App

 This is a App that I made from a Xna
Open course program and , I uploaded 
it for people to download and learn from.
I am going to upload 3 different cannon
projects this is the first one and it is the
most basic version and cannon 2 will
be with the same graphics but fully 
object-oriented.The last one that I
put out will be in xna with better graphics.

So Go head and download Cannon1
and two is soon to come.
 Download : Cannon1
     


Tuesday, June 12, 2012

This is ball app . I made it to show simple screen
collision .It shows how to make a ball hit the side of the
windows form and bounce off the source is included.
Donate if this helps you
http://www.mediafire.com/download.php?b4fpngdpurfjgag

Wednesday, May 23, 2012

My take on Programming

In the past few months I have been learning
tons off C# and I think I have the Syntax
fully grasped.I have read lots of books
and what I have come to learn is that there
is only one sure way for a true begin to get
As much as you can as fast as you can and
that to learn they to things and get them in
your head and grasp them as fast as you
can.

Number 1: everything in C# is A class and a class is a object
 Class == object
Number 2: if you know everything in a class template than you pretty much know 90% C# syntax
class template == 90% C# syntax
so this is what A class looks like and what you need to know



public class Person
{
    // Fields are just variables for a class make sure you learn what these are
    public string name;

    // Constructor learn what this is 
    public Person()
    {
        name = "unknown";
    }

    // Method learn what methods are and you will no about 90% of the syntax trust me
    public void SetName(string newName)
    {
        name = newName;
    }
}

Friday, April 27, 2012

Add caption
Just Started reading Visual C# game
programming for teens .I am reading this
one cause it teaches you to Code games
with just the c#  language And not xna.
It should show me how to make a raw
game . and then i will move on to learn programming
now.
Learn programming now should teach me
the xna framework in a good detail and
i can start seeing the code when i sleep.

Tuesday, April 10, 2012


             The Greatest Speech Ever Made - Charlie Chaplin