3 // SuperTux - A Jump'n Run
4 // Copyright (C) 2004 Matthias Braun <matze@braunis.de
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 Writer::Writer(std::ostream& newout)
30 : out(newout), indent_depth(0)
36 if(lists.size() > 0) {
37 std::cerr << "Warning: Not all sections closed in lispwriter!\n";
42 Writer::write_comment(const std::string& comment)
44 out << "; " << comment << "\n";
48 Writer::start_list(const std::string& listname)
51 out << '(' << listname << '\n';
54 lists.push_back(listname);
58 Writer::end_list(const std::string& listname)
60 if(lists.size() == 0) {
61 std::cerr << "Trying to close list '" << listname
62 << "', which is not open.\n";
65 if(lists.back() != listname) {
66 std::cerr << "Warning: trying to close list '" << listname
67 << "' while list '" << lists.back() << "' is open.\n";
78 Writer::write_int(const std::string& name, int value)
81 out << '(' << name << ' ' << value << ")\n";
85 Writer::write_float(const std::string& name, float value)
88 out << '(' << name << ' ' << value << ")\n";
92 Writer::write_string(const std::string& name, const std::string& value,
98 out << " (_ \"" << value << "\"))\n";
100 out << " \"" << value << "\")\n";
105 Writer::write_bool(const std::string& name, bool value)
108 out << '(' << name << ' ' << (value ? "#t" : "#f") << ")\n";
112 Writer::write_int_vector(const std::string& name,
113 const std::vector<int>& value)
117 for(std::vector<int>::const_iterator i = value.begin(); i != value.end(); ++i)
123 Writer::write_int_vector(const std::string& name,
124 const std::vector<unsigned int>& value)
128 for(std::vector<unsigned int>::const_iterator i = value.begin(); i != value.end(); ++i)
136 for(int i = 0; i<indent_depth; ++i)
140 } // end of namespace lisp