]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/lists.cpp
netradiant: strip 16-bit png to 8-bit, fix #153
[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         FILE* eFile = fopen( filename, "r" );
31         if ( eFile ) {
32                 char buffer[256];
33                 int cnt = 0;
34                 while ( !feof( eFile ) )
35                 {
36                         memset( buffer, 0, 256 );
37                         fscanf( eFile, "%s\n", buffer );
38
39                         if ( strlen( buffer ) > 0 ) {
40                                 exclusionList->push_back( buffer );
41                         }
42                         else{
43                                 cnt++;
44                         }
45                 }
46
47                 fclose( eFile );
48
49                 return TRUE;
50         }
51
52         globalErrorStream() << "Failed To Load Exclusion List: " << filename << "\n";
53         return FALSE;
54 }
55
56 bool LoadGList( char* filename, ui::ListStore loadlist ){
57         FILE* eFile = fopen( filename, "r" );
58         if ( eFile ) {
59                 char buffer[256];
60                 int cnt = 0;
61                 while ( !feof( eFile ) )
62                 {
63                         memset( buffer, 0, 256 );
64                         fscanf( eFile, "%s\n", buffer );
65
66                         if ( strlen( buffer ) > 0 ) {
67                                 char* buffer2 = new char[strlen( buffer ) + 1];
68                                 strcpy( buffer2, buffer );
69                                 loadlist.append(0, buffer2);
70                         }
71                         else{
72                                 cnt++;
73                         }
74                 }
75
76                 fclose( eFile );
77
78                 return TRUE;
79         }
80
81         globalErrorStream() << "Failed To Load GList: " << filename << "\n";
82         return FALSE;
83 }