~ubuntu-branches/ubuntu/precise/widelands/precise-backports

« back to all changes in this revision

Viewing changes to src/editor/tools/editor_increase_resources_tool.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Quinson
  • Date: 2005-02-14 10:41:12 UTC
  • Revision ID: james.westby@ubuntu.com-20050214104112-6v08iux9fptxpva9
Tags: upstream-build9
Import upstream version build9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2002-4 by the Widelands Development Team
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef __S__EDITOR_INCREASE_RESOURCES_TOOL_H
 
21
#define __S__EDITOR_INCREASE_RESOURCES_TOOL_H
 
22
 
 
23
#include <string>
 
24
#include "editor_tool.h"
 
25
#include "editor_increase_resources_tool.h"
 
26
#include "editor_decrease_resources_tool.h"
 
27
 
 
28
class World;
 
29
 
 
30
/*
 
31
=============================
 
32
class Editor_Increase_Resources_Tool
 
33
 
 
34
this increases the resources of a field by a value
 
35
=============================
 
36
*/
 
37
class Editor_Increase_Resources_Tool : public Editor_Tool {
 
38
   public:
 
39
      Editor_Increase_Resources_Tool(Editor_Decrease_Resources_Tool* dht, Editor_Set_Resources_Tool* sht)
 
40
        : Editor_Tool(dht, sht) { m_changed_by=1; m_dht=dht; m_sht=sht; m_cur_res=0; }
 
41
      virtual ~Editor_Increase_Resources_Tool() {  }
 
42
 
 
43
      virtual int handle_click_impl(FCoords&, Map*, Editor_Interactive*);
 
44
 
 
45
      virtual const char* get_fsel_impl(void) { return "pics/fsel_editor_increase_resources.png"; }
 
46
 
 
47
      inline int get_changed_by(void) { return m_changed_by; }
 
48
      inline void set_changed_by(int n) { m_changed_by=n; }
 
49
      inline int get_cur_res(void) { return m_cur_res; }
 
50
      inline void set_cur_res(int res) { m_cur_res=res; }
 
51
 
 
52
      Editor_Decrease_Resources_Tool* get_dht(void) { return m_dht; }
 
53
      Editor_Set_Resources_Tool* get_sht(void) { return m_sht; }
 
54
 
 
55
   private:
 
56
      Editor_Decrease_Resources_Tool* m_dht;
 
57
      Editor_Set_Resources_Tool* m_sht;
 
58
      int m_changed_by;
 
59
      int m_cur_res;
 
60
};
 
61
 
 
62
int Editor_Change_Resource_Tool_Callback(FCoords& fc, void* data, int);
 
63
 
 
64
#endif
 
65