Introduction to Video Game Programming (VGP) Mr. Shultz.

Slides:



Advertisements
Similar presentations
Introduction to Video Game Programming (VGP) Mr. Shultz.
Advertisements

Chapter 1 - VB 2008 by Schneider1 Chapter 1 - An Introduction to Computers and Problem Solving 1.1 An Introduction to Computers 1.2 Windows, Folders, and.
PIIT Computer Science Summer Camp - Alice July 10, 2012 Brenda Parker Computer Science Department MTSU.
Computer Science 2 Data Structures V section 2 Recitation 1.
Chapter 1 - An Introduction to Computers and Problem Solving
Introduction to Video Game Programming (VGP). Today’s Objective(s) and Bell-Ringer Bell-Ringer 1.What Middle School did you go to? 2.Where were you born?
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Bug Session Two. Session description In this session the use of algorithms is reinforced to help pupils plan out what they will need to program on their.
Information Technology Fundamentals (ITF) Mr. Shultz.
Data Structures and Programming.  John Edgar2.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
6 Steps of the Programming Process
CSE 1340 Introduction to Computing Concepts Class 2.
The Blackboard Textbook The hard-copy textbook has a card inside the cover containing an access code This code will allow you to obtain access to the Cengage.
Information Technology Fundamentals (ITF) Mr. Shultz.
ACT Bellringer #11/31/12 Directions: Use your ACT English notes to help you answer the following questions. 1. There is a total of _____ questions on the.
Information Technology Fundamentals (ITF) Mr. Shultz.
Today’s Objective(s) and Bell-Ringer Bell-Ringer Assignment 1.No Bell-Ringer today 2.Complete Alice Introduction Guided Notes Objective Using Alice, TSW.
PROJECT MANAGEMENT Advanced Design, Multimedia & Web Technologies.
Study Guide For Test Chapter 5, 6,& 7 Test is Friday, May 15th.
Intro to C++. Getting Started with Microsoft Visual Studios Open Microsoft Visual Studios 2010 Click on file Click on New Project Choose Visual C++ on.
The Program Development Cycle
 Agenda  2/3—Edge pg 40, 41  2/4—Edge continue  2/5—Vocabulary L4  2/6—Finish story  2/7—SSR February 3 Super Bowl Champs Seahawks!!
Introduction to Java August 14, 2008 Mrs. C. Furman.
Exploring Computer Science 2/23/15 2/23 Develop a Scratch story project -Brainstorming 2/24 Develop a Scratch story project –Developing 2/25 Develop a.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Introduction to Computers (L02) * Hardware * Software * Programming Languages * Three Phase of Program Development * Development and Design Steps * Algorithms.
Information Technology Fundamentals (ITF) Mr. Shultz.
CPS120 Introduction to Computer Programming The Programming Process.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Lesson 4-5 Prime Factorization Page 160. Vocabulary words  Composite number-has more than 2 factors.  Example: 24: 1x 24, 2 x 12, 3x8, 4x6  Prime number-
Top-Down Design and Modular Development. The process of developing methods for objects is mostly a process of developing algorithms; each method is an.
Software Engineering Chapter 3 CPSC Pascal Brent M. Dingle Texas A&M University.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Program Development Cycle Modern software developers base many of their techniques on traditional approaches to mathematical problem solving. One such.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Least Common Multiple.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Click on your group to see your activity for today
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Review for test! Alice Chapter 1&2 Test is tomorrow! - March 26 th March 25th.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Commas and Semi Colons Group Assignment. Requirements: 1.Your group must create your own commas/ semi colons worksheet. 2.Your worksheet must contain.
+ 1.5 – I can write numbers in expanded form. + Place Value Chart.
How Computers Solve Problems Computers also use Algorithms to solve problems, and change data into information Computers can only perform one simple step.
DECISION STRUCTURE IN JAVA TEACHER: MR. HO. AGENDA Review: Software Development Life Cycle Decision Structure in Java Work Period: In-Class Exercise Bonus.
1 Quiz Show Programming Terms. 2 Alice - 3D Virtual Programming Vocabulary Quiz Board Chapter 1 Chapter 2a Chapter 2b Chapter 3 Chapter 4 $100 $200 $300.
ALMAJMA'AH UNIVERSITY College of Science and Humanitarians Studies in Alghat Management Information System Section (211 NMA course) Introduction to Programming.
ICS 3UI - Introduction to Computer Science
Algebraic expressions
Introducing Alice.
Galaxies & Stars Parts of our universe..
COMPUTER PROGRAMMING PYTHON
Intro to digital technology
Fractions: Fractions of fractions
Multi-Digit Multiplication
Presentation transcript:

Introduction to Video Game Programming (VGP) Mr. Shultz

Today’s Objective(s) and Bell-Ringer Bell-Ringer Assignment 1.What is an algorithm? 2.What is the pattern of designing and building computer software? 3.What are the four phases of the software development cycle? Objective Given the Alice textbook, TSW correctly describe the software development life cycle with no errors. (BUS )

Bell-Ringer 1. What is an algorithm? A step-by-step process that can be clearly defined

Bell-Ringer 2. What is the pattern of designing and building computer software? The software development cycle

Bell-Ringer 3. What are the four phases of the software development cycle? Design Implement Test Debug

Software Development Cycle Design Describe the objects, methods, and initial scene for the new Alice world. Debug Correct each method’s design and coding, and the initial state of the world Implement Add the necessary objects to the world, position them, and code their methods. Test Test each method to see if it works by itself and with other methods.

New Class Work Alice Book Project 2 Worksheet 1  After answering question 17  Go to page 69, open Alice, follow steps  Open the skaterHello file from your Z drive  Save it as skaterRoutine  Complete steps through top of page 89  Save your work OFTEN  Turn in worksheet If you have time, do more steps

Introduction to Video Game Programming (VGP) Mr. Shultz