summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-11-08 17:24:15 +0000
committerfrosch <frosch@openttd.org>2011-11-08 17:24:15 +0000
commit56e5144f716fb98ef8facde8b18631452188df6e (patch)
tree651bd5139bea2342485b09777cd6d27edb7cf252 /src
parentae11548b4ec2650348d818ae9f6bc19dd62caac2 (diff)
downloadopenttd-56e5144f716fb98ef8facde8b18631452188df6e.tar.xz
(svn r23140) -Add: ErrorUnknownCallbackResult()
Diffstat (limited to 'src')
-rw-r--r--src/lang/english.txt1
-rw-r--r--src/newgrf_commons.cpp36
-rw-r--r--src/newgrf_commons.h2
-rw-r--r--src/newgrf_config.h1
4 files changed, 40 insertions, 0 deletions
diff --git a/src/lang/english.txt b/src/lang/english.txt
index c8a7186ea..01458495c 100644
--- a/src/lang/english.txt
+++ b/src/lang/english.txt
@@ -2520,6 +2520,7 @@ STR_BROKEN_VEHICLE_LENGTH :{WHITE}Train '{
STR_NEWGRF_BUGGY :{WHITE}NewGRF '{0:RAW_STRING}' provides incorrect information
STR_NEWGRF_BUGGY_ARTICULATED_CARGO :{WHITE}Cargo/refit information for '{1:ENGINE}' differs from purchase list after construction. This might cause autorenew/-replace to fail refitting correctly
STR_NEWGRF_BUGGY_ENDLESS_PRODUCTION_CALLBACK :{WHITE}'{1:STRING}' caused an endless loop in the production callback
+STR_NEWGRF_BUGGY_UNKNOWN_CALLBACK_RESULT :{WHITE}Callback 0x{HEX} returned unknown/invalid result 0x{HEX}
# 'User removed essential NewGRFs'-placeholders for stuff without specs
STR_NEWGRF_INVALID_CARGO :<invalid cargo>
diff --git a/src/newgrf_commons.cpp b/src/newgrf_commons.cpp
index 443a61e47..6d81676de 100644
--- a/src/newgrf_commons.cpp
+++ b/src/newgrf_commons.cpp
@@ -13,10 +13,12 @@
*/
#include "stdafx.h"
+#include "debug.h"
#include "landscape.h"
#include "house.h"
#include "industrytype.h"
#include "newgrf.h"
+#include "newgrf_config.h"
#include "clear_map.h"
#include "station_map.h"
#include "tree_map.h"
@@ -27,6 +29,8 @@
#include "newgrf_text.h"
#include "livery.h"
#include "company_base.h"
+#include "gui.h"
+#include "strings_func.h"
#include "table/strings.h"
@@ -495,6 +499,38 @@ CommandCost GetErrorMessageFromLocationCallbackResult(uint16 cb_res, uint32 grfi
return res;
}
+/**
+ * Record that a NewGRF returned an unknown/invalid callback result.
+ * Also show an error to the user.
+ * @param grfid ID of the NewGRF causing the problem.
+ * @param cbid Callback causing the problem.
+ * @param cb_res Invalid result returned by the callback.
+ */
+void ErrorUnknownCallbackResult(uint32 grfid, uint16 cbid, uint16 cb_res)
+{
+ GRFConfig *grfconfig = GetGRFConfig(grfid);
+
+ if (!HasBit(grfconfig->grf_bugs, GBUG_UNKNOWN_CB_RESULT)) {
+ SetBit(grfconfig->grf_bugs, GBUG_UNKNOWN_CB_RESULT);
+ SetDParamStr(0, grfconfig->GetName());
+ SetDParam(1, cbid);
+ SetDParam(2, cb_res);
+ ShowErrorMessage(STR_NEWGRF_BUGGY, STR_NEWGRF_BUGGY_UNKNOWN_CALLBACK_RESULT, WL_CRITICAL);
+ }
+
+ /* debug output */
+ char buffer[512];
+
+ SetDParamStr(0, grfconfig->GetName());
+ GetString(buffer, STR_NEWGRF_BUGGY, lastof(buffer));
+ DEBUG(grf, 0, "%s", buffer + 3);
+
+ SetDParam(1, cbid);
+ SetDParam(2, cb_res);
+ GetString(buffer, STR_NEWGRF_BUGGY_UNKNOWN_CALLBACK_RESULT, lastof(buffer));
+ DEBUG(grf, 0, "%s", buffer + 3);
+}
+
/* static */ SmallVector<DrawTileSeqStruct, 8> NewGRFSpriteLayout::result_seq;
/**
diff --git a/src/newgrf_commons.h b/src/newgrf_commons.h
index 7c55911a8..ad1c8f408 100644
--- a/src/newgrf_commons.h
+++ b/src/newgrf_commons.h
@@ -300,6 +300,8 @@ uint32 GetNearbyTileInformation(TileIndex tile);
uint32 GetCompanyInfo(CompanyID owner, const struct Livery *l = NULL);
CommandCost GetErrorMessageFromLocationCallbackResult(uint16 cb_res, uint32 grfid, StringID default_error);
+void ErrorUnknownCallbackResult(uint32 grfid, uint16 cbid, uint16 cb_res);
+
/**
* Data related to the handling of grf files.
* @tparam Tcnt Number of spritegroups
diff --git a/src/newgrf_config.h b/src/newgrf_config.h
index bb82732ef..56a62ba9c 100644
--- a/src/newgrf_config.h
+++ b/src/newgrf_config.h
@@ -44,6 +44,7 @@ enum GRFBugs {
GBUG_VEH_LENGTH, ///< Length of rail vehicle changes when not inside a depot
GBUG_VEH_REFIT, ///< Articulated vehicles carry different cargos resp. are differently refittable than specified in purchase list
GBUG_VEH_POWERED_WAGON, ///< Powered wagon changed poweredness state when not inside a depot
+ GBUG_UNKNOWN_CB_RESULT, ///< A callback returned an unknown/invalid result
};
/** Status of post-gameload GRF compatibility check */