1 / 9

ITEC 109

ITEC 109. Lecture 4 Your second program. Review. What is a computer language? What is a computer language made of? What steps should you go through when writing a program using a computer language?. Fill out forms. Expectations. What you may want to do…. Reality.

curry
Download Presentation

ITEC 109

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. ITEC 109 Lecture 4 Your second program

  2. Review • What is a computer language? • What is a computer language made of? • What steps should you go through when writing a program using a computer language? Fill out forms

  3. Expectations What you may want to do…

  4. Reality What you are going to do.

  5. Why? • Writing software is hard • Professional game development "By month one we had a renderer, terrain, and a playable character (Eddie Riggs), by month two Eddie could drive his hot rod (the Druid Plow) around the terrain, and by month three Eddie could run over endless numbers of headbangers with his Druid Plow around a terrain height field. Hilarity ensued. “ It took industry professionals three months just to make a car drive around a level and have the ability to run over people

  6. Emphasis Darkest of days: 24 person team 3.5 years 1.7 million dollars 200,000 lines of code This class 1 person team 14 weeks $0 1,000 lines of code

  7. Basics • Variables • Point of contact with hardware • Hold information / pointers to resources • Name • Functions • Use variables to do something • functionName(variableName); • Manipulate variables Example: w = makeWorld(); t = makeTurtle(w);

  8. Problem • Draw a square • Algorithm • Create world • Create turtle • Put pen down • Move turtle in a square w = makeWorld(); t = makeTurtle(w); penDown(t); forward(t); turnRight(t);

  9. Program • Start up JES • Rest of lecture is a hands on demonstration

More Related