打包多个示例v1和v2代码下载地址:
GitHub项目:https://github.com/Spawnova/ShinsOverlayClass
GeneralExample.ahk
#singleinstance,force
setbatchlines,-1
settitlematchmode,2
#include ..\ShinsOverlayClass.ahk
overlay := new ShinsOverlayClass(50,50,1100,130) ;initally create a static overlay
rot := 0 ;rotation value for drawing the circling ellipse
len := (overlay.width > overlay.height ? overlay.height : overlay.width) / 4 ;length to rotate around
stickFrame := 0
nextStickFrame := a_tickcount + 100
stickRot := 0 ;rotation for stickman
settimer,draw,10 ;overlay essentially requires a timer if attaching to window, as the window checks are done in the BeginDraw() function
return
f1::
overlay.AttachToWindow("ahk_id " winexist("a"),1)
len := (overlay.width > overlay.height ? overlay.height : overlay.width) / 4
return
esc::exitapp
draw:
if (overlay.BeginDraw()) { ;must always be called to start drawing; BeginDraw() also handles window checks, for position/size/foreground change (if attached)
if (overlay.attachHwnd) { ;if the overlay is attached to a window
;update some math variables
rot+= 0.02
if (rot > 6.28)
rot := 0
x := (overlay.width/2) + cos(rot) * len
y := (overlay.height/2) + sin(rot) * len
;draw rectangle around window using real coordinates
;otherwise by default it may include the invisible borders
rx := overlay.realX
ry := overlay.realY
rx2 := overlay.realX2
ry2 := overlay.realY2
rw := overlay.realWidth
rh := overlay.realHeight
if (overlay.GetMousePos(mx,my,1)) {
;fill squares only if the rotation circle is within the region
if (x > mx and y > my) {
overlay.FillRectangle(mx,my,rx2-mx,ry2-my,0x66116666)
} else if (x < mx and y > my) {
overlay.FillRectangle(rx,my,mx-rx,ry2-my,0x66116611)
} else if (x < mx and y < my) {
overlay.FillRectangle(rx,ry,mx-rx,my-ry,0x66111166)
} else {
overlay.FillRectangle(mx,ry,rx2-mx,my,0x66661111)
}
overlay.DrawLine(rx+1,my,rx2,my,0xFF000000,3) ;draw lines to the mouse position
overlay.DrawLine(mx,ry+1,mx,ry2,0xFF000000,3)
overlay.DrawLine(rx+1,my,rx2,my,0xFF3EF9CE,1)
overlay.DrawLine(mx,ry+1,mx,ry2,0xFF3EF9CE,1)
overlay.FillEllipse(mx,my,3,3,0xFFFFFFFF)
}
overlay.DrawLine(rx,ry,x,y,0xFFFF00FF,4) ;draw line from top left to rotating circle
overlay.DrawLine(x,y,rw-1,rh-1,0xFFFF00FF,4) ;draw line from rotating circle to bottom right
overlay.DrawEllipse(x,y,30,30,0xFF000000,5)
overlay.DrawEllipse(x,y,30,30,0xFFFF0000,2) ;draw the rotating circles
overlay.FillEllipse(x,y,17,17,0xFF000000)
overlay.FillEllipse(x,y,15,15,0xFF00FF00)
overlay.DrawRectangle(rx+1,ry+1,rw-1,rh-1,0xFFFF0000,2) ;draw a rectangle around the window
;drawing stickman, scaling from 32x32 to 128x128 and animating from spritesheet
overlay.DrawImage("stickMan.png",100,100,128,128,stickFrame*32,0,32,32,1,0,stickRot) ;draw a rotating stickman who animates
if (a_tickcount > nextStickFrame) {
stickFrame++
if (stickFrame > 3)
stickFrame := 0
nextStickFrame := a_tickcount + 100 ;next frame in 100 ms
}
stickRot+= 1
if (stickRot > 360)
stickRot := 0
overlay.DrawText("Press ESC to close!",10,200,24 + (rot*3),0xFFFFFFFF,"Courier","dsFF000000") ;draw text that grows and shrinks
overlay.DrawText("Press ESC to close!",10,200 + (24+(rot*3)),24 + (rot*3),0xFF000000,"Courier","dsFFFFFFFF") ;draw text that grows and shrinks
} else {
overlay.FillRectangle(0,0,overlay.width,overlay.height,0xaa000000)
overlay.DrawText("Press F1 to attach the overlay to a window to begin!`nYou can do this multiple times!",0,0,40,0xFFFFFFFF,"Courier","dsFF000000")
}
overlay.EndDraw() ;must always be called to end the drawing and update the overlay
}
return
#singleinstance,force
setbatchlines,-1
settitlematchmode,2
#include ..\ShinsOverlayClass.ahk
overlay := new ShinsOverlayClass(50,50,1100,130) ;initally create a static overlay
rot := 0 ;rotation value for drawing the circling ellipse
len := (overlay.width > overlay.height ? overlay.height : overlay.width) / 4 ;length to rotate around
stickFrame := 0
nextStickFrame := a_tickcount + 100
stickRot := 0 ;rotation for stickman
settimer,draw,10 ;overlay essentially requires a timer if attaching to window, as the window checks are done in the BeginDraw() function
return
f1::
overlay.AttachToWindow("ahk_id " winexist("a"),1)
len := (overlay.width > overlay.height ? overlay.height : overlay.width) / 4
return
esc::exitapp
draw:
if (overlay.BeginDraw()) { ;must always be called to start drawing; BeginDraw() also handles window checks, for position/size/foreground change (if attached)
if (overlay.attachHwnd) { ;if the overlay is attached to a window
;update some math variables
rot+= 0.02
if (rot > 6.28)
rot := 0
x := (overlay.width/2) + cos(rot) * len
y := (overlay.height/2) + sin(rot) * len
;draw rectangle around window using real coordinates
;otherwise by default it may include the invisible borders
rx := overlay.realX
ry := overlay.realY
rx2 := overlay.realX2
ry2 := overlay.realY2
rw := overlay.realWidth
rh := overlay.realHeight
if (overlay.GetMousePos(mx,my,1)) {
;fill squares only if the rotation circle is within the region
if (x > mx and y > my) {
overlay.FillRectangle(mx,my,rx2-mx,ry2-my,0x66116666)
} else if (x < mx and y > my) {
overlay.FillRectangle(rx,my,mx-rx,ry2-my,0x66116611)
} else if (x < mx and y < my) {
overlay.FillRectangle(rx,ry,mx-rx,my-ry,0x66111166)
} else {
overlay.FillRectangle(mx,ry,rx2-mx,my,0x66661111)
}
overlay.DrawLine(rx+1,my,rx2,my,0xFF000000,3) ;draw lines to the mouse position
overlay.DrawLine(mx,ry+1,mx,ry2,0xFF000000,3)
overlay.DrawLine(rx+1,my,rx2,my,0xFF3EF9CE,1)
overlay.DrawLine(mx,ry+1,mx,ry2,0xFF3EF9CE,1)
overlay.FillEllipse(mx,my,3,3,0xFFFFFFFF)
}
overlay.DrawLine(rx,ry,x,y,0xFFFF00FF,4) ;draw line from top left to rotating circle
overlay.DrawLine(x,y,rw-1,rh-1,0xFFFF00FF,4) ;draw line from rotating circle to bottom right
overlay.DrawEllipse(x,y,30,30,0xFF000000,5)
overlay.DrawEllipse(x,y,30,30,0xFFFF0000,2) ;draw the rotating circles
overlay.FillEllipse(x,y,17,17,0xFF000000)
overlay.FillEllipse(x,y,15,15,0xFF00FF00)
overlay.DrawRectangle(rx+1,ry+1,rw-1,rh-1,0xFFFF0000,2) ;draw a rectangle around the window
;drawing stickman, scaling from 32x32 to 128x128 and animating from spritesheet
overlay.DrawImage("stickMan.png",100,100,128,128,stickFrame*32,0,32,32,1,0,stickRot) ;draw a rotating stickman who animates
if (a_tickcount > nextStickFrame) {
stickFrame++
if (stickFrame > 3)
stickFrame := 0
nextStickFrame := a_tickcount + 100 ;next frame in 100 ms
}
stickRot+= 1
if (stickRot > 360)
stickRot := 0
overlay.DrawText("Press ESC to close!",10,200,24 + (rot*3),0xFFFFFFFF,"Courier","dsFF000000") ;draw text that grows and shrinks
overlay.DrawText("Press ESC to close!",10,200 + (24+(rot*3)),24 + (rot*3),0xFF000000,"Courier","dsFFFFFFFF") ;draw text that grows and shrinks
} else {
overlay.FillRectangle(0,0,overlay.width,overlay.height,0xaa000000)
overlay.DrawText("Press F1 to attach the overlay to a window to begin!`nYou can do this multiple times!",0,0,40,0xFFFFFFFF,"Courier","dsFF000000")
}
overlay.EndDraw() ;must always be called to end the drawing and update the overlay
}
return
#singleinstance,force
setbatchlines,-1
settitlematchmode,2
#include ..\ShinsOverlayClass.ahk
overlay := new ShinsOverlayClass(50,50,1100,130) ;initally create a static overlay
rot := 0 ;rotation value for drawing the circling ellipse
len := (overlay.width > overlay.height ? overlay.height : overlay.width) / 4 ;length to rotate around
stickFrame := 0
nextStickFrame := a_tickcount + 100
stickRot := 0 ;rotation for stickman
settimer,draw,10 ;overlay essentially requires a timer if attaching to window, as the window checks are done in the BeginDraw() function
return
f1::
overlay.AttachToWindow("ahk_id " winexist("a"),1)
len := (overlay.width > overlay.height ? overlay.height : overlay.width) / 4
return
esc::exitapp
draw:
if (overlay.BeginDraw()) { ;must always be called to start drawing; BeginDraw() also handles window checks, for position/size/foreground change (if attached)
if (overlay.attachHwnd) { ;if the overlay is attached to a window
;update some math variables
rot+= 0.02
if (rot > 6.28)
rot := 0
x := (overlay.width/2) + cos(rot) * len
y := (overlay.height/2) + sin(rot) * len
;draw rectangle around window using real coordinates
;otherwise by default it may include the invisible borders
rx := overlay.realX
ry := overlay.realY
rx2 := overlay.realX2
ry2 := overlay.realY2
rw := overlay.realWidth
rh := overlay.realHeight
if (overlay.GetMousePos(mx,my,1)) {
;fill squares only if the rotation circle is within the region
if (x > mx and y > my) {
overlay.FillRectangle(mx,my,rx2-mx,ry2-my,0x66116666)
} else if (x < mx and y > my) {
overlay.FillRectangle(rx,my,mx-rx,ry2-my,0x66116611)
} else if (x < mx and y < my) {
overlay.FillRectangle(rx,ry,mx-rx,my-ry,0x66111166)
} else {
overlay.FillRectangle(mx,ry,rx2-mx,my,0x66661111)
}
overlay.DrawLine(rx+1,my,rx2,my,0xFF000000,3) ;draw lines to the mouse position
overlay.DrawLine(mx,ry+1,mx,ry2,0xFF000000,3)
overlay.DrawLine(rx+1,my,rx2,my,0xFF3EF9CE,1)
overlay.DrawLine(mx,ry+1,mx,ry2,0xFF3EF9CE,1)
overlay.FillEllipse(mx,my,3,3,0xFFFFFFFF)
}
overlay.DrawLine(rx,ry,x,y,0xFFFF00FF,4) ;draw line from top left to rotating circle
overlay.DrawLine(x,y,rw-1,rh-1,0xFFFF00FF,4) ;draw line from rotating circle to bottom right
overlay.DrawEllipse(x,y,30,30,0xFF000000,5)
overlay.DrawEllipse(x,y,30,30,0xFFFF0000,2) ;draw the rotating circles
overlay.FillEllipse(x,y,17,17,0xFF000000)
overlay.FillEllipse(x,y,15,15,0xFF00FF00)
overlay.DrawRectangle(rx+1,ry+1,rw-1,rh-1,0xFFFF0000,2) ;draw a rectangle around the window
;drawing stickman, scaling from 32x32 to 128x128 and animating from spritesheet
overlay.DrawImage("stickMan.png",100,100,128,128,stickFrame*32,0,32,32,1,0,stickRot) ;draw a rotating stickman who animates
if (a_tickcount > nextStickFrame) {
stickFrame++
if (stickFrame > 3)
stickFrame := 0
nextStickFrame := a_tickcount + 100 ;next frame in 100 ms
}
stickRot+= 1
if (stickRot > 360)
stickRot := 0
overlay.DrawText("Press ESC to close!",10,200,24 + (rot*3),0xFFFFFFFF,"Courier","dsFF000000") ;draw text that grows and shrinks
overlay.DrawText("Press ESC to close!",10,200 + (24+(rot*3)),24 + (rot*3),0xFF000000,"Courier","dsFFFFFFFF") ;draw text that grows and shrinks
} else {
overlay.FillRectangle(0,0,overlay.width,overlay.height,0xaa000000)
overlay.DrawText("Press F1 to attach the overlay to a window to begin!`nYou can do this multiple times!",0,0,40,0xFFFFFFFF,"Courier","dsFF000000")
}
overlay.EndDraw() ;must always be called to end the drawing and update the overlay
}
return
声明:站内资源为整理优化好的代码上传分享与学习研究,如果是开源代码基本都会标明出处,方便大家扩展学习路径。请不要恶意搬运,破坏站长辛苦整理维护的劳动成果。本站为爱好者分享站点,所有内容不作为商业行为。如若本站上传内容侵犯了原著者的合法权益,请联系我们进行删除下架。
评论(0)