Java Game Engine Setting It Up.

Slides:



Advertisements
Similar presentations
Clicking on the link for the.tns file gives you will get the following screen: Select Save File and click OK.
Advertisements

Step 1 Login to NFA Course List. Step 2 Login Screen.
LET’S GET UPDATING FUN….FUN….FUN How to Update Your Web Site Presented by: Leonora Fimbres & Marci Haight February 13, 2002.
Using Eclipse. Getting Started There are three ways to create a Java project: 1:Select File > New > Project, 2 Select the arrow of the button in the upper.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Aspect-Oriented Software Development (AOSD) Additional Material Start Writing in AspectJ.
15-Jul-15 Starting Eclipse Just the basics. Getting Eclipse If you Google for “Eclipse”: The first hit is the home page, The second.
BoardMaker Ver 6 Creating Interactive Activities for the Classroom.
Eclipse IDE. 2 IDE Overview An IDE is an Interactive Development Environment Different IDEs meet different needs BlueJ and DrJava are designed as teaching.
A Prezi presentation is like creating a mind map. It is created on a blank canvas and you decide where the information goes on this canvas.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
How to Create an Electricity Timeline By: Mr. Toole.
Using Tiled. What is Tiled? It’s a level editor It allows game programmers to create their 2D game world with ease.
C OMP 401 E CLIPSE S ETUP Instructor: Robert Mills. John Hansen.
Drexel University Software Engineering Research Group 1 Eclipse for SE101.
CREATING LEARNING MODULES IN LCDS AUTHORING SUITE Lynn Bradshaw.
Plug-in Development Environment. Session Outline Tools Installation Configuration New Project Basic Debugging Remote Debugging.
A Small Tutorial on : 1) Managing Photos 2) Uploading Photos 3) Creating Blog.
1. 2 Introductions  Name?  What do you want to get out of this session?  To follow along with this presentation go to
C OMP 401 E CLIPSE S ETUP Graduate TA’s: Wade Gobel, Ben Newton.
A guide to creating a power point display Essentials Ctl M =New Slide: a new slide can be inserted. It is placed after the slide that you are viewing.
Unit 1: Java and Eclipse The Eclipse Development Environment.
Loading Audacity and the LAME encoder for MP3 exports.
GumTree Development Environment Setup Windows Only Compatible with Eclipse 3.2 M3 (Last update: 16/11/05)
Creating ontology Hands on! universAAL Training Day Barcelona, Spain 16 January 2014
Refactoring and Synchronization with the StarTeam Plug-in for Eclipse  Jim Wogulis  Principal Architect, Borland Software Corporation.
SAFARI ODBC INSTALLATION Go to the TRECA home WEB page.
Game Maker – Getting Started What is Game Maker?.
First Venture into the Android World Chapter 1 Part 2.
1 / 10 © 2006, Universal Tax Systems, Inc. All Rights Reserved. Using TaxWise Explorer TaxWise Explorer Objectives –In this chapter you will learn how.
Pocket Code (the app): Pocket Paint (tool for creating images):
Images Worksheet. Web template Download the template folder Unzip and save in your documents Rename the folder to “images work” without quotes.
By ALFREDO C. MEDRANO Planning Officer III. What is a website? A website is a collection of web pages (documents that are accessed through the Internet).
Uploading documents to the site Сlick “Add document” on the home page To send several files enable Add-on “Microsoft Office”
By ALFREDO C. MEDRANO Planning Officer III. What is a website? A website is a collection of web pages (documents that are accessed through the Internet).
Introduction to Eclipse Programming with an Integrated Development Environment.
Installing RandoNode Starter Kit OPEN Development Conference September 17, 2008 Kasi Perumal Consultant.
Time to apply stuff… Faculty of Mathematics and Physics Charles University in Prague 5 th October 2015 Workshop 1 – Java Wrestling.
How to create an educational wiki. Laurie Roberts 2010.
™ SimBot Simulation Instructions. Step 1 Click on “>>Missions
Lecture 3.1: Operator Precedence and Eclipse Tutorial Michael Hsu CSULA.
ML-Dev: SML Plug-in for Eclipse Yevgeniy Bangiyev 02/07/07 Yevgeniy Bangiyev 02/07/07.
PowerPoint Presentation
Internet Safety Final Day
How to set up your Inventor Drawing Pages
Graphical Output Basic Images.
Premiere – First Edits.
Controller.
Dropbox Basics.
Writing simple Java Web Services using Eclipse
Eclipse Navigation & Usage.
Impress presentation for 1st Level of Secondary Education Students which objective is to learn how to use Impress to make different presentations. Presentation.
I like to start with something non-descript; thus the blue
CCA Skill Certification
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
Question 1: What key on the keyboard is used to create a proportional shape? Control Key Tab Key Shift Key Delete Key.
Some Tips for Using Eclipse
Setting up Eclipse Locally
Install Ruby If you are running on Mac OS X, Ruby is preinstalled.
Create some project. Transferring an Android Application Project from One Instance of Eclipse to another.
Excel: Excel Basics Participation Project
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
Part 1. Preparing for the exercises
Introduction to PowerPoint
By Rajanikanth B Eclipse IDE Overview By Rajanikanth B
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
Working with Libraries
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
Presentation transcript:

Java Game Engine Setting It Up

Intro Java, at its core, is not friendly when it comes to making games. The process of doing something simple like drawing an image on the screen is a complicated process. Game development is a fantastic tool to use when really trying to gain a firm grasp on programming. It forces you to apply what you know, problem solve and learn new things every day. However, we do not want to bog you down learning the really complicated stuff and slowing down your creativity. As such, we have built a gaming engine that will allow you to do all of the common game development things with relative ease. Things like: Shapes, Images, Animation, Sounds, etc.

Pre-Built Game Project Below this presentation on the website you will see a download link for Pre-Built Game Project Download this file into your ICS2 folder, the file’s name is Game.zip In order to use this file, you will need to unzip it Select the Game.zip file by single clicking it At Home: Right-click the file and select Extract All At School: FileExtract This produces a folder named Game

Pre-Built Game Project The Game folder is to act as a template for all of your future games When you are ready to create a new game: Copy the Game folder (Select it and hit Ctrl-C) Go into your Workspace folder (should be called Programming) Paste the Game folder (Ctrl-V) Rename the folder to something descriptive of your new project If this is to be one of your Programming Assignments, first delete the folder you created at the beginning of the semester, e.g. PASS3, then rename Game to PASS3 Open Eclipse and Right-click in the Package Explorer on the left side Select Import…GeneralExisting Projects into Workspace Click Next Browse to your newly named folder Click OK then Finish

Pre-Built Game Project Your project is ready to go. To start working, click the arrow beside your project folder in the Package Explorer to expand its files Do the same for the src and (default package) folders Double-click Main.java to open it There is a lot of code here to start, when you are ready, the majority of your code will go into the Update() and Draw() code blocks (more on this later) HAVE FUN!