stk-code_catmod/src/cup_data.cpp
cosmosninja 2cddd16d40 Applied Paul's patch so the number of laps per track per grand prix can be specified in the *.cup files.
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1322 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2007-12-06 20:57:42 +00:00

60 lines
1.9 KiB
C++

// $Id$
//
// SuperTuxKart - a fun racing game with go-kart
// Copyright (C) 2004-2005 Ingo Ruhnke <grumbel@gmx.de>
// Copyright (C) 2006 Joerg Henrichs, Ingo Ruhnke <grumbel@gmx.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 <iostream>
#include <stdexcept>
#include "loader.hpp"
#include "lisp/parser.hpp"
#include "lisp/lisp.hpp"
#include "cup_data.hpp"
CupData::CupData(const std::string filename_)
{
m_filename = filename_;
const lisp::Lisp* lisp = 0;
try
{
lisp::Parser parser;
lisp = parser.parse(loader->getPath(m_filename));
lisp = lisp->getLisp("supertuxkart-cup");
if(!lisp)
{
throw std::runtime_error("No supertuxkart-cup node");
}
lisp->get ("name", m_name );
lisp->get ("description", m_description );
lisp->get ("herring", m_herring_style);
lisp->getVector("tracks", m_tracks );
lisp->getVector("laps", m_laps );
}
catch(std::exception& err)
{
fprintf(stderr, "Error while reading cup file '%s'\n", filename_.c_str());
fprintf(stderr, err.what());
fprintf(stderr, "\n");
}
delete lisp;
}
/* EOF */