2011-06-27 9 views
0

私は今、Pythonを学んでいます。これは私に興味のあるprojectの種類です。私はスクリプトがどの言語で書かれているのか分かりませんが(lispかautohotkeyでしょうか?)、それをPythonに変換したいと思います。あなたは正しい方向に私を指して教えてください。Pythonにコードを変換

  • これにはどのような言語が使われましたか?
  • 私はそれを変換することを学ぶ必要がありますか?

ありがとう!

; Thois TableOpener for PokerStars v1.05 
; Opens new cash game tables from the lobby every x seconds (if there are less tables opened than your predefined settings). A great tool for multi-tablers. 
; Customize the variables below (between the lines) 
; 'Thois' on PS for donations 

; Customizable variables (between the lines) 
;------------------------------------------ 
rowheight := 13 ;In the PokerStars lobby go to View > Text Size: For Medium & smaller:13, For smallest:12, For Larger:15, For Largest:17 
recheck := 50 ;How often the script should open up new tables (if needed),  50=10seconds, 25=5seconds etc... Try not to set this too low for CPU performance issues 
;------------------------------------------ 

Gui, Font, s8, Arial 
Gui, Add, Text,, Number Of Tables: 
Gui, Add, Edit 
Gui, Add, UpDown, vnumberoftablestokeepopen Range1-24, 12 
Gui, Add, Checkbox, venabledisable, Run! 
Gui, Show,, Thois TableOpener for PokerStars v1.00 
Gui, Submit, NoHide 

numberofloopinstances := recheck - 1 

Loop 
{ 
Gui, Submit, NoHide 
SendMessage, 0x115, 0, 0, PokerStarsListClass1, PokerStars Lobby 
numberofloopinstances := numberofloopinstances + 1 
if (numberofloopinstances = recheck) 
    { 
    numberofloopinstances := 0 
    WinGet, numberofwindows, Count, ahk_class PokerStarsTableFrameClass,,Lobby 
    beffen := numberoftablestokeepopen - numberofwindows 
    if (beffen > 0 AND enabledisable = 1) 
     { 
     Loop 
      { 
      ControlGet, tablesinthelobby, Hwnd, , PokerStarsListClass1, PokerStars Lobby 
      yclick := 1 + (rowheight * A_Index) - rowheight 
      PostLeftClick(1, yclick, tablesinthelobby) 
      ControlClick, PokerStarsButtonClass10, PokerStars Lobby 
      Sleep, 500 
      WinGet, numberofwindows, Count, ahk_class PokerStarsTableFrameClass,,Lobby 
      beffen := numberoftablestokeepopen - numberofwindows 
      if (beffen = 0) 
       { 
       break 
       } 
      } 
     } 
    } 
Sleep, 200 
} 

; Hotkeys (disabled) 

;~Xbutton1:: ;Endlessly cycles between all tables in the stack the cursor is pointing at (brings the front table to the back), disabled (remove ; marks to enable) 
;MouseGetPos,,,tableID 
;WinGetClass, classoftableid, ahk_id %tableID% 
;if (classoftableid = "PokerStarsTableFrameClass") 
; { 
; WinSet, Bottom,, ahk_id %tableID% 
; } 
;return 

;~Xbutton2:: ;Closes the table the mouse is pointing at (also clicks the OK warning button), disabled (remove ; marks to enable) 
;MouseGetPos,,,tableID 
;WinGetClass, classoftableid, ahk_id %tableID% 
;if (classoftableid = "PokerStarsTableFrameClass"); 
; { 
; WinClose, ahk_id %tableID% 
; Sleep,20 
; ControlClick, Button1, Table, OK 
; } 
;return 

;Juks rocks - I deactivated WinActivate so that the Lobby doesnt steal focus 
PostLeftClick(x, y, table_id, activate=1) { 
; ### JUK: Send the down left click, then the mouse-up messages. 
; NOTE: This is relative to the top left of the client area and NOT the top left of the 
;  window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!). 
If activate 
; WinActivate, ahk_id%table_id% 
PostMessage, 0x201, 0x0001, ((y<<16)^x), , ahk_id%table_id% 
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_id%table_id% 
} 

GuiClose: 
ExitApp 

答えて

2

これは間違いなくAutoHotKeyです。これを変換するために必要なものは次のとおりです:

  1. プログラムの機能を理解するためのAutoHotKeyの理解。
  2. プログラムが何を再現できるかについてPythonを十分に理解しています。

AutoHotKeyとPythonはという非常にであることに注意してください。 AutoHotKeyは、他のプログラムを制御するために、マウスとキーボードを自動化するためのソフトウェアです。これは確かにPythonで実行可能ですが、あなたがそれを行う方法は環境に依存します。 Pythonは既存のプログラムを制御するための言語ではなく、主にプログラムを記述する言語なので、おそらく外部ライブラリなしではできません。

私はあなたのコンバージョンの努力がそれに値するとは思っていません。

関連する問題