2007-05-06 18:14:33 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file newgrf_canal.cpp Implementation of NewGRF canals. */
|
|
|
|
|
2007-05-06 18:14:33 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "openttd.h"
|
|
|
|
#include "variables.h"
|
|
|
|
#include "landscape.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "newgrf.h"
|
|
|
|
#include "newgrf_callbacks.h"
|
2007-07-09 13:10:04 +00:00
|
|
|
#include "newgrf_commons.h"
|
2007-05-06 18:14:33 +00:00
|
|
|
#include "newgrf_spritegroup.h"
|
|
|
|
#include "newgrf_canal.h"
|
2007-12-19 23:26:02 +00:00
|
|
|
#include "tile_map.h"
|
2008-01-20 18:30:53 +00:00
|
|
|
#include "water_map.h"
|
2007-05-06 18:14:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** Table of canal 'feature' sprite groups */
|
2008-01-21 20:41:04 +00:00
|
|
|
WaterFeature _water_feature[CF_END];
|
2007-05-06 18:14:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Random bits and triggers are not supported for canals, so the following
|
|
|
|
* three functions are stubs. */
|
|
|
|
static uint32 CanalGetRandomBits(const ResolverObject *object)
|
|
|
|
{
|
2008-02-02 09:28:43 +00:00
|
|
|
/* Return random bits only for water tiles, not station tiles */
|
|
|
|
return IsTileType(object->u.canal.tile, MP_WATER) ? GetWaterTileRandomBits(object->u.canal.tile) : 0;
|
2007-05-06 18:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uint32 CanalGetTriggers(const ResolverObject *object)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void CanalSetTriggers(const ResolverObject *object, int triggers)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uint32 CanalGetVariable(const ResolverObject *object, byte variable, byte parameter, bool *available)
|
|
|
|
{
|
|
|
|
TileIndex tile = object->u.canal.tile;
|
|
|
|
|
|
|
|
switch (variable) {
|
|
|
|
case 0x80:
|
2007-09-04 12:06:38 +00:00
|
|
|
return GetTileZ(tile) / TILE_HEIGHT;
|
2007-05-06 18:14:33 +00:00
|
|
|
|
|
|
|
case 0x81:
|
2007-07-09 13:10:04 +00:00
|
|
|
return GetTerrainType(tile);
|
2008-01-20 18:30:53 +00:00
|
|
|
|
|
|
|
case 0x83:
|
|
|
|
return GetWaterTileRandomBits(tile);
|
2007-05-06 18:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG(grf, 1, "Unhandled canal property 0x%02X", variable);
|
|
|
|
|
|
|
|
*available = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const SpriteGroup *CanalResolveReal(const ResolverObject *object, const SpriteGroup *group)
|
|
|
|
{
|
|
|
|
if (group->g.real.num_loaded == 0) return NULL;
|
|
|
|
|
|
|
|
return group->g.real.loaded[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-30 18:23:12 +00:00
|
|
|
static void NewCanalResolver(ResolverObject *res, TileIndex tile, const GRFFile *grffile)
|
2007-05-06 18:14:33 +00:00
|
|
|
{
|
|
|
|
res->GetRandomBits = &CanalGetRandomBits;
|
|
|
|
res->GetTriggers = &CanalGetTriggers;
|
|
|
|
res->SetTriggers = &CanalSetTriggers;
|
|
|
|
res->GetVariable = &CanalGetVariable;
|
|
|
|
res->ResolveReal = &CanalResolveReal;
|
|
|
|
|
|
|
|
res->u.canal.tile = tile;
|
|
|
|
|
2007-07-25 19:06:29 +00:00
|
|
|
res->callback = CBID_NO_CALLBACK;
|
2007-05-06 18:14:33 +00:00
|
|
|
res->callback_param1 = 0;
|
|
|
|
res->callback_param2 = 0;
|
|
|
|
res->last_value = 0;
|
|
|
|
res->trigger = 0;
|
|
|
|
res->reseed = 0;
|
2008-03-27 21:36:16 +00:00
|
|
|
res->count = 0;
|
2008-07-30 18:23:12 +00:00
|
|
|
res->grffile = grffile;
|
2007-05-06 18:14:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SpriteID GetCanalSprite(CanalFeature feature, TileIndex tile)
|
|
|
|
{
|
|
|
|
ResolverObject object;
|
|
|
|
const SpriteGroup *group;
|
|
|
|
|
2008-07-30 18:23:12 +00:00
|
|
|
NewCanalResolver(&object, tile, _water_feature[feature].grffile);
|
2007-05-06 18:14:33 +00:00
|
|
|
|
2008-01-21 20:41:04 +00:00
|
|
|
group = Resolve(_water_feature[feature].group, &object);
|
2007-05-06 18:14:33 +00:00
|
|
|
if (group == NULL || group->type != SGT_RESULT) return 0;
|
|
|
|
|
|
|
|
return group->g.result.sprite;
|
|
|
|
}
|