]> git.pond.sub.org Git - empserver/blob - src/lib/subs/plane.c
Import of Empire 4.2.12
[empserver] / src / lib / subs / plane.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  plane.c: Plane post-read and pre-write data massage
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Steve McClure, 1996
33  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "var.h"
38 #include "plane.h"
39 #include "ship.h"
40 #include "land.h"
41 #include "xy.h"
42 #include "file.h"
43 #include "nat.h"
44 #include "deity.h"
45 #include "prototypes.h"
46 #include "optlist.h"
47
48 int
49 pln_postread(int n, s_char *ptr)
50 {
51         struct  plnstr *pp = (struct plnstr *) ptr;
52         struct  shpstr theship;
53         struct  lndstr theland;
54
55         if (pp->pln_uid != n) {
56                 logerror("pln_postread: Error - %d != %d, zeroing.\n", pp->pln_uid, n);
57                 bzero(ptr, sizeof(struct plnstr));
58         }
59
60         if (pp->pln_ship >= 0 && pp->pln_own && pp->pln_effic >= PLANE_MINEFF) {
61                 if (getship(pp->pln_ship, &theship) &&
62                     (theship.shp_effic >= SHIP_MINEFF)) {
63                         /* wooof!  Carriers are a pain */
64                         if (pp->pln_mission){
65                                 /*
66                                  *  If the plane is on a mission centered
67                                  *  on it's loc, the op-area travels with
68                                  *  the plane.
69                                  */
70                                 if ((pp->pln_opx == pp->pln_x) &&
71                                         (pp->pln_opy == pp->pln_y)){
72                                         pp->pln_opx = theship.shp_x;
73                                         pp->pln_opy = theship.shp_y;
74                                 }
75                         }
76                         if (pp->pln_x != theship.shp_x || pp->pln_y != theship.shp_y)
77                           time(&pp->pln_timestamp);
78                         pp->pln_x = theship.shp_x;
79                         pp->pln_y = theship.shp_y;
80                 }
81         }
82         if (pp->pln_land >= 0 && pp->pln_own && pp->pln_effic >= PLANE_MINEFF) {
83                 if (getland(pp->pln_land, &theland) &&
84                     (theland.lnd_effic >= LAND_MINEFF)) {
85                         /* wooof!  Units are a pain, too */
86                         if (pp->pln_mission){
87                                 /*
88                                  *  If the plane is on a mission centered
89                                  *  on it's loc, the op-area travels with
90                                  *  the plane.
91                                  */
92                                 if ((pp->pln_opx == pp->pln_x) &&
93                                         (pp->pln_opy == pp->pln_y)){
94                                         pp->pln_opx = theland.lnd_x;
95                                         pp->pln_opy = theland.lnd_y;
96                                 }
97                         }
98                         if (pp->pln_x != theland.lnd_x || pp->pln_y != theland.lnd_y)
99                           time(&pp->pln_timestamp);
100                         pp->pln_x = theland.lnd_x;
101                         pp->pln_y = theland.lnd_y;
102                 }
103         }
104         player->owner = (player->god || pp->pln_own == player->cnum);
105         if (opt_MOB_ACCESS)
106           pln_do_upd_mob(pp);
107         return 1;
108 }
109
110 /*ARGSUSED*/
111 int
112 pln_prewrite(int n, s_char *ptr)
113 {
114         struct  plnstr *pp = (struct plnstr *) ptr;
115         struct  plnstr plane;
116
117         if (pp->pln_effic < PLANE_MINEFF) {
118                 if (pp->pln_own)
119                     makelost(EF_PLANE, pp->pln_own, pp->pln_uid, pp->pln_x, pp->pln_y);
120                 pp->pln_own = 0;
121                 pp->pln_effic = 0;
122         }
123         pp->ef_type = EF_PLANE;
124         pp->pln_uid = n;
125
126         time(&pp->pln_timestamp);
127
128         getplane(n, &plane);
129
130         return 1;
131 }
132
133 void
134 pln_init(int n, s_char *ptr)
135 {
136         struct  plnstr *pp = (struct plnstr *) ptr;
137
138         pp->ef_type = EF_PLANE;
139         pp->pln_uid = n;
140         pp->pln_own = 0;
141 }
142
143 s_char *
144 prplane(struct plnstr *pp)
145 {
146         return prbuf("%s #%d", plchr[(int)pp->pln_type].pl_name, pp->pln_uid);
147 }