diff -r 9a27928bcd5e -r ebf0ece7d8f6 src/newgrf_callbacks.h --- a/src/newgrf_callbacks.h Thu Nov 22 23:01:41 2007 +0000 +++ b/src/newgrf_callbacks.h Fri Nov 23 16:59:30 2007 +0000 @@ -134,7 +134,7 @@ CBID_VEHICLE_START_STOP_CHECK = 0x31, /** Called for every vehicle every 32 days (not all on same date though). */ - CBID_VEHICLE_32DAY_CALLBACK = 0x32, // not implemented + CBID_VEHICLE_32DAY_CALLBACK = 0x32, /** Called to play a special sound effect */ CBID_VEHICLE_SOUND_EFFECT = 0x33, @@ -170,7 +170,16 @@ /** Called to determine if the industry can still accept or refuse more cargo arrival */ CBID_INDUSTRY_REFUSE_CARGO = 0x3D, - /* There are no callbacks 0x3E - 0x142. */ + /* There are no callbacks 0x3E - 0x13F */ + + /** Called for periodically starting or stopping the animation. */ + CBID_STATION_ANIM_START_STOP = 0x140, // not implemented + + /** Called to determine station tile next animation frame. */ + CBID_STATION_ANIM_NEXT_FRAME = 0x141, // not implemented + + /** Called to indicate how long the current animation frame should last. */ + CBID_STATION_ANIMATION_SPEED = 0x142, // not implemented /** Called to determine whether a town building can be destroyed. */ CBID_HOUSE_DENY_DESTRUCTION = 0x143, @@ -187,7 +196,8 @@ /** Add an offset to the default sprite numbers to show another sprite. */ CBID_CANALS_SPRITE_OFFSET = 0x147, // not implemented - /* There is no callback 0x148.*/ + /** Called when a cargo type specified in property 20 is accepted. */ + CBID_HOUSE_WATCHED_CARGO_ACCEPTED = 0x148, // not implemented /** Callback done for each tile of a station to check the slope. */ CBID_STATION_LAND_SLOPE_CHECK = 0x149, // not implemented