]> git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/xywindow.h
Q3map2:
[xonotic/netradiant.git] / radiant / xywindow.h
1 /*
2    Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3    For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #if !defined( INCLUDED_XYWINDOW_H )
23 #define INCLUDED_XYWINDOW_H
24
25 #include "math/matrix.h"
26 #include "signal/signal.h"
27
28 #include "gtkutil/cursor.h"
29 #include "gtkutil/window.h"
30 #include "gtkutil/xorrectangle.h"
31 #include "view.h"
32 #include "map.h"
33 #include "texturelib.h"
34
35 #include "qerplugin.h"
36
37 class Shader;
38 class SelectionSystemWindowObserver;
39 namespace scene
40 {
41 class Node;
42 }
43 typedef struct _GtkWindow GtkWindow;
44 typedef struct _GtkMenu GtkMenu;
45
46
47 void FlipClip();
48 void SplitClip();
49 void Clip();
50 void OnClipMode( bool enabled );
51 bool ClipMode();
52
53 inline const char* ViewType_getTitle( VIEWTYPE viewtype ){
54         if ( viewtype == XY ) {
55                 return "XY Top";
56         }
57         if ( viewtype == XZ ) {
58                 return "XZ Front";
59         }
60         if ( viewtype == YZ ) {
61                 return "YZ Side";
62         }
63         return "";
64 }
65
66 class XYWnd
67 {
68 GtkWidget* m_gl_widget;
69 guint m_sizeHandler;
70 guint m_exposeHandler;
71
72 DeferredDraw m_deferredDraw;
73 DeferredMotion m_deferred_motion;
74 public:
75 GtkWindow* m_parent;
76 XYWnd();
77 ~XYWnd();
78
79 void queueDraw(){
80         m_deferredDraw.draw();
81 }
82 GtkWidget* GetWidget(){
83         return m_gl_widget;
84 }
85
86 public:
87 SelectionSystemWindowObserver* m_window_observer;
88 XORRectangle m_XORRectangle;
89 WindowPositionTracker m_positionTracker;
90
91 static void captureStates();
92 static void releaseStates();
93
94 void PositionView( const Vector3& position );
95 const Vector3& GetOrigin();
96 void SetOrigin( const Vector3& origin );
97 void Scroll( int x, int y );
98
99 void XY_Draw();
100 void DrawCameraIcon( const Vector3& origin, const Vector3& angles );
101 void XY_DrawBlockGrid();
102 void XY_DrawAxis();
103 void XY_DrawGrid();
104 void XY_DrawBackground();
105 void XY_LoadBackgroundImage( const char *name );
106 void XY_DisableBackground();
107
108 void XY_MouseUp( int x, int y, unsigned int buttons );
109 void XY_MouseDown( int x, int y, unsigned int buttons );
110 void XY_MouseMoved( int x, int y, unsigned int buttons );
111
112 void NewBrushDrag_Begin( int x, int y );
113 void NewBrushDrag( int x, int y );
114 void NewBrushDrag_End( int x, int y );
115
116 void XY_ToPoint( int x, int y, Vector3& point );
117 void XY_SnapToGrid( Vector3& point );
118
119 void Move_Begin();
120 void Move_End();
121 bool m_move_started;
122 guint m_move_focusOut;
123
124 void Zoom_Begin();
125 void Zoom_End();
126 bool m_zoom_started;
127 guint m_zoom_focusOut;
128
129 void ZoomIn();
130 void ZoomOut();
131 void ZoomInWithMouse( int pointx, int pointy );
132
133 void SetActive( bool b ){
134         m_bActive = b;
135 };
136 bool Active(){
137         return m_bActive;
138 };
139
140 void Clipper_OnLButtonDown( int x, int y );
141 void Clipper_OnLButtonUp( int x, int y );
142 void Clipper_OnMouseMoved( int x, int y );
143 void Clipper_Crosshair_OnMouseMoved( int x, int y );
144 void DropClipPoint( int pointx, int pointy );
145
146 void SetCustomPivotOrigin( int pointx, int pointy );
147
148 void SetViewType( VIEWTYPE n );
149 bool m_bActive;
150
151 static GtkMenu* m_mnuDrop;
152
153 int m_chasemouse_current_x, m_chasemouse_current_y;
154 int m_chasemouse_delta_x, m_chasemouse_delta_y;
155
156
157 guint m_chasemouse_handler;
158 void ChaseMouse();
159 bool chaseMouseMotion( int pointx, int pointy );
160
161 void updateModelview();
162 void updateProjection();
163 Matrix4 m_projection;
164 Matrix4 m_modelview;
165
166 int m_nWidth;
167 int m_nHeight;
168 // background image stuff
169 qtexture_t *m_tex;
170 bool m_backgroundActivated;
171 float m_alpha;   // vertex alpha
172 float m_xmin, m_ymin, m_xmax, m_ymax;
173 private:
174 float m_fScale;
175 Vector3 m_vOrigin;
176
177
178 View m_view;
179 static Shader* m_state_selected;
180
181 int m_ptCursorX, m_ptCursorY;
182
183 unsigned int m_buttonstate;
184
185 int m_nNewBrushPressx;
186 int m_nNewBrushPressy;
187 scene::Node* m_NewBrushDrag;
188 bool m_bNewBrushDrag;
189
190 Vector3 m_mousePosition;
191
192 VIEWTYPE m_viewType;
193
194 void OriginalButtonUp( guint32 nFlags, int point, int pointy );
195 void OriginalButtonDown( guint32 nFlags, int point, int pointy );
196
197 void OnContextMenu();
198 void PaintSizeInfo( int nDim1, int nDim2, Vector3& vMinBounds, Vector3& vMaxBounds );
199
200 int m_entityCreate_x, m_entityCreate_y;
201 bool m_entityCreate;
202
203 public:
204 void ButtonState_onMouseDown( unsigned int buttons ){
205         m_buttonstate |= buttons;
206 }
207 void ButtonState_onMouseUp( unsigned int buttons ){
208         m_buttonstate &= ~buttons;
209 }
210 unsigned int getButtonState() const {
211         return m_buttonstate;
212 }
213 void EntityCreate_MouseDown( int x, int y );
214 void EntityCreate_MouseMove( int x, int y );
215 void EntityCreate_MouseUp( int x, int y );
216
217 void OnEntityCreate( const char* item );
218 VIEWTYPE GetViewType(){
219         return m_viewType;
220 }
221 void SetScale( float f );
222 float Scale(){
223         return m_fScale;
224 }
225 int Width(){
226         return m_nWidth;
227 }
228 int Height(){
229         return m_nHeight;
230 }
231
232 Signal0 onDestroyed;
233 Signal3<const WindowVector&, ButtonIdentifier, ModifierFlags> onMouseDown;
234 void mouseDown( const WindowVector& position, ButtonIdentifier button, ModifierFlags modifiers );
235 typedef Member3<XYWnd, const WindowVector&, ButtonIdentifier, ModifierFlags, void, &XYWnd::mouseDown> MouseDownCaller;
236 };
237
238 inline void XYWnd_Update( XYWnd& xywnd ){
239         xywnd.queueDraw();
240 }
241
242
243 struct xywindow_globals_t
244 {
245         Vector3 color_gridback;
246         Vector3 color_gridminor;
247         Vector3 color_gridmajor;
248         Vector3 color_gridblock;
249         Vector3 color_gridtext;
250         Vector3 color_brushes;
251         Vector3 color_selbrushes;
252         Vector3 color_clipper;
253         Vector3 color_viewname;
254         Vector3 color_gridminor_alt;
255         Vector3 color_gridmajor_alt;
256         Vector3 AxisColorX;
257         Vector3 AxisColorY;
258         Vector3 AxisColorZ;
259
260         bool m_bRightClick;
261         bool m_bNoStipple;
262         bool m_bImprovedWheelZoom;
263
264         xywindow_globals_t() :
265                 color_gridback( 0.77f, 0.77f, 0.77f ),
266                 color_gridminor( 0.83f, 0.83f, 0.83f ),
267                 color_gridmajor( 0.89f, 0.89f, 0.89f ),
268                 color_gridblock( 1.0f, 1.0f, 1.0f ),
269                 color_gridtext( 0.f, 0.f, 0.f ),
270                 color_brushes( 0.f, 0.f, 0.f ),
271                 color_selbrushes( 1.f, 0.f, 0.f ),
272                 color_clipper( 0.f, 0.f, 1.f ),
273                 color_viewname( 0.5f, 0.f, 0.75f ),
274                 color_gridminor_alt( 0.f, 0.f, 0.f ),
275                 color_gridmajor_alt( 0.f, 0.f, 0.f ),
276
277                 AxisColorX( 1.f, 0.f, 0.f ),
278                 AxisColorY( 0.f, 1.f, 0.f ),
279                 AxisColorZ( 0.f, 0.f, 1.f ),
280                 m_bRightClick( true ),
281                 m_bNoStipple( false ),
282                 m_bImprovedWheelZoom( true ){
283         }
284
285 };
286
287 extern xywindow_globals_t g_xywindow_globals;
288
289
290 VIEWTYPE GlobalXYWnd_getCurrentViewType();
291
292 typedef struct _GtkWindow GtkWindow;
293 void XY_Top_Shown_Construct( GtkWindow* parent );
294 void YZ_Side_Shown_Construct( GtkWindow* parent );
295 void XZ_Front_Shown_Construct( GtkWindow* parent );
296
297 void XYWindow_Construct();
298 void XYWindow_Destroy();
299
300 void WXY_Print();
301 void WXY_BackgroundSelect();
302
303 void XYShow_registerCommands();
304 void XYWnd_registerShortcuts();
305
306 #endif