The Battle for Wesnoth  1.13.4+dev
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
editor_main.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2008 - 2016 by Tomasz Sniatowski <[email protected]>
3  Part of the Battle for Wesnoth Project http://www.wesnoth.org/
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 #define GETTEXT_DOMAIN "wesnoth-editor"
15 
17 
18 #include "gettext.hpp"
19 #include "filesystem.hpp"
21 
22 #include <boost/algorithm/string/replace.hpp>
23 
24 lg::log_domain log_editor("editor");
25 
26 namespace editor {
27 
28 EXIT_STATUS start(const config& game_conf, CVideo& video, const std::string& filename /* = "" */,
29  bool take_screenshot /* = false */, const std::string& screenshot_filename /* = "map_screenshot.bmp" */)
30 {
32  try {
36  editor_controller editor(game_conf, video);
37  if (!filename.empty() && filesystem::file_exists (filename)) {
38  if (filesystem::is_directory(filename)) {
39  editor.context_manager_->set_default_dir(filename);
40  editor.context_manager_->load_map_dialog(true);
41  } else {
42  editor.context_manager_->load_map(filename, false);
43  }
44 
45  if (take_screenshot) {
46  editor.do_screenshot(screenshot_filename);
47  e = EXIT_NORMAL;
48  }
49  }
50 
51  if (!take_screenshot)
52  e = editor.main_loop();
53 
54  } catch (editor_exception& e) {
55  ERR_ED << "Editor exception in editor::start: " << e.what() << std::endl;
56  throw;
57  }
59  ERR_ED << "Possibly leaked " << editor_action::get_instance_count() << " action objects" << std::endl;
60  }
61 
62  return e;
63 }
64 
65 } //end namespace editor
void do_screenshot(const std::string &screenshot_filename="map_screenshot.bmp")
Takes a screenshot.
const char * what() const
Definition: exceptions.hpp:35
lg::log_domain log_editor("editor")
Definition: video.hpp:58
void set_scope_active(scope s, bool set)
static int get_instance_count()
Debugging aid.
Definition: action_base.hpp:94
Base class for editor actions.
boost::scoped_ptr< context_manager > context_manager_
The editor_controller class contains the mouse and keyboard event handling routines for the editor...
int h_
Definition: font.cpp:607
bool is_directory(const std::string &fname)
Returns true if the given file is a directory.
Manage the empty-palette in the editor.
Definition: action.cpp:28
void deactivate_all_scopes()
Declarations for File-IO.
EXIT_STATUS main_loop()
Editor main loop.
#define ERR_ED
#define e
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:83
bool file_exists(const std::string &name)
Returns true if a file or directory with such name already exists.
GLsizei const GLcharARB ** string
Definition: glew.h:4503
EXIT_STATUS start(const config &game_conf, CVideo &video, const std::string &filename, bool take_screenshot, const std::string &screenshot_filename)
Main interface for launching the editor from the title screen.
Definition: editor_main.cpp:28