매크로

질문
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
분류 제목 글쓴이 최근변경 추천
자유 히트2는 오토핫키 없을까요 1 매매매핫키 2022.12.07 0/0
자유 히로매크로 사용중입니다. 1 매끄로 2015.03.16 0/0
자유 희한하네요... 2 보득 2015.02.02 0/0
자유 흠냐 오토핫키와 c++ 연관성 34f35 2015.10.09 0/0
자유 흠.. 안녕들 하세요.. 13 폐이니즘 2015.01.16 0/0
자유 흠 gdip 안쓰고도 비활성 이미지 서치가 가능하네요 4 루뽕 2015.11.19 0/0
질문 흑백화를 시킨 후 이미지를 저장 하였습니다. 이후 이... 1 haegu 2018.09.11 0/0
질문 흑백화 이미지서치 참고할만한 글 있나요?? 3 급홍어감별사 2018.07.02 0/0
질문 흑백 비활성 이미지 검색 구현하신 분 계세요? 4 프리 2019.05.23 0/0
자유 후.. 검은거 한번 만들어 볼까 합니다 쟈브 2018.11.14 0/0
질문 후 문의 2번째.. 드립니다......... 4 문의드립니다 2015.06.10 0/0
자유 효율적인 쫄작교체방법이 없을까요? 3 세나블텍 2015.08.06 0/0
질문 활성화된 프로세스 죽이는법 kill 3 리엔니케니스타 2017.03.29 0/0
정보 활성화된 창으로 esc보내는 라이브러리. 1 헐키 2015.06.19 0/0
질문 활성과 비활성의 차이가 무엇인가요~? 1 배고파3000 2018.09.04 0/0
질문 활성 ? 비활성 질문.. 2 아카드 2014.11.04 0/0
자유 확장자 변환기 3 없어돌아가 2015.04.01 0/0
질문 확장모니터에서 controlclick질문드립니다 레나류륜 2016.10.27 0/0
질문 확율을 결과물로 출력중입니다. 특수문자 출력을 못해요 3 가족오락관 2016.11.08 0/0
자유 확실히 오토핫키가... 16 아카드 2014.11.09 0/0
Board Pagination Prev 1 2345678910 ... 209 Next
/ 209

전체 최신 인기글

전체 주간 인기글