Jump to content

BitAND / BitOR / BitXOR


Recommended Posts

lets say i want to do a function to tell current state. i would like to enum states like this:

0x01 - idle

0x02 - collect

0x04 - defend

0x08 - attack

and so on... my desire is to return combined states for example:

0x02 + 0x04 -> collect & defend

0x02 + 0x08 -> collect & attack

0x04 + 0x08 -> attack & defend

my question is how to define states and get those combined states in one elegant way?

thanks in advance

Edited by iLoveAU3
Link to comment
Share on other sites

To Define the States, you can use an enum with Step *2 :D

To combine the states, use BitOr,

to check for one, use BitAnd:

http://www.autoitscript.com/forum/index.ph...st&p=660544

Edited by ProgAndy

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...