The base code that is automatically generated by GS for the Xbox 360 Game project is identical to the code generated for a Windows Game project. Some slight differ- ences exist between the two instruction sets available, such as mouse support, which is only available in Windows. However, in the majority of cases, you can write your code in one project type and then copy your source files and resources to the other project type and you will still be able to run your project. The Xbox 360 is slightly stricter in enforcing variable default declarations, but even if you forget the differ- ences, GS provides excellent debug information to inform you of any issues and how to resolve them when testing your code in one environment or the other.
You can have confidence that almost all the code you write for a Windows Game project is going to work in an Xbox 360 Game project, and vice versa. In most cases, platform compatibility will not be an issue because XNA is designed to work in both environments. Of course, you still need to test in both environments, but plan for an excellent level of compatibility between platforms.
The most important distinction for Zune programming is that the Zune does not currently support 3D graphics. When creating games for the Zune, you’ll have to work with simpler 2D graphics. Also, the Zune does not implement 3D audio for projects created using the Cross Platform Audio Creation Tool. Instead the Zune uses a much lighter audio library for playing WAV and mp3 files which loads your audio content directly in code. Finally, the input device handling on the Zune is im- plemented using a subset of instructions used for device handling with the Xbox 360 game controller. Aside from including one extra instruction to regulate the frequency of updates between frames, the Zune Game project template code is identical to the Xbox 360 Game and Windows Game project templates.
Creating a Windows Game Project
You can create a project by selecting File and then New Project. At this point, several options are available to you. If you want your project to run on Windows, then choose the Windows Game icon that appears in the New Project dialog (see Figure 2-1). To proceed, you need to fill in each of the text boxes at the bottom of the New Project dialog. These values include the name of the project and the file path for the directory where you would like your project to be created.
M I C R O S O F T X N A G A M E S T U D I O C R E A T O R ’ S G U I D E
10
When you first create a project, a code-editing window will open on the left (see Figure 2-2). The Solution Explorer in the right panel shows a listing of code files and may display resources such as a project icon and other items you have selected. The Error List at the bottom of the page displays error messages for lines of code that will not compile, warning messages such as information about variables that are not used, and instructions that are deprecated but have been allowed to compile.
If the code editor, Solution Explorer, or Error List do not appear, these options can be enabled from the View menu.
Creating an Xbox 360 Game Project
The creation of an Xbox 360 Game project is similar to creating a Windows Game project. But before you can actually run an Xbox 360 Game project, you will need to sign in to Xbox Live and download the XNA Game Studio Connect, as outlined in Chapter 1, “Set Up an XNA Development Environment.” Once you have this in- stalled, you will have to connect your PC to your Xbox 360. Connecting your PC to your Xbox 360 will be explained later in this chapter.
F I G U R E 2 - 1
Selecting a project type and entering the file path and project name
11
Once you have a connection from your PC to your Xbox 360, you will be able to compile an Xbox 360 Game project. Creating an Xbox 360 Game project is similar to creating a Windows Game project. The only difference is that you select the Xbox 360 Game icon in the New Project dialog. When you create the project, GS will generate the base code needed to build a game that runs on the Xbox 360. The development environment will look like the Windows Game project shown in Fig- ure 2-2.
Creating a Zune Game Project
Creating a new project for the Zune is exactly the same as for the other project types:
File | New project | Zune Game.
C H A P T E R 2
DeveloperBasics
F I G U R E 2 - 2
GS project with code window, Error List, and Solution Explorer
M I C R O S O F T X N A G A M E S T U D I O C R E A T O R ’ S G U I D E
12