Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Object-Oriented Swift 2.0 Classes Helper Methods

Min Choi
Min Choi
1,517 Points

How does my if else statement know whether my function is true or false.

So basically I have the code below

class Tower {
    let position: Point
    var range: Int = 1
    var strength: Int = 1

    init(x: Int, y: Int) {
    self.position = Point(x: x, y: y)
    }

    func fireAtEnemy(enemy: Enemy) {
        if inRange(self.position, range: self.range, target: enemy.position) {
            while enemy.life > 0 {
                enemy.decreaseHealth(self.strength)
                print("The enemy has been vanquished!")
            }
        } else {
            print("Darn. The enemy is out of range!")
        }
    }

    func inRange(position: Point, range: Int, target: Point) -> Bool {
        let availablePositions = position.surroundingPoints(withRange: range)
        for point in availablePositions {
            if (point.x) == (target.x) && (point.y) == (target.y) {
                return true
            }
        }
        return false
    }
}

I understand most of it but I am stuck on one part and that is the inRange method called in the fireAtEnemy method.

There is an if else statement inside the fireAtEnemy method. Here, Pasan said that since inRange was true, it would run the code below. What if inRange was false? How does it know not to run enemy.decreaseHealth(self.strength) when it is false? Is it a basic concept I have missed? Does the if in an if else statement only run true statements while the else runs the false ones?

1 Answer

Min Choi
Min Choi
1,517 Points

Nevermind, I figured it out... If statements only run if its true while else runs the false ones.