00001 /* $Id: newgrf_canal.h 18809 2010-01-15 16:41:15Z rubidium $ */ 00002 00003 /* 00004 * This file is part of OpenTTD. 00005 * 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. 00006 * 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. 00007 * 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/>. 00008 */ 00009 00012 #ifndef NEWGRF_CANAL_H 00013 #define NEWGRF_CANAL_H 00014 00015 #include "gfx_type.h" 00016 #include "tile_type.h" 00017 #include "newgrf_generic.h" 00018 00021 enum CanalFeature { 00022 CF_WATERSLOPE, 00023 CF_LOCKS, 00024 CF_DIKES, 00025 CF_ICON, 00026 CF_DOCKS, 00027 CF_RIVER_SLOPE, 00028 CF_RIVER_EDGE, 00029 CF_END, 00030 }; 00031 00032 00033 struct WaterFeature { 00034 const SpriteGroup *group; 00035 const GRFFile *grffile; 00036 uint8 callback_mask; 00037 uint8 flags; 00038 }; 00039 00040 00042 extern WaterFeature _water_feature[CF_END]; 00043 00044 00050 SpriteID GetCanalSprite(CanalFeature feature, TileIndex tile); 00051 00052 #endif /* NEWGRF_CANAL_H */