X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flisp%2Fwriter.cpp;h=4126b7fad277059470093aa5b25f11f5e82708a5;hb=eef176c312c7e3f9144a82670f648955f04b525c;hp=9312ea2804205ee31b0ffff3ba895f4cdecfaf42;hpb=5b7f9214cb929399f1a855ef5807018a9447d510;p=supertux.git diff --git a/src/lisp/writer.cpp b/src/lisp/writer.cpp index 9312ea280..4126b7fad 100644 --- a/src/lisp/writer.cpp +++ b/src/lisp/writer.cpp @@ -1,7 +1,7 @@ // $Id$ // -// SuperTux - A Jump'n Run -// Copyright (C) 2004 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -23,6 +23,7 @@ #include "writer.hpp" #include "physfs/physfs_stream.hpp" +#include "log.hpp" namespace lisp { @@ -44,7 +45,7 @@ Writer::Writer(std::ostream* newout) Writer::~Writer() { if(lists.size() > 0) { - std::cerr << "Warning: Not all sections closed in lispwriter!\n"; + log_warning << "Not all sections closed in lispwriter" << std::endl; } if(out_owned) delete out; @@ -57,10 +58,15 @@ Writer::write_comment(const std::string& comment) } void -Writer::start_list(const std::string& listname) +Writer::start_list(const std::string& listname, bool string) { indent(); - *out << '(' << listname << '\n'; + *out << '('; + if(string) + write_escaped_string(listname); + else + *out << listname; + *out << '\n'; indent_depth += 2; lists.push_back(listname); @@ -70,13 +76,11 @@ void Writer::end_list(const std::string& listname) { if(lists.size() == 0) { - std::cerr << "Trying to close list '" << listname - << "', which is not open.\n"; + log_warning << "Trying to close list '" << listname << "', which is not open" << std::endl; return; } if(lists.back() != listname) { - std::cerr << "Warning: trying to close list '" << listname - << "' while list '" << lists.back() << "' is open.\n"; + log_warning << "trying to close list '" << listname << "' while list '" << lists.back() << "' is open" << std::endl; return; } lists.pop_back(); @@ -107,9 +111,13 @@ Writer::write_string(const std::string& name, const std::string& value, indent(); *out << '(' << name; if(translatable) { - *out << " (_ \"" << value << "\"))\n"; + *out << " (_ "; + write_escaped_string(value); + *out << "))\n"; } else { - *out << " \"" << value << "\")\n"; + *out << " "; + write_escaped_string(value); + *out << ")\n"; } } @@ -143,6 +151,32 @@ Writer::write_int_vector(const std::string& name, } void +Writer::write_float_vector(const std::string& name, + const std::vector& value) +{ + indent(); + *out << '(' << name; + for(std::vector::const_iterator i = value.begin(); i != value.end(); ++i) + *out << " " << *i; + *out << ")\n"; +} + +void +Writer::write_escaped_string(const std::string& str) +{ + *out << '"'; + for(const char* c = str.c_str(); *c != 0; ++c) { + if(*c == '\"') + *out << "\\\""; + else if(*c == '\\') + *out << "\\\\"; + else + *out << *c; + } + *out << '"'; +} + +void Writer::indent() { for(int i = 0; i