Presentation is loading. Please wait.

Presentation is loading. Please wait.

Kakihijau.googlepages.com Introduction To Greenfoot Part-3.

Similar presentations


Presentation on theme: "Kakihijau.googlepages.com Introduction To Greenfoot Part-3."— Presentation transcript:

1 kakihijau.googlepages.com Introduction To Greenfoot Part-3

2 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 2 Disclaimer  This document is intended to give a beginner an introductory material for the Greenfoot system. Greenfoot is a software framework made by Poul Henriksen and Michael Koelling at University of Kent / Deakin University. More information can be found at http://www.greenfoot.org  This document is available „AS IS“ free of charge for personal use and non-commercial redistribution. It may not be sold for profit or included in other packages which are sold for profit without written authorisation. This document is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; your use of the document is at your sole risk. Reusing and modifying (part of) this document is allowed, as long as you state explicitly that your work is based on the original document produced by the copyright holder: Eueung Mulyana. The author can be contacted via eueung-[at]-yahoo.com (http://kakihijau.googlepages.com).

3 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 3 Purpose  This is the second part of the document „Introduction to Greenfoot“ and focuses on two topics: modification and programming of the wombats scenario  Part of the content of these slides is based on the Greenfoot Tutorial made by Michael Koelling, publicly accesible at the Greenfoot website, http://www.greenfoot.org

4 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 4 Outline  Changing the Behaviour  Changing Representations  Creating New Classes

5 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 5 Changing the Behaviour (1)  We want to change the behaviour of Wombat objects : instead of always turning left, they shall be able to turn to other directions in a random way  We will add an additional method, called turnRandom()  Open the source code of the Wombat class, add the following codes call turnLeft() turns times Generate a random number between 0 and 3

6 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 6 Changing the Behaviour (2) if you find leaves, eat ! if you don‘t find leaves, but you can move forward, then move! if you don‘t find leaves and you also cannot move, then turn to a random direction!

7 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 7 Changing the Behaviour (3)

8 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 8 Changing Representations (1)  Visual representation (image) of an object can be changed in two different ways –Changing the „class image“; in this way, all objects of the same class shall look the same (to the assigned class image) –Changing the image programmatically; in this way, objects of the same class might look different, depending on the implementation  These two ways might be combined!

9 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 9 Changing Representations (2)

10 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 10 Changing Representations (3)

11 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 11 Changing Representations (4) the result of populate() after changin the class image Additionally change the class image then add 2 objects after modification

12 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 12 Changing Representations (5) to set the image of an object programmatically

13 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 13 Changing Representations (6)

14 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 14 Creating New Classes (1)  We could not only modify the behaviour of objects, but also add a completely new type of objects i.e. create new classes  Right-click the class Actor and choose item „New subclass...“, enter the class name and select a class image in the dialog; Greenfoot will automatically generate your class !  In this case we add a new class, called Rock. The image for this class is already available in the wombats scenario folder class image for the Rock class images available in the wombats scenario folder

15 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 15 Creating New Classes (2)

16 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 16 Creating New Classes (3) check all Rock objects in front of you; if there is no Rock object, return true (i.e. okay it‘s clear!), otherwise return false (i.e. you cannot move!)  To stop wombats from walking through rocks...

17 Introduction to Greenfoot Eueung Mulyana | kakihijau.googlepages.com 17 Creating New Classes (4)


Download ppt "Kakihijau.googlepages.com Introduction To Greenfoot Part-3."

Similar presentations


Ads by Google