Assignment #1: Building A Game Using Engine Components

Size: px
Start display at page:

Download "Assignment #1: Building A Game Using Engine Components"

Transcription

1 CSUS COLLEGE OF ENGINEERING AND COMPUTER SCIENCE Department of Computer Science CSc 165 Computer Game Architecture and Implementation Spring 2012 John Clevenger Assignment #1: Building A Game Using Engine Components Introduction Due: Thursday, February 23 rd (2 weeks) The objective of this assignment is to learn how to use game engine components to build a simple game. You are to create a simple 3D game, relying on existing game engine components to supply much of the underlying functionality while implementing some of the functionality yourself. The assignment assumes you will use the Simple Adaptable Game Engine (SAGE) provided to the class 1. Later in the semester you will be asked to develop a game of your own design. For this assignment you are to implement a game called 3D Treasure Hunt. In this game the player uses a keyboard and a game controller (e.g. an Xbox controller, guitar, or other device) to fly around in a 3D world collecting treasures. A treasure is collected (and removed from the game) when the player flys the camera into it (that is, when the camera location collides with the treasure object). The game must run in full-screen mode, with the game HUD displaying values showing the game score (see below) and the elapsed time. Your goal should be to create a simple game that meets the requirements. In particular, you should avoid the temptation to create a complex, fancy game; the goal here is to learn how to interface with the game engine and to implement some pieces of the engine. There will be plenty of time later for creating the next blockbuster game Game Program Requirements Your game should be defined by extending the class sage.app.basegame and overriding methods initsystem(), initgame() and update(). All logic for your game should be contained in these three methods, or in other user-written game classes. The game must run in Full-Screen Exclusive Mode (FSEM). The program must include your own implementation of a DisplaySystem class. Your DisplaySystem class must implement the SAGE interface IDisplaySystem (although you may find that many of the methods can have empty bodies for now). You may use the SAGE JOGLRenderer class for the renderer invoked by your DisplaySystem. 1 Anyone who wishes to try using another game engine, or to develop the necessary components on your own, must see me before attempting to do so; it s important to make sure that you understand the magnitude of what you are proposing to do relative to the limited time in which you have to do it. 1

2 You should use sage.scene.shape objects for your game objects (treasures) 2. Note that the default size of SAGE shapes varies; you may have to invoke scale() to get some objects to be sized as desired. (Note however that changing the scale of an object does not automatically update the default BoundingVolume associated with the object.) The game initialization code should create a number of objects of different types, randomly positioned in the world. You may manipulate the various object attributes (e.g. color) however you like to make the game more interesting. Your game must support player input actions handled by Action classes written by you (that is, you must write classes which implement sage.input.action.iaction and your game must utilize InputManager.associateAction() to associate input device actions with your Action classes). At least the following key mappings must be provided (you may provide additional mappings if you like): A/S/W/D: move camera left/right/forward/backward respectively. Note that all camera motions are relative to the camera s current UVN axes; thus for example the S key moves the camera in the direction of the camera s U axis while the W key moves the camera in the direction of its N axis. Left-arrow / Right-arrow: rotate the camera in the positive or negative direction around its V axis ( yaw ). Up-arrow / Down-arrow: rotate the camera in the positive or negative direction around its U axis ( pitch ). ESCAPE: quit the game. At least the following controller input mappings must be provided (you may provide additional mappings if you like): X-axis: move the camera left and right in the same manner as the A and S Y-axis: move the camera forward and backward in the same manner as the W and D RX-axis: yaw the camera around its V axis in the same manner as the Left- and Rightarrow RY-axis: pitch the camera around its U axis in the same manner as the Up- and Downarrow The game must include at least two HUD (Heads-Up Display) elements: the current score and the elapsed time in seconds. Each HUD element must be implemented using a class which extends sage.scene.hudobject. You may use sage.scene.hudstring (which extends HUDObject) to do this, or you may implement your own class extending HUDObject. You may decide on the specific scoring algorithm (that is, how the player improves the score). A simple method is to just count the number of treasures collected. A more interesting method is to set up a timer which periodically adds new treasure objects to the world and to compute the score as a ratio: the number of treasures the player has 2 You could instead define your own object classes, but they would have to extend sage.scene.scenenode in order to be renderable by SAGE and this is a non-trivial mechanism; we will be covering it later. 2

3 collected so far vs. the total number of treasures that have been placed in the world (so the score goes up as the player collects treasures but goes down each time a new treasure gets added to the world because the player s percentage has decreased). The game must display world axes showing where the world origin is located. The X axis should be red, the Y axis green, and the Z axis blue. The world axes must initially be visible. You may add an input command to toggle the axes off/on, but this is not required. (The simplest way to toggle the axes is to just remove them from the game world using the BaseGame method removegameworldobject(), and later add them back with addgameworldobject().) Coding Requirements Your code should be organized using Java packages. As the semester progresses you will be developing two sets of code: code for different games, and code comprising game engine routines which will replace corresponding SAGE routines. Therefore you will need at least two packages: one named (say) games which houses different games you develop, and one named (say) mygameengine which houses game engine components which you develop to replace SAGE routines. (You might wish to choose a better name for your engine than mygameengine ; that s up to you.) Since you will be developing several games and multiple game engine components during the semester, you should use subpackages in your games and gameengine packages to house various related elements. For example, classes which are part of the Treasure Hunt game itself would go in package games.treasurehunt while classes which are part of your game engine (e.g. DisplaySystem) would go in package mygameengine.display (in the case of DisplaySystem). Your code should follow the Java convention that package names always start with a lower-case letter. Look through the SAGE package structure for additional insights. It is a requirement that your program run correctly when invoked from a command prompt using the command java a1.starter. Note that this means your Starter class must be contained in a package named a1 and that it must contain the required public static void main(string [] args) Java method. Note however that the rest of your code does not need to be (and should not be) contained in package a1. The Starter code in package a1 must simply import the game from the separate games.xxx package and execute it by invoking its start() method. Additional Notes The SAGE engine was designed to help with the development of game engine components; you should take advantage of this. For example, this assignment requires you to develop a display system class. This class already exists in SAGE, so you can use the SAGE version to test your program: simply changing your game so that it imports the class sage.display.displaysystem instead of your version from your package mygameengine.display allows you to see what your program does when it has a working display system implementation plugged in. As another example, SAGE has a variety of IAction implementations for camera controls (in sage.input.action); you can test whether your code is working correctly by plugging in the corresponding SAGE 3

4 IAction class. (Of course, you must submit the completed program using YOUR implementations, not those in SAGE ) If you do not have a controller that implements the X, Y, RX, and RY axes you may check one out from me for a short time for testing purposes. You may use the SAGE InputManager class; you do not have to write your own input manager. If you are going to work on your own machine you will need to install on it both SAGE and the various support packages SAGE needs (this include the JOGL OpenGL package, the graphicslib3d library, and the JInput package). All of these can be obtained by downloading the file JavaGaming.zip on my 165 web page; see the README.TXT file in that zip file for installation instructions. Treasures are collected by running into them with the camera. This means you must do collision detection between the camera location and the bounding volumes of the treasure shapes. SAGE provides a BoundingVolume for most of its shapes (those which do not do this state that fact in their JavaDoc header comments). See the sample in the Lecture Notes for details on how to detect collisions and remove objects from the gameworld. You will find several classes in the graphicslib3d library (which comes with SAGE) that will likely be helpful. These include Point3D (a 3D point), Vector3D (a 3D vector) and Matrix3D (a 4x4 transformation matrix). Note that every SAGE shape (sage.scene.scenenode) contains a set of three Matrix3D objects which specify respectively the current translation, rotation and scaling transformations applied to the object. These transformations can be obtained/modified with the appropriate getter/setter methods (the transforms are referred to as local transforms; so for example to get the current translation of an object you would call getlocaltranslation()). Note that there are also other transforms in SAGE shapes called world transforms; your program should not mess with these (we ll see later what they are for). See the SAGE JavaDoc which comes with the installed system for further details. It is a requirement that your program run correctly on a machine in RVR 5029 when invoked from a command prompt using the command java a1.starter. I will test it that way after you hand it in; you should test it that way before you hand it in. 4

5 Deliverables Submit to SacCT a single ZIP file containing (1) your Java source code files; (2) the compiled (.class) files for each of your Java source files; (3) a short Player s Guide document (MS-Word, PDF, or Text) describing how your game works, including what all the player input commands do and how the scoring works. Note that the submitted files must be organized in the proper hierarchy in the ZIP file (that is, the.class files must be contained within the appropriate subdirectories). All submitted work must be strictly your own. (Later in the semester you will be given the opportunity to do game development with a partner; this assignment is to be done on your own). Be sure to take note of the requirement (stated in the course syllabus) for keeping a backup copy of all work. JC:jc 2/8/12 5

Assignment # 2: Design Patterns and GUIs

Assignment # 2: Design Patterns and GUIs CSUS COLLEGE OF ENGINEERING AND COMPUTER SCIENCE Department of Computer Science CSc 133 Object-Oriented Computer Graphics Programming Spring 2014 John Clevenger Assignment # 2: Design Patterns and GUIs

More information

Java game programming. Game engines. Fayolle Pierre-Alain

Java game programming. Game engines. Fayolle Pierre-Alain Java game programming Game engines 2010 Fayolle Pierre-Alain Plan Some definitions List of (Java) game engines Examples of game engines and their use A first and simple definition A game engine is a (complex)

More information

Excel Tutorial. Bio 150B Excel Tutorial 1

Excel Tutorial. Bio 150B Excel Tutorial 1 Bio 15B Excel Tutorial 1 Excel Tutorial As part of your laboratory write-ups and reports during this semester you will be required to collect and present data in an appropriate format. To organize and

More information

Introduction to scripting with Unity

Introduction to scripting with Unity Introduction to scripting with Unity Scripting is an essential part of Unity as it defines the behaviour of your game. This tutorial will introduce the fundamentals of scripting using Javascript. No prior

More information

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart Spotfire v6 New Features TIBCO Spotfire Delta Training Jumpstart Map charts New map chart Layers control Navigation control Interaction mode control Scale Web map Creating a map chart Layers are added

More information

Presents. AccuDraw. Instructor Pam Roberts pamroberts@cadassist.com www.cadassist.com

Presents. AccuDraw. Instructor Pam Roberts pamroberts@cadassist.com www.cadassist.com Presents AccuDraw Instructor Pam Roberts pamroberts@cadassist.com www.cadassist.com ACCUDRAW AccuDraw gives user an easy way to input accurate points. By default with MicroStation V8 AccuDraw will automatically

More information

Excel -- Creating Charts

Excel -- Creating Charts Excel -- Creating Charts The saying goes, A picture is worth a thousand words, and so true. Professional looking charts give visual enhancement to your statistics, fiscal reports or presentation. Excel

More information

Ar Drone Controller Version 1.6.0 and above

Ar Drone Controller Version 1.6.0 and above Ar Drone Controller Version 1.6.0 and above Getting started Menu Introduction Prerequisites Main screen 3.1 Menu 3.2 Toolbar Settings Keyboard configuration Joystick configuration RTH Return to home Wifi

More information

TIBCO Spotfire Web Player Release Notes

TIBCO Spotfire Web Player Release Notes Software Release 7.0 February 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY TO ENABLE

More information

MovieClip, Button, Graphic, Motion Tween, Classic Motion Tween, Shape Tween, Motion Guide, Masking, Bone Tool, 3D Tool

MovieClip, Button, Graphic, Motion Tween, Classic Motion Tween, Shape Tween, Motion Guide, Masking, Bone Tool, 3D Tool 1 CEIT 323 Lab Worksheet 1 MovieClip, Button, Graphic, Motion Tween, Classic Motion Tween, Shape Tween, Motion Guide, Masking, Bone Tool, 3D Tool Classic Motion Tween Classic tweens are an older way of

More information

Rapid Android Development

Rapid Android Development Extracted from: Rapid Android Development Build Rich, Sensor-Based Applications with Processing This PDF file contains pages extracted from Rapid Android Development, published by the Pragmatic Bookshelf.

More information

mouse (or the option key on Macintosh) and move the mouse. You should see that you are able to zoom into and out of the scene.

mouse (or the option key on Macintosh) and move the mouse. You should see that you are able to zoom into and out of the scene. A Ball in a Box 1 1 Overview VPython is a programming language that is easy to learn and is well suited to creating 3D interactive models of physical systems. VPython has three components that you will

More information

CHAPTER 19 Programming Lists of Data

CHAPTER 19 Programming Lists of Data CHAPTER 19 Programming Lists of Data As you ve already seen, apps handle events and make decisions; such processing is fundamental to computing. But, the other fundamental part of an app is its data the

More information

Basic Instructions for Beginning in Second Life and ClevelandPlus (formerly known as OneCleveland)

Basic Instructions for Beginning in Second Life and ClevelandPlus (formerly known as OneCleveland) Basic Instructions for Beginning in Second Life and ClevelandPlus (formerly known as OneCleveland) Getting Started in Second Life Go to www.secondlife.com. Click on the large button that says Free Membership,

More information

PA8: 2048 GUI (100 Points)

PA8: 2048 GUI (100 Points) PA8: 2048 GUI (100 Points) Due: 11:59pm, Thursday, May 28th Overview You ve written a text-based 2048 but now it s time to code the GUI aspect! You will be learning how to use the JavaFX library to create

More information

Lecture 2 Mathcad Basics

Lecture 2 Mathcad Basics Operators Lecture 2 Mathcad Basics + Addition, - Subtraction, * Multiplication, / Division, ^ Power ( ) Specify evaluation order Order of Operations ( ) ^ highest level, first priority * / next priority

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Pacman 3D. Suggestions Multiple levels Powerups that let Pacman chase and eat Ghosts; ghosts need to respawn

Pacman 3D. Suggestions Multiple levels Powerups that let Pacman chase and eat Ghosts; ghosts need to respawn Mario 3D Mario is a classic game featuring a side scrolling 2D Mario character that can jump to avoid moving enemies and collect coins. In this 3D version, you will program a Mario like character to respond

More information

FLIGHT SIMULATOR QUICK START GUIDE

FLIGHT SIMULATOR QUICK START GUIDE FLIGHT SIMULATOR QUICK START GUIDE XPlane 10 Developed by: Laminar Research Copyright: 2012/ Aerosoft GmbH Airport Paderborn/Lippstadt D33142 Bueren, Germany Tel: +49 (0) 29 55 / 76 0310 Fax: +49 (0) 29

More information

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine The Blender Game Engine This week we will have an introduction to the Game Engine build

More information

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.

To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click. EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet

More information

A Sample OFBiz application implementing remote access via RMI and SOAP Table of contents

A Sample OFBiz application implementing remote access via RMI and SOAP Table of contents A Sample OFBiz application implementing remote access via RMI and SOAP Table of contents 1 About this document... 2 2 Introduction... 2 3 Defining the data model... 2 4 Populating the database tables with

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Programming Lists of Data

Programming Lists of Data Chapter 19 Programming Lists of Data As you ve already seen, apps handle events and make decisions; such processing is fundamental to computing. But the other fundamental part of an app is its data the

More information

Tic, Tie & Calculate Quick Start Guide. Quick Start Guide

Tic, Tie & Calculate Quick Start Guide. Quick Start Guide Quick Start Guide 1 Table of Contents Quick Start Guide... 3 Welcome to Tic, Tie & Calculate... 3 Features Overview... 3 Important Installation Notes... 3 Installation... 4 Step 1: Receive Account Creation

More information

Lab 3 - DC Circuits and Ohm s Law

Lab 3 - DC Circuits and Ohm s Law Lab 3 DC Circuits and Ohm s Law L3-1 Name Date Partners Lab 3 - DC Circuits and Ohm s Law OBJECTIES To learn to apply the concept of potential difference (voltage) to explain the action of a battery in

More information

1 CHORD LENGTH OR UNIFORM PARAMETERIZATION

1 CHORD LENGTH OR UNIFORM PARAMETERIZATION 1 CHORD LENGTH OR UNIFORM PARAMETERIZATION All of the better high end packages that implement Nurbs Modeling tools will offer the choice of constructing curves using either Uniform or Chord Length parameterization.

More information

Implementing SQI via SOAP Web-Services

Implementing SQI via SOAP Web-Services IST-2001-37264 Creating a Smart Space for Learning Implementing SQI via SOAP Web-Services Date: 10-02-2004 Version: 0.7 Editor(s): Stefan Brantner, Thomas Zillinger (BearingPoint) 1 1 Java Archive for

More information

Using the Java Vision Sample Program

Using the Java Vision Sample Program Java Sample The sample Java Vision program demonstrates using some of the NIVision library functions to find the 4 rectangular targets that are part of the 2012 FRC game challenge. The sample program includes

More information

Mocean Android SDK Developer Guide

Mocean Android SDK Developer Guide Mocean Android SDK Developer Guide For Android SDK Version 3.2 136 Baxter St, New York, NY 10013 Page 1 Table of Contents Table of Contents... 2 Overview... 3 Section 1 Setup... 3 What changed in 3.2:...

More information

Name Partners Date. Energy Diagrams I

Name Partners Date. Energy Diagrams I Name Partners Date Visual Quantum Mechanics The Next Generation Energy Diagrams I Goal Changes in energy are a good way to describe an object s motion. Here you will construct energy diagrams for a toy

More information

A Quick Start Guide to Using PowerPoint For Image-based Presentations

A Quick Start Guide to Using PowerPoint For Image-based Presentations A Quick Start Guide to Using PowerPoint For Image-based Presentations By Susan Jane Williams & William Staffeld, Knight Visual Resources Facility College of Architecture, Art and Planning Cornell University.

More information

Graphics Input Primitives. 5. Input Devices Introduction to OpenGL. String Choice/Selection Valuator

Graphics Input Primitives. 5. Input Devices Introduction to OpenGL. String Choice/Selection Valuator 4ICT10 Computer Graphics and Virtual Reality 5. Input Devices Introduction to OpenGL Dr Ann McNamara String Choice/Selection Valuator Graphics Input Primitives Locator coordinate pair x,y Pick required

More information

Last Team Standing Creator GUIDE

Last Team Standing Creator GUIDE GUIDE 1 INTRODUCTION Upon entering the GTA Online Creator tool, you ll be presented with multiple Job types that are available to create (01). 01 2 02 After selecting Last Team Standing [LTS], you will

More information

ART 269 3D Animation Fundamental Animation Principles and Procedures in Cinema 4D

ART 269 3D Animation Fundamental Animation Principles and Procedures in Cinema 4D ART 269 3D Animation Fundamental Animation Principles and Procedures in Cinema 4D Components Tracks An animation track is a recording of a particular type of animation; for example, rotation. Some tracks

More information

Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright

Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright You do NOT have to turn anything in I can see your scores and grades online in my Teacher Manager. Read this syllabus carefully! Step

More information

Homeschool Programming, Inc.

Homeschool Programming, Inc. Printed Course Overview Course Title: TeenCoder: Game Programming TeenCoder: Game Programming Printed Course Syllabus and Planner Updated October, 2015 Textbook ISBN: 978-0-9887033-2-2, published 2013

More information

Sharing Software. Chapter 14

Sharing Software. Chapter 14 Chapter 14 14 Sharing Software Sharing a tool, like a software application, works differently from sharing a document or presentation. When you share software during a meeting, a sharing window opens automatically

More information

3D Interactive Information Visualization: Guidelines from experience and analysis of applications

3D Interactive Information Visualization: Guidelines from experience and analysis of applications 3D Interactive Information Visualization: Guidelines from experience and analysis of applications Richard Brath Visible Decisions Inc., 200 Front St. W. #2203, Toronto, Canada, rbrath@vdi.com 1. EXPERT

More information

ASSEMBLY PROGRAMMING ON A VIRTUAL COMPUTER

ASSEMBLY PROGRAMMING ON A VIRTUAL COMPUTER ASSEMBLY PROGRAMMING ON A VIRTUAL COMPUTER Pierre A. von Kaenel Mathematics and Computer Science Department Skidmore College Saratoga Springs, NY 12866 (518) 580-5292 pvonk@skidmore.edu ABSTRACT This paper

More information

UNIVERSAL REMOTE CONTROL GUIDE

UNIVERSAL REMOTE CONTROL GUIDE UNIVERSAL REMOTE CONTROL GUIDE Service provided by We Keep You Connected Your new AT6400 AllTouch Infrared (IR) Universal Remote Control (remote) is a true universal remote, functioning as four remotes

More information

Lesson 1 - Creating a Project

Lesson 1 - Creating a Project Lesson 1 - Creating a Project The goals for this lesson are: Create a project A project is a collection entity for an HDL design under specification or test. Projects ease interaction with the tool and

More information

By Peggy Fisher Edited by Brad Gibson

By Peggy Fisher Edited by Brad Gibson KODU Learning Guide By Peggy Fisher Edited by Brad Gibson Page 1 of 10 Contents Suggested Videos... 3 Getting Started - Setup... 4 Next Steps... 4 Tips and Tricks... 9 Training Manuals... 10 Support Channels...

More information

Nero MediaStreaming for MCE Manual

Nero MediaStreaming for MCE Manual Nero MediaStreaming for MCE Manual Nero AG Copyright and Trademark Information This manual and all its contents are protected by copyright and are the property of Nero AG. All rights reserved. This manual

More information

Topics. Introduction. Java History CS 146. Introduction to Programming and Algorithms Module 1. Module Objectives

Topics. Introduction. Java History CS 146. Introduction to Programming and Algorithms Module 1. Module Objectives Introduction to Programming and Algorithms Module 1 CS 146 Sam Houston State University Dr. Tim McGuire Module Objectives To understand: the necessity of programming, differences between hardware and software,

More information

A Tutorial for 3D Point Cloud Editor

A Tutorial for 3D Point Cloud Editor A Tutorial for 3D Point Cloud Editor Yue Li and Matthew Hielsberg Texas A&M University April 9, 2012 Abstract This tutorial illustrates the uses of the point cloud editor with examples. 1 Introduction

More information

MET 306. Activity 8a. Mechanism Design Creo 2.0 Level 7 POINT A GROUND LINK LINK 1 LINK 2 LINK 3 POINT B 10/15/2010 1

MET 306. Activity 8a. Mechanism Design Creo 2.0 Level 7 POINT A GROUND LINK LINK 1 LINK 2 LINK 3 POINT B 10/15/2010 1 Mechanism Design Creo 2.0 Level 7 POINT A LINK 1 GROUND LINK LINK 2 LINK 3 POINT B 10/15/2010 1 Download parts ground, key, link_1, link_2, link_3 and pulley from the V:/MET_306/Activity_8_Creo drive.

More information

Questions: Does it always take the same amount of force to lift a load? Where should you press to lift a load with the least amount of force?

Questions: Does it always take the same amount of force to lift a load? Where should you press to lift a load with the least amount of force? Lifting A Load 1 NAME LIFTING A LOAD Questions: Does it always take the same amount of force to lift a load? Where should you press to lift a load with the least amount of force? Background Information:

More information

Introduction to Eclipse

Introduction to Eclipse Introduction to Eclipse Overview Eclipse Background Obtaining and Installing Eclipse Creating a Workspaces / Projects Creating Classes Compiling and Running Code Debugging Code Sampling of Features Summary

More information

After that you can log in and start creating games or playing existing games.

After that you can log in and start creating games or playing existing games. Magos Lite http://magos.pori.tut.fi/ Magos Lite (ML) can be played directly from a browser. It is optimized for Chrome but will work on other major browsers, except Internet Explorer (not supported). ML

More information

CREATE A 3D MOVIE IN DIRECTOR

CREATE A 3D MOVIE IN DIRECTOR CREATE A 3D MOVIE IN DIRECTOR 2 Building Your First 3D Movie in Director Welcome to the 3D tutorial for Adobe Director. Director includes the option to create three-dimensional (3D) images, text, and animations.

More information

Quick Tutorial. Overview. The NVIDIA Software Improvement Program. Creating an Effect

Quick Tutorial. Overview. The NVIDIA Software Improvement Program. Creating an Effect Quick Tutorial Overview This chapter presents a very short FX Composer 2.5 tutorial to quickly introduce you to several convenient and powerful new features. We highly recommend this tutorial, particularly

More information

VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2

VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2 VisualCalc AdWords Dashboard Indicator Whitepaper Rev 3.2 873 Embarcadero Drive, Suite 3 El Dorado Hills, California 95762 916.939.2020 www.visualcalc.com Introduction The VisualCalc AdWords Dashboard

More information

GUIs with Swing. Principles of Software Construction: Objects, Design, and Concurrency. Jonathan Aldrich and Charlie Garrod Fall 2012

GUIs with Swing. Principles of Software Construction: Objects, Design, and Concurrency. Jonathan Aldrich and Charlie Garrod Fall 2012 GUIs with Swing Principles of Software Construction: Objects, Design, and Concurrency Jonathan Aldrich and Charlie Garrod Fall 2012 Slides copyright 2012 by Jeffrey Eppinger, Jonathan Aldrich, William

More information

Kodu Curriculum: Getting Started with Keyboard and Mouse

Kodu Curriculum: Getting Started with Keyboard and Mouse Kodu Curriculum: Getting Started with Keyboard and Mouse PC Requirements 1. Kodu requires a Windows Operating System 2. DirectX9 graphics 3. Shader Model 2.0 or greater. How to Check Your DirectX Version

More information

CNC Turning Training CNC MILLING / ROUTING TRAINING GUIDE. www.denford.co.uk Page 1

CNC Turning Training CNC MILLING / ROUTING TRAINING GUIDE. www.denford.co.uk Page 1 CNC Turning Training www.denford.co.uk Page 1 Table of contents Introduction... 3 Start the VR Turning Software... 3 Configure the software for the machine... 4 Load your CNC file... 5 Configure the tooling...

More information

4D Interactive Model Animations

4D Interactive Model Animations Animation Using 4D Interactive Models MVSand EVS-PRO have two distinctly different animation concepts. Our traditional animations consist of a sequence of bitmap images that have been encoded into an animation

More information

Vectors. Objectives. Assessment. Assessment. Equations. Physics terms 5/15/14. State the definition and give examples of vector and scalar variables.

Vectors. Objectives. Assessment. Assessment. Equations. Physics terms 5/15/14. State the definition and give examples of vector and scalar variables. Vectors Objectives State the definition and give examples of vector and scalar variables. Analyze and describe position and movement in two dimensions using graphs and Cartesian coordinates. Organize and

More information

Flash Tutorial Part I

Flash Tutorial Part I Flash Tutorial Part I This tutorial is intended to give you a basic overview of how you can use Flash for web-based projects; it doesn t contain extensive step-by-step instructions and is therefore not

More information

Game Center Programming Guide

Game Center Programming Guide Game Center Programming Guide Contents About Game Center 8 At a Glance 9 Some Game Resources Are Provided at Runtime by the Game Center Service 9 Your Game Displays Game Center s User Interface Elements

More information

If this PDF has opened in Full Screen mode, you can quit by pressing Alt and F4, or press escape to view in normal mode. Click here to start.

If this PDF has opened in Full Screen mode, you can quit by pressing Alt and F4, or press escape to view in normal mode. Click here to start. You are reading an interactive PDF. If you are reading it in Adobe s Acrobat reader, you will be able to take advantage of links: where text is blue, you can jump to the next instruction. In addition you

More information

Academic Support Center. Using the TI-83/84+ Graphing Calculator PART II

Academic Support Center. Using the TI-83/84+ Graphing Calculator PART II Academic Support Center Using the TI-83/84+ Graphing Calculator PART II Designed and Prepared by The Academic Support Center Revised June 2012 1 Using the Graphing Calculator (TI-83+ or TI-84+) Table of

More information

AR-Drone: GPS Coordinates & GUI Revamp Adam Howell, Cord Tucker and Tarryn Schantell

AR-Drone: GPS Coordinates & GUI Revamp Adam Howell, Cord Tucker and Tarryn Schantell AR-Drone: GPS Coordinates & GUI Revamp Adam Howell, Cord Tucker and Tarryn Schantell 1 Table of Contents: Executive Summary 3 Project Description 4 Background and Competition 7 Innovations 9 Impact 10

More information

Sharing Presentations, Documents, and Whiteboards

Sharing Presentations, Documents, and Whiteboards Chapter 19 19 Sharing Presentations, Documents, and Whiteboards Your user role in an event determines your level of sharing. Whichever role you take, the following table describes the basic tasks associated

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

The Darwin Game 2.0 Programming Guide

The Darwin Game 2.0 Programming Guide The Darwin Game 2.0 Programming Guide In The Darwin Game creatures compete to control maps and race through mazes. You play by programming your own species of creature in Java, which then acts autonomously

More information

Basic Components of an LP:

Basic Components of an LP: 1 Linear Programming Optimization is an important and fascinating area of management science and operations research. It helps to do less work, but gain more. Linear programming (LP) is a central topic

More information

Action settings and interactivity

Action settings and interactivity Interactivity in Powerpoint Powerpoint includes a small set of actions that can be set to occur when the user clicks, or simply moves the cursor over an object. These actions consist of links to other

More information

Charts for SharePoint

Charts for SharePoint KWizCom Corporation Charts for SharePoint Admin Guide Copyright 2005-2015 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada E-mail:

More information

Introduction to SketchUp

Introduction to SketchUp Introduction to SketchUp This guide is handy to read if you need some basic knowledge to get started using SketchUp. You will see how to download and install Sketchup, and learn how to use your mouse (and

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

Car Racing Game. Figure 1 The Car Racing Game

Car Racing Game. Figure 1 The Car Racing Game CSEE 4840 Embedded System Design Jing Shi (js4559), Mingxin Huo (mh3452), Yifan Li (yl3250), Siwei Su (ss4483) Car Racing Game -- Project Design 1 Introduction For this Car Racing Game, we would like to

More information

Week 2 Practical Objects and Turtles

Week 2 Practical Objects and Turtles Week 2 Practical Objects and Turtles Aims and Objectives Your aim in this practical is: to practise the creation and use of objects in Java By the end of this practical you should be able to: create objects

More information

Abstract. Introduction

Abstract. Introduction SPACECRAFT APPLICATIONS USING THE MICROSOFT KINECT Matthew Undergraduate Student Advisor: Dr. Troy Henderson Aerospace and Ocean Engineering Department Virginia Tech Abstract This experimental study involves

More information

L OCUTOUR. Get Ready to Spell! MULTIMEDIA COGNITIVE REHABILITATION

L OCUTOUR. Get Ready to Spell! MULTIMEDIA COGNITIVE REHABILITATION L OCUTOUR MULTIMEDIA COGNITIVE REHABILITATION Get Ready to Spell! Get Ready to Spell! Why Use This Program? This program is based on the observation that we learn by repetition. Many of the activities

More information

einstruction CPS (Clicker) Instructions

einstruction CPS (Clicker) Instructions Two major approaches to run Clickers a. Anonymous b. Tracked Student picks any pad as s/he enters classroom; Student responds to question, but pad is not linked to student; Good for controversial questions,

More information

CS 170, Section 000, Fall 2009

CS 170, Section 000, Fall 2009 Lecture 3: Unix Recap, Java (cont d) CS 170, Section 000, Fall 2009 3 September 2009 Lecture Plan Logistics (important announcements) Lab1 postmortem Unix: commands, examples, resources Java recap from

More information

Kodu Curriculum: Single Session Intro

Kodu Curriculum: Single Session Intro Kodu Curriculum: Single Session Intro Table of Contents Kodu Curriculum: Single Session Intro... 2 Kodu Description... 2 Teaching with Kodu... 2 Basic Navigation (5 min)... 3 Creating a Simple Program

More information

Wincopy Screen Capture

Wincopy Screen Capture Wincopy Screen Capture Version 4.0 User Guide March 26, 2008 Please visit www.informatik.com for the latest version of the software. Table of Contents General...3 Capture...3 Capture a Rectangle...3 Capture

More information

Experience Design Assignment 2 : Shoot-em-up

Experience Design Assignment 2 : Shoot-em-up Experience Design Assignment 2 : Shoot-em-up Conor O'Kane, 2013 conor.okane@rmit.edu.au This work is licensed under a Creative Commons Attribution 3.0 Unported License. Resources shmup-dev.com A forum

More information

Designing a Graphical User Interface

Designing a Graphical User Interface Designing a Graphical User Interface 1 Designing a Graphical User Interface James Hunter Michigan State University ECE 480 Design Team 6 5 April 2013 Summary The purpose of this application note is to

More information

CATIA Basic Concepts TABLE OF CONTENTS

CATIA Basic Concepts TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Manual Format...2 Log on/off procedures for Windows...3 To log on...3 To logoff...7 Assembly Design Screen...8 Part Design Screen...9 Pull-down Menus...10 Start...10

More information

Multi-Touch Ring Encoder Software Development Kit User s Guide

Multi-Touch Ring Encoder Software Development Kit User s Guide Multi-Touch Ring Encoder Software Development Kit User s Guide v2.0 Bulletin #1198 561 Hillgrove Avenue LaGrange, IL 60525 Phone: (708) 354-1040 Fax: (708) 354-2820 E-mail: instinct@grayhill.com On the

More information

Congratulations on purchasing Molten MIDI B by Molten Voltage

Congratulations on purchasing Molten MIDI B by Molten Voltage OWNER S MANUAL Congratulations on purchasing Molten MIDI B by Molten Voltage Molten MIDI B is designed to control the Digitech Bass Whammy. When configured for Whammy & Clock output, Molten MIDI B also

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

More information

The Java Series. Java Essentials I What is Java? Basic Language Constructs. Java Essentials I. What is Java?. Basic Language Constructs Slide 1

The Java Series. Java Essentials I What is Java? Basic Language Constructs. Java Essentials I. What is Java?. Basic Language Constructs Slide 1 The Java Series Java Essentials I What is Java? Basic Language Constructs Slide 1 What is Java? A general purpose Object Oriented programming language. Created by Sun Microsystems. It s a general purpose

More information

CATIA Electrical Harness Design TABLE OF CONTENTS

CATIA Electrical Harness Design TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Electrical Harness Design...2 Electrical Harness Assembly Workbench...4 Bottom Toolbar...5 Measure...5 Electrical Harness Design...7 Defining Geometric Bundles...7 Installing

More information

CURRICULUM VITAE EDUCATION:

CURRICULUM VITAE EDUCATION: CURRICULUM VITAE Jose Antonio Lozano Computer Science and Software Development / Game and Simulation Programming Program Chair 1902 N. Loop 499 Harlingen, TX 78550 Computer Sciences Building Office Phone:

More information

Instructions for Labs

Instructions for Labs CSE 241 Algorithms and Data Structures Jan 12, 2014 Instructions for Labs 1 Basic Information For each lab, you must check in the code before class on the day when the lab is due. The code will be written

More information

Getting Started with the Cadence Software

Getting Started with the Cadence Software 1 Getting Started with the Cadence Software In this chapter, you learn about the Cadence software environment and the Virtuoso layout editor as you do the following tasks: Copying the Tutorial Database

More information

Running your first Linux Program

Running your first Linux Program Running your first Linux Program This document describes how edit, compile, link, and run your first linux program using: - Gnome a nice graphical user interface desktop that runs on top of X- Windows

More information

Basic Graphing Functions for the TI-83 and TI-84

Basic Graphing Functions for the TI-83 and TI-84 Basic Graphing Functions for the TI-83 and TI-84 The primary benefits of the TI-83 and TI-84 are the abilities to graph functions and to identify properties those functions possess. The purpose of this

More information

Classroom Exercise ASTR 390 Selected Topics in Astronomy: Astrobiology A Hertzsprung-Russell Potpourri

Classroom Exercise ASTR 390 Selected Topics in Astronomy: Astrobiology A Hertzsprung-Russell Potpourri Classroom Exercise ASTR 390 Selected Topics in Astronomy: Astrobiology A Hertzsprung-Russell Potpourri Purpose: 1) To understand the H-R Diagram; 2) To understand how the H-R Diagram can be used to follow

More information

Hello Purr. What You ll Learn

Hello Purr. What You ll Learn Chapter 1 Hello Purr This chapter gets you started building apps. It presents the key elements of App Inventor the Component Designer and the Blocks Editor and leads you through the basic steps of creating

More information

Using the Spectrophotometer

Using the Spectrophotometer Using the Spectrophotometer Introduction In this exercise, you will learn the basic principals of spectrophotometry and and serial dilution and their practical application. You will need these skills to

More information

TI-83/84 Plus Graphing Calculator Worksheet #2

TI-83/84 Plus Graphing Calculator Worksheet #2 TI-83/8 Plus Graphing Calculator Worksheet #2 The graphing calculator is set in the following, MODE, and Y, settings. Resetting your calculator brings it back to these original settings. MODE Y Note that

More information

BCC Multi Stripe Wipe

BCC Multi Stripe Wipe BCC Multi Stripe Wipe The BCC Multi Stripe Wipe is a similar to a Horizontal or Vertical Blind wipe. It offers extensive controls to randomize the stripes parameters. The following example shows a Multi

More information

WIRELESS LANDLINE FEATURES USER GUIDE

WIRELESS LANDLINE FEATURES USER GUIDE WIRELESS LANDLINE FEATURES USER GUIDE TABLE OF CONTENTS Overview Calling...1. Feature set available with Wireless Landline...1. How to configure your Wireless Landline feature settings...2. MySpark...2.

More information

Blackboard s Collaboration Tool

Blackboard s Collaboration Tool Blackboard s Collaboration Tool Using Blackboard s Collaboration Tool, instructors can create and host a course-related chat session or virtual classroom in which students and instructors can interact

More information

Formulas, Functions and Charts

Formulas, Functions and Charts Formulas, Functions and Charts :: 167 8 Formulas, Functions and Charts 8.1 INTRODUCTION In this leson you can enter formula and functions and perform mathematical calcualtions. You will also be able to

More information