ghost911 Posted March 19, 2019 Author Share Posted March 19, 2019 (edited) @JiBe Thanks for the functions I will add them in the source code any help from the community will be welcome to add functions that will go faster Edited March 19, 2019 by ghost911 Link to comment Share on other sites More sharing options...
ghost911 Posted March 20, 2019 Author Share Posted March 20, 2019 Here is a new version of the code I thank you Link to comment Share on other sites More sharing options...
AZJIO Posted March 20, 2019 Share Posted March 20, 2019 (edited) $x = BitShift(14, 2) $y = BitShift(14, -2) $z = BitShift(1, -31) MsgBox(0, '', $x & @LF & $y & @LF & $z) Define x.l, y.l, z.l x = (14 >> 2) y = (14 << 2) z = (1 << 31) MessageRequester("", Str(x) + #LF$ + Str(y) + #LF$ + Str(z)) $x = BitOR(3, 15, 32) ; x = 47 MsgBox(0, '', $x) x = (3 | 15 | 32) MessageRequester("", Str(x)) $x = BitAND(2, 3, 6) ; x = 2 MsgBox(0, '', $x) x = (2 & 3 & 6) ; x = 2 MessageRequester("", Str(x)) $x = BitNOT(5) MsgBox(0, '', $x) x = ~5 ; x = -6 MessageRequester("", Str(x)) $x = BitXOR(2, 3, 6) ; x = 7 MsgBox(0, '', $x) x = (2 ! 3 ! 6) ; x = 7 MessageRequester("", Str(x)) Example bit flag Local $fgBit = 0 Func _SetFg($fgBit, $z) Return BitOR($fgBit, BitShift(1, -$z)) EndFunc Func _GetFg($fgBit, $z) Return BitAND($fgBit, BitShift(1, -$z)) EndFunc $fg = 31 $fgBit = _SetFg($fgBit, $fg) $sText = StringFormat("%031s", StringReplace(StringFormat("%-" & $fg+1 & "s", "1"), ' ', '0')) $True = (_GetFg($fgBit, $fg) = True) MsgBox(0, '', $True & @CRLF & $sText) Define fgBit.b = 0 Procedure SetFg(fgBit.b, z) ProcedureReturn fgBit | (1<<z) EndProcedure Procedure GetFg(fgBit.b, z) ProcedureReturn Bool(fgBit & (1<<z)) EndProcedure fg = 7 fgBit = SetFg(fgBit, fg) Debug RSet(Bin(1<<fg, #PB_Long), 8, "0") True = GetFg(fgBit, fg) Debug True Edited March 20, 2019 by AZJIO My other projects or all Link to comment Share on other sites More sharing options...
ghost911 Posted March 21, 2019 Author Share Posted March 21, 2019 @AZJIO should further simplify the code even more so that everyone understands even a beginner I thank you for your help people like simplicity and then it's time saving when you program I will study this from my side to optimize the code to have more clarity and faster execution speed Link to comment Share on other sites More sharing options...
ghost911 Posted March 21, 2019 Author Share Posted March 21, 2019 I add a simple window example (GUI) for beginners with PureAutoit to have a hybrid code and compile the file in executable Link to comment Share on other sites More sharing options...
JiBe Posted March 22, 2019 Share Posted March 22, 2019 FileExists() Procedure.q FileExists(Filename$) Result.q = FileSize(Filename$) If Result.q = -1 Result.q = 0 Else Result.q = 1 EndIf ProcedureReturn Result.q EndProcedure Link to comment Share on other sites More sharing options...
JiBe Posted March 22, 2019 Share Posted March 22, 2019 FileDelete() Procedure.q FileDelete(Filename$) Result.q = DeleteFile(filename$,#PB_FileSystem_Force) If Result.q <> 0 Result.q = 1 EndIf ProcedureReturn Result.q EndProcedure Link to comment Share on other sites More sharing options...
ghost911 Posted March 22, 2019 Author Share Posted March 22, 2019 @JiBe thanks for your help but delete and FileExists functions are already present Link to comment Share on other sites More sharing options...
ghost911 Posted March 22, 2019 Author Share Posted March 22, 2019 IncludeFile "AutoitCoding.PB" Procedure.q FileExists2(Filename$) Result.q = FileSize(Filename$) If Result.q = -1 Result.q = 0 Else Result.q = 1 EndIf ProcedureReturn Result.q EndProcedure TempsDepart.q = ElapsedMilliseconds() If FileExists ("upx.exe") ; MsgBox(0,"Autoit","the file exist") Else ; MsgBox(0,"Autoit","the file does not exist") EndIf TempsEcoule.q = ElapsedMilliseconds()-TempsDepart Debug TempsEcoule TempsDepart2.q = ElapsedMilliseconds() If FileExists2("upx.exe") ;MsgBox(0,"Autoit","the file exist") Else ;MsgBox(0,"Autoit","the file does not exist") EndIf TempsEcoule2.q = ElapsedMilliseconds()-TempsDepart2 Debug TempsEcoule2 The execution speed is the same Link to comment Share on other sites More sharing options...
ghost911 Posted March 22, 2019 Author Share Posted March 22, 2019 (edited) is a new version of the code I thank you it would be necessary to program in autolt a code converter au3 to pb for convert the small difference with PureAutoit people could secure their source code by compiling it Edited March 22, 2019 by ghost911 Link to comment Share on other sites More sharing options...
Developers Jos Posted March 22, 2019 Developers Share Posted March 22, 2019 (edited) @ghost911, You started a nice little project which is growing rapidly I see. When AutoIt3 started it was around the 80 Kb if I remember well and it started to grow as many internal function were added. You will find that there are several commands that aren't really simply to implement but just see that as a challenge. Just a few comments I would like to make: skip adding the compiled autoit3 exe to your 7z as people around here can compile the au3 file themselfs Also no need to include UPX.exe as that is also already available to everybody here, so you keep your repository nice and small. I see you are using the word Fonction all over the place but it is really spelled Function. Curious about how this is going to turn out when it gets more functions available. Jos Edited March 22, 2019 by Jos ghost911 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
ghost911 Posted March 22, 2019 Author Share Posted March 22, 2019 Hello welcome @Jos the main goal of the project is to offer people the ability to compile their source code with a real compiler and secure their project why not release a code converter after Link to comment Share on other sites More sharing options...
Developers Jos Posted March 22, 2019 Developers Share Posted March 22, 2019 I fully understand the purpose of this project and am just curious how far it will get to be able to compile AutoIt3 code without any adaption and all the safeguards build in like is done in AutoIt3. Not trivial, but as stated, a nice challenge. ghost911 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
ghost911 Posted March 22, 2019 Author Share Posted March 22, 2019 @Jos that's why I ask the community for help to many we are stronger Link to comment Share on other sites More sharing options...
AZJIO Posted March 22, 2019 Share Posted March 22, 2019 (edited) If flag = 1 MessageRequester(Title,Text,#MB_OKCANCEL) ElseIf flag = 2 MessageRequester(Title,Text,#MB_ABORTRETRYIGNORE ) ElseIf flag = 3 MessageRequester(Title,Text,#MB_YESNOCANCEL) ElseIf flag = 3 ; ........................... ElseIf flag = 262144 MessageRequester(Title,Text,#MB_TOPMOST) ElseIf flag = 2097152 MessageRequester(Title,Text,#MB_SERVICE_NOTIFICATION) ; Isn't it easier? MessageRequester(Title,Text,flag) Where flag 4? Can do so: Macro StringLen(String) (Str(Len(String))) EndMacro Procedure.s StringLen1 (String$) ProcedureReturn Str(Len(String$)) EndProcedure String$ = "Hello" Debug StringLen1(String$) Debug StringLen(String$) I do not understand why you convert to a string? A function that will use this will probably require the numeric type of the variable. Do you know what the Enumeration is for? Enumeration #FV_FileVersion = $0001 #FV_FileDescription = $0002 #FV_LegalCopyright = $0004 EndEnumeration Edited March 22, 2019 by AZJIO My other projects or all Link to comment Share on other sites More sharing options...
ghost911 Posted March 22, 2019 Author Share Posted March 22, 2019 @AZJIO you are a good observer I have not seen the forgotten thank you I will correct the code for the message box because strings are compatible with msgbox and more functionality Link to comment Share on other sites More sharing options...
AZJIO Posted March 22, 2019 Share Posted March 22, 2019 1 minute ago, ghost911 said: because strings are compatible with msgbox and more functionality Usually they are needed for other cases. MsgBox is likely to be the exception of their rules My other projects or all Link to comment Share on other sites More sharing options...
ghost911 Posted March 23, 2019 Author Share Posted March 23, 2019 10 hours ago, AZJIO said: Usually they are needed for other cases. MsgBox is likely to be the exception of their rules then we should imagine a 2 in 1 system that returns 1 string or 1 number with a flag for example with a default mode in autoit it's a string Link to comment Share on other sites More sharing options...
AZJIO Posted March 23, 2019 Share Posted March 23, 2019 4 hours ago, ghost911 said: default mode in autoit it's a string Not. AutoIt3 converts type. If the function requires a number, and the variable is a string, AutoIt3 converts using conversion rules. It all depends on the source and destination. Look at function VarGetType. My other projects or all Link to comment Share on other sites More sharing options...
jchd Posted March 23, 2019 Share Posted March 23, 2019 Indeed, AutoIt uses a variant of duck typing. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
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