Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please help! The skeleton code that needs to be filled in is posted below question. There are no variables, coordinates, or bounds provided for this
Please help! The skeleton code that needs to be filled in is posted below question. There are no variables, coordinates, or bounds provided for this assignement; the only thing provided is the instructions and skeleton code.
https://www.greenfoot.org/doc
Completing the Homework 1. Modify the constructor of Pigworld so that the world is unbounded 2. Modify the constructor of Pigworld to add a Pig object at (x, y) location (400, 300). 3. Modify the act method of Pigworld to create a Mushroom object at a random x-coordinate at the top edge of the viewable area of the world. Make a new mushroom appear at the top on approximately 3% of all act calls. 4. Modify the act method of Mushroom to make mushrooms move down 1 unit toward the bottom of the screen on each act call. 5. Modify the act method of Pig so that the pig follows the mouse. That is, the pig's location is set to be that of the mouse cursor 6. Modify the constructor of Pigworld to make sure that the pig image stays on top of all mushroom images as the pig moves. 7. Modify the act method of Pig so that the pig "eats" one mushroom that it intersects when the mouse is clicked 8. Modify the act method of Mushroom so that the scenario stops running once a mushroom reaches the bottom of the viewable area of the world 9. Modify the act method of Pig so that the scenario stops running once the pig has eaten at least fifteen mushrooms. Note: You will have to add a field to the Pig class. And although it's not necessary, you will probably want to add a constructor to the Pig class to initialize this field
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started