diff options
author | glx <glx@openttd.org> | 2008-02-08 16:56:52 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-02-08 16:56:52 +0000 |
commit | 731137678cc61fed69fe621d0146f07672934920 (patch) | |
tree | db8111fc71fc815da99e819d25a04aa53ba09ebe /src/newgrf_commons.cpp | |
parent | 7b9efcea21788e41368c5b832ba8789ecf5bbd38 (diff) | |
download | openttd-731137678cc61fed69fe621d0146f07672934920.tar.xz |
(svn r12086) -Fix [FS#1747] (r11425): check overrides only for industries when mapping newgrf entities to 'real' entities
Diffstat (limited to 'src/newgrf_commons.cpp')
-rw-r--r-- | src/newgrf_commons.cpp | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/src/newgrf_commons.cpp b/src/newgrf_commons.cpp index b7684612c..59d0b06f1 100644 --- a/src/newgrf_commons.cpp +++ b/src/newgrf_commons.cpp @@ -91,11 +91,6 @@ uint16 OverrideManagerBase::GetID(uint8 grf_local_id, uint32 grfid) } } - /* No mapping found, try the overrides */ - for (uint16 id = 0; id < max_offset; id++) { - if (entity_overrides[id] == grf_local_id && grfid_overrides[id] == grfid) return id; - } - return invalid_ID; } @@ -169,6 +164,24 @@ void HouseOverrideManager::SetEntitySpec(const HouseSpec *hs) } } +/** Return the ID (if ever available) of a previously inserted entity. + * @param grf_local_id ID of this enity withing the grfID + * @param grfid ID of the grf file + * @return the ID of the candidate, of the Invalid flag item ID + */ +uint16 IndustryOverrideManager::GetID(uint8 grf_local_id, uint32 grfid) +{ + uint16 id = OverrideManagerBase::GetID(grf_local_id, grfid); + if (id != invalid_ID) return id; + + /* No mapping found, try the overrides */ + for (id = 0; id < max_offset; id++) { + if (entity_overrides[id] == grf_local_id && grfid_overrides[id] == grfid) return id; + } + + return invalid_ID; +} + /** Method to find an entity ID and to mark it as reserved for the Industry to be included. * @param grf_local_id ID used by the grf file for pre-installation work (equivalent of TTDPatch's setid * @param grfid ID of the current grf file |