src/lisp/parser.hpp

Go to the documentation of this file.
00001 //  SuperTux
00002 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
00003 //
00004 //  This program is free software: you can redistribute it and/or modify
00005 //  it under the terms of the GNU General Public License as published by
00006 //  the Free Software Foundation, either version 3 of the License, or
00007 //  (at your option) any later version.
00008 //
00009 //  This program is distributed in the hope that it will be useful,
00010 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012 //  GNU General Public License for more details.
00013 //
00014 //  You should have received a copy of the GNU General Public License
00015 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
00016 
00017 #ifndef HEADER_SUPERTUX_LISP_PARSER_HPP
00018 #define HEADER_SUPERTUX_LISP_PARSER_HPP
00019 
00020 #include <obstack.h>
00021 
00022 #include "lisp/lexer.hpp"
00023 
00024 namespace tinygettext {
00025 class Dictionary;
00026 class DictionaryManager;
00027 }
00028 
00029 namespace lisp {
00030 
00031 class Lisp;
00032 class LispFile;
00033 
00034 class Parser
00035 {
00036 public:
00037   Parser(bool translate = true);
00038   ~Parser();
00039 
00045   const Lisp* parse(const std::string& filename);
00050   const Lisp* parse(std::istream& stream, const std::string& sourcename);
00051 
00052 private:
00053   void parse_error(const char* msg) const __attribute__((__noreturn__));
00054   const Lisp* read();
00055 
00056 
00057 private:
00058   Lexer* lexer;
00059   std::string filename;
00060   tinygettext::DictionaryManager* dictionary_manager;
00061   tinygettext::Dictionary* dictionary;
00062   Lexer::TokenType token;
00063 
00064   struct obstack obst;
00065 
00066 private:
00067   Parser(const Parser&);
00068   Parser & operator=(const Parser&);
00069 };
00070 
00071 } // end of namespace lisp
00072 
00073 #endif
00074 
00075 /* EOF */

Generated on Mon Jun 9 03:38:18 2014 for SuperTux by  doxygen 1.5.1