diff --git a/src/crashlog.cpp b/src/crashlog.cpp index 01678bea34..60679172f2 100644 --- a/src/crashlog.cpp +++ b/src/crashlog.cpp @@ -24,6 +24,10 @@ #include "video/video_driver.hpp" #include "saveload/saveload.h" +#include +#include "ai/ai_info.hpp" +#include "company_base.h" + #include /* 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; }