CHAPTER 1 XNA Game Studio 4.0. Your First Project A computer game is not just a program—it is also lots of other bits and pieces that make playing the.

Slides:



Advertisements
Similar presentations
PC Tips & Trouble Shooting I didnt know that! Short Cut Keys Short cut keys are an easy way to complete tasks on a computer.
Advertisements

TO A USB DEVICE. DATA CAN BE LOST DUE TO POWER SURGES MANUFACTURING DEFECTS HURRICANES/LIGHTENING STRIKES.
Mobile Development Introduction to Visual Studio Development Rob Miles Department of Computer Science.
Components: Sansa Clip Mp3, earbuds, USB cable, Quick Start Guide.
DEVELOPING ICT SKILLS PART -TWO
CS0004: Introduction to Programming Visual Studio 2010 and Controls.
Dan Waters, Academic Relations Manager, Microsoft.
Excel Tutorial 6 Managing Multiple Worksheets and Workbooks
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
In the top right hand corner you will type in your package code in the box that says “Place Order.” Then you will click “Go.”
Computer Basics Dayton Metro Library Place photo here May 20, 2015.
Get android development environment running. Install – Get and install JDK 5 or 6 (see link in the.
CA 121 Intro to Programming Tariq Aziz and Kevin Jones GUI Programming in Visual Studio.NET Chapter 1 Tariq Aziz and Kevin Jones.
E.1 Eclipse. e.2 Installing Eclipse Download the eclipse.installation.exe from the course web site to your computer and execute it. Keep the destination.
Compunet Corporation Programming with Visual Basic.NET GUI Week # 11 Tariq Ibn Aziz.
Using PDG with e2studio: Example
1 Introduction to Programming Environment Using MetroWerks CodeWarrior and Palm Emulator.
Cambodia-India Entrepreneurship Development Centre - : :.... :-:-
Here’s how to start the Microsoft Visual C++ program; click on start, then programsclick on start, then programs Choose Microsoft Visual C++ or Microsoft.
Computer Basics Flashcards #2
Software Development. Chapter 3 – Your first Windows 8 app.
Programming with App Inventor Computing Institute for K-12 Teachers Summer 2012 Workshop.
Microsoft Visual Basic 2005 CHAPTER 12 Cell Phone Applications and Web Services.
Getting started with Microsoft.NET Gadgeteer Comberton Village College Gadgeteer Club.
1 ENG236: ENG236: C++ Programming Environment (2) Rocky K. C. Chang THE HONG KONG POLYTECHNIC UNIVERSITY.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
11 Games and Content Session 4.1. Session Overview  Show how games are made up of program code and content  Find out about the content management system.
Configuring the MagicInfo Pro Display
Introduction to VB.NET Tonga Institute of Higher Education.
Copyright ©: SAMSUNG & Samsung Hope for Youth. All rights reserved Tutorials Software: Building apps Suitable for: Advanced.
MagicInfo Pro Server Software All control, content, and scheduling is performed within the MagicInfo Pro Server software previously installed. Before.
Microsoft Visual Basic 2012 Using Procedures and Exception Handling CHAPTER SEVEN.
CHAPTER 4 Images XNA Game Studio 4.0. Objectives Find out how the Content Manager lets you add pictures to Microsoft XNA games. Discover how pictures.
Computing IV Visual C Introduction with OpenCV Example Xinwen Fu.
IT 211 Project Integration and Deployment Lab #11.
CS Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which.
Move Pictures From Your Mobile Phone to Your PC.  You never know when a photo opportunity is going to arise, which is why having a camera phone can be.
Saving and printing Section 4. Objectives Student will learn about print a web site, download files from the internet.
Bharathi.S. Intel® Pentium® 4, 3.6 GHz or equivalent AMD processor 500 MB free hard disk space 2 GB RAM 1 available USB 2.0 port and USB cable Microsoft®
11 Using the Keyboard Session Session Overview  Introduce the keyboard device  Show how keys on a keyboard can be represented by enumerated types.
Tutorial 11 Five windows included in the Visual Basic Startup Screen Main Form Toolbox Project Explorer (Project) Properties.
CMPF124:Basics Skills for Knowledge Workers Basic Windows Administration.
Using Microsoft Visual Studio 2005 Original by Suma Rao Revised by John G. McMahon ( 9/6/2008 )
Lesson 12: Using the Recycle Bin deleting files or folders what the Recycle Bin is restoring files from the Recycle Bin emptying the Recycle Bin identifying.
Using Microsoft Visual Studio C++ Express 2005 Name: Dr Ju Wang Ashwin Belle Course Resource:
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
1 Getting Started with C++. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Visual Studio 2008.
COMPUTER ORGANISATION I HIGHER STILL Computing Computer Systems Higher Marr College Computing Department 2002.
How to connect your NXT via Bluetooth A step-by-step instruction.
CHAPTER 3 Getting Player Input XNA Game Studio 4.0.
IMovie 10 Overview. Importing Files from a Video Camera into iMovie 1.Plug the camera into a wall outlet using the power supply. (Some cameras will not.
RT-LAB Electrical Applications 1 Opal-RT Technologies Use of the “Store Embedded” mode Solution RT-LAB for PC-104.
How to use WS_FTP A Step by Step Guide to File Transfer.
Renesas Technology America Inc. 1 SKP8CMINI Tutorial 2 Creating A New Project Using HEW.
This is how you invoke the Microsoft Visual Studio 2010 Software. All Programs >> Microsoft Visual Studio 2010.
11 Debugging Programs Session Session Overview  Create and test a method to calculate percentages  Discover how to use Microsoft Visual Studio.
11 Computers, C#, XNA, and You Session 1.1. Session Overview  Find out what computers are all about ...and what makes a great programmer  Discover.
Microsoft Expression Web - Illustrated Unit A: Getting Started With Microsoft Expression Web.
Programming and Debugging with the Dragon and JTAG Many thanks to Dr. James Hawthorne for evaluating the Dragon system and providing the core content for.
DEVRY CIS 170 C I L AB 1 OF 7 G ETTING S TARTED Check this A+ tutorial guideline at
After Construction Name: Per #:.
Programming and Debugging with the Dragon and JTAG
Use of MPLab software Paul Cockshott.
Sharing and Synching files
Bomgar Remote support software
MonoGame and Windows 8.
1. Open Visual Studio 2008.
ALEPH Version 22 Offline Circulation
Presentation transcript:

CHAPTER 1 XNA Game Studio 4.0

Your First Project A computer game is not just a program—it is also lots of other bits and pieces that make playing the game fun and interesting. Content Manager Comprehensive solution that manages XNA resources Part of the project

Create Your First Project In XNA Game Studio, select New Project from the File menu.

Create Your First Project Select Windows Game.

Running Your First Program Click the Start Debugging button

What Happens? 1. XNA Game Studio compiles the source code files. The source code of the program is all the lines of C# code. A compiler is a program that takes source code and creates a set of machine instructions that can be loaded into the computer’s processor to control what the computer does The compiler rejects any program that it thinks is not correct and tells you about the compilation errors. 2. If all the program source files compile correctly, they are then combined with any resources (for example, images and sounds) that are part of the project.

What Happens? 3. If you are using an external device, either Xbox 360 or Windows Phone, the compiled files are now transferred into it. 4. XNA Game Studio starts the program running.

Stopping a Program There are two ways to do this. 1. You can press the Back button on an Xbox 360 gamepad or Windows Phone to instruct the program to finish. If the program is running on a remote device, XNA Game Studio displays a message indicating that the remote connection to the device has been lost. Simply click OK on the message to dismiss it. 2. You can stop the program from within XNA Game Studio by clicking the Stop button

Storing Games on the Xbox 360 or Windows Phone Once you’ve created a game and deployed it to an Xbox 360 or Windows Phone, the game itself remains stored inside the machine for you to load and play later, without the need for a PC to be attached. You can find the games you have created by selecting your Game Library on the Xbox 360 or entering the Xbox Live Games menu on the Windows Phone.

Running the Same XNA Game on Different Devices You can use a single XNA workspace to hold multiple projects, one for each device you want to target. You will find out more about projects and workspaces in the section “XNA Game Studio Solutions and Projects” in Chapter 4.

Creating a Copy of an XNA Project for Another Device Start by clicking the project in the Solution Explorer of XNA Game Studio so that it is selected. Then choose Create Copy Of Project For Xbox 360 from the Project menu.

Creating a Copy of an XNA Project for Another Device XNA Game Studio copies the project and adds the copy to the workspace. You can select which of the projects to start by setting one of the projects as the StartUp Project. To set a project as the StartUp project, you right-click the project and choose Set as StartUp Project from the menu that appears When you click Start Debugging, the project that is selected as the StartUp project is the one that gets to run.

Choosing Between Windows Phone and Emulator If you have created a game that is aimed at the Windows Phone device you can select whether the game runs on the Windows Phone itself or the emulator. To deploy to the device it must have been registered as a development device. The phone must be connected to the computer via USB and the Zune software must be running. The phone should not be displaying its lock screen when you try to deploy the program to it.