OpenTTD
newgrf_cargo.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #include "stdafx.h"
11 #include "debug.h"
12 #include "newgrf_spritegroup.h"
13 
14 #include "safeguards.h"
15 
19 
20  const SpriteGroup *ResolveReal(const RealSpriteGroup *group) const override;
21 };
22 
23 /* virtual */ const SpriteGroup *CargoResolverObject::ResolveReal(const RealSpriteGroup *group) const
24 {
25  /* Cargo action 2s should always have only 1 "loaded" state, but some
26  * times things don't follow the spec... */
27  if (group->num_loaded > 0) return group->loaded[0];
28  if (group->num_loading > 0) return group->loading[0];
29 
30  return nullptr;
31 }
32 
41  : ResolverObject(cs->grffile, callback, callback_param1, callback_param2)
42 {
43  this->root_spritegroup = cs->group;
44 }
45 
52 {
53  CargoResolverObject object(cs);
54  const SpriteGroup *group = object.Resolve();
55  if (group == nullptr) return 0;
56 
57  return group->GetResult();
58 }
59 
60 
61 uint16 GetCargoCallback(CallbackID callback, uint32 param1, uint32 param2, const CargoSpec *cs)
62 {
63  CargoResolverObject object(cs, callback, param1, param2);
64  return object.ResolveCallback();
65 }
66 
76 CargoID GetCargoTranslation(uint8 cargo, const GRFFile *grffile, bool usebit)
77 {
78  /* Pre-version 7 uses the 'climate dependent' ID in callbacks and properties, i.e. cargo is the cargo ID */
79  if (grffile->grf_version < 7 && !usebit) return cargo;
80 
81  /* Other cases use (possibly translated) cargobits */
82 
83  if (grffile->cargo_list.size() > 0) {
84  /* ...and the cargo is in bounds, then get the cargo ID for
85  * the label */
86  if (cargo < grffile->cargo_list.size()) return GetCargoIDByLabel(grffile->cargo_list[cargo]);
87  } else {
88  /* Else the cargo value is a 'climate independent' 'bitnum' */
89  return GetCargoIDByBitnum(cargo);
90  }
91  return CT_INVALID;
92 }
SpriteID GetCustomCargoSprite(const CargoSpec *cs)
Get the custom sprite for the given cargo type.
CargoID GetCargoIDByLabel(CargoLabel cl)
Get the cargo ID by cargo label.
Definition: cargotype.cpp:86
Functions related to debugging.
CargoID GetCargoTranslation(uint8 cargo, const GRFFile *grffile, bool usebit)
Translate a GRF-local cargo slot/bitnum into a CargoID.
Interface for SpriteGroup-s to access the gamestate.
Specification of a cargo type.
Definition: cargotype.h:55
Set when using the callback resolve system, but not to resolve a callback.
byte num_loaded
Number of loaded groups.
uint32 callback_param1
First parameter (var 10) of the callback.
const SpriteGroup * root_spritegroup
Root SpriteGroup to use for resolving.
Invalid cargo type.
Definition: cargo_type.h:68
uint32 callback_param2
Second parameter (var 18) of the callback.
virtual const SpriteGroup * Resolve(ResolverObject &object) const
Base sprite group resolver.
Action 2 handling.
const SpriteGroup ** loaded
List of loaded groups (can be SpriteIDs or Callback results)
const SpriteGroup * ResolveReal(const RealSpriteGroup *group) const override
Get the real sprites of the grf.
Definition of base types and functions in a cross-platform compatible way.
A number of safeguards to prevent using unsafe methods.
Resolver of cargo.
const SpriteGroup ** loading
List of loading groups (can be SpriteIDs or Callback results)
byte num_loading
Number of loading groups.
const GRFFile * grffile
GRFFile the resolved SpriteGroup belongs to.
CargoID GetCargoIDByBitnum(uint8 bitnum)
Find the CargoID of a &#39;bitnum&#39; value.
Definition: cargotype.cpp:103
uint32 SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition: gfx_type.h:17
CallbackID callback
Callback being resolved.
CallbackID
List of implemented NewGRF callbacks.
std::vector< CargoLabel > cargo_list
Cargo translation table (local ID -> label)
Definition: newgrf.h:126
byte CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:20
Dynamic data of a loaded NewGRF.
Definition: newgrf.h:105
CargoResolverObject(const CargoSpec *cs, CallbackID callback=CBID_NO_CALLBACK, uint32 callback_param1=0, uint32 callback_param2=0)
Constructor of the cargo resolver.