src/newgrf_callbacks.h
author rubidium
Tue, 18 Sep 2007 20:41:59 +0000
changeset 8096 9e87db1c5925
parent 8078 bdf94bf88568
child 8111 23e6be5756bb
permissions -rw-r--r--
(svn r11127) -Fix: truncate the result of 8 bits callbacks.
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2129
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2129
diff changeset
     2
6909
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
     3
/** @file newgrf_callbacks.h
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
     4
 */
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
     5
2982
286f69caaf05 (svn r3557) - NewGRF: move callback enums to a new file as more than just engines will use them
peter1138
parents: 2971
diff changeset
     6
#ifndef NEWGRF_CALLBACKS_H
286f69caaf05 (svn r3557) - NewGRF: move callback enums to a new file as more than just engines will use them
peter1138
parents: 2971
diff changeset
     7
#define NEWGRF_CALLBACKS_H
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     8
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     9
3007
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
    10
/**
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
    11
 * List of implemented NewGRF callbacks.
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    12
 * Most of these callbacks are only triggered when the corresponding
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    13
 * bit is set in the callback flags/trigger for a vehicle, house,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    14
 * industry, etc.
3007
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
    15
 * Names are formatted as CBID_<CLASS>_<CALLBACK>
8096
9e87db1c5925 (svn r11127) -Fix: truncate the result of 8 bits callbacks.
rubidium
parents: 8078
diff changeset
    16
 *
9e87db1c5925 (svn r11127) -Fix: truncate the result of 8 bits callbacks.
rubidium
parents: 8078
diff changeset
    17
 * @note Do not forget to add 15 bits callbacks to the switch in
9e87db1c5925 (svn r11127) -Fix: truncate the result of 8 bits callbacks.
rubidium
parents: 8078
diff changeset
    18
 *       newgrf_spritegroup.cpp (search for "15 bits callback").
3007
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
    19
 */
1883
3b02000cfbe0 (svn r2389) - Feature: [newgrf] Implement the mechanism for handling newgrf callbacks.
hackykid
parents: 1802
diff changeset
    20
enum CallbackID {
7823
cad4dec2b899 (svn r10690) -Codechange: use the enum that describes all callback IDs in favor of "just" using an untyped integer.
rubidium
parents: 7779
diff changeset
    21
	/** Set when using the callback resolve system, but not to resolve a callback. */
cad4dec2b899 (svn r10690) -Codechange: use the enum that describes all callback IDs in favor of "just" using an untyped integer.
rubidium
parents: 7779
diff changeset
    22
	CBID_NO_CALLBACK                     = 0x00,
cad4dec2b899 (svn r10690) -Codechange: use the enum that describes all callback IDs in favor of "just" using an untyped integer.
rubidium
parents: 7779
diff changeset
    23
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    24
	/** Set when calling a randomizing trigger (almost undocumented). */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    25
	CBID_RANDOM_TRIGGER                  = 0x01,
4244
44dcec623504 (svn r5822) - NewGRF: add support for callback 31, vehicle start/stop check. This allows a set to disallow a vehicle from being started, i.e. to not be able to leave the depot. This is almost a partner to callback 1D.
peter1138
parents: 3754
diff changeset
    26
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    27
	/** Powered wagons, if the result is lower as 0x40 then the wagon is powered
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    28
	 * @todo : interpret the rest of the result, aka "visual effects". */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    29
	CBID_TRAIN_WAGON_POWER               = 0x10,
6909
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
    30
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    31
	/** Vehicle length, returns the amount of 1/8's the vehicle is shorter for trains and RVs. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    32
	CBID_VEHICLE_LENGTH                  = 0x11,
6909
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
    33
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    34
	/** Determine the amount of cargo to load per unit of time when using gradual loading. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    35
	CBID_VEHICLE_LOAD_AMOUNT             = 0x12,
6909
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
    36
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    37
	/** Determine whether a newstation should be made available to build. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    38
	CBID_STATION_AVAILABILITY            = 0x13,
6909
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
    39
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    40
	/** Choose a sprite layout to draw, instead of the standard 0-7 range. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    41
	CBID_STATION_SPRITE_LAYOUT           = 0x14,
6685
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
    42
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    43
	/** Refit capacity, the passed vehicle needs to have its ->cargo_type set to
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    44
	 * the cargo we are refitting to, returns the new cargo capacity. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    45
	CBID_VEHICLE_REFIT_CAPACITY          = 0x15,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    46
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    47
	/** Builds articulated engines for trains and RVs. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    48
	CBID_VEHICLE_ARTIC_ENGINE            = 0x16,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    49
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    50
	/** Determine whether the house can be built on the specified tile. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    51
	CBID_HOUSE_ALLOW_CONSTRUCTION        = 0x17,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    52
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    53
	/** AI construction/purchase selection */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    54
	CBID_GENERIC_AI_PURCHASE_SELECTION   = 0x18, // not implemented
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    55
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    56
	/** Determine the cargo "suffixes" for each refit possibility of a cargo. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    57
	CBID_VEHICLE_CARGO_SUFFIX            = 0x19,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    58
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    59
	/** Determine the next animation frame for a house. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    60
	CBID_HOUSE_ANIMATION_NEXT_FRAME      = 0x1A,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    61
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    62
	/** Called for periodically starting or stopping the animation. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    63
	CBID_HOUSE_ANIMATION_START_STOP      = 0x1B,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    64
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    65
	/** Called whenever the construction state of a house changes. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    66
	CBID_HOUSE_CONSTRUCTION_STATE_CHANGE = 0x1C,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    67
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    68
	/** Determine whether a wagon can be attached to an already existing train. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    69
	CBID_TRAIN_ALLOW_WAGON_ATTACH        = 0x1D,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    70
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    71
	/** Called to determine the colour of a town building. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    72
	CBID_BUILDING_COLOUR                 = 0x1E,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    73
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    74
	/** Called to decide how much cargo a town building can accept. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    75
	CBID_HOUSE_CARGO_ACCEPTANCE          = 0x1F,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    76
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    77
	/** Called to indicate how long the current animation frame should last. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    78
	CBID_HOUSE_ANIMATION_SPEED           = 0x20,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    79
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    80
	/** Called periodically to determine if a house should be destroyed. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    81
	CBID_HOUSE_DESTRUCTION               = 0x21,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    82
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    83
	/** Called to determine if the given industry type is available */
7779
ad42dbf9069d (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7725
diff changeset
    84
	CBID_INDUSTRY_AVAILABLE              = 0x22,
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    85
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    86
	/** This callback is called from vehicle purchase lists. It returns a value to be
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    87
	 * used as a custom string ID in the 0xD000 range. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    88
	CBID_VEHICLE_ADDITIONAL_TEXT         = 0x23,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    89
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    90
	/** Called when building a station to customize the tile layout */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    91
	CBID_STATION_TILE_LAYOUT             = 0x24,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    92
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    93
	/** Called for periodically starting or stopping the animation. */
7725
e3892b38aa14 (svn r10508) -Codechange: allow customizable animation schemes for industries.
rubidium
parents: 7720
diff changeset
    94
	CBID_INDTILE_ANIM_START_STOP         = 0x25,
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    95
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    96
	/** Called to determine industry tile next animation frame. */
7725
e3892b38aa14 (svn r10508) -Codechange: allow customizable animation schemes for industries.
rubidium
parents: 7720
diff changeset
    97
	CBID_INDTILE_ANIM_NEXT_FRAME         = 0x26,
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    98
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
    99
	/** Called to indicate how long the current animation frame should last. */
7725
e3892b38aa14 (svn r10508) -Codechange: allow customizable animation schemes for industries.
rubidium
parents: 7720
diff changeset
   100
	CBID_INDTILE_ANIMATION_SPEED         = 0x27,
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   101
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   102
	/** Called to determine if the given industry can be built on specific area. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   103
	CBID_INDUSTRY_LOCATION               = 0x28,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   104
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   105
	/** Called on production changes, so it can be adjusted. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   106
	CBID_INDUSTRY_PRODUCTION_CHANGE      = 0x29, // not implemented
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   107
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   108
	/** Called to determine which cargoes a town building should accept. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   109
	CBID_HOUSE_ACCEPT_CARGO              = 0x2A,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   110
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   111
	/** Called to query the cargo acceptance of the industry tile */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   112
	CBID_INDTILE_CARGO_ACCEPTANCE        = 0x2B,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   113
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   114
	/** Called to determine which cargoes an industry should accept. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   115
	CBID_INDTILE_ACCEPT_CARGO            = 0x2C,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   116
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   117
	/** Called to determine if a specific colour map should be used for a vehicle
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   118
	 * instead of the default livery. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   119
	CBID_VEHICLE_COLOUR_MAPPING          = 0x2D,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   120
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   121
	/** Called to determine how much cargo a town building produces. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   122
	CBID_HOUSE_PRODUCE_CARGO             = 0x2E,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   123
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   124
	/** Called to determine if the given industry tile can be built on specific tile. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   125
	CBID_INDTILE_SHAPE_CHECK             = 0x2F,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   126
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   127
	/** Called to determine the type (if any) of foundation to draw for industry tile. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   128
	CBID_INDUSTRY_DRAW_FOUNDATIONS       = 0x30,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   129
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   130
	/** Called when the player (or AI) tries to start or stop a vehicle. Mainly
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   131
	 * used for preventing a vehicle from leaving the depot. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   132
	CBID_VEHICLE_START_STOP_CHECK        = 0x31,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   133
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   134
	/** Called for every vehicle every 32 days (not all on same date though). */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   135
	CBID_VEHICLE_32DAY_CALLBACK          = 0x32, // not implemented
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   136
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   137
	/** Called to play a special sound effect */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   138
	CBID_VEHICLE_SOUND_EFFECT            = 0x33,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   139
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   140
	/** Return the vehicles this given vehicle can be "upgraded" to. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   141
	CBID_VEHICLE_AUTOREPLACE_SELECTION   = 0x34,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   142
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   143
	/** Called monthly on production changes, so it can be adjusted more frequently */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   144
	CBID_INDUSTRY_MONTHLYPROD_CHANGE     = 0x35, // not implemented
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   145
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   146
	/** Called to modify various vehicle properties. Callback parameter 1
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   147
	 * specifies the property index, as used in Action 0, to change. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   148
	CBID_VEHICLE_MODIFY_PROPERTY         = 0x36,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   149
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   150
	/** Called to determine text to display after cargo name */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   151
	CBID_INDUSTRY_CARGO_SUFFIX           = 0x37, // not implemented
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   152
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   153
	/** Called to determine more text in the fund industry window */
7720
ce015c1ac3a6 (svn r10503) -Codechange: Mark Callback CBID_INDUSTRY_FUND_MORE_TEXT (cb38) as implemented.
belugas
parents: 7711
diff changeset
   154
	CBID_INDUSTRY_FUND_MORE_TEXT         = 0x38,
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   155
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   156
	/** Called to calculate the income of delivered cargo */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   157
	CBID_CARGO_PROFIT_CALC               = 0x39,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   158
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   159
	/** Called to determine more text in the industry window */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   160
	CBID_INDUSTRY_WINDOW_MORE_TEXT       = 0x3A,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   161
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   162
	/** Called to determine industry special effects */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   163
	CBID_INDUSTRY_SPECIAL_EFFECT         = 0x3B,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   164
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   165
	/** Called to determine if industry can alter the ground below industry tile */
8078
bdf94bf88568 (svn r11107) -Feature: some tool so one can still build tunnels under rails (and other structures) when the owner of the structure built it on foundations and if you have enough "empty" space ofcourse. One could use the tool for some other construction needs too. Patch by frosch.
rubidium
parents: 7823
diff changeset
   166
	CBID_INDUSTRY_AUTOSLOPE              = 0x3C,
7711
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   167
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   168
	/** Called to determine if the industry can still accept or refuse more cargo arrival */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   169
	CBID_INDUSTRY_REFUSE_CARGO           = 0x3D,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   170
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   171
	/** Called to determine whether a town building can be destroyed. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   172
	CBID_HOUSE_DENY_DESTRUCTION          = 0x143,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   173
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   174
	/** Select an ambient sound to play for a given type of tile. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   175
	CBID_SOUNDS_AMBIENT_EFFECT           = 0x144, // not implemented
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   176
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   177
	/** Called to calculate part of a station rating. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   178
	CBID_CARGO_STATION_RATING_CALC       = 0x145,
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   179
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   180
	/** Allow signal sprites to be replaced dynamically. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   181
	CBID_NEW_SIGNALS_SPRITE_DRAW         = 0x146, // not implemented
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   182
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   183
	/** Add an offset to the default sprite numbers to show another sprite. */
66dffbd3b136 (svn r10493) -Codechange: update some callback ID enums to reflect their changed usage, add a few and update the comments.
rubidium
parents: 7708
diff changeset
   184
	CBID_CANALS_SPRITE_OFFSET            = 0x147, // not implemented
1895
398f156479c8 (svn r2401) - Fix: [newgrf] Finish up callback mechanism, implement 'refit capacity' callback slightly more correct.
hackykid
parents: 1883
diff changeset
   185
};
398f156479c8 (svn r2401) - Fix: [newgrf] Finish up callback mechanism, implement 'refit capacity' callback slightly more correct.
hackykid
parents: 1883
diff changeset
   186
3007
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   187
/**
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   188
 * Callback masks for vehicles, indicates which callbacks are used by a vehicle.
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   189
 * Some callbacks are always used and don't have a mask.
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   190
 */
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   191
enum VehicleCallbackMask {
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   192
	CBM_WAGON_POWER    = 0, ///< Powered wagons (trains only)
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   193
	CBM_VEHICLE_LENGTH = 1, ///< Vehicle length (trains only)
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   194
	CBM_LOAD_AMOUNT    = 2, ///< Load amount
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   195
	CBM_REFIT_CAPACITY = 3, ///< Cargo capacity after refit
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   196
	CBM_ARTIC_ENGINE   = 4, ///< Add articulated engines (trains only)
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   197
	CBM_CARGO_SUFFIX   = 5, ///< Show suffix after cargo name
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   198
	CBM_COLOUR_REMAP   = 6, ///< Change colour mapping of vehicle
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   199
	CBM_SOUND_EFFECT   = 7, ///< Vehicle uses custom sound effects
1883
3b02000cfbe0 (svn r2389) - Feature: [newgrf] Implement the mechanism for handling newgrf callbacks.
hackykid
parents: 1802
diff changeset
   200
};
3b02000cfbe0 (svn r2389) - Feature: [newgrf] Implement the mechanism for handling newgrf callbacks.
hackykid
parents: 1802
diff changeset
   201
3007
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   202
/**
3505
e9a3a6b79561 (svn r4356) - NewGRF: Load more newstation properties.
peter1138
parents: 3007
diff changeset
   203
 * Callback masks for stations.
e9a3a6b79561 (svn r4356) - NewGRF: Load more newstation properties.
peter1138
parents: 3007
diff changeset
   204
 */
e9a3a6b79561 (svn r4356) - NewGRF: Load more newstation properties.
peter1138
parents: 3007
diff changeset
   205
enum StationCallbackMask {
e9a3a6b79561 (svn r4356) - NewGRF: Load more newstation properties.
peter1138
parents: 3007
diff changeset
   206
	CBM_STATION_AVAIL = 0, ///< Availability of station in construction window
e9a3a6b79561 (svn r4356) - NewGRF: Load more newstation properties.
peter1138
parents: 3007
diff changeset
   207
	CBM_CUSTOM_LAYOUT = 1, ///< Use callback to select a tile layout to use
e9a3a6b79561 (svn r4356) - NewGRF: Load more newstation properties.
peter1138
parents: 3007
diff changeset
   208
};
e9a3a6b79561 (svn r4356) - NewGRF: Load more newstation properties.
peter1138
parents: 3007
diff changeset
   209
e9a3a6b79561 (svn r4356) - NewGRF: Load more newstation properties.
peter1138
parents: 3007
diff changeset
   210
/**
6658
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   211
 * Callback masks for houses.
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   212
 */
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   213
enum HouseCallbackMask {
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   214
	CBM_HOUSE_ALLOW_CONSTRUCTION  = 0,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   215
	CBM_ANIMATION_NEXT_FRAME      = 1,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   216
	CBM_ANIMATION_START_STOP      = 2,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   217
	CBM_CONSTRUCTION_STATE_CHANGE = 3,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   218
	CBM_BUILDING_COLOUR           = 4,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   219
	CBM_CARGO_ACCEPTANCE          = 5,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   220
	CBM_ANIMATION_SPEED           = 6,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   221
	CBM_HOUSE_DESTRUCTION         = 7,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   222
	CBM_HOUSE_ACCEPT_CARGO        = 8,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   223
	CBM_HOUSE_PRODUCE_CARGO       = 9,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   224
	CBM_HOUSE_DENY_DESTRUCTION    = 10,
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   225
};
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   226
59048224be55 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6636
diff changeset
   227
/**
6685
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
   228
 * Callback masks for cargos.
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
   229
 */
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
   230
enum CargoCallbackMask {
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
   231
	CBM_CARGO_PROFIT_CALC         = 0,
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
   232
	CBM_CARGO_STATION_RATING_CALC = 1,
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
   233
};
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
   234
410bba0abb67 (svn r9411) -Codechange: Add support for loading of newcargo data.
peter1138
parents: 6658
diff changeset
   235
/**
6909
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   236
 * Callback masks for Industries
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   237
 */
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   238
enum IndustryCallbackMask {
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   239
	CBM_IND_AVAILABLE                 = 0,  ///< industry availability callback
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   240
	CBM_IND_PRODUCTION_CARGO_ARRIVAL  = 1,  ///< call production callback when cargo arrives at the industry
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   241
	CBM_IND_PRODUCTION_256_TICKS      = 2,  ///< call production callback every 256 ticks
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   242
	CBM_IND_LOCATION                  = 3,  ///< check industry construction on given area
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   243
	CBM_IND_PRODUCTION_CHANGE         = 4,  ///< controls random production change
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   244
	CBM_IND_MONTHLYPROD_CHANGE        = 5,  ///< controls monthly random production change
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   245
	CBM_IND_CARGO_SUFFIX              = 6,  ///< cargo sub-type display
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   246
	CBM_IND_FUND_MORE_TEXT            = 7,  ///< additional text in fund window
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   247
	CBM_IND_WINDOW_MORE_TEXT          = 8,  ///< additional text in industry window
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   248
	CBM_IND_SPECIAL_EFFECT            = 9,  ///< control special effects
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   249
	CBM_IND_REFUSE_CARGO              = 10, ///< option out of accepting cargo
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   250
};
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   251
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   252
/**
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   253
 * Callback masks for industry tiles
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   254
 */
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   255
enum IndustryTileCallbackMask {
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   256
	CBM_INDT_ANIM_NEXT_FRAME          = 0,  ///< decides next animation frame
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   257
	CBM_INDT_ANIM_SPEED               = 1,  ///< decides animation speed
7695
b15538ba7152 (svn r10477) -Codechange: add some callbacks to customise the acceptance of industries.
rubidium
parents: 7694
diff changeset
   258
	CBM_INDT_CARGO_ACCEPTANCE         = 2,  ///< decides amount of cargo acceptance
6909
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   259
	CBM_INDT_ACCEPT_CARGO             = 3,  ///< decides accepted types
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   260
	CBM_INDT_SHAPE_CHECK              = 4,  ///< decides slope suitability
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   261
	CBM_INDT_DRAW_FOUNDATIONS         = 5,  ///< decides if default foundations need to be drawn
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   262
	CBM_INDT_AUTOSLOPE                = 6,  ///< decides allowance of autosloping
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   263
};
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   264
aa800cc4b216 (svn r9549) -Codechange: Add definition of callbacks and callback masks for both industries and industry tiles
belugas
parents: 6685
diff changeset
   265
/**
3007
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   266
 * Result of a failed callback.
6f65203dc324 (svn r3587) - NewGRF: Rename Callback IDs to include their "class"
peter1138
parents: 2982
diff changeset
   267
 */
1883
3b02000cfbe0 (svn r2389) - Feature: [newgrf] Implement the mechanism for handling newgrf callbacks.
hackykid
parents: 1802
diff changeset
   268
enum {
3b02000cfbe0 (svn r2389) - Feature: [newgrf] Implement the mechanism for handling newgrf callbacks.
hackykid
parents: 1802
diff changeset
   269
	CALLBACK_FAILED = 0xFFFF
3b02000cfbe0 (svn r2389) - Feature: [newgrf] Implement the mechanism for handling newgrf callbacks.
hackykid
parents: 1802
diff changeset
   270
};
3b02000cfbe0 (svn r2389) - Feature: [newgrf] Implement the mechanism for handling newgrf callbacks.
hackykid
parents: 1802
diff changeset
   271
2982
286f69caaf05 (svn r3557) - NewGRF: move callback enums to a new file as more than just engines will use them
peter1138
parents: 2971
diff changeset
   272
#endif /* NEWGRF_CALLBACKS_H */