(svn r17512) -Add: some basic information about the loaded AIs in the crash log

This commit is contained in:
rubidium 2009-09-12 17:32:24 +00:00
parent d0de94be99
commit 9894e025a4
1 changed files with 15 additions and 0 deletions

View File

@ -24,6 +24,10 @@
#include "video/video_driver.hpp"
#include "saveload/saveload.h"
#include <squirrel.h>
#include "ai/ai_info.hpp"
#include "company_base.h"
#include <time.h>
/* static */ const char *CrashLog::message = NULL;
@ -94,6 +98,17 @@ char *CrashLog::LogConfiguration(char *buffer, const char *last) const
_video_driver == NULL ? "none" : _video_driver->GetName()
);
buffer += seprintf(buffer, last, "AI Configuration:\n");
const Company *c;
FOR_ALL_COMPANIES(c) {
if (c->ai_info == NULL) {
buffer += seprintf(buffer, last, " %2i: Human\n", (int)c->index);
} else {
buffer += seprintf(buffer, last, " %2i: %s (v%d)\n", (int)c->index, c->ai_info->GetName(), c->ai_info->GetVersion());
}
}
buffer += seprintf(buffer, last, "\n");
return buffer;
}