2005-07-24 15:12:37 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 16:11:33 +01:00
|
|
|
/** @file waypoint.cpp Handling of waypoints. */
|
2007-04-06 05:10:19 +01:00
|
|
|
|
2005-03-24 17:03:37 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
2009-03-13 23:48:07 +00:00
|
|
|
#include "strings_type.h"
|
2007-12-25 23:42:52 +00:00
|
|
|
#include "rail.h"
|
2008-03-31 01:06:17 +01:00
|
|
|
#include "station_base.h"
|
2005-03-24 17:03:37 +00:00
|
|
|
#include "town.h"
|
|
|
|
#include "waypoint.h"
|
2007-12-25 11:26:07 +00:00
|
|
|
#include "window_func.h"
|
2008-03-31 07:42:26 +01:00
|
|
|
#include "newgrf_station.h"
|
2009-03-13 23:48:07 +00:00
|
|
|
#include "order_func.h"
|
2009-05-22 16:13:50 +01:00
|
|
|
#include "core/pool_func.hpp"
|
2005-03-24 17:03:37 +00:00
|
|
|
|
2009-05-22 16:13:50 +01:00
|
|
|
WaypointPool _waypoint_pool("Waypoint");
|
|
|
|
INSTANTIATE_POOL_METHODS(Waypoint)
|
2005-03-24 17:03:37 +00:00
|
|
|
|
2007-04-06 05:10:19 +01:00
|
|
|
/**
|
|
|
|
* Update all signs
|
|
|
|
*/
|
2007-03-07 11:47:46 +00:00
|
|
|
void UpdateAllWaypointSigns()
|
2005-03-24 17:03:37 +00:00
|
|
|
{
|
|
|
|
Waypoint *wp;
|
|
|
|
|
|
|
|
FOR_ALL_WAYPOINTS(wp) {
|
2006-08-22 16:33:35 +01:00
|
|
|
UpdateWaypointSign(wp);
|
2005-03-24 17:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-06 05:10:19 +01:00
|
|
|
/**
|
|
|
|
* Daily loop for waypoints
|
|
|
|
*/
|
2007-03-07 11:47:46 +00:00
|
|
|
void WaypointsDailyLoop()
|
2005-03-24 17:03:37 +00:00
|
|
|
{
|
|
|
|
Waypoint *wp;
|
|
|
|
|
|
|
|
/* Check if we need to delete a waypoint */
|
|
|
|
FOR_ALL_WAYPOINTS(wp) {
|
2008-09-07 19:21:57 +01:00
|
|
|
if (wp->deleted != 0 && --wp->deleted == 0) delete wp;
|
2005-03-24 17:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-06 05:10:19 +01:00
|
|
|
/**
|
|
|
|
* This hacks together some dummy one-shot Station structure for a waypoint.
|
|
|
|
* @param tile on which to work
|
|
|
|
* @return pointer to a Station
|
|
|
|
*/
|
2005-06-24 13:38:35 +01:00
|
|
|
Station *ComposeWaypointStation(TileIndex tile)
|
2005-03-24 17:03:37 +00:00
|
|
|
{
|
|
|
|
Waypoint *wp = GetWaypointByTile(tile);
|
2007-01-19 16:01:43 +00:00
|
|
|
|
|
|
|
/* instead of 'static Station stat' use byte array to avoid Station's destructor call upon exit. As
|
|
|
|
* a side effect, the station is not constructed now. */
|
2007-01-19 22:41:50 +00:00
|
|
|
static byte stat_raw[sizeof(Station)];
|
2007-01-19 16:01:43 +00:00
|
|
|
static Station &stat = *(Station*)stat_raw;
|
2005-03-24 17:03:37 +00:00
|
|
|
|
|
|
|
stat.train_tile = stat.xy = wp->xy;
|
2009-05-17 00:34:14 +01:00
|
|
|
stat.town = Town::Get(wp->town_index);
|
2005-03-24 17:03:37 +00:00
|
|
|
stat.build_date = wp->build_date;
|
|
|
|
|
|
|
|
return &stat;
|
|
|
|
}
|
|
|
|
|
2007-04-06 05:10:19 +01:00
|
|
|
/**
|
|
|
|
* Draw a waypoint
|
|
|
|
* @param x coordinate
|
|
|
|
* @param y coordinate
|
|
|
|
* @param stat_id station id
|
|
|
|
* @param railtype RailType to use for
|
|
|
|
*/
|
2005-10-16 10:13:04 +01:00
|
|
|
void DrawWaypointSprite(int x, int y, int stat_id, RailType railtype)
|
2005-03-24 17:03:37 +00:00
|
|
|
{
|
|
|
|
x += 33;
|
|
|
|
y += 17;
|
|
|
|
|
2006-05-06 21:48:40 +01:00
|
|
|
if (!DrawStationTile(x, y, railtype, AXIS_X, STAT_CLASS_WAYP, stat_id)) {
|
2005-08-01 17:31:19 +01:00
|
|
|
DrawDefaultWaypointSprite(x, y, railtype);
|
2005-03-24 17:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-02 13:22:40 +01:00
|
|
|
Waypoint::~Waypoint()
|
|
|
|
{
|
2008-01-12 19:58:06 +00:00
|
|
|
free(this->name);
|
2007-08-05 22:20:55 +01:00
|
|
|
|
|
|
|
if (CleaningPool()) return;
|
2008-08-21 03:19:31 +01:00
|
|
|
DeleteWindowById(WC_WAYPOINT_VIEW, this->index);
|
2007-08-02 13:22:40 +01:00
|
|
|
RemoveOrderFromAllVehicles(OT_GOTO_WAYPOINT, this->index);
|
|
|
|
|
|
|
|
RedrawWaypointSign(this);
|
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void InitializeWaypoints()
|
2005-03-24 17:03:37 +00:00
|
|
|
{
|
2009-05-22 16:13:50 +01:00
|
|
|
_waypoint_pool.CleanPool();
|
2005-03-24 17:03:37 +00:00
|
|
|
}
|