1 / 20

CS361

Week 1 - Friday. CS361. Last time. What did we talk about last time? Syllabus Colors RGB CMYK HSL and HSV File formats JPEG PNG. Questions?. C#. C#. Like Java. Differences from Java. True multidimensional arrays Methods by convention start with an uppercase letter

gizi
Télécharger la présentation

CS361

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Week 1 - Friday CS361

  2. Last time • What did we talk about last time? • Syllabus • Colors • RGB • CMYK • HSL and HSV • File formats • JPEG • PNG

  3. Questions?

  4. C#

  5. C# Like Java Differences from Java True multidimensional arrays Methods by convention start with an uppercase letter Has properties Has operator overloading Not all methods are virtual Delegates (function pointers) Exceptions do not require a try-catch to compile Pointer arithmetic in unsafe mode • Primitive types and objects • All objects are references • Mathematical operations are virtually identical • Strings are immutable • Garbage collection • Single inheritance • Exception handling • Statically typed

  6. Control structures • foreach loops • Java: • C# • Switches (typos in the book) • break statements are not optional • If you want to go to another case, use a goto statement double[] data = getData(); double sum = 0.0; for( double value : data ) sum += value; double[] data = getData(); double sum = 0.0; foreach( double value in data ) sum += value;

  7. Classes and methods • structs • Like classes but are value types • Have no inheritance • Intended for lightweight objects like point or rectangle • By using the partial keyword, a single class can be defined in multiple files • Methods are not all virtual by default • You can only override methods marked virtual • Overriding methods must be marked either new or override • Parameters are passed by value by default but can be passed by reference or result

  8. Hello, world • Hello, world in C# is very similar to the Java version • Even so, it's highlighting differences in libraries and superficial structure that are not significant using System; namespaceHelloWorld { classProgram { static void Main(string[] args) { Console.WriteLine("Hello World!"); } } }

  9. XNA

  10. XNA tutorials • RB Whitaker's XNA tutorials are amazing • They walk you through installing everything you need, C# basics, and all kinds of serious XNA programming issues • Check them out: • http://rbwhitaker.wikidot.com/

  11. Visual Studio • If you are only familiar with Eclipse, Visual Studio will seem similar • Work is organized in Solutions • Solutions can contain one or more Projects • In Eclipse, merely having a source code file in your project folder will cause it to be loaded as part of the project • In Visual Studio, you have to explicitly add items to your Projects • For XNA, this can be game content as well as source code

  12. Empty game • To create a new XNA game • Select New Project… • Under Visual C#, select XNA Game Studio 4.0 • Name your project whatever you want • There will be a Program.cs that creates and runs an object of type Game1 • Everything happens inside the Game1 class

  13. Game1 class • You can rename this class if you want • It contains: • Constructor • Usually not very important • Initialize() method • For initialization and loading of non-graphical content at the beginning of the game • LoadContent() method • For loading graphical content at the beginning of the game • UnloadContent() method • For unloading content at the end of the game • Update() method • Update the state of your game, called each frame • Draw() method • Draw the state of your game on the screen, called each frame

  14. Running the game • Hit Ctrl+F5 to run the game without debugging • A window should pop up like this • Each frame, no updating is done • The only drawing is clearing the screen to cornflower blue The specific color isn't important, but it is deliberately not black or white, since it's easier to produce black or white output by mistake

  15. Console game • We're used to interacting with programs from the command line (console) • XNA was not designed with this in mind • It has pretty easy ways to read from the keyboard, the mouse, and also Xbox 360 controllers • But you'll need a console for Project 1 so that you can tell it which file to load and what kind of manipulations to perform on it • So that Console.Write() and Console.Read() work • Go to the Properties page for your project • Go to the Application tab • Change Output Type to Console Application • More information: http://rbwhitaker.wikidot.com/console-windows • You'll need a separate thread to read and write to the console if you don't want your game to freeze up

  16. Drawing a picture • To draw a picture on the screen, we need to load it first • Right click the Content project in your game solution and choose Add and then Existing Item… • Find an image you want on your hard drive • Create a Texture2D member variable to hold it • Assume the member variable is called cat and the content is called grumpy • In LoadContent(), add the line: cat = Content.Load<Texture2D>("grumpy");

  17. Drawing a picture continued • Now the variable cat contains a loaded 2D texture • Inside the Draw() method, add the following code: • This will draw cat at location (x, y) • All sprites need to bet drawn between Begin() and End()spriteBatch calls spriteBatch.Begin(); spriteBatch.Draw(cat, new Vector2(x, y), Color.White); spriteBatch.End();

  18. Upcoming

  19. Next time… • Graphics rendering pipeline • Application stage

  20. Reminders • Read Chapter 2 • Focus on 2.1 and 2.2

More Related