-renamed ViewPort to Camera
[supertux.git] / src / lispwriter.cpp
index 4221f81..6438b2d 100644 (file)
@@ -1,3 +1,21 @@
+//  $Id$
+//
+//  SuperTux -  A Jump'n Run
+//  Copyright (C) 2004 Matthias Braun <matze@braunis.de
+//
+//  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 distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  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 "lispwriter.h"
 #include <iostream>
 
@@ -14,13 +32,13 @@ LispWriter::~LispWriter()
 }
 
 void
-LispWriter::writeComment(const std::string& comment)
+LispWriter::write_comment(const std::string& comment)
 {
   out << "; " << comment << "\n";
 }
 
 void
-LispWriter::startList(const std::string& listname)
+LispWriter::start_list(const std::string& listname)
 {
   indent();
   out << '(' << listname << '\n';
@@ -30,7 +48,7 @@ LispWriter::startList(const std::string& listname)
 }
 
 void
-LispWriter::endList(const std::string& listname)
+LispWriter::end_list(const std::string& listname)
 {
   if(lists.size() == 0) {
     std::cerr << "Trying to close list '" << listname 
@@ -50,35 +68,35 @@ LispWriter::endList(const std::string& listname)
 }
 
 void
-LispWriter::writeInt(const std::string& name, int value)
+LispWriter::write_int(const std::string& name, int value)
 {
   indent();
   out << '(' << name << ' ' << value << ")\n";
 }
 
 void
-LispWriter::writeFloat(const std::string& name, float value)
+LispWriter::write_float(const std::string& name, float value)
 {
   indent();
   out << '(' << name << ' ' << value << ")\n";
 }
 
 void
-LispWriter::writeString(const std::string& name, const std::string& value)
+LispWriter::write_string(const std::string& name, const std::string& value)
 {
   indent();
   out << '(' << name << " \"" << value << "\")\n";
 }
 
 void
-LispWriter::writeBool(const std::string& name, bool value)
+LispWriter::write_bool(const std::string& name, bool value)
 {
   indent();
   out << '(' << name << ' ' << (value ? "#t" : "#f") << ")\n";
 }
 
 void
-LispWriter::writeIntVector(const std::string& name,
+LispWriter::write_int_vector(const std::string& name,
     const std::vector<int>& value)
 {
   indent();
@@ -89,7 +107,7 @@ LispWriter::writeIntVector(const std::string& name,
 }
 
 void
-LispWriter::writeIntVector(const std::string& name,
+LispWriter::write_int_vector(const std::string& name,
     const std::vector<unsigned int>& value)
 {
   indent();