]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/land.c
Move pln_oninit(), lnd_oninit(), nuk_oninit() to filetable.c
[empserver] / src / lib / subs / land.c
index 4776087deaa2739f806125b8227fe3cbf650e95a..0ef301a0282b0bc49f5cf38af354e683057e6636 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *                Ken Stevens, Steve McClure, Markus Armbruster
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  Empire is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  *  ---
  *
  *  ---
  *
  *  land.c: Land unit post-read and pre-write
- * 
+ *
  *  Known contributors to this file:
  *     Steve McClure, 1996
+ *     Markus Armbruster, 2004-2008
  */
 
 #include <config.h>
@@ -63,14 +63,13 @@ lnd_prewrite(int n, void *old, void *new)
 {
     struct lndstr *oldlp = old;
     struct lndstr *lp = new;
-    natid own = lp->lnd_own;
+    natid own = lp->lnd_effic < LAND_MINEFF ? 0 : lp->lnd_own;
 
-    if (lp->lnd_own && lp->lnd_effic < LAND_MINEFF) {
-       own = 0;
+    if (!own) {
+       lp->lnd_effic = 0;
        lp->lnd_ship = lp->lnd_land = -1;
-    } else {
-       item_prewrite(lp->lnd_item);
     }
+    item_prewrite(lp->lnd_item);
 
     if (CANT_HAPPEN(lp->lnd_ship >= 0 && lp->lnd_land >= 0))
        lp->lnd_land = -1;
@@ -79,7 +78,7 @@ lnd_prewrite(int n, void *old, void *new)
     if (oldlp->lnd_land != lp->lnd_land)
        lnd_carrier_change(lp, EF_LAND, oldlp->lnd_land, lp->lnd_land);
 
-    /* We've avoided assigning to lp->lnd_own, in case oldsp == sp */
+    /* We've avoided assigning to lp->lnd_own, in case oldlp == lp */
     if (oldlp->lnd_own != own)
        lost_and_found(EF_LAND, oldlp->lnd_own, own,
                       lp->lnd_uid, lp->lnd_x, lp->lnd_y);
@@ -89,14 +88,6 @@ lnd_prewrite(int n, void *old, void *new)
        unit_update_cargo((struct empobj *)lp);
 }
 
-void
-lnd_oninit(void *ptr)
-{
-    struct lndstr *lp = ptr;
-
-    lp->lnd_ship = lp->lnd_land = -1;
-}
-
 char *
 prland(struct lndstr *lp)
 {