X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flisp%2Fparser.cpp;h=2a09de80f3a101564c753523a3a80261f385f1e4;hb=f2d761ff31e00ea72783878b7e1586a357e15d5a;hp=52e87b2973c76a8a66ef4c2c00832647f39e4b8d;hpb=7b74666be6929322c6a603a6edd0131378f4c144;p=supertux.git diff --git a/src/lisp/parser.cpp b/src/lisp/parser.cpp index 52e87b297..2a09de80f 100644 --- a/src/lisp/parser.cpp +++ b/src/lisp/parser.cpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -14,34 +12,50 @@ // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -#include +// along with this program. If not, see . #include #include -#include -#include -#include - -#include "tinygettext/tinygettext.hpp" -#include "physfs/physfs_stream.hpp" -#include "parser.hpp" -#include "lisp.hpp" -#include "obstack/obstackpp.hpp" - -namespace lisp -{ - -Parser::Parser(bool translate) - : lexer(0), dictionary_manager(0), dictionary(0) +#include +#include + +#include "lisp/lisp.hpp" +#include "lisp/parser.hpp" +#include "util/gettext.hpp" +#include "util/obstackpp.hpp" +#include "physfs/ifile_stream.hpp" +#include "physfs/ifile_streambuf.hpp" +#include "supertux/globals.hpp" + +#include "supertux/gameconfig.hpp" + +namespace lisp { + +Parser::Parser(bool translate) : + lexer(0), + filename(), + dictionary_manager(0), + dictionary(0), + token(), + searchpath(), + obst() { if(translate) { - dictionary_manager = new TinyGetText::DictionaryManager(); + dictionary_manager = new tinygettext::DictionaryManager(); dictionary_manager->set_charset("UTF-8"); + if (g_config) { + if (g_config->locale != "") { + dictionary_manager->set_language(tinygettext::Language::from_name(g_config->locale)); + } + else if(g_dictionary_manager && g_dictionary_manager->get_language()) { + // Language set to auto-detect? + dictionary_manager->set_language(g_dictionary_manager->get_language()); + } + } } obstack_init(&obst); + searchpath = PHYSFS_getSearchPath(); } Parser::~Parser() @@ -49,6 +63,7 @@ Parser::~Parser() obstack_free(&obst, NULL); delete lexer; delete dictionary_manager; + PHYSFS_freeList(searchpath); } static std::string dirname(const std::string& filename) @@ -61,23 +76,28 @@ static std::string dirname(const std::string& filename) } const Lisp* -Parser::parse(const std::string& filename) +Parser::parse(const std::string& filename_) { - IFileStreambuf ins(filename); + IFileStreambuf ins(filename_); std::istream in(&ins); if(!in.good()) { std::stringstream msg; - msg << "Parser problem: Couldn't open file '" << filename << "'."; + msg << "Parser problem: Couldn't open file '" << filename_ << "'."; throw std::runtime_error(msg.str()); } if(dictionary_manager) { - dictionary_manager->add_directory(dirname(filename)); + std::string rel_dir = dirname (filename_); + for(char** i = searchpath; *i != NULL; i++) + { + std::string abs_dir = std::string (*i) + PHYSFS_getDirSeparator () + rel_dir; + dictionary_manager->add_directory (abs_dir); + } dictionary = & (dictionary_manager->get_dictionary()); } - return parse(in, filename); + return parse(in, filename_); } const Lisp* @@ -104,7 +124,7 @@ Parser::parse_error(const char* msg) const { std::stringstream emsg; emsg << "Parse Error at '" << filename << "' line " << lexer->getLineNumber() - << ": " << msg; + << ": " << msg; throw std::runtime_error(emsg.str()); } @@ -114,7 +134,7 @@ Parser::read() Lisp* result; switch(token) { case Lexer::TOKEN_EOF: { - parse_error("Unexpected EOF."); + parse_error("Unexpected EOF."); } case Lexer::TOKEN_CLOSE_PAREN: { parse_error("Unexpected ')'."); @@ -130,11 +150,11 @@ Parser::read() } if(token == Lexer::TOKEN_SYMBOL && - strcmp(lexer->getString(), "_") == 0) { + strcmp(lexer->getString(), "_") == 0) { // evaluate translation function (_ str) in place here token = lexer->getNextToken(); if(token != Lexer::TOKEN_STRING) - parse_error("Expected string after '(_'"); + parse_error("Expected string after '(_'"); result = new(obst) Lisp(Lisp::TYPE_STRING); if(dictionary) { @@ -148,7 +168,7 @@ Parser::read() } token = lexer->getNextToken(); if(token != Lexer::TOKEN_CLOSE_PAREN) - parse_error("Expected ')' after '(_ string'"); + parse_error("Expected ')' after '(_ string'"); break; } @@ -182,11 +202,11 @@ Parser::read() } case Lexer::TOKEN_INTEGER: result = new(obst) Lisp(Lisp::TYPE_INTEGER); - sscanf(lexer->getString(), "%d", &result->v.integer); + result->v.integer = atoi(lexer->getString()); break; case Lexer::TOKEN_REAL: result = new(obst) Lisp(Lisp::TYPE_REAL); - sscanf(lexer->getString(), "%f", &result->v.real); + result->v.real = strtof(lexer->getString(), NULL); break; case Lexer::TOKEN_TRUE: result = new(obst) Lisp(Lisp::TYPE_BOOLEAN); @@ -199,6 +219,7 @@ Parser::read() default: // this should never happen + result = NULL; assert(false); } @@ -207,3 +228,5 @@ Parser::read() } } // end of namespace lisp + +/* EOF */