newgrf_station.h File Reference

Header file for NewGRF stations. More...

#include "newgrf_animation_type.h"
#include "newgrf_callbacks.h"
#include "newgrf_class.h"
#include "newgrf_commons.h"
#include "sprite.h"
#include "direction_type.h"
#include "cargo_type.h"
#include "station_type.h"
#include "rail_type.h"

Go to the source code of this file.

Data Structures

struct  EnumPropsT< StationClassID >
struct  StationSpec
 Station specification. More...

Typedefs

typedef SimpleTinyEnumT
< StationClassID, byte > 
StationClassIDByte
typedef byte * StationLayout
typedef NewGRFClass
< StationSpec, StationClassID,
STAT_CLASS_MAX > 
StationClass
 Struct containing information relating to station classes.

Enumerations

enum  StationClassID { STAT_CLASS_BEGIN = 0, STAT_CLASS_DFLT = 0, STAT_CLASS_WAYP, STAT_CLASS_MAX = 32 }
enum  StationSpecFlags {
  SSF_SEPARATE_GROUND, SSF_DIV_BY_STATION_SIZE, SSF_CB141_RANDOM_BITS, SSF_CUSTOM_FOUNDATIONS,
  SSF_EXTENDED_FOUNDATIONS
}
 

Allow incrementing of StationClassID variables.

More...

Functions

const StationSpecGetStationSpec (TileIndex t)
uint32 GetPlatformInfo (Axis axis, byte tile, int platforms, int length, int x, int y, bool centred)
 Evaluate a tile's position within a station, and return the result in a bit-stuffed format.
SpriteID GetCustomStationRelocation (const StationSpec *statspec, const BaseStation *st, TileIndex tile)
SpriteID GetCustomStationGroundRelocation (const StationSpec *statspec, const BaseStation *st, TileIndex tile)
SpriteID GetCustomStationFoundationRelocation (const StationSpec *statspec, const BaseStation *st, TileIndex tile)
uint16 GetStationCallback (CallbackID callback, uint32 param1, uint32 param2, const StationSpec *statspec, const BaseStation *st, TileIndex tile)
int AllocateSpecToStation (const StationSpec *statspec, BaseStation *st, bool exec)
 Allocate a StationSpec to a Station.
void DeallocateSpecFromStation (BaseStation *st, byte specindex)
 Deallocate a StationSpec from a Station.
bool DrawStationTile (int x, int y, RailType railtype, Axis axis, StationClassID sclass, uint station)
 Draw representation of a station tile for GUI purposes.
void AnimateStationTile (TileIndex tile)
void TriggerStationAnimation (const BaseStation *st, TileIndex tile, StationAnimationTrigger trigger, CargoID cargo_type=CT_INVALID)
void StationUpdateAnimTriggers (BaseStation *st)
 Update the cached animation trigger bitmask for a station.

Detailed Description

Header file for NewGRF stations.

Definition in file newgrf_station.h.


Typedef Documentation

Struct containing information relating to station classes.

Definition at line 109 of file newgrf_station.h.


Enumeration Type Documentation

Enumerator:
STAT_CLASS_BEGIN 

the lowest valid value

STAT_CLASS_DFLT 

Default station class.

STAT_CLASS_WAYP 

Waypoint class.

STAT_CLASS_MAX 

Maximum number of classes.

Definition at line 25 of file newgrf_station.h.

Allow incrementing of StationClassID variables.

Enumerator:
SSF_SEPARATE_GROUND 

Use different sprite set for ground sprites.

SSF_DIV_BY_STATION_SIZE 

Divide cargo amount by station size.

SSF_CB141_RANDOM_BITS 

Callback 141 needs random bits.

SSF_CUSTOM_FOUNDATIONS 

Draw custom foundations.

SSF_EXTENDED_FOUNDATIONS 

Extended foundation block instead of simple.

Definition at line 37 of file newgrf_station.h.


Function Documentation

int AllocateSpecToStation ( const StationSpec statspec,
BaseStation st,
bool  exec 
)

Allocate a StationSpec to a Station.

This is called once per build operation.

Parameters:
statspec StationSpec to allocate.
st Station to allocate it to.
exec Whether to actually allocate the spec.
Returns:
Index within the Station's spec list, or -1 if the allocation failed.

Definition at line 649 of file newgrf_station.cpp.

References StationSpec::grf_prop, GRFFilePropsBase< Tcnt >::grffile, StationSpecList::grfid, GRFFilePropsBase< Tcnt >::local_id, StationSpecList::localidx, BaseStation::num_specs, ReallocT(), and BaseStation::speclist.

Referenced by CmdBuildRailStation(), CmdBuildRailWaypoint(), and MoveWaypointsToBaseStations().

void DeallocateSpecFromStation ( BaseStation st,
byte  specindex 
)

Deallocate a StationSpec from a Station.

Called when removing a single station tile.

Parameters:
st Station to work with.
specindex Index of the custom station within the Station's spec list.
Returns:
Indicates whether the StationSpec was deallocated.

Definition at line 700 of file newgrf_station.cpp.

References BaseStation::cached_anim_triggers, GetCustomStationSpecIndex(), StationSpecList::grfid, INVALID_TILE, StationSpecList::localidx, BaseStation::num_specs, ReallocT(), BaseStation::speclist, StationUpdateAnimTriggers(), TILE_AREA_LOOP, and BaseStation::TileBelongsToRailStation().

Referenced by CmdBuildRailStation(), CmdBuildRailWaypoint(), and RemoveFromRailBaseStation().

bool DrawStationTile ( int  x,
int  y,
RailType  railtype,
Axis  axis,
StationClassID  sclass,
uint  station 
)

Draw representation of a station tile for GUI purposes.

Parameters:
x Position x of image.
y Position y of image.
axis Axis.
railtype Rail type.
sclass,station Type of station.
station station ID
Returns:
True if the tile was drawn (allows for fallback to default graphic)

Definition at line 746 of file newgrf_station.cpp.

References _local_company, CALLBACK_FAILED, StationSpec::callback_mask, CBID_STATION_SPRITE_LAYOUT, CBM_STATION_SPRITE_LAYOUT, RailtypeInfo::custom_ground_offset, DrawRailTileSeqInGUI(), DrawSprite(), NewGRFClass< Tspec, Tid, Tmax >::Get(), GetRailTypeInfo(), DrawTileSprites::ground, GroundSpritePaletteTransform(), HasBit(), INVALID_TILE, PalSpriteID::pal, StationSpec::renderdata, PalSpriteID::sprite, SPRITE_MODIFIER_CUSTOM_SPRITE, StationSpec::tiles, and RailtypeInfo::total_offset.

Referenced by DrawWaypointSprite(), and BuildRailStationWindow::DrawWidget().

uint32 GetPlatformInfo ( Axis  axis,
byte  tile,
int  platforms,
int  length,
int  x,
int  y,
bool  centred 
)

Evaluate a tile's position within a station, and return the result in a bit-stuffed format.

if not centered: .TNLcCpP, if centered: .TNL..CP

  • T = Tile layout number (GetStationGfx)
  • N = Number of platforms
  • L = Length of platforms
  • C = Current platform number from start, c = from end
  • P = Position along platform from start, p = from end

if centered, C/P start from the centre and c/p are not available.

Returns:
Platform information in bit-stuffed format.

Definition at line 104 of file newgrf_station.cpp.

References AXIS_X, min(), SB(), and Swap().

Referenced by CmdBuildRailStation().

void StationUpdateAnimTriggers ( BaseStation st  ) 

Update the cached animation trigger bitmask for a station.

Parameters:
st Station to update.

Definition at line 880 of file newgrf_station.cpp.

References BaseStation::cached_anim_triggers, BaseStation::num_specs, BaseStation::speclist, and AnimationInfo::triggers.

Referenced by DeallocateSpecFromStation().


Generated on Thu Jan 20 22:57:49 2011 for OpenTTD by  doxygen 1.6.1