]> git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/lists.cpp
9830c3764134fee7ae7b86d4d0e5ad4a4a2640f8
[xonotic/netradiant.git] / contrib / bobtoolz / lists.cpp
1 /*
2    BobToolz plugin for GtkRadiant
3    Copyright (C) 2001 Gordon Biggans
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include "lists.h"
21 #include "globaldefs.h"
22
23 #if GDEF_COMPILER_MSVC
24 #pragma warning(disable : 4786)
25 #endif
26
27 #include "misc.h"
28
29 bool LoadExclusionList(char *filename, std::list<Str> *exclusionList)
30 {
31     FILE *eFile = fopen(filename, "r");
32     if (eFile) {
33         char buffer[256];
34         int cnt = 0;
35         while (!feof(eFile)) {
36             memset(buffer, 0, 256);
37             fscanf(eFile, "%s\n", buffer);
38
39             if (strlen(buffer) > 0) {
40                 exclusionList->push_back(buffer);
41             } else {
42                 cnt++;
43             }
44         }
45
46         fclose(eFile);
47
48         return TRUE;
49     }
50
51     globalErrorStream() << "Failed To Load Exclusion List: " << filename << "\n";
52     return FALSE;
53 }
54
55 bool LoadGList(char *filename, ui::ListStore loadlist)
56 {
57     FILE *eFile = fopen(filename, "r");
58     if (eFile) {
59         char buffer[256];
60         int cnt = 0;
61         while (!feof(eFile)) {
62             memset(buffer, 0, 256);
63             fscanf(eFile, "%s\n", buffer);
64
65             if (strlen(buffer) > 0) {
66                 char *buffer2 = new char[strlen(buffer) + 1];
67                 strcpy(buffer2, buffer);
68                 loadlist.append(0, buffer2);
69             } else {
70                 cnt++;
71             }
72         }
73
74         fclose(eFile);
75
76         return TRUE;
77     }
78
79     globalErrorStream() << "Failed To Load GList: " << filename << "\n";
80     return FALSE;
81 }