]> git.pond.sub.org Git - empserver/blob - src/lib/subs/coastal.c
(cens, desi, dump, do_desi, doland, file_sct_init, grow_continents)
[empserver] / src / lib / subs / coastal.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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  *  coastal.c: Routines to calculate the coastal flag
29  * 
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2005
32  *     
33  */
34 #include "prototypes.h"
35 #include "file.h"
36 #include "path.h"
37
38 static void
39 update_coastal_flag(struct sctstr *sp, struct sctstr *sectp)
40 {
41     int n;
42     struct sctstr sect;
43
44     for (n = 1; n <= 6; n++) {  /* Directions */
45         getsect(sp->sct_x + diroff[n][0], sp->sct_y + diroff[n][1], &sect);
46         if (sectp && sectp->sct_x == sect.sct_x &&
47             sectp->sct_y == sect.sct_y)
48             continue;
49         if (sect.sct_type == SCT_WATER || sect.sct_type == SCT_BTOWER ||
50             sect.sct_type == SCT_BSPAN) {
51             if (!sp->sct_coastal) {
52                 sp->sct_coastal = 1;
53                 putsect(sp);
54             }
55             return;
56         }
57     }
58     if (sp->sct_coastal) {
59         sp->sct_coastal = 0;
60         putsect(sp);
61     }
62 }
63
64 static void
65 coastal_sea_to_land(struct sctstr *sp, int des)
66 {
67     int n;
68     struct sctstr sect;
69
70     update_coastal_flag(sp, NULL);
71
72     for (n = 1; n <= 6; n++) {  /* Directions */
73         getsect(sp->sct_x + diroff[n][0], sp->sct_y + diroff[n][1], &sect);
74         update_coastal_flag(&sect, sp);
75     }
76 }
77
78 static void
79 coastal_land_to_sea(struct sctstr *sp, int des)
80 {
81     int n;
82     struct sctstr sect;
83
84     sp->sct_coastal = 1;
85     putsect(sp);
86
87     for (n = 1; n <= 6; ++n) {  /* Directions */
88         getsect(sp->sct_x + diroff[n][0], sp->sct_y + diroff[n][1], &sect);
89         if (!sect.sct_coastal) {
90             sect.sct_coastal = 1;
91             putsect(&sect);
92         }
93     }
94 }
95
96 void
97 set_coastal(struct sctstr *sp, int des)
98 {
99     int old_water = 0;
100     int new_water = 0;
101
102     if (sp->sct_type == SCT_WATER || sp->sct_type == SCT_BTOWER ||
103         sp->sct_type == SCT_BSPAN)
104         old_water = 1;
105
106     if (des == SCT_WATER || des == SCT_BTOWER || des== SCT_BSPAN)
107         new_water = 1;
108
109     if (new_water == old_water)
110         return;
111     else if (new_water)
112         coastal_land_to_sea(sp, des);
113     else
114         coastal_sea_to_land(sp, des);
115 }