diff --git a/Tools/Sanity/main.cpp b/Tools/Sanity/main.cpp index bf43890166..e39513d9e1 100644 --- a/Tools/Sanity/main.cpp +++ b/Tools/Sanity/main.cpp @@ -17,7 +17,7 @@ int main(int argc, char** argv) } DebugTraceInfo("Start"); - asst.start(); + asst.start("SanityBegin"); getchar(); diff --git a/resource/FriendList.png b/resource/FriendList.png new file mode 100644 index 0000000000..4a5a991b96 Binary files /dev/null and b/resource/FriendList.png differ diff --git a/resource/Friends.png b/resource/Friends.png new file mode 100644 index 0000000000..8c82fe8dcc Binary files /dev/null and b/resource/Friends.png differ diff --git a/resource/Return.png b/resource/Return.png new file mode 100644 index 0000000000..58c511622c Binary files /dev/null and b/resource/Return.png differ diff --git a/resource/StartToVisit.png b/resource/StartToVisit.png new file mode 100644 index 0000000000..dc4c526dff Binary files /dev/null and b/resource/StartToVisit.png differ diff --git a/resource/VisitLimited.png b/resource/VisitLimited.png new file mode 100644 index 0000000000..7dc62eb0e9 Binary files /dev/null and b/resource/VisitLimited.png differ diff --git a/resource/VisitNext.png b/resource/VisitNext.png new file mode 100644 index 0000000000..c3e28872af Binary files /dev/null and b/resource/VisitNext.png differ diff --git a/resource/VisitNextBlack.png b/resource/VisitNextBlack.png new file mode 100644 index 0000000000..65abf9815f Binary files /dev/null and b/resource/VisitNextBlack.png differ diff --git a/resource/config.json b/resource/config.json index bb7d67f7cc..262bb2b91b 100644 --- a/resource/config.json +++ b/resource/config.json @@ -258,6 +258,74 @@ "next": [ "Random" ] + }, + "VisitBegin": { + "filename": "", + "threshold": 0, + "type": "doNothing", + "next": [ + "Friends", + "FriendsList", + "StartToVisit", + "VisitNext", + "VisitNextBlack", + "Return" + ] + }, + "Return": { + "filename": "Return.png", + "threshold": 0.98, + "type": "clickSelf", + "next": [ + "Friends", + "Return" + ] + }, + "Friends": { + "filename": "Friends.png", + "threshold": 0.98, + "type": "clickSelf", + "next": [ + "FriendsList" + ] + }, + "FriendsList": { + "filename": "FriendsList.png", + "threshold": 0.98, + "type": "clickSelf", + "next": [ + "StartToVisit" + ] + }, + "StartToVisit": { + "filename": "StartToVisit.png", + "threshold": 0.98, + "type": "clickSelf", + "next": [ + "VisitNext" + ] + }, + "VisitNext": { + "filename": "VisitNext.png", + "threshold": 0.98, + "type": "clickSelf", + "next": [ + "VisitLimited", + "VisitNext", + "VisitNextBlack" + ] + }, + "VisitLimited": { + "filename": "VisitLimited.png", + "threshold": 0.65, + "type": "stop", + "next": [] + }, + "VisitNextBlack": { + "filename": "VisitNextBlack.png", + "threshold": 0.98, + "type": "stop", + "next": [] } } } \ No newline at end of file