Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some checks to see if a screen is active. The code looks like this:

if (GUI.Button(new Rect(Screen.width / 2 - 10, 50, 50, 30), "Rules")) //Creates a button
    {
        if (ruleScreenActive == true) //check if the screen is already active
            ruleScreenActive = false; //handle according to that
        else 
            ruleScreenActive = true;
    }

Is there any way to - whenever I click the button - invert the value of ruleScreenActive?

(This is C# in Unity3D)

share|improve this question
5  
What's wrong with ruleScreenActive = !ruleScreenActive? – ChrisF Jan 18 '12 at 15:06
@ChrisF To be honest, I didn't know that existed, haven't got much experience and knowledge yet. – Simon Verbeke Jan 18 '12 at 15:08
1  
This is going to be one of those 100x upvoted, 100k views questions. – Groo Jan 18 '12 at 15:08
@SimonVerbeke Yep, there are some things that you just have to know. – ChrisF Jan 18 '12 at 15:10
1  
-1: Did you even try Google? – eriktous Jan 18 '12 at 17:28

4 Answers

up vote 13 down vote accepted

You can get rid of your if/else statements by negating the bool's value:

ruleScreenActive = !ruleScreenActive;
share|improve this answer
Thank you very much :) Didn't know this was possible. – Simon Verbeke Jan 18 '12 at 15:08
1  
I always use the exclusive or assignment operator: x ^= true;. Is prettier (in my opinion) and shorter in most cases, but does the same. – Nuffin Jan 18 '12 at 15:17
6  
@Tobias interesting approach. Shorter yes, but readability is debatable. If I saw that in code it would make me think a split-second longer than the typical negation. – Ahmad Mageed Jan 18 '12 at 15:29
-1 DRY don't repeat yourself – Jack Apr 21 at 7:53
ruleScreenActive = !ruleScreenActive;
share|improve this answer

I think it is better to write:

ruleScreenActive ^= true;

that way you avoid writing the variable name twice ... which can lead to errors

share|improve this answer
-1 for readability. – Phill Apr 21 at 8:07
the syntax csharp should have: ruleScreenActive!!; – Jack Apr 21 at 9:32

This would be inlined, so readability increases, runtime costs stays the same:

public static bool Invert(this bool val) { return !val; }

To give:

ruleScreenActive.Invert();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.