]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - sail/game.c
Fix merge conflicts
[bsdgames-darwin.git] / sail / game.c
index a6ecc4fc090f846059b6ce623d0a6b493350dec6..20d6d83c5346e0839427dc3c4dbe2880a1e9ee6c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: game.c,v 1.3 1995/04/22 10:36:56 cgd Exp $     */
+/*     $NetBSD: game.c,v 1.13 2009/03/14 20:04:43 dholland Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
 #ifndef lint
 #if 0
-static char sccsid[] = "@(#)game.c     8.1 (Berkeley) 5/31/93";
+static char sccsid[] = "@(#)game.c     8.2 (Berkeley) 4/28/95";
 #else
-static char rcsid[] = "$NetBSD: game.c,v 1.3 1995/04/22 10:36:56 cgd Exp $";
+__RCSID("$NetBSD: game.c,v 1.13 2009/03/14 20:04:43 dholland Exp $");
 #endif
 #endif /* not lint */
 
-#include "externs.h"
+#include <sys/types.h>
+#include <stdbool.h>
+#include "extern.h"
 
-maxturns(ship, af)
-register struct ship *ship;
-char *af;
+int
+maxturns(struct ship *ship, bool *af)
 {
-       register int turns;
+       int turns;
 
        turns = ship->specs->ta;
-       if (*af = (ship->file->drift > 1 && turns)) {
+       *af = (ship->file->drift > 1 && turns);
+       if (*af != false) {
                turns--;
                if (ship->file->FS == 1)
                        turns = 0;
@@ -58,11 +57,10 @@ char *af;
        return turns;
 }
 
-maxmove(ship, dir, fs)
-register struct ship *ship;
-int dir, fs;
+int
+maxmove(struct ship *ship, int dir, int fs)
 {
-       register int riggone = 0, Move, flank = 0;
+       int riggone = 0, Move, flank = 0;
 
        Move = ship->specs->bs;
        if (!ship->specs->rig1)
@@ -79,13 +77,15 @@ int dir, fs;
        }
        if (dir == winddir)
                Move -= 1 + WET[windspeed][ship->specs->class-1].B;
-       else if (dir == winddir + 2 || dir == winddir - 2 || dir == winddir - 6 || dir == winddir + 6)
+       else if (dir == winddir + 2 || dir == winddir - 2 ||
+                dir == winddir - 6 || dir == winddir + 6)
                Move -= 1 + WET[windspeed][ship->specs->class-1].C;
-       else if (dir == winddir + 3 || dir == winddir - 3 || dir == winddir - 5 || dir == winddir + 5)
+       else if (dir == winddir + 3 || dir == winddir - 3 ||
+                dir == winddir - 5 || dir == winddir + 5)
                Move = (flank ? 2 : 1) - WET[windspeed][ship->specs->class-1].D;
        else if (dir == winddir + 4 || dir == winddir - 4)
                Move = 0;
-       else 
+       else
                Move -= WET[windspeed][ship->specs->class-1].A;
        Move -= riggone;
        Move = Move < 0 ? 0 : Move;