]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/rej.c
Oops on invalid arguments in setrel(), setcont(), setrej()
[empserver] / src / lib / subs / rej.c
index 31a481e43b18a9eacd8d6a6a42f4cd11e0496487..544cc35a5fafaf7d32d8ec557be949d39ef250ce 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2010, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -26,7 +26,7 @@
  *  ---
  *
  *  rej.c: Various relations setting routines
- * 
+ *
  *  Known contributors to this file:
  *     Dave Pare, 1994
  */
 int
 setrel(natid us, natid them, int rel)
 {
-    struct natstr *mynp;
-    struct natstr *themnp;
+    struct natstr *mynp = getnatp(us);
+    struct natstr *themnp = getnatp(them);
     char *myname = cname(us);
     char *themname;
     int oldrel;
     char *whichway;
     int n_up = 0;
     int n_down = 0;
-    char *addendum = 0;
-    int theirrel;
+    char *addendum = NULL;
 
-    if (rel < AT_WAR)
+    if (CANT_HAPPEN(rel < AT_WAR))
        rel = AT_WAR;
-    if (rel > ALLIED)
+    if (CANT_HAPPEN(rel > ALLIED))
        rel = ALLIED;
-    if (!(mynp = getnatp(us)))
-       return RET_FAIL;
-    if (!(themnp = getnatp(them)))
+    if (CANT_HAPPEN(!mynp || !themnp))
        return RET_FAIL;
     if ((oldrel = getrel(mynp, them)) == rel)
        return RET_FAIL;
@@ -84,34 +81,6 @@ setrel(natid us, natid them, int rel)
        n_up = N_UP_HOSTILE;
        n_down = N_DOWN_HOSTILE;
     } else if (rel < HOSTILE) {
-       if (opt_SLOW_WAR) {
-           struct natstr *natp2;
-           double cost;
-
-           if (!player->god) {
-               natp2 = themnp;
-               theirrel = getrel(natp2, us);
-               if (theirrel <= MOBILIZATION) {
-                   rel = theirrel;
-                   cost = 0;
-               } else if (us == player->cnum && !update_running) {
-                   if (mynp->nat_money < War_Cost) {
-                       mpr(us, "You don't have the money!\n");
-                       return RET_FAIL;
-                   }
-                   rel = MOBILIZATION;
-                   cost = War_Cost;
-               } else {        /* nreport is forcing us to decl war */
-                   return RET_FAIL;
-               }
-               if (rel >= oldrel) {
-                   if (us == player->cnum && !update_running)
-                       mpr(us, "No change required for that!\n");
-                   return RET_FAIL;
-               }
-               player->dolcost += cost;
-           }
-       }
        addendum = "Declaration made (give 'em hell).";
        n_down = N_DECL_WAR;
     }
@@ -147,9 +116,9 @@ setrel(natid us, natid them, int rel)
 int
 setcont(natid us, natid them, int contact)
 {
-    struct natstr *np;
+    struct natstr *np = getnatp(us);
 
-    if ((np = getnatp(us)) == 0)
+    if (CANT_HAPPEN(!np))
        return 0;
     putcontact(np, them, contact);
     putnat(np);
@@ -159,9 +128,9 @@ setcont(natid us, natid them, int contact)
 int
 setrej(natid us, natid them, int how, int what)
 {
-    struct natstr *np;
+    struct natstr *np = getnatp(us);
 
-    if ((np = getnatp(us)) == 0)
+    if (CANT_HAPPEN(!np))
        return 0;
     putreject(np, them, how, what);
     putnat(np);