(svn r18368) -Fix: alignment of comment and 'add' some missing comments

This commit is contained in:
rubidium 2009-12-02 00:01:07 +00:00
parent 76fe20cdcc
commit 9d5ff5def0
4 changed files with 21 additions and 4 deletions

View File

@ -12,6 +12,14 @@
#ifndef NPF_FUNC_H
#define NPF_FUNC_H
/**
* Finds the best path for given ship using NPF.
* @param v the ship that needs to find a path
* @param tile the tile to find the path from (should be next tile the ship is about to enter)
* @param enterdir diagonal direction which the ship will enter this new tile from
* @param tracks available tracks on the new tile (to choose from)
* @return the best trackdir for next turn or INVALID_TRACK if the path could not be found
*/
Track NPFShipChooseTrack(class Ship *v, TileIndex tile, DiagDirection enterdir, TrackBits tracks);
#endif /* NPF_FUNC_H */

View File

@ -12,6 +12,14 @@
#ifndef OPF_SHIP_H
#define OPF_SHIP_H
/**
* Finds the best path for given ship using OPF.
* @param v the ship that needs to find a path
* @param tile the tile to find the path from (should be next tile the ship is about to enter)
* @param enterdir diagonal direction which the ship will enter this new tile from
* @param tracks available tracks on the new tile (to choose from)
* @return the best trackdir for next turn or INVALID_TRACK if the path could not be found
*/
Track OPFShipChooseTrack(Ship *v, TileIndex tile, DiagDirection enterdir, TrackBits tracks);
#endif /* OPF_SHIP_H */

View File

@ -15,7 +15,8 @@
#include "../../direction_type.h"
#include "../../station_type.h"
/** Finds the best path for given ship.
/**
* Finds the best path for given ship using YAPF.
* @param v the ship that needs to find a path
* @param tile the tile to find the path from (should be next tile the ship is about to enter)
* @param enterdir diagonal direction which the ship will enter this new tile from