BasicBot 0.3.4a: added some crude logging. fixed abs(). fixed at least one bug that contributed to the desync, but the bug may still remain. version not very well tested, therefore the 'a'. See changelog for the whole lot.
This commit is contained in:
parent
84e4c81061
commit
a85e1ca59f
|
@ -1,4 +1,37 @@
|
|||
This changelog only concerns the Basic Bot code.
|
||||
|
||||
Changelog 0.3.4a:
|
||||
27 november 2006
|
||||
|
||||
- Fixed - Command - abs() did not function, fixed now.
|
||||
- Fixed - Code - Hopefully, the segmented-comutationcode. Found a major thinkingerror anyways.
|
||||
- Change - GUI - Score/Tie is now just Score 1 - 6. They are still an order of tie-breakers, but it just looks better. The title is also used for loggin.
|
||||
- Added - GUI - Titles for scores/ties. You can write what certain scores/ties mean in the bottom-right part. Press the small button above it to show it in the result window and the log.
|
||||
- Change - Command - Changed 'score' and 'tie1' (through 5) to just 'score1' (trough 6).
|
||||
- Added - Logging - The code will now do some (automatic) rudimentary logging. After each attempt it will write the part, attempt, frames, and six scores and their titles to a file called 'bb-log.txt'. It will not write scores that have '-' as title. Logging will be extended in the future, more options, all that.
|
||||
- Added - GUI - Rom description to identify what rom this bot is designed for.
|
||||
- Fixed - GUI - Well, not fixed, but I disabled the rollback and maxframes inputs since they are useless atm and confusing (even for me).
|
||||
- Change - Code - The extra code will now be ran BEFORE a frame, instead of afterwards. This makes more sense anyways, but in practice it merely means that the extra code is ran before the first frame, instead of after the last.
|
||||
- Added - GUI - Like the extra code works for each frame, likewise are there now inputs for before an attempt and a part.
|
||||
- Added - GUI - Listbox to contain the counter values. Autoupdated at the start of each attempt. Press 'test' button (for now) to update it manually.
|
||||
|
||||
Known issues:
|
||||
- Previously saved bots don't work with this version.
|
||||
- I have yet to determine whether there actually is a problem with the code or whether it was my testcode that was to blame for the strange occurences, but...
|
||||
- There seems to be a strange behaviour bug when going to the next part
|
||||
- When pressing reset, the right-top values don't reset
|
||||
- When pressing reset, some of the values don't zero out
|
||||
- There might still be a desync when using segments
|
||||
- Segments are called parts, but I want to change this to segments for clarity
|
||||
- Delay/Frameskips are saved and loaded, but not active on load (you still need to press the button).
|
||||
- I'm afraid this release hasn't been tested very well so there may be more (subtle) bugs... That's why it's labeled a.
|
||||
|
||||
Todo:
|
||||
- Add a button that in/validates a current run immediately. This should prohibit runs that are obviously ok but don't meet all the requirements set by you yet.
|
||||
- Expand logging
|
||||
- Add a menu to allow more options and less cluttering in main BB window.
|
||||
|
||||
|
||||
Changelog 0.3.3:
|
||||
19 november 2006
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -27,8 +27,13 @@
|
|||
void UpdateAvgGUI();
|
||||
void UpdateFullGUI();
|
||||
void UpdateCountersGUI();
|
||||
void UpdateTitles();
|
||||
void SetNewAttempt();
|
||||
void SetNewPart();
|
||||
void UpdatePrevGUI(int best[]);
|
||||
int BotFrameSkip();
|
||||
int BotFramePause();
|
||||
bool LoggingEnabled();
|
||||
void LogAttempt(int *scores, bool better);
|
||||
void ShowCounters();
|
||||
#endif // _BASICBOT_H_
|
||||
|
|
Binary file not shown.
|
@ -19,13 +19,16 @@
|
|||
#define GUI_BOT_INVALID 1009
|
||||
#define GUI_BOT_X 1010
|
||||
#define GUI_BOT_TIE1 1011
|
||||
#define GUI_BOT_SCORE2 1011
|
||||
#define GUI_BOT_TIE2 1012
|
||||
#define GUI_BOT_SCORE3 1012
|
||||
#define GUI_BOT_TIE3 1013
|
||||
#define GUI_BOT_SCORE4 1013
|
||||
#define GUI_BOT_SAVE 1014
|
||||
#define GUI_BOT_LOAD 1015
|
||||
#define GUI_BOT_RUN 1016
|
||||
#define GUI_BOT_MAX 1017
|
||||
#define GUI_BOT_SCORE 1017
|
||||
#define GUI_BOT_SCORE1 1017
|
||||
#define GUI_BOT_Y 1018
|
||||
#define GUI_BOT_KEYS 1019
|
||||
#define GUI_BOT_EXTRA 1020
|
||||
|
@ -35,6 +38,7 @@
|
|||
#define GUI_BOT_COMMENTS 1023
|
||||
#define GUI_BOT_UPDATE 1024
|
||||
#define GUI_BOT_BOTMODE 1025
|
||||
#define GUI_BOT_ROMNAME 1025
|
||||
#define GUI_BOT_P 1026
|
||||
#define GUI_BOT_Q 1027
|
||||
#define GUI_BOT_TEST 1028
|
||||
|
@ -56,8 +60,10 @@
|
|||
#define GUI_BOT_DOWN_2 1042
|
||||
#define GUI_BOT_LEFT_2 1043
|
||||
#define GUI_BOT_RIGHT_2 1044
|
||||
#define GUI_BOT_TIE4 1045
|
||||
#define GUI_BOT_TIE5 1046
|
||||
#define GUI_BOT_SCORE5 1045
|
||||
#define GUI_BOT_SCORE6 1046
|
||||
#define GUI_BOT_INIT_PART 1047
|
||||
#define GUI_BOT_INIT_ATTEMPT 1048
|
||||
#define GUI_BOT_FRAMES 1049
|
||||
#define GUI_BOT_BESTRESULT 1050
|
||||
#define GUI_BOT_LAST 1051
|
||||
|
@ -81,6 +87,7 @@
|
|||
#define GUI_BOT_TIE3_LAST 1073
|
||||
#define GUI_BOT_TIE4_LAST 1074
|
||||
#define GUI_BOT_TIE5_LAST 1075
|
||||
#define GUI_BOT_ATTEMPT_LAST2 1076
|
||||
#define GUI_BOT_SKIPS 1077
|
||||
#define GUI_BOT_FRAMES_LAST 1078
|
||||
#define GUI_BOT_FRAMES_BEST 1079
|
||||
|
@ -101,6 +108,24 @@
|
|||
#define GUI_BOT_TIE5_PREV3 1094
|
||||
#define GUI_BOT_SLOW 1095
|
||||
#define GUI_BOT_FRAMESKIP 1096
|
||||
#define GUI_BOT_PART_LAST2 1097
|
||||
#define GUI_BOT_TITLE1 1098
|
||||
#define GUI_BOT_TITLE2 1099
|
||||
#define GUI_BOT_TITLE3 1100
|
||||
#define GUI_BOT_TITLE4 1101
|
||||
#define GUI_BOT_TITLE5 1102
|
||||
#define GUI_BOT_TITLE6 1103
|
||||
#define GUI_BOT_PART_LAST3 1104
|
||||
#define GUI_BOT_INIT_PART2 1105
|
||||
#define GUI_BOT_TITLEL1 1106
|
||||
#define GUI_BOT_TITLES 1107
|
||||
#define GUI_BOT_TITLEL2 1108
|
||||
#define GUI_BOT_LOG 1109
|
||||
#define GUI_BOT_TITLEL3 1110
|
||||
#define GUI_BOT_TITLEL4 1111
|
||||
#define GUI_BOT_TITLEL5 1112
|
||||
#define GUI_BOT_TITLEL6 1113
|
||||
#define GUI_BOT_COUNTERS 1114
|
||||
#define ID_DEBUG_DEBUGGER 40053
|
||||
#define ID_DEBUG_PPUVIEWER 40054
|
||||
#define ID_DEBUG_NAMETABLEVIEWER 40055
|
||||
|
@ -117,7 +142,7 @@
|
|||
#ifndef APSTUDIO_READONLY_SYMBOLS
|
||||
#define _APS_NEXT_RESOURCE_VALUE 103
|
||||
#define _APS_NEXT_COMMAND_VALUE 40013
|
||||
#define _APS_NEXT_CONTROL_VALUE 1097
|
||||
#define _APS_NEXT_CONTROL_VALUE 1117
|
||||
#define _APS_NEXT_SYMED_VALUE 101
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue