Jump to content

Recommended Posts

Posted

  On 3/2/2014 at 1:15 AM, FireFox said:

You can't do this in typed languages without having to cast the boolean to a number.

Hence I would say it's not a good practice (it's not clearly explicit then).

I agree with you on that point. AutoIt is a little forgiving in this instance.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 3/2/2014 at 8:06 AM, Chimaera said:

Ive been getting rid of magic numbers in my stuff as there has been a lot of comments about it, but thats all

As pointed out before, that's nothing to do with AutoIt or any new features, it's just good practice not to use magic numbers as 10 in a formula can have a different meaning elsewhere and difficult to distinguish if you need to change 10 to 11 (simple search+replace won't cut it). Either use comments or constants to distinguish the differences.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Hi,

Func _DecToBin($d)
    If $d < 256 Then Return $_aBin256[$d]
    If $d < 65536 Then Return $_aBin256[BitShift($d,8)] & $_bBin256[BitAND($d, 255)]
    If $d < 16777216 Then Return $_aBin256[BitShift($d,16)] & $_bBin256[BitAND(BitShift($d,8), 255)] & $_bBin256[BitAND($d, 255)]
    Return $_aBin256[BitShift($d,24)] & $_bBin256[BitAND(BitShift($d,16), 255)] & $_bBin256[BitAND(BitShift($d,8), 255)] & $_bBin256[BitAND($d, 255)]
EndFunc

Func _DecToBin($d)
    Return $d<256?$_aBin256[$d]:$d<65536?$_aBin256[BitShift($d,8)]& _
    $_bBin256[BitAND($d,255)]:$d<16777216?$_aBin256[BitShift($d,16) _
    ]&$_bBin256[BitAND(BitShift($d,8),255)]&$_bBin256[BitAND($d,255 _
    )]:$_aBin256[BitShift($d,24)]&$_bBin256[BitAND(BitShift($d,16), _
    255)]&$_bBin256[BitAND(BitShift($d,8),255)]&$_bBin256[BitAND($d,255)]
EndFunc

same functionality...

Ask yourself, which one is easier to read and debug?

Which one NEEDS  comments necessarily?

For me, there is no question....

Remembers me to the very old discussion about XOR eax,eax vs. MOV eax,0...  :think:

Posted

AndyG,

I'm sure you don't directly write your code like this ;)

At this point it's code obfuscation or a minified version.

Posted

I agree with FireFox. When I saw that code I was like "...come on, you're creating a biased example and wouldn't use that in a genuine scenario."

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

The real question is "Which one does the AutoIt interpreter find easier?".
 

  On 3/1/2014 at 11:21 PM, JohnOne said:

ternary has it's uses, but it's not this.

If 1 = 2 Then
    ;blah
ElseIf 1 = 3 Then
    ;blah
Else
    ;blah
EndIf
((1 = 2) ? (blah1()) : (((1 = 3) ? (blah2()) : (blah3()))))

Func blah1()
    ;blah
EndFunc

Func blah2()
    ;blah
EndFunc

Func blah3()
    ;blah
EndFunc

"Just be fred, all we gotta do, just be fred."  -Vocaliod

"That is a Hadouken. A KAMEHAMEHA would have taken him 13 days and 54 episodes to form." - Roden Hoxha

@tabhooked

Clock made of cursors ♣ Desktop Widgets ♣ Water Simulation

Posted

It doesn't have feelings.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted (edited)
  On 3/2/2014 at 9:10 AM, AndyG said:

Hi,

Func _DecToBin($d)
    If $d < 256 Then Return $_aBin256[$d]
    If $d < 65536 Then Return $_aBin256[BitShift($d,8)] & $_bBin256[BitAND($d, 255)]
    If $d < 16777216 Then Return $_aBin256[BitShift($d,16)] & $_bBin256[BitAND(BitShift($d,8), 255)] & $_bBin256[BitAND($d, 255)]
    Return $_aBin256[BitShift($d,24)] & $_bBin256[BitAND(BitShift($d,16), 255)] & $_bBin256[BitAND(BitShift($d,8), 255)] & $_bBin256[BitAND($d, 255)]
EndFunc

Func _DecToBin($d)
    Return $d<256?$_aBin256[$d]:$d<65536?$_aBin256[BitShift($d,8)]& _
    $_bBin256[BitAND($d,255)]:$d<16777216?$_aBin256[BitShift($d,16) _
    ]&$_bBin256[BitAND(BitShift($d,8),255)]&$_bBin256[BitAND($d,255 _
    )]:$_aBin256[BitShift($d,24)]&$_bBin256[BitAND(BitShift($d,16), _
    255)]&$_bBin256[BitAND(BitShift($d,8),255)]&$_bBin256[BitAND($d,255)]
EndFunc

What would be the unbiased way to write the bottom code?

Edited by JohnOne

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

Posted (edited)
  On 3/2/2014 at 2:25 PM, JohnOne said:

What would be the unbiased way to write the bottom code?

Not using ternary.

Edited by guinness

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 3/2/2014 at 2:28 PM, DatMCEyeBall said:

But which one is faster to parse?

I dunno.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 3/2/2014 at 2:46 PM, JohnOne said:

Indeed, which is why If Then is better you see.

I should have been more specific, sorry. What I meant is which is easier to understand when there is only a single statement being called. 

I didn't think I would have to be so obvious!

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted
  On 3/2/2014 at 2:46 PM, JohnOne said:

Indeed, which is why If Then is better you see.

I disagree, because "better" is the wrong word.

Easier to read/debug, yes, easier to translate to other languages, yes, slower in execution / faster in runtime performance, who knows/cares? But "better"? No!

 

  On 3/2/2014 at 1:20 PM, FireFox said:

AndyG,

I'm sure you don't directly write your code like this ;)

At this point it's code obfuscation or a minified version.

naaaah, you are kidding :bye:

Wash me, but don´t make me wet!

Excessive use of ternary results in code like this...it´s like "a bit pregnant", isn´t it? Less is more i think  :muttley:

Posted

Good.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...