Building Memory… Day 3 – November 17, 2006. Two options to make Game graphical Game should extend some graphical component to allow us to put it on the.

Slides:



Advertisements
Similar presentations
The Web Wizards Guide to HTML Chapter Six Tables.
Advertisements

Robert Grant Senior Research Fellow St George’s, University of London
HISTORY AND DESIGN DOME EXHIBITION CHRONOLOGICAL ORDER.
(JUST LIKE PHASE 10 CARD GAME) pHase-ion. General Rules Each player is dealt 10 cards. The remaining cards are placed in the middle for a card pool from.
Making an Equation from a Table (Option 2) By: Mrs. Waters.
You can insert graphics onto your page by clicking on the Picture Frame Tool icon and then drawing a frame for your graphic. Double click in the frame.
Building Memory… Day 5 – November 27, Need to flip cards Create a remove method to remove from drawing canvas Call a show method to show on the.
Game Design and Programming. Objectives Classify the games How games are design How games are implemented What are the main components of a game engine.
Building Memory… Notes from class on 4/4/07. The Game First understand what we are trying to build. Then, create a list of requirements/functionality.
Building Memory… Day 4 – November 20, Some clean up from last time Applet class can now be run as either an Applet or an Application Made picture.
Building Memory… Day 7 – April 18, Mouse Listener Attached listeners to each card (but the back image only) When click event is generated, simply.
CSE 115 Week 12 March 31 – April 4, Announcements March 31 – Exam 8 March 31 – Exam 8 April 6 – Last day to turn in Lab 7 for a max grade of 100%,
Building Memory… Day 2 – November 15, What do we want the game to look like? Window to appear Start game button Difficulty level selection Number.
1 NetInsight Hands-On 10 October 2007
By :Juanita R. Martinez.  Competency 002: B Demonstrates knowledge of basic concepts related to computer animation.
Objectives Define and give examples of hardware and software, and describe the difference between them Identify the main hardware components of a computer.
Lesson 35: Review of the Java GUI. The JFrame, Container and JButton.
Jeopardy Start Click the Start button to go to the Category Board and begin the game. On the Category Board, click the button of your choice to select.
CHBT-01 Basic Micro process & Computer Operation
Pre-Lab 15B: Periodic Table Challenge
Build a HTML 5 App Octobershiner. What is a HTML 5 app ? What is a Web application ? Sth. In your browser Maybe a webpage or a game Multiple type of OS.
Hendrix Word Games: Memory Materials needed: 10 – 14 word cards, placed face down on table The first player turns over two cards. – If the cards are a.
Objectives of This Session
Lesson 34: Layering Images with Java GUI. The FlowLayout RECAP.
The Drawing program – Java Applets
Chapter 2: Rational Numbers 2.7 Probability of Compound Events.
Player Skills Profile Summer 2011 PRE-SEASON CAMP.
Graphics. What is a Graphic ? A Graphic is an image or a picture e.g. Pictures can be either drawn or painted. Pixel - Stands for Picture Element.
World Religions Tabulate Game. wild cards wild cards ordinary cards.
ANALYZING COGNITIVE DEVELOPMENT, PART 1. Your goal: Pick one concept (Wild Card is your choice), provide evidence to illustrate the concept. That’s all.
Intro to Multimedia Unit 1.
Contents page! I am going to compare the following: Price Megabytes Design Graphics Screen size Speed.
Event Card Tutorial Francelette’s Kindness Adventure.
What is MyPaint? MyPaint is a fast and easy open-source graphics application for digital painters. It lets you focus on the art instead of the program.
עקרונות תכנות מונחה עצמים תרגול 6 - GUI. Outline  Game of Life  Painting.
Review_6 AWT, Swing, ActionListener, and Graphics.
Panel -Distinct segment of comic -Combination of images and text -Sectioned off by lines/borders called frames.
Picking Apples. Subtraction game. Turn over two cards from 0-10 Work out the difference. If you have an apple with this amount put a counter on it. First.
Henry Brady Computer Components Unit 2 – Computer Systems.
Still Life Drawing Today you will be using your sketchbook.
CS 200 – Intro to GIMP The GNU Image Manipulation Program.
2-7 Probability of Compound Events. Independent Events – events that do not effect each other To calculate the probability of 2 independent events: Find.
By: Eliav Menachi.  Android custom 2D graphics library  OpenGL ES 1.0 for high performance 3D graphics.
1.6 What Is Fancy?. Video card Monitor BD-ROM drive : Blu-ray Disc Read-Only Memory 【藍光光碟唯讀記憶體 驅動器】 Blue-ray writer 【藍光光碟 驅動器】 Sound card and speakers.
Image from
$200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200.
Special Triangles Review
a card game overview groups of two; one is Row, the other Column
Board Games Students are to make their own board game
עקרונות תכנות מונחה עצמים
2.02C Frame-by-Frame Computer Animation Using PowerPoint
10:00.
by Pixer and Didney Animation Studios
Steal the pile cards game
First we need to draw a place table grid. Then write our number in it
مديريت موثر جلسات Running a Meeting that Works
Alphabet Bingo BINGO r g j l o d h s i n m f b y w q e BINGO f j s g m
Element, Compound or Mixture?
Unit 1 Research Methods (can be examined in Unit 1&2)
This shows the frameset container page which holds two additional pages in rows - the first row uses 50% of the page and the last row uses the rest. Note.
Progressive Response to Challenging Behavior
Bingo Example: Analysis
Building Memory… Day 3 – April 9, 2007.
Bingo Example: Analysis
Sequential Narration A SERIES of images that show a beginning, middle, and an end Four choices: Grid format (6 panels) Sequential Motion (6+ images) Comic.
Career choices Take a minute and think…..
I have… I have… Who has 3:40? Who has 12:20? I have… I have…
Quizlet By: Kimbra Amerman.
Progressive Response to Challenging Behavior
Presentation transcript:

Building Memory… Day 3 – November 17, 2006

Two options to make Game graphical Game should extend some graphical component to allow us to put it on the frame Game could contain some graphical components and would provide a way to display them on the frame.

Which one to pick? What if we pick incorrectly? What are the strengths and weaknesses of each choice? How long do we spend thinking about our choice?

Let’s vote Choice 1 was the winner So Game extends a Graphical Component – we picked a Column

Now what? What do we put in a column? A card! –What is a card? –It’s a graphic, well maybe a compound graphic, well maybe an image – a cse115.graphics.Image

Problem! Images need a DrawingCanvas Put on drawing canvas and run – still a problem!