summaryrefslogtreecommitdiff
path: root/tool.h
blob: 5ccda4113947b99798abcb9d0969399fa01348b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef TOOL_H
#define TOOL_H

#include "terrain.h"
#include "vector.h"
#include "gui.h"

#include <SDL.h>

class Tool {
	protected:
		Terrain *terrain;
		GUI *gui;

	public:
		Tool(Terrain *terrain);
		virtual ~Tool() {};

		virtual bool handle_event(SDL_Event& event, Vector3& selected) = 0;
		virtual void render_gui();
		virtual const char* get_name() = 0;
};

class RaiseTool : public Tool {
	protected:
		static std::string name;

	public:
		RaiseTool(Terrain *terrain);
		virtual ~RaiseTool();

		virtual bool handle_event(SDL_Event& event, Vector3& selected);
		virtual const char* get_name();
};

#endif