~gunchleoc/widelands/bug-1818494-ingame-zoom-freezes

« back to all changes in this revision

Viewing changes to src/parser.h

  • Committer: sirver
  • Date: 2002-02-05 20:54:08 UTC
  • Revision ID: git-v1:df384fd3a5e53be1f37803d1c0381fa993844bf5
Initial revision


git-svn-id: https://widelands.svn.sourceforge.net/svnroot/widelands/trunk@2 37b2a8de-5219-0410-9f54-a31bc463ab9c

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2001 by Holger Rapp 
 
3
 * 
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 * 
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef __S__PARSER_H
 
21
#define __S__PARSER_H
 
22
 
 
23
/** class Parser
 
24
 *
 
25
 * This is a simple Text parser. you register keywords, what kind
 
26
 * of vars this will be and the variable that should be registered
 
27
 * with it
 
28
 */
 
29
class Parser {
 
30
                  public:
 
31
                                         Parser();
 
32
                                         ~Parser();
 
33
 
 
34
                                         void register_string_opt(const char*, char*);
 
35
                                         void register_int_opt(const char*, int*);
 
36
                                         void register_bool_opt(const char*, bool*);
 
37
 
 
38
                                         int parse_line(const char*);
 
39
                                         
 
40
                                         
 
41
                                         static const unsigned int MAX_OPT_LENGTH=255;
 
42
 
 
43
                  private:
 
44
                                         static const unsigned int MAX_OPTS=1024;
 
45
                                        
 
46
                                         
 
47
                                         enum Type {
 
48
                                                                                  T_BOOL,
 
49
                                                                                  T_STRING,
 
50
                                                                                  T_INT
 
51
                                                                };
 
52
 
 
53
                                         struct {
 
54
                                                                char opt[MAX_OPT_LENGTH];
 
55
                                                                void* var;
 
56
                                                                Type type;
 
57
                                         } opts[MAX_OPTS];
 
58
                                         
 
59
                                         unsigned int nopts;
 
60
 
 
61
                                         /* don't call this functions */
 
62
                                         Parser(const Parser&);
 
63
                                         const Parser& operator=(const Parser&);
 
64
};
 
65
 
 
66
 
 
67
 
 
68
#endif /* __S__PARSER_H */