Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

先装为敬

先看 。

由于时代在发展,社会在进步。之前的算法一并舍弃,完成了最新的算法,本次算法在稳定性容错率精度,都有质的提升。

准备东西

1,用python写的,主要是C++的opencv太难写了,但是如果追求速度,害得是C++,python有点慢

2,安利两个实用工具,也是要用到的工具

Snipaste,截图贴图工具,截的图可以贴在旁边,非常方便。

OneQuick,窗口置顶工具,想让某个窗口置顶就鼠标移上去按Win+G,默认的好像是Win+T。

都是微软的。

3,微信电脑版,要用跳一跳。

over。

过程

找棋子坐标

看下面的图,分析特点。



棋子桌标就是棋子的脚底下的中心点,找到他其实很简单,用opencv库的模板匹配。

我们首先要准备一张棋子的模板,如图



距离把它包裹住并且贴紧,然后用它来匹配原图像,

代码:

1
2
3
4
5
6
7
8
9
10
11
import cv2
img = cv2.imread("f:\Snipaste_2022.png")
template = cv2.imread('f:\Snipaste_2022_0.png')
res = cv2.matchTemplate(img, template, cv2.TM_CCOEFF_NORMED)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)
h, w = template.shape[:2]
top_left = max_loc
center_loc = ((int)(max_loc[0] + w ), int(max_loc[1] + h ) )
cv2.rectangle(img, max_loc, center_loc, (0, 0, 255), 1, 8)
cv2.imshow("sad",img)
cv2.waitKey(0

结果像这样:



这个矩形的坐标是知道的,找到脚底下的坐标不言而喻了吧。

找目标点坐标

首先我们要知道,为了找到目标点坐标,哪些东西有用哪些东西没用。

看图:



棋子以下的部分不需要吧,记分数字上面的东西不需要吧,当然棋子的右半身也不需要吧,需要的部分只有棋子的右上部分,所以我们需要把一整张图剪切成那样,



之前的算法是扫描整张图片的像素点,找到第一个像素变化最大的点的坐标,这个点的颜色就是目标图像的颜色,然后将不是这个颜色的坐标全部涂黑,然后用opencv边缘检测找到最左边(最右边)的坐标,然后求中点。

而问题在于这样找出的第一个点的坐标与实际不是很准确,分割图像的时候也有把目标图像也分割的情况,导致找到最左边(最右边)的坐标,然后求中点,会出现很大的误差。

所以,既然扫描像素的方式会有误差,那就不扫描像素,看图:



这是经过分割得到的有效区域。

我们直接用opencv边缘检测:



这些边缘都是由一连串的点构成的([[1,2],[2,3],[3,4]]…………….),我们要找到第一个颜色变化最大的坐标,等价于边缘检测后所有点中Y坐标最小的点的坐标。所有,只要计算列表中y坐标最小值,就找到颜色变化最大的坐标。而这个点及其关键,因为我们的中心点刚好需要他来得到。

找到颜色变化最大的坐标后,不是这个点的颜色的坐标全部涂黑,如图:



目标图形的轮廓就被我们提取出来了,相比分割有效区域之后的图,那些干扰的颜色就全被处理掉了,只有一小部分的干扰项目。

我们继续用边缘检测检测出他的轮廓,算出X最小(最大)值找到最左(最右)的点,算出Y最小的值找到最上面的点,过两点做平行于x,y轴的直线,交点就是中心坐标:

如图:



可以看到,这样找出来的中心点是非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常非常之准确的。

完整代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
import math
import shutil
import os
import win32con
import win32gui
from PIL import ImageGrab
from pynput.mouse import Button, Controller
import time
import cv2
import pyscreenshot
import numpy as np
import pyautogui
import sys
from numpy import *

import os

change1 = 2
change2 = 0

t = 38

m = 9


def math_point(p, center_loc, k):
# y=-0.58*x+a*0.58+b
y1 = k * center_loc[0] + p[0] * (-k) + p[1]
y1 = int(y1)
x2 = (p[0] * (-k) + p[1] - center_loc[1]) / (-k)
x2 = int(x2)

p1 = (center_loc[0], y1)
p2 = (x2, center_loc[1])
return p1, p2


def get_img1(img, place):
pt_1 = ()
pt_2 = ()
pt_3 = ()
pt_4 = ()
pt_5 = ()
if place == "left":
pt_1 = (img.shape[1], img.shape[0])
pt_2 = (img.shape[1], img.shape[0] - 30)
pt_3 = (img.shape[1] - 50, img.shape[0])
else:
pt_1 = (0, img.shape[0] - 30)
pt_2 = (0, img.shape[0])
pt_3 = (50, img.shape[0])

blank = np.ones(img.shape[:2], dtype='uint8')
cv2.circle(blank, pt_1, 1, (0, 0, 0), -1)
cv2.circle(blank, pt_2, 1, (0, 0, 0), -1)
cv2.circle(blank, pt_3, 1, (0, 0, 0), -1)

triangle_cnt = np.array([pt_1, pt_2, pt_3])

mask = cv2.drawContours(blank, [triangle_cnt], 0, (0, 0, 0), -1)
m = cv2.bitwise_and(img, img, mask=mask)
img2 = cv2.medianBlur(m, 5)
cv2.imshow("img2", img2)

hwnd = win32gui.FindWindow(None, "img2") # 获取句柄,然后置顶
CVRECT = cv2.getWindowImageRect("img2")
win32gui.SetWindowPos(hwnd, win32con.HWND_TOPMOST, 610, 125, img2.shape[1] + 10, img2.shape[0] + 40,
win32con.SWP_SHOWWINDOW)
return img2


def distance(a, b):
p1 = np.array(a)
p2 = np.array(b)
p3 = p1 - p2
p4 = math.hypot(p3[0], p3[1])
return p4


def get_time(length):
if length > 300:
time = length / 317.001158116
return time
elif length > 280:
time = length / 312.001158116
return time
elif length > 150:
time = length / 306.001158116
return time
else:
time = length / 300.001158116
return time


def dian_ji(time1):
mouse = Controller()
mouse.press(Button.left)
time.sleep(time1)
mouse.release(Button.left)


def get_center(img_rgb, template):
res = cv2.matchTemplate(img_rgb, template, cv2.TM_CCOEFF_NORMED)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)
h, w = template.shape[:2]
top_left = max_loc
center_loc = ((int)(max_loc[0] + w / 2), int(max_loc[1] + h / 2) + 36)
a = cv2.circle(img_rgb, center_loc, 1, (0, 0, 255), thickness=3, lineType=cv2.LINE_AA)

return max_loc, h, w, center_loc


def RemoveDir(filepath):
'''
如果文件夹不存在就创建,如果文件存在就清空!

'''
if not os.path.exists(filepath):
os.mkdir(filepath)
else:
shutil.rmtree(filepath)
os.mkdir(filepath)


def get_tol(img, change1):
if len(img) == 0:
return img, -1
img_copy = img.copy()
img_test = img.copy()
img_test = cv2.cvtColor(img_test, cv2.COLOR_BGR2GRAY)
img_test = cv2.GaussianBlur(img_test, (3, 3), cv2.BORDER_DEFAULT)
img_test = cv2.Canny(img_test, 7, 7)

cv2.imshow("img_test", img_test)
hwnd = win32gui.FindWindow(None, "img_test")
CVRECT = cv2.getWindowImageRect("img_test")
win32gui.SetWindowPos(hwnd, win32con.HWND_TOPMOST, 1210, 125, img.shape[1] + 10, img.shape[0] + 40,
win32con.SWP_SHOWWINDOW)
contours1, hierarchy = cv2.findContours(image=img_test, mode=cv2.RETR_EXTERNAL, method=cv2.CHAIN_APPROX_SIMPLE)
contours = []
for obj in contours1:
for i in obj:
i = i.squeeze()
i = i.tolist()

contours.append(i)
zui_min = np.amin(contours, axis=0)[1]
arr_min = []
for i in contours:
if i[1] == zui_min:
arr_min.append(i)
arr = [int(np.mean(arr_min, axis=0)[0]), zui_min]

co = img[0][0]
if len(co) == 0:
return img, -1
co = img[arr[1] + change1][arr[0] + change2]
print("co", co)

A = int(img.shape[0])
B = int(img.shape[1])

arr1 = []
for y in range(A):
for x in range(B):

if abs((int(img[y][x][0]) - int(co[0]))) >= m or abs(int(img[y][x][1]) - int(co[1])) >= m or abs(
int(img[y][x][2]) - int(co[2])) >= m:
b = (x, y)
arr1.append(b)
if len(arr1) > 2:
for i in arr1:
img_copy[i[1]][i[0]][0] = 0
img_copy[i[1]][i[0]][1] = 0
img_copy[i[1]][i[0]][2] = 0

pd = 0
if 150 < co[0] < 190 and 180 < co[1] < 210 and 220 < co[2] < 240:
pd = 1
if 100 < co[0] < 130 and 100 < co[1] < 130 and 140 < co[2] < 160:
pd = 2
if 71 < co[0] < 75 and 71 < co[1] < 75 and 71 < co[2] < 75:
pd = 3
if 135 < co[0] < 190 and 135 < co[1] < 190 and 135 < co[2] < 190 and co[0] == co[1] == co[2]:
pd = 4

print("pd", pd)

arry3 = []
for y in range(A):
for x in range(B):

if abs(int(img[y][x][0]) - 72) == 0 and abs(int(img[y][x][1]) - 72) == 0 and abs(
int(img[y][x][2]) - 72) == 0:
b = (x, y)
arry3.append(b)
for i in arry3:
img_copy[i[1]][i[0]][0] = 255
img_copy[i[1]][i[0]][1] = 255
img_copy[i[1]][i[0]][2] = 255

cv2.circle(img_copy2, (arr[0], arr[1]), 1, (0, 0, 255), thickness=1, lineType=cv2.LINE_AA)

a = img_copy

return a, pd, arr


def get_c(img, place, img_fuzhi, pd, aimg, c, top):
global change1

cv2.imshow("ppp", img_fuzhi)
img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
img = cv2.GaussianBlur(img, (3, 3), cv2.BORDER_DEFAULT)
img = cv2.Canny(img, 50, 50)


contours1, hierarchy = cv2.findContours(image=img, mode=cv2.RETR_EXTERNAL, method=cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(image=img_copy2, contours=contours1, contourIdx=-1, color=(255, 0, 0), thickness=1,
lineType=cv2.LINE_AA)
print("len", len(contours1))
area1 = []
for obj in contours1:
ret = cv2.minAreaRect(obj)
pts = cv2.boxPoints(ret)
area1.append(cv2.contourArea(pts))
print("area", np.mean(area1))
if len(contours1) == 0:
change1 = change1 + 2
img1, pd, arr = get_tol(img_fuzhi, change1)
print(change1)
img2 = get_img1(img1, place)
d = get_c(img2, place, img_fuzhi, pd, aimg, c, arr)
return d
if len(contours1) == 1 and np.mean(area1) < 80:
change1 = change1 + 2
print(change1)
img1, pd, arr = get_tol(img_fuzhi, change1)
img2 = get_img1(img1, place)
d = get_c(img2, place, img_fuzhi, pd, aimg, c, arr)
return d

contours = []
for obj in contours1:
for i in obj:
i = i.squeeze()
i = i.tolist()

contours.append(i)
if pd == 0:
if place == "left":
x_max = np.amax(contours, axis=0)[0]
y_max = np.amax(contours, axis=0)[1]
x_min = np.amin(contours, axis=0)[0]
arr_min = []
for i in contours:
if i[0] == x_min:
arr_min.append(i)
Left = [x_min, int(np.mean(arr_min, axis=0)[1])]
d = [top[0], Left[1]]
cv2.circle(img_copy2, (Left[0], Left[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)

cv2.circle(img_copy2, (d[0], d[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)
cv2.imshow("img_cooy2", img_copy2)
hwnd = win32gui.FindWindow(None, "img_cooy2") # 获取句柄,然后置顶
CVRECT = cv2.getWindowImageRect("img_cooy2")
win32gui.SetWindowPos(hwnd, win32con.HWND_TOPMOST, 910, 125, img.shape[1] + 10, img.shape[0] + 40,
win32con.SWP_SHOWWINDOW)
change1 = 2
return d


else:
x_min = np.amin(contours, axis=0)[0]
y_max = np.amax(contours, axis=0)[1]
x_max = np.amax(contours, axis=0)[0]
print("xmmin",x_min)
if img.shape[1] - x_max < 17 < x_min:
x_min = np.amin(contours, axis=0)[0]
arr_min = []
for i in contours:
if i[0] == x_min:
arr_min.append(i)
Left = [x_min, int(np.mean(arr_min, axis=0)[1])]
d = [top[0], Left[1]]
cv2.circle(img_copy2, (Left[0], Left[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)

# cv2.circle(img_copy2, (d[0], d[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)
# cv2.line(img_copy2, (top[0],top[1]), (top[0],int(img_copy2.shape[0])), (0, 0, 255), thickness=1);
#
# cv2.line(img_copy2, (Left[0],Left[1]), (int(img_copy2.shape[1]),Left[1]), (0, 0, 255), thickness=1);
cv2.imshow("img_cooy2", img_copy2)
hwnd = win32gui.FindWindow(None, "img_cooy2") # 获取句柄,然后置顶
CVRECT = cv2.getWindowImageRect("img_cooy2")
win32gui.SetWindowPos(hwnd, win32con.HWND_TOPMOST, 910, 125, img.shape[1] + 10, img.shape[0] + 40,
win32con.SWP_SHOWWINDOW)
change1 = 2
return d
else:

arr_max = []
for i in contours:
if i[0] == x_max:
arr_max.append(i)
print("arrmax", arr_max)
Right = [x_max, int(np.min(arr_max, axis=0)[1])]
d = [top[0], Right[1]]
cv2.circle(img_copy2, (Right[0], Right[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)

cv2.circle(img_copy2, (d[0], d[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)
cv2.imshow("img_cooy2", img_copy2)
hwnd = win32gui.FindWindow(None, "img_cooy2") # 获取句柄,然后置顶
CVRECT = cv2.getWindowImageRect("img_cooy2")
win32gui.SetWindowPos(hwnd, win32con.HWND_TOPMOST, 910, 125, img.shape[1] + 10, img.shape[0] + 40,
win32con.SWP_SHOWWINDOW)
change1 = 2
return d



else:
point_color = (0, 255, 0) # BGR
thickness = 1
lineType = 4
if pd == 2:
point_color = (0, 255, 0) # BGR
thickness = 1
lineType = 4
templatea = aimg
img_rgba = aimg
if place == "r":
templatea = cv2.imread("f:\\test\\test.png")
res = cv2.matchTemplate(img_rgba, templatea, cv2.TM_CCOEFF_NORMED)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)
h, w = templatea.shape[:2]
top_left = max_loc
center_loc = ((int)(max_loc[0] - w / 2 + 7), int(max_loc[1] - 35))
a = cv2.circle(img_rgba, center_loc, 1, (0, 0, 255), thickness=3, lineType=cv2.LINE_AA)
cv2.rectangle(img_rgba, (max_loc[0], max_loc[1]), (max_loc[0] + w, max_loc[1] + h), point_color,
thickness, lineType)

cv2.imshow("asd", img_rgba)
d = [center_loc[0] - (c[0] + 15), center_loc[1] - 300]

change1 = 2
return d
else:
templatea = cv2.imread("f:\\test\\test'.png")
res = cv2.matchTemplate(img_rgba, templatea, cv2.TM_CCOEFF_NORMED)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)
h, w = templatea.shape[:2]
top_left = max_loc
center_loc = ((int)(max_loc[0] + w + 11), int(max_loc[1] - 2))
a = cv2.circle(img_rgba, center_loc, 1, (0, 0, 255), thickness=3, lineType=cv2.LINE_AA)
cv2.rectangle(img_rgba, (max_loc[0], max_loc[1]), (max_loc[0] + w, max_loc[1] + h), point_color,
thickness, lineType)

cv2.imshow("asd", img_rgba)
d = [center_loc[0], center_loc[1]]

change1 = 2
return d


elif pd == 1:
d = [top[0], top[1] + 37]
cv2.circle(img_copy2, (d[0], d[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)
cv2.imshow("img_cooy2", img_copy2)

return d
elif pd == 3:
d = [top[0], top[1] + 20]
cv2.circle(img_copy2, (d[0], d[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)
cv2.imshow("img_cooy2", img_copy2)

return d
elif pd == 4:
d = [top[0] + 8, top[1] + 42]
cv2.circle(img_copy2, (d[0], d[1]), 1, (0, 0, 255), thickness=2, lineType=cv2.LINE_AA)
cv2.imshow("img_cooy2", img_copy2)

return d

a = -1
p = "F:\\img\\"
RemoveDir(p)
image = pyscreenshot.grab(bbox=(1, 2, 450, 855))
image.save("f:\\img\\Snipaste_2022.png")
while 1:
pyautogui.press('F1')
pyautogui.hotkey('Ctrl', 'Shift', 's')
a = a + 1
path = p + "Snipaste_2022_" + str(a) + ".png"
img = cv2.imread(path)
zhuan_shu_img = img.copy()
img_rgb = img.copy()
template = cv2.imread('F:\Snipaste_2022_0.png')
max_loc, h, w, center_loc = get_center(img, template)
img = cv2.resize(img, (450, 855), interpolation=cv2.INTER_CUBIC)
center = ()
length = 0
if center_loc[0] > img.shape[1] / 2:

img = img[315:center_loc[1], 0:center_loc[0] - 15]
img_copy2 = img.copy()
img_fuzhi = img.copy()
place = "left"
try:
getimg, pd, arr = get_tol(img, change1)
except:
pyautogui.moveTo(302, 751)
time.sleep(7)
pyautogui.click()
time.sleep(0.5)
pyautogui.moveTo(850, 570)
time.sleep(7)
pyautogui.click()
time.sleep(7)
pyautogui.moveTo(230, 360)
time.sleep(5)
pyautogui.hotkey('shift', 'F10')

get_img = get_img1(getimg, place)

center1 = get_c(get_img, place, img_fuzhi, pd, img, center_loc, arr)
center2 = [img.shape[1] + 15, img.shape[0]]
length = distance(center1, center2)
time1 = get_time(length)
dian_ji(time1)

print("时间", time1)
print("距离", length)
print("change1", change1)
print("#####################################################")

else:

img = img[315:center_loc[1], center_loc[0] + 15:img.shape[1]]
img_copy2 = img.copy()
img_fuzhi = img.copy()
place = "r"
try:
getimg, pd, arr = get_tol(img, change1)
except:
pyautogui.moveTo(302, 751)
time.sleep(7)
pyautogui.click()
time.sleep(0.5)
pyautogui.moveTo(850, 570)
time.sleep(7)
pyautogui.click()
time.sleep(7)
pyautogui.moveTo(230, 360)
time.sleep(5)
pyautogui.hotkey('shift', 'F10')

get_img = get_img1(getimg, place)
center1 = get_c(get_img, place, img_fuzhi, pd, zhuan_shu_img, center_loc, arr)
center2 = [0 - 15, img.shape[0]]
length = distance(center1, center2)
time1 = get_time(length)
dian_ji(time1)
print("时间", time1)
print("距离", length)
print("change1", change1)
print("#####################################################")

cv2.waitKey(600)
time.sleep(0.8)
cv2.waitKey(0)



算法分析

之前提到过,80%的代码都是在处理特殊情况,之前的算法是用均方差和一阶导数来排除干扰项目。现在是算法应该是曲线救国了,如果目标图形是在右边,那么就只关注最右侧的点,左边就只关注左边的点,剩下的特殊情况就针对它单独处理。比如这两种图形:



这两种图形的颜色分布是分布不均匀的,所以没办法用覆盖像素的方法来找到目标区域,所以直接用模板匹配把它匹配出来就彳亍了。

开端说过,本次算法在速度上有了质的飞跃,快在哪里。

假如跳到1w分,之前的版本可能用30分钟,现在只需要15分钟,只是举个例子,以实际为准。

在之前的代码中,扫描像素用了很多次双重for循环,导致程序运行速度很慢,而这次基本上双重for循环很少用,所以速度以下就快起来了。

所以,能不用嵌套循环,就别用。

得到速度

如果不是拯救者的电脑(因为我是):

我直接明说,跳一跳的开局两个方块的距离的固定的



打开你们的windows自带的画图工具,手动找到两个点的坐标,手动算距离,再用下面的代码测试

1
2
3
4
5
6
7
import time
from pynput.mouse import Button, Controller
mouse = Controller()
mouse.press(Button.left)#模拟按压
time.sleep()#模拟按下时间。从0.5开始测试,直到跳到正中心的位置
mouse.release(Button.left)#模拟松开

再用手动算出来的距离除以时间,得到速度,这个速度就是之后要用的速度。

拯救者的就不用了,直接copy

操作

右键之前提到的Snipaste的首选项,

,改成这样。

把跳一跳放在一个合适的位置,用之前提到的OneQuick工具,Win+G将跳一跳窗口置顶,防止点其他地方窗口没了。

把鼠标放在跳一跳窗口内,然后别动了,按shift+f10启动程序。开始跑。

几万上十万分不成问题,打遍国内无敌手

评论