iLoveAU3 Posted April 10, 2009 Posted April 10, 2009 (edited) 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 April 10, 2009 by iLoveAU3
ProgAndy Posted April 10, 2009 Posted April 10, 2009 (edited) To Define the States, you can use an enum with Step *2 To combine the states, use BitOr,to check for one, use BitAnd:http://www.autoitscript.com/forum/index.ph...st&p=660544 Edited April 10, 2009 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now