]> git.mxchange.org Git - simgear.git/blob - simgear/scene/util/SGPickCallback.hxx
Remove using std:: from the metar header, remove HTTP support, add very basic unit...
[simgear.git] / simgear / scene / util / SGPickCallback.hxx
1 /* -*-c++-*-
2  *
3  * Copyright (C) 2006-2007 Mathias Froehlich 
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  *
20  */
21
22 #ifndef SG_SCENE_PICKCALLBACK_HXX
23 #define SG_SCENE_PICKCALLBACK_HXX
24
25 #include <simgear/structure/SGReferenced.hxx>
26 #include <simgear/structure/SGSharedPtr.hxx>
27 #include <simgear/math/SGMath.hxx>
28
29 // Used to implement scenery interaction.
30 // The interface is still under development
31 class SGPickCallback : public SGReferenced {
32 public:
33   enum Priority {
34     PriorityGUI = 0,
35     PriorityPanel = 1,
36     PriorityOther = 2
37   };
38
39   struct Info {
40     SGVec3d wgs84;
41     SGVec3d local;
42   };
43
44   SGPickCallback(Priority priority = PriorityOther) :
45     _priority(priority)
46   { }
47
48   virtual ~SGPickCallback() {}
49   virtual bool buttonPressed(int button, const Info& info)
50   { return false; }
51   virtual void update(double dt)
52   { }
53   virtual void buttonReleased(void)
54   { }
55
56   Priority getPriority() const
57   { return _priority; }
58
59 private:
60   Priority _priority;
61 };
62
63 struct SGSceneryPick {
64   SGPickCallback::Info info;
65   SGSharedPtr<SGPickCallback> callback;
66 };
67
68 #endif