]> git.pond.sub.org Git - empserver/blob - src/lib/common/ef_verify.c
(ef_init_srv): Add a call ef_verify() to verify game data and game
[empserver] / src / lib / common / ef_verify.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  *  ef_verify.c: Verify game configuration
29  * 
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2005
32  *  
33  */
34
35 #include <stdio.h>
36 #include <time.h>
37
38 #include "prototypes.h"
39 #include "file.h"
40 #include "nsc.h"
41
42 static int
43 verify_row(int type, int row)
44 {
45     struct castr *ca = ef_cadef(type);
46     void *row_ref = malloc(empfile[type].size);
47     int i, j, k, n;
48     struct castr *ca_sym;
49     struct valstr val;
50     int ret_val = 0; 
51     int in_mem = (ef_flags(type) & EFF_MEM) != 0; 
52  
53  
54     if (!in_mem) { 
55         row_ref = malloc(empfile[type].size); 
56         ef_read(type, row, row_ref); 
57     } else 
58         row_ref = ef_ptr(type, row); 
59
60 //    if (ef_flags(type) & EFF_OWNER) != 0
61     for (i = 0; ca[i].ca_name; ++i) {
62         if (ca[i].ca_flags & NSC_EXTRA)
63             continue;
64         n = ca[i].ca_type != NSC_STRINGY ? ca[i].ca_len : 0;
65         j = 0;
66         do {
67             if (ca[i].ca_table != EF_BAD && ca[i].ca_table != type) {
68                 val.val_type = ca[i].ca_type;
69                 val.val_cat = NSC_OFF;
70                 val.val_as.sym.off = ca[i].ca_off;
71                 val.val_as.sym.idx = j;
72                 nstr_exec_val(&val, 0, row_ref, NSC_NOTYPE);
73                 if (val.val_type != NSC_LONG && val.val_type != NSC_TYPEID)
74                     continue;
75
76                 ca_sym = ef_cadef(ca[i].ca_table);
77                 if (ca[i].ca_flags & NSC_BITS) {
78                     if (ca_sym != symbol_ca) {
79                         fprintf(stderr,
80                             "Unable to verify symbol set as the "
81                             "table %s is not created as symbol table "
82                             "for table %s row %d field %s\n",
83                             ef_nameof(ca[i].ca_table), ef_nameof(type),
84                             row + 1, ca[i].ca_name
85                             );
86                         continue;
87                     }
88                     for (k = 0; k < sizeof(long) * 8; k++) {
89                         if (val.val_as.lng & (1 << k))
90                             if (!symbol_by_value(1 << k, ef_ptr(ca[i].ca_table, 0))) {
91                                 fprintf(stderr,
92                                     "bit %d not found in symbol table %s "
93                                     "when verify table %s row %d field %s\n",
94                                     k, ef_nameof(ca[i].ca_table),
95                                     ef_nameof(type), row + 1, ca[i].ca_name);
96                                 ret_val = -1;
97                             }
98                     }
99                 } else {
100                     if (ca_sym != symbol_ca) {
101                         if (val.val_as.lng >= ef_nelem(ca[i].ca_table) ||
102                             val.val_as.lng < -2) {
103                             fprintf(stderr, "Table index %d to table %s "
104                                 "out of range, nelements %d for table %s "
105                                 "row %d field %s\n",
106                                 val.val_as.lng, ef_nameof(ca[i].ca_table),
107                                 ef_nelem(ca[i].ca_table), ef_nameof(type), 
108                                 row + 1, ca[i].ca_name);
109                             ret_val = -1;
110                         }
111                     } else {
112                         if (val.val_as.lng > -1) {
113                             if (!symbol_by_value(val.val_as.lng,
114                                        ef_ptr(ca[i].ca_table,0))) {
115                                 fprintf(stderr, "value %d not found in "
116                                     "symbol table %s when verify table %s "
117                                     "row %d field %s\n",
118                                     val.val_as.lng,
119                                     ef_nameof(ca[i].ca_table),
120                                     ef_nameof(type), row + 1,
121                                     ca[i].ca_name);
122                                 ret_val = -1;
123                             }
124                         }
125                     }
126                 }
127             }
128         } while (++j < n);
129     } 
130     if (!in_mem)
131         free(row_ref);
132     return(ret_val);
133 }
134
135 int
136 ef_verify()
137 {
138     struct empfile *ep;
139     int retval = 0;
140     int i;
141
142     for (ep = empfile; ep->name; ep++) {
143         if (!ef_cadef(ep->uid))
144             continue;
145         for (i = 0; i < ef_nelem(ep->uid); i++) {
146             retval += verify_row(ep->uid, i);
147         }
148     }
149     return retval;
150 }