Unified Messaging Subsystem
[supertux.git] / src / lisp / writer.cpp
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2004 Matthias Braun <matze@braunis.de
5 //
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.
10 //
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.
15 //
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.
19
20 #include <config.h>
21
22 #include <iostream>
23
24 #include "writer.hpp"
25 #include "physfs/physfs_stream.hpp"
26 #include "msg.hpp"
27
28 namespace lisp
29 {
30
31 Writer::Writer(const std::string& filename)
32 {
33   out = new OFileStream(filename);
34   out_owned = true;
35   indent_depth = 0;
36 }
37   
38 Writer::Writer(std::ostream* newout)
39 {
40   out = newout;
41   out_owned = false;
42   indent_depth = 0;
43 }
44
45 Writer::~Writer()
46 {
47   if(lists.size() > 0) {
48     msg_warning("Not all sections closed in lispwriter");
49   }
50   if(out_owned)
51     delete out;
52 }
53
54 void
55 Writer::write_comment(const std::string& comment)
56 {
57   *out << "; " << comment << "\n";
58 }
59
60 void
61 Writer::start_list(const std::string& listname)
62 {
63   indent();
64   *out << '(' << listname << '\n';
65   indent_depth += 2;
66
67   lists.push_back(listname);
68 }
69
70 void
71 Writer::end_list(const std::string& listname)
72 {
73   if(lists.size() == 0) {
74     msg_warning("Trying to close list '" << listname 
75               << "', which is not open");
76     return;
77   }
78   if(lists.back() != listname) {
79     msg_warning("trying to close list '" << listname 
80               << "' while list '" << lists.back() << "' is open");
81     return;
82   }
83   lists.pop_back();
84   
85   indent_depth -= 2;
86   indent();
87   *out << ")\n";
88 }
89
90 void
91 Writer::write_int(const std::string& name, int value)
92 {
93   indent();
94   *out << '(' << name << ' ' << value << ")\n";
95 }
96
97 void
98 Writer::write_float(const std::string& name, float value)
99 {
100   indent();
101   *out << '(' << name << ' ' << value << ")\n";
102 }
103
104 void
105 Writer::write_string(const std::string& name, const std::string& value,
106     bool translatable)
107 {
108   indent();
109   *out << '(' << name;
110   if(translatable) {
111     *out << " (_ \"" << value << "\"))\n";
112   } else {
113     *out << " \"" << value << "\")\n";
114   }
115 }
116
117 void
118 Writer::write_bool(const std::string& name, bool value)
119 {
120   indent();
121   *out << '(' << name << ' ' << (value ? "#t" : "#f") << ")\n";
122 }
123
124 void
125 Writer::write_int_vector(const std::string& name,
126     const std::vector<int>& value)
127 {
128   indent();
129   *out << '(' << name;
130   for(std::vector<int>::const_iterator i = value.begin(); i != value.end(); ++i)
131     *out << " " << *i;
132   *out << ")\n";
133 }
134
135 void
136 Writer::write_int_vector(const std::string& name,
137     const std::vector<unsigned int>& value)
138 {
139   indent();
140   *out << '(' << name;
141   for(std::vector<unsigned int>::const_iterator i = value.begin(); i != value.end(); ++i)
142     *out << " " << *i;
143   *out << ")\n";
144 }
145
146 void
147 Writer::write_float_vector(const std::string& name,
148                            const std::vector<float>& value)
149 {
150   indent();
151   *out << '(' << name;
152   for(std::vector<float>::const_iterator i = value.begin(); i != value.end(); ++i)
153     *out << " " << *i;
154   *out << ")\n";
155 }
156
157 void
158 Writer::indent()
159 {
160   for(int i = 0; i<indent_depth; ++i)
161     *out << ' ';
162 }
163
164 } // end of namespace lisp