From 9894e025a4cd24aaa2a58559f38ca6cf1d8e06d9 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 12 Sep 2009 17:32:24 +0000 Subject: [PATCH] (svn r17512) -Add: some basic information about the loaded AIs in the crash log --- src/crashlog.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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; }