mirror of
https://github.com/bnowakow/GT7-Scripts.git
synced 2026-01-28 05:56:00 +00:00
add versions of clubman and tokyo
This commit is contained in:
2698
bnowakow/old versions/4 Clubmanplus/clubman-test-0.3/Lib/Gdip.ahk
Normal file
2698
bnowakow/old versions/4 Clubmanplus/clubman-test-0.3/Lib/Gdip.ahk
Normal file
File diff suppressed because it is too large
Load Diff
490
bnowakow/old versions/4 Clubmanplus/clubman-test-0.3/clubman.ahk
Normal file
490
bnowakow/old versions/4 Clubmanplus/clubman-test-0.3/clubman.ahk
Normal file
@@ -0,0 +1,490 @@
|
||||
|
||||
; https://github.com/berban/Gdip
|
||||
|
||||
#HotkeyInterval 99000000
|
||||
#KeyHistory 0
|
||||
#MaxHotkeysPerInterval 99000000
|
||||
#NoEnv
|
||||
#Persistent
|
||||
#SingleInstance Force
|
||||
#Include Lib\Gdip.ahk
|
||||
|
||||
CoordMode, Pixel, Client
|
||||
CoordMode, ToolTip, Client
|
||||
DetectHiddenWindows, On
|
||||
ListLines Off
|
||||
Process, priority, , High
|
||||
SendMode Input
|
||||
SetBatchLines, -1
|
||||
SetDefaultMouseSpeed, 0
|
||||
SetFormat, Float, 0.2
|
||||
; SetFormat, IntegerFast, Hex
|
||||
SetKeyDelay, 50
|
||||
SetMouseDelay, -1
|
||||
SetWorkingDir %A_ScriptDir%
|
||||
|
||||
; Variables
|
||||
races_clean := 0
|
||||
races_clean_percent := 0
|
||||
races_completed := 0
|
||||
races_completed_check := 0
|
||||
credits_total := 0
|
||||
credits_average := 0
|
||||
|
||||
time_start := A_TickCount
|
||||
time_current := A_TickCount
|
||||
|
||||
window_width := 640
|
||||
window_height := 360
|
||||
|
||||
; GUI
|
||||
Gui, New, -MaximizeBox -Resize, ClubmanPlus 0.3
|
||||
Gui, Font, S10
|
||||
Gui, Add, Button, w150 h40 Default gStart, Start
|
||||
Gui, Add, Button, w150 h40 x+10 gReset, Reset
|
||||
Gui, Show
|
||||
return
|
||||
|
||||
; GUI events
|
||||
GuiClose:
|
||||
Gosub, Release_All
|
||||
SetTimer, Health, Off
|
||||
SetTimer, Summary, Off
|
||||
OutputDebug % "Clubman> Terminated"
|
||||
ExitApp
|
||||
|
||||
; GUI buttons
|
||||
Start:
|
||||
hwnd := 0
|
||||
|
||||
Gosub, Release_All
|
||||
Gosub, GrabWindow
|
||||
|
||||
if (hwnd = 0) {
|
||||
MsgBox, % "PS Remote Play not found"
|
||||
return
|
||||
}
|
||||
|
||||
SetTimer, Health, 600000
|
||||
SetTimer, Summary, 3600000
|
||||
time_start := A_TickCount
|
||||
|
||||
; ** AFK Loop
|
||||
Gosub, Press_X
|
||||
|
||||
Loop {
|
||||
|
||||
; ** RACE
|
||||
OutputDebug % "Clubman> Race: Waiting for position GUI to show"
|
||||
while (!IsColor(hwnd, 0xFFFFFF, 218, 490, 6, 20)) { ; top-right tire wear indicator
|
||||
Gosub, Press_X
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> Race: Starting race"
|
||||
Gosub, Hold_X
|
||||
Gosub, Hold_Down
|
||||
OutputDebug % "Clubman> Race: Racing until position GUI disappears"
|
||||
while (IsColor(hwnd, 0xFFFFFF, 218, 490, 6, 20)) { ; top-right tire wear indicator
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> Race: Race ended, releasing all buttons"
|
||||
Gosub, Release_All
|
||||
Sleep, 5000
|
||||
|
||||
; ** GO TO LEADERBOARDS
|
||||
OutputDebug % "Clubman> End race: Waiting for continue X icon to show"
|
||||
while (!IsColor(hwnd, 0xC9C9C9, 465, 519, 6, 20)) { ; X icon
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> End race: Press X to continue"
|
||||
while (IsColor(hwnd, 0xC9C9C9, 465, 519, 6, 20)) { ; X icon
|
||||
Gosub, Press_X
|
||||
Sleep, 100
|
||||
}
|
||||
OutputDebug % "Clubman> End race: Transitioning to leaderboard"
|
||||
|
||||
; ** LEADERBOARD
|
||||
Loop {
|
||||
OutputDebug % "Clubman> Leaderboard: Checking positions"
|
||||
|
||||
if (IsColor(hwnd, 0xBADD3E, 671, 124, 10, 20)) { ; venom green on the leaderboard
|
||||
OutputDebug % "Clubman> Leaderboard: 1st position"
|
||||
Gosub, Press_X
|
||||
break
|
||||
}
|
||||
else if (IsColor(hwnd, 0xBADD3E, 671, 153, 10, 20)) { ; venom green on the leaderboard
|
||||
OutputDebug % "Clubman> Leaderboard: 2nd position"
|
||||
Gosub, Press_X
|
||||
break
|
||||
}
|
||||
else if (IsColor(hwnd, 0xBADD3E, 671, 182, 10, 20)) { ; venom green on the leaderboard
|
||||
OutputDebug % "Clubman> Leaderboard: 3rd position"
|
||||
Gosub, Press_X
|
||||
break
|
||||
}
|
||||
else if (IsColor(hwnd, 0xBADD3E, 671, 211, 10, 20)) { ; venom green on the leaderboard
|
||||
OutputDebug % "Clubman> Leaderboard: 4th position"
|
||||
Gosub, Press_X
|
||||
break
|
||||
}
|
||||
else if (IsColor(hwnd, 0xBADD3E, 671, 240, 10, 20)) { ; venom green on the leaderboard
|
||||
OutputDebug % "Clubman> Leaderboard: 5th position"
|
||||
Gosub, Press_X
|
||||
break
|
||||
}
|
||||
else {
|
||||
Sleep, 500
|
||||
}
|
||||
}
|
||||
|
||||
; ** REWARDS
|
||||
OutputDebug % "Clubman> Rewards: Waiting for Rewards screen to load (checking money earnt)"
|
||||
while (!IsColor(hwnd, 0xBE140F, 848, 192, 6, 100)) { ; money earn, the red text
|
||||
Gosub, Press_X
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> Rewards: Found Rewards screen"
|
||||
races_completed++
|
||||
|
||||
Loop 100 {
|
||||
if (IsColor(hwnd, 0x5C90FB, 451, 260, 10, 20)) { ; the 'R' in Clean Race Bonus
|
||||
OutputDebug % "Clubman> Rewards: Clean bonus"
|
||||
races_clean++
|
||||
PixelSearch(486, 311, 1, hwnd, "clean", "")
|
||||
break
|
||||
}
|
||||
|
||||
if (A_Index == 100) {
|
||||
OutputDebug % "Clubman> Rewards: No clean bonus"
|
||||
PixelSearch(486, 311, 1, hwnd, "no-clean", "")
|
||||
}
|
||||
}
|
||||
|
||||
; ** REPLAY
|
||||
OutputDebug % "Clubman> Replay: Waiting for Replay screen to load"
|
||||
while (!IsColor(hwnd, 0xFFFFFF, 911, 510, 4, 20)) { ; the cursor on top the exit button
|
||||
Gosub, Press_X
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> Replay: Pressing the Exit button"
|
||||
while (IsColor(hwnd, 0xFFFFFF, 911, 510, 4, 20)) { ; the cursor on top the exit button
|
||||
Gosub, Press_X
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> Replay: Leaving the Replay screen"
|
||||
|
||||
; ** RACE RESULTS
|
||||
OutputDebug % "Clubman> Race Result: Waiting for Race Result screen to load (checking cursor)"
|
||||
while (!IsColor(hwnd, 0xBE1E1C, 651, 497, 4, 20)) { ; the exit button
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> Race Result: Moving cursor to the Retry button"
|
||||
while (!IsColor(hwnd, 0xFFFFFF, 514, 504, 4, 20)) { ; cursor on top the retry button
|
||||
Gosub, Press_Right
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> Race Result: Pressing the Retry button"
|
||||
while (IsColor(hwnd, 0xFFFFFF, 514, 504, 4, 20)) { ; cursor on top the retry button
|
||||
Gosub, Press_X
|
||||
Sleep, 500
|
||||
}
|
||||
|
||||
; ** RACE START
|
||||
OutputDebug % "Clubman> Race Start: Waiting for Race Start screen to load (checking cursor)"
|
||||
while (!IsColor(hwnd, 0xFFFFFF, 287, 504, 4, 20)) { ; cursor on top the start button
|
||||
Sleep, 500
|
||||
}
|
||||
OutputDebug % "Clubman> Race Start: Pressing the Start button"
|
||||
while (IsColor(hwnd, 0xFFFFFF, 287, 504, 4, 20)) { ; cursor on top the start button
|
||||
Gosub, Press_X
|
||||
Sleep, 500
|
||||
}
|
||||
|
||||
OutputDebug % "--- Summary ---"
|
||||
credits_total := (races_completed * 0.07 + races_clean * 0.035)
|
||||
races_clean_percent := (races_clean / races_completed) * 100
|
||||
time_current := A_TickCount
|
||||
credits_average := credits_total / (time_current - time_start) * 3600000
|
||||
|
||||
OutputDebug % "Clubman> Summary: Races " races_completed
|
||||
OutputDebug % "Clubman> Summary: Races Clean " races_clean
|
||||
OutputDebug % "Clubman> Summary: Races Clean Rate " races_clean_percent "%"
|
||||
OutputDebug % "Clubman> Summary: Earnings " credits_total "M"
|
||||
OutputDebug % "Clubman> Summary: Earnings Rate " credits_average "M/Hr"
|
||||
OutputDebug % "---------------"
|
||||
}
|
||||
return
|
||||
|
||||
Reset:
|
||||
Gosub, GrabWindow
|
||||
; PixelSearch(465, 519, 6, hwnd, "", "2")
|
||||
; OutputDebug % "Clubman> has grey " IsColor(hwnd, 0xC9C9C9, 465, 519, 6, 20)
|
||||
return
|
||||
|
||||
; -------------------
|
||||
; Health Check
|
||||
; -------------------
|
||||
Health:
|
||||
FormatTime, current_date,, % "yyMMdd-HHmm-ss"
|
||||
OutputDebug % "Clubman> Health: Checking health at " current_date
|
||||
OutputDebug % "Clubman> Health: Races completed " races_completed
|
||||
OutputDebug % "Clubman> Health: Races completed last time " races_completed_check
|
||||
|
||||
if (races_completed_check >= races_completed) {
|
||||
OutputDebug % "Clubman> Health: Error dectected, sending notification"
|
||||
SendNotification("ClubmanPlus", "Something went wrong", 2, "persistent")
|
||||
} else {
|
||||
OutputDebug % "Clubman> Health: Running healthy"
|
||||
races_completed_check := races_completed
|
||||
}
|
||||
Return
|
||||
|
||||
; -------------------
|
||||
; Summary Check
|
||||
; -------------------
|
||||
Summary:
|
||||
OutputDebug % "Clubman> Summary: Sending summary notification"
|
||||
message := ""
|
||||
message := message "Races " races_clean " / " races_completed " (" races_clean_percent ")`n"
|
||||
message := message "Earnings " credits_total "M (" credits_average "M/Hr)"
|
||||
SendNotification("ClubmanPlus", message, 0, "cashregister")
|
||||
Return
|
||||
|
||||
; -------------------
|
||||
; Send Notification
|
||||
; -------------------
|
||||
SendNotification(title, message, level, sound) {
|
||||
|
||||
IniRead, token, %A_ScriptDir%\clubman.ini, pushover, token
|
||||
IniRead, user, %A_ScriptDir%\clubman.ini, pushover, user_key
|
||||
|
||||
retries := 60
|
||||
expires := 3600
|
||||
|
||||
url := "https://api.pushover.net/1/messages.json"
|
||||
param := "token=" token "&user=" user "&title=" title "&message=" message "&sound=" sound "&priority=" level
|
||||
|
||||
if (level == 2) {
|
||||
param := param "&retry=" retries "&expire=" expires
|
||||
}
|
||||
|
||||
WebRequest := ComObjCreate("WinHttp.WinHttpRequest.5.1")
|
||||
WebRequest.Open("POST", url)
|
||||
WebRequest.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")
|
||||
WebRequest.Send(param)
|
||||
Return
|
||||
}
|
||||
|
||||
; -------------------
|
||||
; Grab Window
|
||||
; -------------------
|
||||
GrabWindow:
|
||||
OutputDebug % "Clubman> Looking for window"
|
||||
hwnd := WinExist("PS Remote Play")
|
||||
|
||||
if (hwnd > 0) {
|
||||
OutputDebug % "Clubman> Window found: " hwnd
|
||||
WinMove, ahk_id %hwnd%,, 0, 0, %window_width%, %window_height%
|
||||
WinActivate, ahk_id %hwnd%
|
||||
ControlFocus,, ahk_id %hwnd%
|
||||
}
|
||||
return
|
||||
|
||||
; -------------------
|
||||
; Is Color
|
||||
; -------------------
|
||||
IsColor(hwnd, target_color, x, y, b, tolerance) {
|
||||
for i, c in PixelSearch(x, y, b, hwnd) {
|
||||
if (ColorDistance(c, target_color) <= tolerance) {
|
||||
Return True
|
||||
}
|
||||
}
|
||||
Return False
|
||||
}
|
||||
|
||||
; -------------------
|
||||
; Color Distance
|
||||
; -------------------
|
||||
ColorDistance( c1, c2 ) {
|
||||
r1 := c1 >> 16
|
||||
g1 := c1 >> 8 & 255
|
||||
b1 := c1 & 255
|
||||
r2 := c2 >> 16
|
||||
g2 := c2 >> 8 & 255
|
||||
b2 := c2 & 255
|
||||
return Sqrt( (r1-r2)**2 + (g1-g2)**2 + (b1-b2)**2 )
|
||||
}
|
||||
|
||||
; -------------------
|
||||
; Pixel Search
|
||||
; -------------------
|
||||
PixelSearch(x, y, b, hwnd, debugsave := "", debugsavecropped := "") {
|
||||
; Find out client area
|
||||
VarSetCapacity(rect, 16)
|
||||
DllCall("GetClientRect", "ptr", hwnd, "ptr", &rect)
|
||||
client_width := NumGet(rect, 8, "int")
|
||||
client_height := NumGet(rect, 12, "int")
|
||||
|
||||
; Recalculate the area desired to the current system scaling; values were taken using 150% scale
|
||||
b := Floor((b * client_width) / 960)
|
||||
|
||||
; Convert x and y to currrent system; values were taken using 4K resolution
|
||||
x := Floor((A_ScreenWidth * x) / 3840)
|
||||
y := Floor((A_ScreenHeight * y) / 2160)
|
||||
|
||||
; Convert client to screen coordinates
|
||||
VarSetCapacity(POINT, 8)
|
||||
NumPut(x, &POINT, 0, "Int")
|
||||
NumPut(y, &POINT, 4, "Int")
|
||||
DllCall("user32\ClientToScreen", Ptr,hWnd, Ptr,&POINT)
|
||||
x := NumGet(&POINT, 0, "Int")
|
||||
y := NumGet(&POINT, 4, "Int")
|
||||
|
||||
WinGetPos,,, width, height, ahk_id %hwnd%
|
||||
|
||||
pToken := Gdip_Startup()
|
||||
hbm := CreateDIBSection(width, height),
|
||||
hdc := CreateCompatibleDC(),
|
||||
obm := SelectObject(hdc, hbm)
|
||||
|
||||
RegExMatch(A_OsVersion, "\d+", version)
|
||||
PrintWindow(hwnd, hdc, version >= 8 ? 2 : 0)
|
||||
|
||||
pBitmap := Gdip_CreateBitmapFromHBITMAP(hbm)
|
||||
SelectObject(hdc, obm),
|
||||
DeleteObject(hbm),
|
||||
DeleteDC(hdc)
|
||||
|
||||
pixs := []
|
||||
Loop % b*2 + 1 {
|
||||
i := (-1 * b) + (A_Index - 1)
|
||||
Loop % b*2 + 1 {
|
||||
j := (-1 * b) + (A_Index - 1)
|
||||
pixs.Push(Gdip_GetPixel(pBitmap, x+i, y+j) & 0x00FFFFFF)
|
||||
}
|
||||
}
|
||||
|
||||
FormatTime, current_date,, % "yyMMdd-HHmm-ss"
|
||||
|
||||
if (debugsave != "") {
|
||||
Gdip_SaveBitmapToFile(pBitmap, A_ScriptDir . "\" . current_date . "-" . debugsave . ".bmp")
|
||||
; Run % filename
|
||||
}
|
||||
if (debugsavecropped != "") {
|
||||
debugbitmap:=Gdip_CloneBitmapArea(pBitmap, x-b, y-b, b*2, b*2)
|
||||
Gdip_SaveBitmapToFile(debugbitmap, A_ScriptDir . "\" . current_date . "-" . debugsavecropped . ".bmp")
|
||||
Gdip_DisposeImage(debugbitmap)
|
||||
; Run % filename
|
||||
}
|
||||
|
||||
Gdip_DisposeImage(pBitmap)
|
||||
Gdip_Shutdown(pToken)
|
||||
return pixs
|
||||
}
|
||||
|
||||
; -------------------
|
||||
; Release All
|
||||
; -------------------
|
||||
Release_All:
|
||||
Gosub, Release_X
|
||||
Gosub, Release_O
|
||||
return
|
||||
|
||||
; -------------------
|
||||
; Press x
|
||||
; -------------------
|
||||
Press_X:
|
||||
Gosub, Hold_X
|
||||
Gosub, Release_x
|
||||
return
|
||||
|
||||
Hold_X:
|
||||
ControlSend,, {Enter down}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
Release_X:
|
||||
ControlSend,, {Enter up}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
; -------------------
|
||||
; Press O
|
||||
; -------------------
|
||||
Press_O:
|
||||
Gosub, Hold_O
|
||||
Gosub, Release_O
|
||||
return
|
||||
|
||||
Hold_O:
|
||||
ControlSend,, {Esc down}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
Release_O:
|
||||
ControlSend,, {Esc up}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
; -------------------
|
||||
; Press Right
|
||||
; -------------------
|
||||
Press_Right:
|
||||
Gosub, Hold_Right
|
||||
Gosub, Release_Right
|
||||
return
|
||||
|
||||
Hold_Right:
|
||||
ControlSend,, {Right down}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
Release_Right:
|
||||
ControlSend,, {Right up}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
; -------------------
|
||||
; Press Left
|
||||
; -------------------
|
||||
Press_Left:
|
||||
Gosub, Hold_Left
|
||||
Gosub, Release_Left
|
||||
return
|
||||
|
||||
Hold_Left:
|
||||
ControlSend,, {Left down}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
Release_Left:
|
||||
ControlSend,, {Left up}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
; -------------------
|
||||
; Press Up
|
||||
; -------------------
|
||||
Press_Up:
|
||||
Gosub, Hold_Up
|
||||
Gosub, Release_Up
|
||||
return
|
||||
|
||||
Hold_Up:
|
||||
ControlSend,, {Up down}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
Release_Up:
|
||||
ControlSend,, {Up up}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
; -------------------
|
||||
; Press Down
|
||||
; -------------------
|
||||
Press_Down:
|
||||
Gosub, Hold_Down
|
||||
Gosub, Release_Down
|
||||
return
|
||||
|
||||
Hold_Down:
|
||||
ControlSend,, {Down down}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
Release_Down:
|
||||
ControlSend,, {Down up}, ahk_id %hwnd%
|
||||
return
|
||||
|
||||
; Hotkeys
|
||||
^Esc::ExitApp
|
||||
@@ -0,0 +1,3 @@
|
||||
[pushover]
|
||||
user_key=your_key
|
||||
token=your_token
|
||||
Reference in New Issue
Block a user