]> git.pond.sub.org Git - empserver/blobdiff - src/lib/update/sect.c
Update copyright notice
[empserver] / src / lib / update / sect.c
index 810cd54486cf19770847196edb151400d0d0c37c..acaf5fac71452f6619c103962f69315eae8559d2 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -79,6 +79,7 @@ upd_buildeff(struct natstr *np, struct sctstr *sp, int *workp,
        *cost += work_cost;
        if (!n && IS_BIG_CITY(old_type) &&
            !IS_BIG_CITY(*desig)) {
+           // FIXME use trunc_people() and total_work()
            int maxpop = max_population(np->nat_level[NAT_RLEV], *desig, n);
            if (vec[I_CIVIL] > maxpop)
                vec[I_CIVIL] = maxpop;
@@ -137,9 +138,9 @@ enlist(short *vec, int etu, int *cost)
 
     /* Need to check treaties here */
     enlisted = 0;
-    maxmil = (vec[I_CIVIL] / 2) - vec[I_MILIT];
+    maxmil = vec[I_CIVIL] / 2 - vec[I_MILIT];
     if (maxmil > 0) {
-       enlisted = (etu * (10 + vec[I_MILIT]) * 0.05);
+       enlisted = etu * (10 + vec[I_MILIT]) * 0.05;
        if (enlisted > maxmil)
            enlisted = maxmil;
        vec[I_CIVIL] -= enlisted;
@@ -312,9 +313,7 @@ produce_sect(int natnum, int etu, struct bp *bp, long p_sect[][2])
        bp_enable_cachepath();
 
        sctwork = do_feed(sp, np, vec, &work, etu);
-       bp_put_item(bp, sp, I_CIVIL, vec[I_CIVIL]);
-       bp_put_item(bp, sp, I_UW, vec[I_UW]);
-       bp_put_item(bp, sp, I_MILIT, vec[I_MILIT]);
+       bp_put_items(bp, sp, vec);
 
        bp_disable_cachepath();
        bp_clear_cachepath();
@@ -329,11 +328,10 @@ produce_sect(int natnum, int etu, struct bp *bp, long p_sect[][2])
        desig = sp->sct_type;
 
        if ((sp->sct_effic < 100 || sp->sct_type != sp->sct_newtype) &&
-           np->nat_money > 0) {
+           np->nat_money >= 0) {
            neweff = upd_buildeff(np, sp, &work, vec, etu, &desig, sctwork,
                                  &cost);
-           bp_put_item(bp, sp, I_LCM, vec[I_LCM]);
-           bp_put_item(bp, sp, I_HCM, vec[I_HCM]);
+           bp_put_items(bp, sp, vec);
            p_sect[SCT_EFFIC][0]++;
            p_sect[SCT_EFFIC][1] += cost;
            if (!player->simulation) {
@@ -349,6 +347,7 @@ produce_sect(int natnum, int etu, struct bp *bp, long p_sect[][2])
            p_sect[desig][1] += ecost;
            if (!player->simulation)
                np->nat_money -= ecost;
+           bp_put_items(bp, sp, vec);
        }
 
        /*
@@ -356,9 +355,10 @@ produce_sect(int natnum, int etu, struct bp *bp, long p_sect[][2])
         */
 
        if (neweff >= 60) {
-           if (np->nat_money > 0 && dchr[desig].d_prd >= 0)
+           if (np->nat_money >= 0 && dchr[desig].d_prd >= 0)
                work -= produce(np, sp, vec, work, desig, neweff,
                                &pcost, &amount);
+           bp_put_items(bp, sp, vec);
        }
 
        bp_put_avail(bp, sp, work);