]> git.pond.sub.org Git - empserver/blob - src/lib/subs/plane.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / subs / plane.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future 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 <config.h>
36
37 #include "misc.h"
38 #include "player.h"
39 #include "plane.h"
40 #include "ship.h"
41 #include "land.h"
42 #include "file.h"
43 #include "prototypes.h"
44 #include "optlist.h"
45
46 int
47 pln_postread(int n, void *ptr)
48 {
49     struct plnstr *pp = ptr;
50     struct shpstr theship;
51     struct lndstr theland;
52
53     if (pp->pln_uid != n) {
54         logerror("pln_postread: Error - %d != %d, zeroing.\n", pp->pln_uid,
55                  n);
56         memset(pp, 0, sizeof(struct plnstr));
57     }
58
59     if (pp->pln_ship >= 0 && pp->pln_own && pp->pln_effic >= PLANE_MINEFF) {
60         if (getship(pp->pln_ship, &theship) &&
61             (theship.shp_effic >= SHIP_MINEFF)) {
62             /* wooof!  Carriers are a pain */
63             if (pp->pln_mission) {
64                 /*
65                  *  If the plane is on a mission centered
66                  *  on it's loc, the op-area travels with
67                  *  the plane.
68                  */
69                 if ((pp->pln_opx == pp->pln_x) &&
70                     (pp->pln_opy == pp->pln_y)) {
71                     pp->pln_opx = theship.shp_x;
72                     pp->pln_opy = theship.shp_y;
73                 }
74             }
75             if (pp->pln_x != theship.shp_x || pp->pln_y != theship.shp_y)
76                 time(&pp->pln_timestamp);
77             pp->pln_x = theship.shp_x;
78             pp->pln_y = theship.shp_y;
79         }
80     }
81     if (pp->pln_land >= 0 && pp->pln_own && pp->pln_effic >= PLANE_MINEFF) {
82         if (getland(pp->pln_land, &theland) &&
83             (theland.lnd_effic >= LAND_MINEFF)) {
84             /* wooof!  Units are a pain, too */
85             if (pp->pln_mission) {
86                 /*
87                  *  If the plane is on a mission centered
88                  *  on it's loc, the op-area travels with
89                  *  the plane.
90                  */
91                 if ((pp->pln_opx == pp->pln_x) &&
92                     (pp->pln_opy == pp->pln_y)) {
93                     pp->pln_opx = theland.lnd_x;
94                     pp->pln_opy = theland.lnd_y;
95                 }
96             }
97             if (pp->pln_x != theland.lnd_x || pp->pln_y != theland.lnd_y)
98                 time(&pp->pln_timestamp);
99             pp->pln_x = theland.lnd_x;
100             pp->pln_y = theland.lnd_y;
101         }
102     }
103     player->owner = (player->god || pp->pln_own == player->cnum);
104     if (opt_MOB_ACCESS)
105         pln_do_upd_mob(pp);
106     return 1;
107 }
108
109 int
110 pln_prewrite(int n, void *ptr)
111 {
112     struct plnstr *pp = ptr;
113     struct plnstr plane;
114
115     if (pp->pln_effic < PLANE_MINEFF) {
116         if (pp->pln_own)
117             makelost(EF_PLANE, pp->pln_own, pp->pln_uid, pp->pln_x,
118                      pp->pln_y);
119         pp->pln_own = 0;
120         pp->pln_effic = 0;
121     }
122     pp->ef_type = EF_PLANE;
123     pp->pln_uid = n;
124
125     time(&pp->pln_timestamp);
126
127     getplane(n, &plane);
128
129     return 1;
130 }
131
132 void
133 pln_init(int n, void *ptr)
134 {
135     struct plnstr *pp = ptr;
136
137     pp->ef_type = EF_PLANE;
138     pp->pln_uid = n;
139     pp->pln_own = 0;
140 }
141
142 s_char *
143 prplane(struct plnstr *pp)
144 {
145     return prbuf("%s #%d", plchr[(int)pp->pln_type].pl_name, pp->pln_uid);
146 }