Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercise - Define a Base Class I need this solved in swift playground please! Note The exercises below are based on a game where a
Exercise - Define a Base Class
I need this solved in swift playground please!
Note The exercises below are based on a game where a spaceship avoids obstacles in space. The ship is positioned at the bottom of a coordinate system and can only move left and right while obstacles "fall" from top to bottom. Throughout the exercises, you'll create classes to represent different types of spaceships that can be used in the game. Create a Spaceship class with three variable properties: name, health, and position. The default value of name should be an empty string and health should be 0 position will be represented by an Int where negative numbers place the ship further to the left and positive numbers place the ship further to the right. The default value of position should be0 Create a let constant called falcon and assign it to an instance of Spaceship. After initialization, set name to "Falcon". Go back and add a method called moveLeft() to the definition of Spaceship. This method should adjust the position of the spaceship to the left by one. Add a similar method called moveRight() that moves the spaceship to the right. Once these methods exist, use them to move falcon to the left twice and to the right once. Print the new position of falcon after each change in position. The last thing Spaceship needs for this example is a method to handle what happens if the ship gets hit. Go back and add a method wasHit() to Spaceship that will decrement the ship's health by 5, then if health is less than or equal to 0 will print "Sorry. Your ship was hit one too many times. Do you want to play again?" Once this method exists, call it on falcon and print out the value of healthStep 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