mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-08 19:29:04 +00:00

...the code needs to be cleaned up but that will be done in a later stage. State of cavegen unknown due to the fact, there's no generator defined.
71 lines
2.1 KiB
C++
71 lines
2.1 KiB
C++
/* $Id$ */
|
|
/*
|
|
Copyright (C) 2003-5 by David White <davidnwhite@verizon.net>
|
|
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
|
|
#include "global.hpp"
|
|
|
|
#include "cavegen.hpp"
|
|
#include "log.hpp"
|
|
#include "map_create.hpp"
|
|
#include "mapgen_dialog.hpp"
|
|
#include "scoped_resource.hpp"
|
|
#include "serialization/string_utils.hpp"
|
|
|
|
#include <ostream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#define ERR_CF LOG_STREAM(err, config)
|
|
|
|
map_generator* create_map_generator(const std::string& name, const config* cfg)
|
|
{
|
|
if(name == "default" || name == "") {
|
|
return new default_map_generator(cfg);
|
|
} else if(name == "cave") {
|
|
return new cave_map_generator(cfg);
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
//function to generate a random map, from a string which describes
|
|
//the generator to use and its arguments
|
|
std::string random_generate_map(const std::string& parms, const config* cfg)
|
|
{
|
|
//the first token is the name of the generator, tokens after
|
|
//that are arguments to the generator
|
|
std::vector<std::string> parameters = utils::split(parms, ' ');
|
|
util::scoped_ptr<map_generator> generator(create_map_generator(parameters.front(),cfg));
|
|
if(generator == NULL) {
|
|
ERR_CF << "could not find map generator '" << parameters.front() << "'\n";
|
|
return std::string();
|
|
}
|
|
|
|
parameters.erase(parameters.begin());
|
|
return generator.get()->create_map(parameters);
|
|
}
|
|
|
|
config random_generate_scenario(const std::string& parms, const config* cfg)
|
|
{
|
|
//the first token is the name of the generator, tokens after
|
|
//that are arguments to the generator
|
|
std::vector<std::string> parameters = utils::split(parms, ' ');
|
|
util::scoped_ptr<map_generator> generator(create_map_generator(parameters.front(),cfg));
|
|
if(generator == NULL) {
|
|
ERR_CF << "could not find map generator '" << parameters.front() << "'\n";
|
|
return config();
|
|
}
|
|
|
|
parameters.erase(parameters.begin());
|
|
return generator->create_scenario(parameters);
|
|
}
|