view src/plutil.h @ 20:9f180bf494bd default tip

Made torps and fighter wobbly. They have a chance of tracking randomly instead of staying straight or seeking if in nebulous terrain. Option is turned on when NEBULA_EFFECT contains PHOTON and/or FIGHTER.
author darius
date Wed, 24 Dec 1997 12:42:09 +0000
parents 8c6d5731234d
children
line wrap: on
line source

/*--------------------------------------------------------------------------
NETREK II -- Paradise

Permission to use, copy, modify, and distribute this software and its
documentation, or any derivative works thereof, for any NON-COMMERCIAL
purpose and without fee is hereby granted, provided that this copyright
notice appear in all copies.  No representations are made about the
suitability of this software for any purpose.  This software is provided
"as is" without express or implied warranty.

    Xtrek Copyright 1986                            Chris Guthrie
    Netrek (Xtrek II) Copyright 1989                Kevin P. Smith
                                                    Scott Silvey
    Paradise II (Netrek II) Copyright 1993          Larry Denys
                                                    Kurt Olsen
                                                    Brandon Gillespie
--------------------------------------------------------------------------*/


#ifndef plutil_h_
#define plutil_h_

/* is the player in warp? */
int in_warp( /* struct player * */ );


/*
 * remove the player from his base. Returns 1 if the player was really
 * docked, 0 otherwise
 */
int undock_player( /* struct player * */ );

/* make sure the player has the proper coordinates */
void enforce_dock_position( /* struct player * */ );

/* dock a player onto a base at a certain port */
void
    dock_to( /* struct player *, int base_num, int port_id */ );

#endif