매크로

질문
2019.02.22 18:06

이 소스 내용이 뭔가요?

조회 수 2488 추천 0 댓글 0

인터넷에서 클래스DD관련해서 찾다가 뭔가 대단해보이는 소스를 찾았는데

이거 그냥 DD호출하는 소스가 맞나요?

이거 글만 길게 썼다뿐이지, include, class_dd.ahk 이거랑 똑같은거죠?


class DD extends DD_Helper
{
        ; Simulate mouse button press
        ; param:   1 = LButton Down,    2 = LButton Up
        ;          4 = RButton Down,    8 = RButton Up
        ;         16 = MButton Down,   32 = MButton Up
        ;         64 = Button 4 Down, 128 = Button 4 Up
        ;        256 = Button 5 Down, 512 = Button 5 Up
        btn(param) {
                return DllCall(this.dllFile "\DD_btn", "int", param)
        }
    
        ; Simulate mouse move
        mov(x, y) {
                return DllCall(this.dllFile "\DD_mov", "int", x, "int", y)
        }
    
        ; Simulate mouse move (relatively)
        movR(dx, dy) {
                return DllCall(this.dllFile "\DD_movR", "int", dx, "int", dy)
        }
    
        ; Simulate mouse wheel
        ; param: 1=upward 2=downward
        whl(param) {
                return DllCall(this.dllFile "\DD_whl", "int", param)
        }
    
        ; Simulate keyboard
        ; param1: DD code
        ; param2: 1=Down 2=Up
        key(param1, param2) {
                return DllCall(this.dllFile "\DD_key", "int", param1, "int", param2)
        }
    
        ; VKCode to DD code
        todc(VKCode) {
                return DllCall(this.dllFile "\DD_todc", "int", VKCode)
        }
    
        ; Send string
        str(string) {
                return DllCall(this.dllFile "\DD_str", "astr", string)
        }
    
        ; Get hwnd of active window
        GetActiveWindow() {
                ; return DllCall(this.dllFile "\DD_GetActiveWindow", "ptr") ; seems not working
                return WinExist("A")
        }
    
        MouseMove(hwnd, x, y) {
                return DllCall(this.dllFile "\DD_MouseMove", "ptr", hwnd, "int", x, "int", y)
        }
    
        ; The picture is saved to "C:\DD Snap\" folder
        SnapPic(hwnd, x, y, w, h) {
                return DllCall(this.dllFile "\DD_SnapPic", "ptr", hwnd, "int", x, "int", y, "int", w, "int", h)
        }
    
        PickColor(hwnd, x, y, mode=2) {
                return DllCall(this.dllFile "\DD_PickColor", "ptr", hwnd, "int", x, "int", y, "int", mode)
        }
}

class DD_Helper
{
        static _ := DD_Helper.InitClass()
    
        InitClass() {
                if !A_IsAdmin {
                        Run *RunAs "%A_ScriptFullPath%"  ; Requires v1.0.92.01+
                        ExitApp
                }
                this.LoadDll()
        }
    
        LoadDll() {
                if A_Is64bitOS {
                        dllFile := (A_PtrSize=8) ? "DD\64\ddx64.64.dll" : "DD\64\ddx64.32.dll"
                } else {
                        dllFile := "DD\32\ddx32.dll"
                }
        
                if !this.hModule := DllCall("LoadLibrary", "Str", dllFile, "Ptr") {
                        if !FileExist(dllFile) {
                                throw, dllFile " not found."
                        }
                        throw, "LoadLibrary failed. DllFile is " dllFile
                }
                this.dllFile := dllFile
        }
    
        UnloadDll() {
                DllCall("FreeLibrary", "Ptr", this.hModule)
        }
        
        ; Example: _btn("RButtonDown")
        _btn(sNick, x:="", y:="") {
                static oNick := { LButtonDown: 1, LButtonUp: 2
                                , RButtonDown: 4, RButtonUp: 8
                                , MButtonDown: 16, MButtonUp: 32
                                , 4ButtonDown: 64, 4ButtonUp: 128
                                , 5ButtonDown: 256, 5ButtonUp: 512 }
                if !( n := oNick[sNick] ) {
                        throw, sNick " is not a valid nick."
                }
                if (x != "") {
                        this.mov(x, y)
                }
                this.btn(n)
        }
    
        ; Example: _btn_press("RButton")
        _btn_press(sNick, x:="", y:="", nCount:=1) {
                static oNick := { LButton: {Down: 1, Up: 2}
                                , RButton: {Down: 4, Up: 8}
                                , MButton: {Down: 16, Up: 32}
                                , 4Button: {Down: 64, Up: 128}
                                , 5Button: {Down: 256, Up: 512} }
                if !( o := oNick[sNick] ) {
                        throw, sNick " is not a valid nick."
                }
                if (x != "") {
                        this.mov(x, y)
                }
                Loop, % nCount {
                        this.btn( o.Down )
                        this.btn( o.Up )
                        Sleep, 5
                }
        }
    
        ; Example: _key("F11", "Down")
        ;          _key("F11", "Up")
        _key(sKey, sflag) {
                ddCode := this.todc( GetKeyVK(sKey) )
                this.key(ddCode, (sflag="Up") ? 2 : 1 )
        }
    
        ; Example: _key_press("F11")
        ;          _key_press("Ctrl", "A")
        _key_press(sKey*) {
                arr_ddCode := []
        
                for i, k in sKey {
                        arr_ddCode[i] := this.todc( GetKeyVK(k) )
                        this.key(arr_ddCode[i], 1) ; Down
                }
                for i, ddCode in arr_ddCode {
                        this.key(ddCode, 2) ; Up
                }
        }
    
        _key_pressEx(sKey, nCount := 1) {
                ddCode := this.todc( GetKeyVK(sKey) )
        
                Loop, % nCount {
                        this.key(ddCode, 1) ; Down
                        this.key(ddCode, 2) ; Up
                }
        }
    
        ; Example: _whl("down")
        ;          _whl("up")
        _whl(sParam) {
                this.whl( (sParam="Up") ? 1 : 2 )
        }
}



List of Articles
분류 제목 글쓴이 최근변경 추천
질문 숫자인식 질문 노즈사랑 2023.02.24 0/0
질문 오토핫키 우회관련 질문입니다 2 lipos 2022.12.14 0/0
질문 이미지서치 질문드립니다 aasdda 2022.12.14 0/0
자유 던파 육성 광부 찾습니다.. 던이히 2022.12.14 0/0
질문 컴투스 프로야구 오토핫키 소스 구해봅니다. 1 백티 2019.03.02 0/0
질문 오토핫키로 메이플 간단한매크로 입문하려고하는데 괜... 채광하자 2022.12.14 0/0
질문 오토핫키 고수님들 도움 요청합니다. 3 giming 2022.12.14 0/0
자유 메이플 매크로 구하시는분 1 딴규 2022.12.14 0/0
질문 이미지 서치로 이미지 찾는데 너무 작으면 안찾아지나요? 2 lipos 2022.12.14 0/0
질문 오핫 배워 볼려구하는데요 도움 좀 주세용 2 뚱이도사 2022.12.14 0/0
질문 돌키우기 이미지서치 질문입니다. 6 giming 2022.12.14 0/0
질문 ngs우회 컴파일러 구합니다... 미르미르에반 2022.12.14 0/0
질문 오토핫키 소스 구조 질문 2 geendy 2022.12.14 0/0
자유 메이플 플 및 소스원본 판매 apsodfp 2022.12.14 0/0
자유 메이플 경매클 관심있으신분 딴규 2022.12.14 0/0
질문 이 소스 내용이 뭔가요? 뽀르뽀르 2022.12.14 0/0
질문 화면 인식 자동 클릭식 메크로를 해보고싶은데 2 와사비 2022.12.14 0/0
자유 던파 광부매크로 구매합니다. 4 구하요요 2022.12.14 0/0
질문 뭐가 문제인지 봐주세요 2 유즈매핑 2022.12.14 0/0
질문 Iniwrite Invalid Option 해결할방법 없을까요?? 4 welchs 2022.12.14 0/0
Board Pagination Prev 1 ... 383940414243444546 ... 208 Next
/ 208

전체 최신 인기글

전체 주간 인기글