X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flisp%2Flisp.cpp;h=0f87a70739ce75434c3f312102f9cede5f6a5117;hb=5240d812e12e6b53dc3c36bf313361d2d457382a;hp=fcf5cee276f9d41d6008690ef53f090858330575;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/lisp/lisp.cpp b/src/lisp/lisp.cpp index fcf5cee27..0f87a7073 100644 --- a/src/lisp/lisp.cpp +++ b/src/lisp/lisp.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,39 +12,33 @@ // 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. +// along with this program. If not, see . -#include +#include "lisp/lisp.hpp" -#include "lisp.hpp" +#include -namespace lisp -{ - -Lisp::Lisp(LispType newtype) - : type(newtype) +namespace lisp { + +Lisp::Lisp(LispType newtype) : + type(newtype), + v() { } Lisp::~Lisp() { - if(type == TYPE_SYMBOL || type == TYPE_STRING) - delete[] v.string; - if(type == TYPE_CONS) { - delete v.cons.cdr; - delete v.cons.car; - } + // resources should be on parser obstack, so no need to delete anything } -Lisp* +const Lisp* Lisp::get_lisp(const char* name) const { for(const Lisp* p = this; p != 0; p = p->get_cdr()) { - Lisp* child = p->get_car(); + const Lisp* child = p->get_car(); if(!child || child->get_type() != TYPE_CONS) continue; - Lisp* childname = child->get_car(); + const Lisp* childname = child->get_car(); if(!childname) continue; std::string childName; @@ -65,7 +57,7 @@ Lisp::print(int indent) const { for(int i = 0; i < indent; ++i) printf(" "); - + if(type == TYPE_CONS) { printf("(\n"); const Lisp* lisp = this; @@ -97,3 +89,5 @@ Lisp::print(int indent) const } } // end of namespace lisp + +/* EOF */