Difference between revisions of "Game Programming Class1"

esse quam videri
Jump to: navigation, search
(Hello Monogame with texture)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Discuss Syllabus==
+
GitHuib URL https://github.com/dsp56001/GameProgramming
<b>Software</b>
 
 
 
*Visual Studio 2015 available from MSDN
 
**Monogame version 3.5.x http://www.monogame.net/ (For this class we will stick to version 3.5)
 
http://www.monogame.net/2016/03/17/monogame-3-5/
 
**DirectX End User Runtime https://www.microsoft.com/en-us/download/details.aspx?id=8109
 
**Monogame source https://github.com/mono/MonoGame/tree/develop
 
 
 
*Unity 5.4. 64 bit http://download.unity3d.com/download_unity/a6d8d714de6f/Windows64EditorInstaller/UnitySetup64-5.4.0f3.exe
 
**Even if a newwer version of unity comes out during the semester we will stick to using version 5.4.x
 
* TortoiseSVN http://tortoisesvn.net/
 
*AnkhSVN https://ankhsvn.open.collab.net/
 
 
 
 
 
  
GitHuib URL https://github.com/dsp56001/GameProgramming
+
test
  
 
==Mono Game==
 
==Mono Game==
Line 22: Line 8:
 
**http://blogs.msdn.com/b/bobfamiliar/archive/2012/08/01/windows-8-xna-and-monogame-part-1-overview.aspx
 
**http://blogs.msdn.com/b/bobfamiliar/archive/2012/08/01/windows-8-xna-and-monogame-part-1-overview.aspx
 
*Also a path from XNA to iOS, Android, Sony PS4, XboxOne, Linux, raspberry pi etc..
 
*Also a path from XNA to iOS, Android, Sony PS4, XboxOne, Linux, raspberry pi etc..
 
[[Installing Monogame]]
 
  
 
==What is DirectX?==
 
==What is DirectX?==
Line 98: Line 82:
  
 
MonoGameDemos\IntroFonts https://iam.colum.edu:8443/!/#GPMonogame3/view/head/trunk/jeff/IntroFonts zip file!!!
 
MonoGameDemos\IntroFonts https://iam.colum.edu:8443/!/#GPMonogame3/view/head/trunk/jeff/IntroFonts zip file!!!
 
==HomeWork==
 
 
Watch Accelerating Windows Store Game Development with Middleware http://channel9.msdn.com/Events/Build/2013/3-187
 
 
 
Install VS2015 get Monogame 3.5 and prerequisites
 
 
Create an Monogame Picture. The picture needs to have at least
 
*1 SpriteFont
 
*3 Textures
 
 
Monogame pipeline tool supports different types of images but for this project let's stick with png files. What does the alpha channel in the png files do in monogame? what happens if you use a jpg?
 
 
Also please post a screen shot of your project running in the assignments. Zip and upload source to moodle.
 
 
You can take a screen shot using the snip tool. Start run snip in vista or 7. Or you can just press the Print Screen key on the keyboard.
 
 
*Read Chapter 1 of XNA 3.0
 

Latest revision as of 14:30, 9 April 2018

GitHuib URL https://github.com/dsp56001/GameProgramming

test

Mono Game

What is DirectX?

show c++ examples

quick start guide - create

watch Accelerating Windows Store Game Development with Middleware http://channel9.msdn.com/Events/Build/2013/3-187

Hello World

Hello World in Monogame using spritefont. We'll revisit the spriteFont when we build the console/debug class

Hello Monogame with texture

Simple monogame project that draws a pacman sprite

  • Start a new Monogame Project (For all the example in this class I will use Monogame Windows)

NewMonogameProjectWindowGL.PNG

Add two variable declarations at the top of the class

            
            Texture2D PacMan;   //Texture2D to hold pacman texture
            Vector2 PacManLoc;  //Vector location to draw pacman texture

In the LoadContent Function add the following code to initialize the two variables declared above

        protected override void LoadContent()
        {
            // Create a new SpriteBatch, which can be used to draw textures.
            spriteBatch = new SpriteBatch(GraphicsDevice);

            // TODO: use this.Content to load your game content here
            //load PacMan image
            PacMan = Content.Load<texture2d>("pacmanSingle");
            //Center PacMan image
            PacManLoc = new Vector2(graphics.GraphicsDevice.Viewport.Width / 2, graphics.GraphicsDevice.Viewport.Height / 2);
        }
  • Add the following code to the Draw Method to Draw the texture
	protected override void Draw(GameTime gameTime)
        {
            graphics.GraphicsDevice.Clear(Color.CornflowerBlue);

            // TODO: Add your drawing code here
            spriteBatch.Begin();
            spriteBatch.Draw(PacMan, PacManLoc, Color.White);
            spriteBatch.End();

            base.Draw(gameTime);
        }

pacman image is availble here: PacmanSingle.png


the full game1.cs file should look like

TODO ADD URL

the build of the game will look like IntroSimpleSpriteWindows.png


Simple 2D texture example with update

Demos

Monogame Overview

MonoGameDemos\IntroFonts https://iam.colum.edu:8443/!/#GPMonogame3/view/head/trunk/jeff/IntroFonts zip file!!!