-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
改善AI 增加對其他模擬器的支援 可自行修正顏色偏差
- Loading branch information
Showing
11 changed files
with
311 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
0 20 | ||
10 32 | ||
108 144 | ||
108 144 | ||
40 45 | ||
38 110 | ||
325 350 | ||
325 350 | ||
190 210 | ||
150 210 | ||
294 302 | ||
250 295 | ||
|
||
TIP | ||
�� | ||
�� | ||
�� | ||
�� | ||
�� | ||
�t |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
35 316 462 671 | ||
90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef _CONFIG_H | ||
#define _CONFIG_H | ||
|
||
#include"board.h" | ||
#include"BluestackCapture.h" | ||
#include<fstream> | ||
|
||
using std::fstream; | ||
using std::endl; | ||
|
||
|
||
|
||
class config{ | ||
|
||
int BoardTop; | ||
int BoardLeft; | ||
int BoardButtom; | ||
int BoardRight; | ||
int Speed; | ||
public: | ||
int GetTop()const{return BoardTop;} | ||
int GetLeft()const{return BoardLeft;} | ||
int GetButtom()const{return BoardButtom;} | ||
int GetRight()const{return BoardRight;} | ||
int GetSpeed()const{return Speed;} | ||
friend bool LoadConfig(config &cfg); | ||
friend bool CreateConfig(config &cfg); | ||
friend bool SaveConfig(config &cfg); | ||
}; | ||
|
||
|
||
#endif |
Oops, something went wrong.