2 Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
5 This file is part of GtkRadiant.
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.
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.
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
25 // Leonardo Zide (leo@lokigames.com)
30 #include "debugging/debugging.h"
37 #include "ifilesystem.h"
40 #include "gtkutil/messagebox.h"
42 #include <gtk/gtklabel.h>
43 #include <gtk/gtkmenuitem.h>
45 #include "generic/callback.h"
46 #include "string/string.h"
47 #include "stream/stringstream.h"
50 #include "eclasslib.h"
52 #include "moduleobserver.h"
54 #include "gtkutil/menu.h"
55 #include "gtkutil/container.h"
56 #include "gtkutil/widget.h"
57 #include "gtkutil/glwidget.h"
58 #include "gtkutil/filechooser.h"
62 #include "brushmanip.h"
63 #include "selection.h"
65 #include "camwindow.h"
66 #include "texwindow.h"
67 #include "mainframe.h"
68 #include "preferences.h"
72 #include "windowobservers.h"
74 void LoadTextureRGBA(qtexture_t* q, unsigned char* pPixels, int nWidth, int nHeight);
77 extern bool g_brush_always_caulk;
83 Vector3 m_ptClip; // the 3d point
92 m_ptClip[0] = m_ptClip[1] = m_ptClip[2] = 0.0;
108 /*! Draw clip/path point with rasterized number label */
109 void Draw(int num, float scale);
110 /*! Draw clip/path point with rasterized string label */
111 void Draw(const char *label, float scale);
114 VIEWTYPE g_clip_viewtype;
115 bool g_bSwitch = true;
116 bool g_clip_useCaulk = false;
120 ClipPoint* g_pMovingClip = 0;
122 /* Drawing clip points */
123 void ClipPoint::Draw(int num, float scale)
125 StringOutputStream label(4);
127 Draw(label.c_str(), scale);
130 void ClipPoint::Draw(const char *label, float scale)
134 glColor3fv(vector3_to_array(g_xywindow_globals.color_clipper));
136 glVertex3fv(vector3_to_array(m_ptClip));
140 float offset = 2.0f / scale;
143 glRasterPos3f (m_ptClip[0] + offset, m_ptClip[1] + offset, m_ptClip[2] + offset);
144 glCallLists (GLsizei(strlen(label)), GL_UNSIGNED_BYTE, label);
147 float fDiff(float f1, float f2)
155 inline double ClipPoint_Intersect(const ClipPoint& clip, const Vector3& point, VIEWTYPE viewtype, float scale)
157 int nDim1 = (viewtype == YZ) ? 1 : 0;
158 int nDim2 = (viewtype == XY) ? 1 : 2;
159 double screenDistanceSquared(vector2_length_squared(Vector2(fDiff(clip.m_ptClip[nDim1], point[nDim1]) * scale, fDiff(clip.m_ptClip[nDim2], point[nDim2]) * scale)));
160 if(screenDistanceSquared < 8*8)
162 return screenDistanceSquared;
167 inline void ClipPoint_testSelect(ClipPoint& clip, const Vector3& point, VIEWTYPE viewtype, float scale, double& bestDistance, ClipPoint*& bestClip)
171 double distance = ClipPoint_Intersect(clip, point, viewtype, scale);
172 if(distance < bestDistance)
174 bestDistance = distance;
180 inline ClipPoint* GlobalClipPoints_Find(const Vector3& point, VIEWTYPE viewtype, float scale)
182 double bestDistance = FLT_MAX;
183 ClipPoint* bestClip = 0;
184 ClipPoint_testSelect(g_Clip1, point, viewtype, scale, bestDistance, bestClip);
185 ClipPoint_testSelect(g_Clip2, point, viewtype, scale, bestDistance, bestClip);
186 ClipPoint_testSelect(g_Clip3, point, viewtype, scale, bestDistance, bestClip);
190 inline void GlobalClipPoints_Draw(float scale)
194 g_Clip1.Draw(1, scale);
196 g_Clip2.Draw(2, scale);
198 g_Clip3.Draw(3, scale);
201 inline bool GlobalClipPoints_valid()
203 return g_Clip1.Set() && g_Clip2.Set();
206 void PlanePointsFromClipPoints(Vector3 planepts[3], const AABB& bounds, int viewtype)
208 ASSERT_MESSAGE(GlobalClipPoints_valid(), "clipper points not initialised");
209 planepts[0] = g_Clip1.m_ptClip;
210 planepts[1] = g_Clip2.m_ptClip;
211 planepts[2] = g_Clip3.m_ptClip;
212 Vector3 maxs(vector3_added(bounds.origin, bounds.extents));
213 Vector3 mins(vector3_subtracted(bounds.origin, bounds.extents));
216 int n = (viewtype == XY) ? 2 : (viewtype == YZ) ? 0 : 1;
217 int x = (n == 0) ? 1 : 0;
218 int y = (n == 2) ? 1 : 2;
220 if (n == 1) // on viewtype XZ, flip clip points
222 planepts[0][n] = maxs[n];
223 planepts[1][n] = maxs[n];
224 planepts[2][x] = g_Clip1.m_ptClip[x];
225 planepts[2][y] = g_Clip1.m_ptClip[y];
226 planepts[2][n] = mins[n];
230 planepts[0][n] = mins[n];
231 planepts[1][n] = mins[n];
232 planepts[2][x] = g_Clip1.m_ptClip[x];
233 planepts[2][y] = g_Clip1.m_ptClip[y];
234 planepts[2][n] = maxs[n];
242 if(!GlobalClipPoints_valid())
244 planepts[0] = Vector3(0, 0, 0);
245 planepts[1] = Vector3(0, 0, 0);
246 planepts[2] = Vector3(0, 0, 0);
247 Scene_BrushSetClipPlane(GlobalSceneGraph(), Plane3(0, 0, 0, 0));
251 AABB bounds(Vector3(0, 0, 0), Vector3(64, 64, 64));
252 PlanePointsFromClipPoints(planepts, bounds, g_clip_viewtype);
255 std::swap(planepts[0], planepts[1]);
257 Scene_BrushSetClipPlane(GlobalSceneGraph(), plane3_for_points(planepts[0], planepts[1], planepts[2]));
259 ClipperChangeNotify();
262 const char* Clip_getShader()
264 return g_clip_useCaulk ? "textures/common/caulk" : TextureBrowser_GetSelectedShader(GlobalTextureBrowser());
269 if (ClipMode() && GlobalClipPoints_valid())
272 AABB bounds(Vector3(0, 0, 0), Vector3(64, 64, 64));
273 PlanePointsFromClipPoints(planepts, bounds, g_clip_viewtype);
274 Scene_BrushSplitByPlane(GlobalSceneGraph(), planepts[0], planepts[1], planepts[2], Clip_getShader(), (!g_bSwitch) ? eFront : eBack);
279 ClipperChangeNotify();
285 if (ClipMode() && GlobalClipPoints_valid())
288 AABB bounds(Vector3(0, 0, 0), Vector3(64, 64, 64));
289 PlanePointsFromClipPoints(planepts, bounds, g_clip_viewtype);
290 Scene_BrushSplitByPlane(GlobalSceneGraph(), planepts[0], planepts[1], planepts[2], Clip_getShader(), eFrontAndBack);
295 ClipperChangeNotify();
301 g_bSwitch = !g_bSwitch;
303 ClipperChangeNotify();
306 void OnClipMode(bool enabled)
312 if(!enabled && g_pMovingClip)
318 ClipperChangeNotify();
323 return GlobalSelectionSystem().ManipulatorMode() == SelectionSystem::eClip;
326 void NewClipPoint(const Vector3& point)
328 if (g_Clip1.Set() == false)
330 g_Clip1.m_ptClip = point;
333 else if (g_Clip2.Set() == false)
335 g_Clip2.m_ptClip = point;
338 else if (g_Clip3.Set() == false)
340 g_Clip3.m_ptClip = point;
348 g_Clip1.m_ptClip = point;
353 ClipperChangeNotify();
358 struct xywindow_globals_private_t
362 // these are in the View > Show menu with Show coordinates
364 bool show_coordinates;
378 xywindow_globals_private_t() :
382 show_coordinates(true),
391 m_bCamXYUpdate(true),
399 xywindow_globals_t g_xywindow_globals;
400 xywindow_globals_private_t g_xywindow_globals_private;
402 const unsigned int RAD_NONE = 0x00;
403 const unsigned int RAD_SHIFT = 0x01;
404 const unsigned int RAD_ALT = 0x02;
405 const unsigned int RAD_CONTROL = 0x04;
406 const unsigned int RAD_PRESS = 0x08;
407 const unsigned int RAD_LBUTTON = 0x10;
408 const unsigned int RAD_MBUTTON = 0x20;
409 const unsigned int RAD_RBUTTON = 0x40;
411 inline ButtonIdentifier button_for_flags(unsigned int flags)
413 if(flags & RAD_LBUTTON)
415 if(flags & RAD_RBUTTON)
416 return c_buttonRight;
417 if(flags & RAD_MBUTTON)
418 return c_buttonMiddle;
419 return c_buttonInvalid;
422 inline ModifierFlags modifiers_for_flags(unsigned int flags)
424 ModifierFlags modifiers = c_modifierNone;
425 if(flags & RAD_SHIFT)
426 modifiers |= c_modifierShift;
427 if(flags & RAD_CONTROL)
428 modifiers |= c_modifierControl;
430 modifiers |= c_modifierAlt;
434 inline unsigned int buttons_for_button_and_modifiers(ButtonIdentifier button, ModifierFlags flags)
436 unsigned int buttons = 0;
438 switch (button.get())
440 case ButtonEnumeration::LEFT: buttons |= RAD_LBUTTON; break;
441 case ButtonEnumeration::MIDDLE: buttons |= RAD_MBUTTON; break;
442 case ButtonEnumeration::RIGHT: buttons |= RAD_RBUTTON; break;
445 if(bitfield_enabled(flags, c_modifierControl))
446 buttons |= RAD_CONTROL;
448 if(bitfield_enabled(flags, c_modifierShift))
449 buttons |= RAD_SHIFT;
451 if(bitfield_enabled(flags, c_modifierAlt))
457 inline unsigned int buttons_for_event_button(GdkEventButton* event)
459 unsigned int flags = 0;
461 switch (event->button)
463 case 1: flags |= RAD_LBUTTON; break;
464 case 2: flags |= RAD_MBUTTON; break;
465 case 3: flags |= RAD_RBUTTON; break;
468 if ((event->state & GDK_CONTROL_MASK) != 0)
469 flags |= RAD_CONTROL;
471 if ((event->state & GDK_SHIFT_MASK) != 0)
474 if((event->state & GDK_MOD1_MASK) != 0)
480 inline unsigned int buttons_for_state(guint state)
482 unsigned int flags = 0;
484 if ((state & GDK_BUTTON1_MASK) != 0)
485 flags |= RAD_LBUTTON;
487 if ((state & GDK_BUTTON2_MASK) != 0)
488 flags |= RAD_MBUTTON;
490 if ((state & GDK_BUTTON3_MASK) != 0)
491 flags |= RAD_RBUTTON;
493 if ((state & GDK_CONTROL_MASK) != 0)
494 flags |= RAD_CONTROL;
496 if ((state & GDK_SHIFT_MASK) != 0)
499 if ((state & GDK_MOD1_MASK) != 0)
506 void XYWnd::SetScale(float f)
514 void XYWnd_ZoomIn(XYWnd* xy)
516 float max_scale = 64;
517 float scale = xy->Scale() * 5.0f / 4.0f;
518 if(scale > max_scale)
520 if(xy->Scale() != max_scale)
522 xy->SetScale (max_scale);
532 // NOTE: the zoom out factor is 4/5, we could think about customizing it
533 // we don't go below a zoom factor corresponding to 10% of the max world size
534 // (this has to be computed against the window size)
535 void XYWnd_ZoomOut(XYWnd* xy)
537 float min_scale = MIN(xy->Width(),xy->Height()) / ( 1.1f * (g_MaxWorldCoord-g_MinWorldCoord));
538 float scale = xy->Scale() * 4.0f / 5.0f;
539 if(scale < min_scale)
541 if(xy->Scale() != min_scale)
543 xy->SetScale (min_scale);
552 VIEWTYPE GlobalXYWnd_getCurrentViewType()
554 ASSERT_NOTNULL(g_pParentWnd);
555 ASSERT_NOTNULL(g_pParentWnd->ActiveXY());
556 return g_pParentWnd->ActiveXY()->GetViewType();
559 // =============================================================================
562 bool g_bCrossHairs = false;
564 GtkMenu* XYWnd::m_mnuDrop = 0;
566 // this is disabled, and broken
567 // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=394
572 width = g_pParentWnd->ActiveXY()->Width();
573 height = g_pParentWnd->ActiveXY()->Height();
575 const char* filename;
577 filename = file_dialog(GTK_WIDGET(MainFrame_getWindow()), FALSE, "Save Image", 0, FILTER_BMP);
581 g_pParentWnd->ActiveXY()->MakeCurrent();
582 img = (unsigned char*)malloc (width*height*3);
583 glReadPixels (0,0,width,height,GL_RGB,GL_UNSIGNED_BYTE,img);
586 fp = fopen(filename, "wb");
590 unsigned long cmap, bfSize;
594 bfSize = 54 + width*height*3;
596 long byteswritten = 0;
597 long pixoff = 54 + cmap*4;
599 char m1 ='B', m2 ='M';
600 fwrite(&m1, 1, 1, fp); byteswritten++; // B
601 fwrite(&m2, 1, 1, fp); byteswritten++; // M
602 fwrite(&bfSize, 4, 1, fp); byteswritten+=4;// bfSize
603 fwrite(&res, 2, 1, fp); byteswritten+=2;// bfReserved1
604 fwrite(&res, 2, 1, fp); byteswritten+=2;// bfReserved2
605 fwrite(&pixoff, 4, 1, fp); byteswritten+=4;// bfOffBits
607 unsigned long biSize = 40, compress = 0, size = 0;
609 unsigned short planes = 1;
610 fwrite(&biSize, 4, 1, fp); byteswritten+=4;// biSize
611 fwrite(&width, 4, 1, fp); byteswritten+=4;// biWidth
612 fwrite(&height, 4, 1, fp); byteswritten+=4;// biHeight
613 fwrite(&planes, 2, 1, fp); byteswritten+=2;// biPlanes
614 fwrite(&bits, 2, 1, fp); byteswritten+=2;// biBitCount
615 fwrite(&compress, 4, 1, fp);byteswritten+=4;// biCompression
616 fwrite(&size, 4, 1, fp); byteswritten+=4;// biSizeImage
617 fwrite(&pixels, 4, 1, fp); byteswritten+=4;// biXPelsPerMeter
618 fwrite(&pixels, 4, 1, fp); byteswritten+=4;// biYPelsPerMeter
619 fwrite(&cmap, 4, 1, fp); byteswritten+=4;// biClrUsed
620 fwrite(&cmap, 4, 1, fp); byteswritten+=4;// biClrImportant
622 unsigned long widthDW = (((width*24) + 31) / 32 * 4);
623 long row, row_size = width*3;
624 for (row = 0; row < height; row++)
626 unsigned char* buf = img+row*row_size;
630 for (col = 0; col < row_size; col += 3)
632 putc(buf[col+2], fp);
633 putc(buf[col+1], fp);
636 byteswritten += row_size;
639 for (count = row_size; count < widthDW; count++)
641 putc(0, fp); // dummy
656 Timer g_chasemouse_timer;
658 void XYWnd::ChaseMouse()
660 float multiplier = g_chasemouse_timer.elapsed_msec() / 10.0f;
661 Scroll(float_to_integer(multiplier * m_chasemouse_delta_x), float_to_integer(multiplier * -m_chasemouse_delta_y));
663 //globalOutputStream() << "chasemouse: multiplier=" << multiplier << " x=" << m_chasemouse_delta_x << " y=" << m_chasemouse_delta_y << '\n';
665 XY_MouseMoved(m_chasemouse_current_x, m_chasemouse_current_y , getButtonState());
666 g_chasemouse_timer.start();
669 gboolean xywnd_chasemouse(gpointer data)
671 reinterpret_cast<XYWnd*>(data)->ChaseMouse();
675 inline const int& min_int(const int& left, const int& right)
677 return std::min(left, right);
680 bool XYWnd::chaseMouseMotion(int pointx, int pointy)
682 m_chasemouse_delta_x = 0;
683 m_chasemouse_delta_y = 0;
685 if (g_xywindow_globals_private.m_bChaseMouse && getButtonState() == RAD_LBUTTON)
687 const int epsilon = 16;
689 if (pointx < epsilon)
691 m_chasemouse_delta_x = std::max(pointx, 0) - epsilon;
693 else if ((pointx - m_nWidth) > -epsilon)
695 m_chasemouse_delta_x = min_int((pointx - m_nWidth), 0) + epsilon;
698 if (pointy < epsilon)
700 m_chasemouse_delta_y = std::max(pointy, 0) - epsilon;
702 else if ((pointy - m_nHeight) > -epsilon)
704 m_chasemouse_delta_y = min_int((pointy - m_nHeight), 0) + epsilon;
707 if(m_chasemouse_delta_y != 0 || m_chasemouse_delta_x != 0)
709 //globalOutputStream() << "chasemouse motion: x=" << pointx << " y=" << pointy << "... ";
710 m_chasemouse_current_x = pointx;
711 m_chasemouse_current_y = pointy;
712 if(m_chasemouse_handler == 0)
714 //globalOutputStream() << "chasemouse timer start... ";
715 g_chasemouse_timer.start();
716 m_chasemouse_handler = g_idle_add(xywnd_chasemouse, this);
722 if(m_chasemouse_handler != 0)
724 //globalOutputStream() << "chasemouse cancel\n";
725 g_source_remove(m_chasemouse_handler);
726 m_chasemouse_handler = 0;
732 if(m_chasemouse_handler != 0)
734 //globalOutputStream() << "chasemouse cancel\n";
735 g_source_remove(m_chasemouse_handler);
736 m_chasemouse_handler = 0;
742 // =============================================================================
744 Shader* XYWnd::m_state_selected = 0;
746 void xy_update_xor_rectangle(XYWnd& self, rect_t area)
748 if(GTK_WIDGET_VISIBLE(self.GetWidget()))
750 self.m_XORRectangle.set(rectangle_from_area(area.min, area.max, self.Width(), self.Height()));
754 gboolean xywnd_button_press(GtkWidget* widget, GdkEventButton* event, XYWnd* xywnd)
756 if(event->type == GDK_BUTTON_PRESS)
758 g_pParentWnd->SetActiveXY(xywnd);
760 xywnd->ButtonState_onMouseDown(buttons_for_event_button(event));
762 xywnd->onMouseDown(WindowVector(event->x, event->y), button_for_button(event->button), modifiers_for_state(event->state));
767 gboolean xywnd_button_release(GtkWidget* widget, GdkEventButton* event, XYWnd* xywnd)
769 if(event->type == GDK_BUTTON_RELEASE)
771 xywnd->XY_MouseUp(static_cast<int>(event->x), static_cast<int>(event->y), buttons_for_event_button(event));
773 xywnd->ButtonState_onMouseUp(buttons_for_event_button(event));
778 void xywnd_motion(gdouble x, gdouble y, guint state, void* data)
780 if(reinterpret_cast<XYWnd*>(data)->chaseMouseMotion(static_cast<int>(x), static_cast<int>(y)))
784 reinterpret_cast<XYWnd*>(data)->XY_MouseMoved(static_cast<int>(x), static_cast<int>(y), buttons_for_state(state));
787 gboolean xywnd_wheel_scroll(GtkWidget* widget, GdkEventScroll* event, XYWnd* xywnd)
789 if(event->direction == GDK_SCROLL_UP)
793 else if(event->direction == GDK_SCROLL_DOWN)
795 XYWnd_ZoomOut(xywnd);
800 gboolean xywnd_size_allocate(GtkWidget* widget, GtkAllocation* allocation, XYWnd* xywnd)
802 xywnd->m_nWidth = allocation->width;
803 xywnd->m_nHeight = allocation->height;
804 xywnd->updateProjection();
805 xywnd->m_window_observer->onSizeChanged(xywnd->Width(), xywnd->Height());
809 gboolean xywnd_expose(GtkWidget* widget, GdkEventExpose* event, XYWnd* xywnd)
811 if(glwidget_make_current(xywnd->GetWidget()) != FALSE)
813 if(Map_Valid(g_map) && ScreenUpdates_Enabled())
815 GlobalOpenGL_debugAssertNoErrors();
817 GlobalOpenGL_debugAssertNoErrors();
819 xywnd->m_XORRectangle.set(rectangle_t());
821 glwidget_swap_buffers(xywnd->GetWidget());
827 void XYWnd_CameraMoved(XYWnd& xywnd)
829 if(g_xywindow_globals_private.m_bCamXYUpdate)
836 m_gl_widget(glwidget_new(FALSE)),
837 m_deferredDraw(WidgetQueueDrawCaller(*m_gl_widget)),
838 m_deferred_motion(xywnd_motion, this),
840 m_window_observer(NewWindowObserver()),
841 m_XORRectangle(m_gl_widget),
842 m_chasemouse_handler(0)
847 m_bNewBrushDrag = false;
848 m_move_started = false;
849 m_zoom_started = false;
860 m_backgroundActivated = false;
867 m_entityCreate = false;
871 GlobalWindowObservers_add(m_window_observer);
872 GlobalWindowObservers_connectWidget(m_gl_widget);
874 m_window_observer->setRectangleDrawCallback(ReferenceCaller1<XYWnd, rect_t, xy_update_xor_rectangle>(*this));
875 m_window_observer->setView(m_view);
877 gtk_widget_ref(m_gl_widget);
879 gtk_widget_set_events(m_gl_widget, GDK_DESTROY | GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | GDK_SCROLL_MASK);
880 GTK_WIDGET_SET_FLAGS(m_gl_widget, GTK_CAN_FOCUS);
882 m_sizeHandler = g_signal_connect(G_OBJECT(m_gl_widget), "size_allocate", G_CALLBACK(xywnd_size_allocate), this);
883 m_exposeHandler = g_signal_connect(G_OBJECT(m_gl_widget), "expose_event", G_CALLBACK(xywnd_expose), this);
885 g_signal_connect(G_OBJECT(m_gl_widget), "button_press_event", G_CALLBACK(xywnd_button_press), this);
886 g_signal_connect(G_OBJECT(m_gl_widget), "button_release_event", G_CALLBACK(xywnd_button_release), this);
887 g_signal_connect(G_OBJECT(m_gl_widget), "motion_notify_event", G_CALLBACK(DeferredMotion::gtk_motion), &m_deferred_motion);
889 g_signal_connect(G_OBJECT(m_gl_widget), "scroll_event", G_CALLBACK(xywnd_wheel_scroll), this);
891 Map_addValidCallback(g_map, DeferredDrawOnMapValidChangedCaller(m_deferredDraw));
896 AddSceneChangeCallback(ReferenceCaller<XYWnd, &XYWnd_Update>(*this));
897 AddCameraMovedCallback(ReferenceCaller<XYWnd, &XYWnd_CameraMoved>(*this));
899 PressedButtons_connect(g_pressedButtons, m_gl_widget);
901 onMouseDown.connectLast(makeSignalHandler3(MouseDownCaller(), *this));
910 gtk_widget_destroy(GTK_WIDGET(m_mnuDrop));
914 g_signal_handler_disconnect(G_OBJECT(m_gl_widget), m_sizeHandler);
915 g_signal_handler_disconnect(G_OBJECT(m_gl_widget), m_exposeHandler);
917 gtk_widget_unref(m_gl_widget);
919 m_window_observer->release();
922 void XYWnd::captureStates()
924 m_state_selected = GlobalShaderCache().capture("$XY_OVERLAY");
927 void XYWnd::releaseStates()
929 GlobalShaderCache().release("$XY_OVERLAY");
932 const Vector3& XYWnd::GetOrigin()
937 void XYWnd::SetOrigin(const Vector3& origin)
943 void XYWnd::Scroll(int x, int y)
945 int nDim1 = (m_viewType == YZ) ? 1 : 0;
946 int nDim2 = (m_viewType == XY) ? 1 : 2;
947 m_vOrigin[nDim1] += x / m_fScale;
948 m_vOrigin[nDim2] += y / m_fScale;
953 unsigned int Clipper_buttons()
958 void XYWnd::DropClipPoint(int pointx, int pointy)
962 XY_ToPoint(pointx, pointy, point);
966 g_clip_viewtype = static_cast<VIEWTYPE>(GetViewType());
967 const int nDim = (g_clip_viewtype == YZ ) ? 0 : ( (g_clip_viewtype == XZ) ? 1 : 2 );
968 point[nDim] = mid[nDim];
969 vector3_snap(point, GetSnapGridSize());
973 void XYWnd::Clipper_OnLButtonDown(int x, int y)
975 Vector3 mousePosition;
976 XY_ToPoint(x, y , mousePosition);
977 g_pMovingClip = GlobalClipPoints_Find(mousePosition, (VIEWTYPE)m_viewType, m_fScale);
984 void XYWnd::Clipper_OnLButtonUp(int x, int y)
992 void XYWnd::Clipper_OnMouseMoved(int x, int y)
996 XY_ToPoint(x, y , g_pMovingClip->m_ptClip);
997 XY_SnapToGrid(g_pMovingClip->m_ptClip);
999 ClipperChangeNotify();
1003 void XYWnd::Clipper_Crosshair_OnMouseMoved(int x, int y)
1005 Vector3 mousePosition;
1006 XY_ToPoint(x, y , mousePosition);
1007 if(ClipMode() && GlobalClipPoints_Find(mousePosition, (VIEWTYPE)m_viewType, m_fScale) != 0)
1010 cursor = gdk_cursor_new (GDK_CROSSHAIR);
1011 gdk_window_set_cursor (m_gl_widget->window, cursor);
1012 gdk_cursor_unref (cursor);
1016 gdk_window_set_cursor (m_gl_widget->window, 0);
1020 unsigned int MoveCamera_buttons()
1022 return RAD_CONTROL | (g_glwindow_globals.m_nMouseType == ETwoButton ? RAD_RBUTTON : RAD_MBUTTON);
1025 void XYWnd_PositionCamera(XYWnd* xywnd, int x, int y, CamWnd& camwnd)
1027 Vector3 origin(Camera_getOrigin(camwnd));
1028 xywnd->XY_ToPoint(x, y, origin);
1029 xywnd->XY_SnapToGrid(origin);
1030 Camera_setOrigin(camwnd, origin);
1033 unsigned int OrientCamera_buttons()
1035 if(g_glwindow_globals.m_nMouseType == ETwoButton)
1036 return RAD_RBUTTON | RAD_SHIFT | RAD_CONTROL;
1040 void XYWnd_OrientCamera(XYWnd* xywnd, int x, int y, CamWnd& camwnd)
1042 Vector3 point = g_vector3_identity;
1043 xywnd->XY_ToPoint(x, y, point);
1044 xywnd->XY_SnapToGrid(point);
1045 vector3_subtract(point, Camera_getOrigin(camwnd));
1047 int n1 = (xywnd->GetViewType() == XY) ? 1 : 2;
1048 int n2 = (xywnd->GetViewType() == YZ) ? 1 : 0;
1049 int nAngle = (xywnd->GetViewType() == XY) ? CAMERA_YAW : CAMERA_PITCH;
1050 if (point[n1] || point[n2])
1052 Vector3 angles(Camera_getAngles(camwnd));
1053 angles[nAngle] = static_cast<float>(radians_to_degrees(atan2 (point[n1], point[n2])));
1054 Camera_setAngles(camwnd, angles);
1063 unsigned int NewBrushDrag_buttons()
1068 void XYWnd::NewBrushDrag_Begin(int x, int y)
1071 m_nNewBrushPressx = x;
1072 m_nNewBrushPressy = y;
1074 m_bNewBrushDrag = true;
1075 GlobalUndoSystem().start();
1078 void XYWnd::NewBrushDrag_End(int x, int y)
1080 if(m_NewBrushDrag != 0)
1082 GlobalUndoSystem().finish("brushDragNew");
1086 void XYWnd::NewBrushDrag(int x, int y)
1089 XY_ToPoint(m_nNewBrushPressx, m_nNewBrushPressy, mins);
1090 XY_SnapToGrid(mins);
1091 XY_ToPoint(x, y, maxs);
1092 XY_SnapToGrid(maxs);
1094 int nDim = (m_viewType == XY) ? 2 : (m_viewType == YZ) ? 0 : 1;
1096 mins[nDim] = float_snapped(Select_getWorkZone().d_work_min[nDim], GetSnapGridSize());
1097 maxs[nDim] = float_snapped(Select_getWorkZone().d_work_max[nDim], GetSnapGridSize());
1099 if (maxs[nDim] <= mins[nDim])
1100 maxs[nDim] = mins[nDim] + GetGridSize();
1102 for(int i=0 ; i<3 ; i++)
1104 if (mins[i] == maxs[i])
1105 return; // don't create a degenerate brush
1106 if (mins[i] > maxs[i])
1108 float temp = mins[i];
1114 if(m_NewBrushDrag == 0)
1116 NodeSmartReference node(GlobalBrushCreator().createBrush());
1117 Node_getTraversable(Map_FindOrInsertWorldspawn(g_map))->insert(node);
1119 scene::Path brushpath(makeReference(GlobalSceneGraph().root()));
1120 brushpath.push(makeReference(*Map_GetWorldspawn(g_map)));
1121 brushpath.push(makeReference(node.get()));
1122 selectPath(brushpath, true);
1124 m_NewBrushDrag = node.get_pointer();
1128 //Scene_BrushResize_Selected(GlobalSceneGraph(), aabb_for_minmax(mins, maxs), TextureBrowser_GetSelectedShader(GlobalTextureBrowser()));
1129 Scene_BrushResize_Selected(GlobalSceneGraph(), aabb_for_minmax(mins, maxs),
1130 g_brush_always_caulk ?
1131 "textures/common/caulk" : TextureBrowser_GetSelectedShader(GlobalTextureBrowser()));
1134 void entitycreate_activated(GtkWidget* item)
1136 scene::Node* world_node = Map_FindWorldspawn(g_map);
1137 const char* entity_name = gtk_label_get_text(GTK_LABEL(GTK_BIN(item)->child));
1139 if(!(world_node && string_equal(entity_name, "worldspawn")))
1141 g_pParentWnd->ActiveXY()->OnEntityCreate(entity_name);
1143 GlobalRadiant().m_pfnMessageBox(GTK_WIDGET(MainFrame_getWindow()), "There's already a worldspawn in your map!"
1151 void EntityClassMenu_addItem(GtkMenu* menu, const char* name)
1153 GtkMenuItem* item = GTK_MENU_ITEM(gtk_menu_item_new_with_label(name));
1154 g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(entitycreate_activated), item);
1155 gtk_widget_show(GTK_WIDGET(item));
1156 menu_add_item(menu, item);
1159 class EntityClassMenuInserter : public EntityClassVisitor
1161 typedef std::pair<GtkMenu*, CopiedString> MenuPair;
1162 typedef std::vector<MenuPair> MenuStack;
1164 CopiedString m_previous;
1166 EntityClassMenuInserter(GtkMenu* menu)
1169 m_stack.push_back(MenuPair(menu, ""));
1171 ~EntityClassMenuInserter()
1173 if(!string_empty(m_previous.c_str()))
1175 addItem(m_previous.c_str(), "");
1178 void visit(EntityClass* e)
1180 ASSERT_MESSAGE(!string_empty(e->name()), "entity-class has no name");
1181 if(!string_empty(m_previous.c_str()))
1183 addItem(m_previous.c_str(), e->name());
1185 m_previous = e->name();
1187 void pushMenu(const CopiedString& name)
1189 GtkMenuItem* item = GTK_MENU_ITEM(gtk_menu_item_new_with_label(name.c_str()));
1190 gtk_widget_show(GTK_WIDGET(item));
1191 container_add_widget(GTK_CONTAINER(m_stack.back().first), GTK_WIDGET(item));
1193 GtkMenu* submenu = GTK_MENU(gtk_menu_new());
1194 gtk_menu_item_set_submenu(item, GTK_WIDGET(submenu));
1196 m_stack.push_back(MenuPair(submenu, name));
1202 void addItem(const char* name, const char* next)
1204 const char* underscore = strchr(name, '_');
1206 if(underscore != 0 && underscore != name)
1208 bool nextEqual = string_equal_n(name, next, (underscore + 1) - name);
1209 const char* parent = m_stack.back().second.c_str();
1211 if(!string_empty(parent)
1212 && string_length(parent) == std::size_t(underscore - name)
1213 && string_equal_n(name, parent, underscore - name)) // this is a child
1218 if(m_stack.size() == 2)
1222 pushMenu(CopiedString(StringRange(name, underscore)));
1224 else if(m_stack.size() == 2)
1229 else if(m_stack.size() == 2)
1234 EntityClassMenu_addItem(m_stack.back().first, name);
1238 void XYWnd::OnContextMenu()
1240 if (g_xywindow_globals.m_bRightClick == false)
1243 if (m_mnuDrop == 0) // first time, load it up
1245 GtkMenu* menu = m_mnuDrop = GTK_MENU(gtk_menu_new());
1247 EntityClassMenuInserter inserter(menu);
1248 GlobalEntityClassManager().forEach(inserter);
1251 gtk_menu_popup(m_mnuDrop, 0, 0, 0, 0, 1, GDK_CURRENT_TIME);
1254 FreezePointer g_xywnd_freezePointer;
1256 unsigned int Move_buttons()
1261 void XYWnd_moveDelta(int x, int y, unsigned int state, void* data)
1263 reinterpret_cast<XYWnd*>(data)->EntityCreate_MouseMove(x, y);
1264 reinterpret_cast<XYWnd*>(data)->Scroll(-x, y);
1267 gboolean XYWnd_Move_focusOut(GtkWidget* widget, GdkEventFocus* event, XYWnd* xywnd)
1273 void XYWnd::Move_Begin()
1279 m_move_started = true;
1280 g_xywnd_freezePointer.freeze_pointer(m_parent != 0 ? m_parent : MainFrame_getWindow(), XYWnd_moveDelta, this);
1281 m_move_focusOut = g_signal_connect(G_OBJECT(m_gl_widget), "focus_out_event", G_CALLBACK(XYWnd_Move_focusOut), this);
1284 void XYWnd::Move_End()
1286 m_move_started = false;
1287 g_xywnd_freezePointer.unfreeze_pointer(m_parent != 0 ? m_parent : MainFrame_getWindow());
1288 g_signal_handler_disconnect(G_OBJECT(m_gl_widget), m_move_focusOut);
1291 unsigned int Zoom_buttons()
1293 return RAD_RBUTTON | RAD_SHIFT;
1298 void XYWnd_zoomDelta(int x, int y, unsigned int state, void* data)
1304 while(abs(g_dragZoom) > 8)
1308 XYWnd_ZoomOut(reinterpret_cast<XYWnd*>(data));
1313 XYWnd_ZoomIn(reinterpret_cast<XYWnd*>(data));
1320 gboolean XYWnd_Zoom_focusOut(GtkWidget* widget, GdkEventFocus* event, XYWnd* xywnd)
1326 void XYWnd::Zoom_Begin()
1332 m_zoom_started = true;
1334 g_xywnd_freezePointer.freeze_pointer(m_parent != 0 ? m_parent : MainFrame_getWindow(), XYWnd_zoomDelta, this);
1335 m_zoom_focusOut = g_signal_connect(G_OBJECT(m_gl_widget), "focus_out_event", G_CALLBACK(XYWnd_Zoom_focusOut), this);
1338 void XYWnd::Zoom_End()
1340 m_zoom_started = false;
1341 g_xywnd_freezePointer.unfreeze_pointer(m_parent != 0 ? m_parent : MainFrame_getWindow());
1342 g_signal_handler_disconnect(G_OBJECT(m_gl_widget), m_zoom_focusOut);
1345 // makes sure the selected brush or camera is in view
1346 void XYWnd::PositionView(const Vector3& position)
1348 int nDim1 = (m_viewType == YZ) ? 1 : 0;
1349 int nDim2 = (m_viewType == XY) ? 1 : 2;
1351 m_vOrigin[nDim1] = position[nDim1];
1352 m_vOrigin[nDim2] = position[nDim2];
1356 XYWnd_Update(*this);
1359 void XYWnd::SetViewType(VIEWTYPE viewType)
1361 m_viewType = viewType;
1366 gtk_window_set_title(m_parent, ViewType_getTitle(m_viewType));
1371 inline WindowVector WindowVector_forInteger(int x, int y)
1373 return WindowVector(static_cast<float>(x), static_cast<float>(y));
1376 void XYWnd::mouseDown(const WindowVector& position, ButtonIdentifier button, ModifierFlags modifiers)
1378 XY_MouseDown(static_cast<int>(position.x()), static_cast<int>(position.y()), buttons_for_button_and_modifiers(button, modifiers));
1380 void XYWnd::XY_MouseDown (int x, int y, unsigned int buttons)
1382 if(buttons == Move_buttons())
1385 EntityCreate_MouseDown(x, y);
1387 else if(buttons == Zoom_buttons())
1391 else if(ClipMode() && buttons == Clipper_buttons())
1393 Clipper_OnLButtonDown(x, y);
1395 else if(buttons == NewBrushDrag_buttons() && GlobalSelectionSystem().countSelected() == 0)
1397 NewBrushDrag_Begin(x, y);
1399 // control mbutton = move camera
1400 else if (buttons == MoveCamera_buttons())
1402 XYWnd_PositionCamera(this, x, y, *g_pParentWnd->GetCamWnd());
1404 // mbutton = angle camera
1405 else if(buttons == OrientCamera_buttons())
1407 XYWnd_OrientCamera(this, x, y, *g_pParentWnd->GetCamWnd());
1411 m_window_observer->onMouseDown(WindowVector_forInteger(x, y), button_for_flags(buttons), modifiers_for_flags(buttons));
1415 void XYWnd::XY_MouseUp(int x, int y, unsigned int buttons)
1420 EntityCreate_MouseUp(x, y);
1422 else if(m_zoom_started)
1426 else if (ClipMode() && buttons == Clipper_buttons())
1428 Clipper_OnLButtonUp(x, y);
1430 else if (m_bNewBrushDrag)
1432 m_bNewBrushDrag = false;
1433 NewBrushDrag_End(x, y);
1437 m_window_observer->onMouseUp(WindowVector_forInteger(x, y), button_for_flags(buttons), modifiers_for_flags(buttons));
1441 void XYWnd::XY_MouseMoved (int x, int y, unsigned int buttons)
1443 // rbutton = drag xy origin
1448 else if(m_zoom_started)
1452 else if (ClipMode() && g_pMovingClip != 0)
1454 Clipper_OnMouseMoved(x, y);
1456 // lbutton without selection = drag new brush
1457 else if (m_bNewBrushDrag)
1462 // control mbutton = move camera
1463 else if (getButtonState() == MoveCamera_buttons())
1465 XYWnd_PositionCamera(this, x, y, *g_pParentWnd->GetCamWnd());
1468 // mbutton = angle camera
1469 else if (getButtonState() == OrientCamera_buttons())
1471 XYWnd_OrientCamera(this, x, y, *g_pParentWnd->GetCamWnd());
1476 m_window_observer->onMouseMotion(WindowVector_forInteger(x, y), modifiers_for_flags(buttons));
1478 m_mousePosition[0] = m_mousePosition[1] = m_mousePosition[2] = 0.0;
1479 XY_ToPoint(x, y , m_mousePosition);
1480 XY_SnapToGrid(m_mousePosition);
1482 StringOutputStream status(64);
1483 status << "x:: " << FloatFormat(m_mousePosition[0], 6, 1)
1484 << " y:: " << FloatFormat(m_mousePosition[1], 6, 1)
1485 << " z:: " << FloatFormat(m_mousePosition[2], 6, 1);
1486 g_pParentWnd->SetStatusText(g_pParentWnd->m_position_status, status.c_str());
1490 XYWnd_Update(*this);
1493 Clipper_Crosshair_OnMouseMoved(x, y);
1497 void XYWnd::EntityCreate_MouseDown(int x, int y)
1499 m_entityCreate = true;
1500 m_entityCreate_x = x;
1501 m_entityCreate_y = y;
1504 void XYWnd::EntityCreate_MouseMove(int x, int y)
1506 if(m_entityCreate && (m_entityCreate_x != x || m_entityCreate_y != y))
1508 m_entityCreate = false;
1512 void XYWnd::EntityCreate_MouseUp(int x, int y)
1516 m_entityCreate = false;
1521 inline float screen_normalised(int pos, unsigned int size)
1523 return ((2.0f * pos) / size) - 1.0f;
1526 inline float normalised_to_world(float normalised, float world_origin, float normalised2world_scale)
1528 return world_origin + normalised * normalised2world_scale;
1532 // TTimo: watch it, this doesn't init one of the 3 coords
1533 void XYWnd::XY_ToPoint (int x, int y, Vector3& point)
1535 float normalised2world_scale_x = m_nWidth / 2 / m_fScale;
1536 float normalised2world_scale_y = m_nHeight / 2 / m_fScale;
1537 if (m_viewType == XY)
1539 point[0] = normalised_to_world(screen_normalised(x, m_nWidth), m_vOrigin[0], normalised2world_scale_x);
1540 point[1] = normalised_to_world(-screen_normalised(y, m_nHeight), m_vOrigin[1], normalised2world_scale_y);
1542 else if (m_viewType == YZ)
1544 point[1] = normalised_to_world(screen_normalised(x, m_nWidth), m_vOrigin[1], normalised2world_scale_x);
1545 point[2] = normalised_to_world(-screen_normalised(y, m_nHeight), m_vOrigin[2], normalised2world_scale_y);
1549 point[0] = normalised_to_world(screen_normalised(x, m_nWidth), m_vOrigin[0], normalised2world_scale_x);
1550 point[2] = normalised_to_world(-screen_normalised(y, m_nHeight), m_vOrigin[2], normalised2world_scale_y);
1554 void XYWnd::XY_SnapToGrid(Vector3& point)
1556 if (m_viewType == XY)
1558 point[0] = float_snapped(point[0], GetSnapGridSize());
1559 point[1] = float_snapped(point[1], GetSnapGridSize());
1561 else if (m_viewType == YZ)
1563 point[1] = float_snapped(point[1], GetSnapGridSize());
1564 point[2] = float_snapped(point[2], GetSnapGridSize());
1568 point[0] = float_snapped(point[0], GetSnapGridSize());
1569 point[2] = float_snapped(point[2], GetSnapGridSize());
1573 void XYWnd::XY_LoadBackgroundImage(const char *name)
1575 const char* relative = path_make_relative(name, GlobalFileSystem().findRoot(name));
1576 if (relative == name)
1577 globalOutputStream() << "WARNING: could not extract the relative path, using full path instead\n";
1579 char fileNameWithoutExt[512];
1580 strncpy(fileNameWithoutExt, relative, sizeof(fileNameWithoutExt) - 1);
1581 fileNameWithoutExt[512 - 1] = '\0';
1582 fileNameWithoutExt[strlen(fileNameWithoutExt) - 4] = '\0';
1584 Image *image = QERApp_LoadImage(0, fileNameWithoutExt);
1586 globalOutputStream() << "Could not load texture " << fileNameWithoutExt << "\n";
1589 g_pParentWnd->ActiveXY()->m_tex = (qtexture_t*)malloc(sizeof(qtexture_t));
1590 LoadTextureRGBA(g_pParentWnd->ActiveXY()->XYWnd::m_tex, image->getRGBAPixels(), image->getWidth(), image->getHeight());
1591 globalOutputStream() << "Loaded background texture " << relative << "\n";
1592 g_pParentWnd->ActiveXY()->m_backgroundActivated = true;
1595 switch(g_pParentWnd->ActiveXY()->m_viewType)
1612 Select_GetBounds(min, max);
1613 g_pParentWnd->ActiveXY()->m_xmin = min[m_ix];
1614 g_pParentWnd->ActiveXY()->m_ymin = min[m_iy];
1615 g_pParentWnd->ActiveXY()->m_xmax = max[m_ix];
1616 g_pParentWnd->ActiveXY()->m_ymax = max[m_iy];
1619 void XYWnd::XY_DisableBackground (void)
1621 g_pParentWnd->ActiveXY()->m_backgroundActivated = false;
1622 if (g_pParentWnd->ActiveXY()->m_tex)
1623 free(g_pParentWnd->ActiveXY()->m_tex);
1624 g_pParentWnd->ActiveXY()->m_tex = NULL;
1627 void WXY_BackgroundSelect(void)
1629 bool brushesSelected = Scene_countSelectedBrushes(GlobalSceneGraph()) != 0;
1630 if (!brushesSelected) {
1631 gtk_MessageBox(0, "You have to select some brushes to get the bounding box for.\n",
1632 "No selection", eMB_OK, eMB_ICONERROR);
1636 const char *filename = file_dialog(GTK_WIDGET(MainFrame_getWindow()), TRUE, "Background Image", NULL, NULL);
1637 g_pParentWnd->ActiveXY()->XY_DisableBackground();
1639 g_pParentWnd->ActiveXY()->XY_LoadBackgroundImage(filename);
1643 ============================================================================
1647 ============================================================================
1656 double two_to_the_power(int power)
1658 return pow(2.0f, power);
1661 void XYWnd::XY_DrawAxis(void)
1663 if ( g_xywindow_globals_private.show_axis) {
1664 const char g_AxisName[3] = { 'X', 'Y', 'Z' };
1665 const int nDim1 = (m_viewType == YZ) ? 1 : 0;
1666 const int nDim2 = (m_viewType == XY) ? 1 : 2;
1667 const int w = (m_nWidth / 2 / m_fScale);
1668 const int h = (m_nHeight / 2 / m_fScale);
1670 const Vector3& colourX = (m_viewType == YZ) ? g_xywindow_globals.AxisColorY : g_xywindow_globals.AxisColorX;
1671 const Vector3& colourY = (m_viewType == XY) ? g_xywindow_globals.AxisColorY : g_xywindow_globals.AxisColorZ;
1673 // draw two lines with corresponding axis colors to highlight current view
1674 // horizontal line: nDim1 color
1676 glBegin( GL_LINES );
1677 glColor3fv (vector3_to_array(colourX));
1678 glVertex2f( m_vOrigin[nDim1] - w + 40 / m_fScale, m_vOrigin[nDim2] + h - 45 / m_fScale );
1679 glVertex2f( m_vOrigin[nDim1] - w + 65 / m_fScale, m_vOrigin[nDim2] + h - 45 / m_fScale );
1681 glVertex2f( 32 / m_fScale, 0 );
1682 glColor3fv (vector3_to_array(colourY));
1683 glVertex2f( m_vOrigin[nDim1] - w + 40 / m_fScale, m_vOrigin[nDim2] + h - 45 / m_fScale );
1684 glVertex2f( m_vOrigin[nDim1] - w + 40 / m_fScale, m_vOrigin[nDim2] + h - 20 / m_fScale );
1686 glVertex2f( 0, 32 / m_fScale );
1689 // now print axis symbols
1690 glColor3fv (vector3_to_array(colourX));
1691 glRasterPos2f ( m_vOrigin[nDim1] - w + 55 / m_fScale, m_vOrigin[nDim2] + h - 55 / m_fScale );
1692 GlobalOpenGL().drawChar(g_AxisName[nDim1]);
1693 glRasterPos2f (28 / m_fScale, -10 / m_fScale );
1694 GlobalOpenGL().drawChar(g_AxisName[nDim1]);
1695 glColor3fv (vector3_to_array(colourY));
1696 glRasterPos2f ( m_vOrigin[nDim1] - w + 25 / m_fScale, m_vOrigin[nDim2] + h - 30 / m_fScale );
1697 GlobalOpenGL().drawChar(g_AxisName[nDim2]);
1698 glRasterPos2f ( -10 / m_fScale, 28 / m_fScale );
1699 GlobalOpenGL().drawChar(g_AxisName[nDim2]);
1703 void XYWnd::XY_DrawBackground(void)
1705 glPushAttrib(GL_ALL_ATTRIB_BITS);
1707 glEnable(GL_TEXTURE_2D);
1709 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
1710 glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
1711 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
1712 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
1714 glPolygonMode(GL_FRONT, GL_FILL);
1716 glBindTexture(GL_TEXTURE_2D, m_tex->texture_number);
1719 glColor4f(1.0, 1.0, 1.0, m_alpha);
1720 glTexCoord2f(0.0, 1.0);
1721 glVertex2f(m_xmin, m_ymin);
1723 glTexCoord2f(1.0, 1.0);
1724 glVertex2f(m_xmax, m_ymin);
1726 glTexCoord2f(1.0, 0.0);
1727 glVertex2f(m_xmax, m_ymax);
1729 glTexCoord2f(0.0, 0.0);
1730 glVertex2f(m_xmin, m_ymax);
1733 glBindTexture(GL_TEXTURE_2D, 0);
1738 void XYWnd::XY_DrawGrid(void) {
1739 float x, y, xb, xe, yb, ye;
1742 float step, minor_step, stepx, stepy;
1743 step = minor_step = stepx = stepy = GetGridSize();
1745 int minor_power = Grid_getPower();
1748 while ((minor_step * m_fScale) <= 4.0f) { // make sure minor grid spacing is at least 4 pixels on the screen
1752 int power = minor_power;
1753 while ((power % 3) != 0 || (step * m_fScale) <= 32.0f) { // make sure major grid spacing is at least 32 pixels on the screen
1755 step = float(two_to_the_power(power));
1757 mask = (1 << (power - minor_power)) - 1;
1758 while ((stepx * m_fScale) <= 32.0f) // text step x must be at least 32
1760 while ((stepy * m_fScale) <= 32.0f) // text step y must be at least 32
1763 a = ((GetSnapGridSize() > 0.0f) ? 1.0f : 0.3f);
1765 glDisable(GL_TEXTURE_2D);
1766 glDisable(GL_TEXTURE_1D);
1767 glDisable(GL_DEPTH_TEST);
1768 glDisable(GL_BLEND);
1771 w = (m_nWidth / 2 / m_fScale);
1772 h = (m_nHeight / 2 / m_fScale);
1774 const int nDim1 = (m_viewType == YZ) ? 1 : 0;
1775 const int nDim2 = (m_viewType == XY) ? 1 : 2;
1777 xb = m_vOrigin[nDim1] - w;
1778 if (xb < region_mins[nDim1])
1779 xb = region_mins[nDim1];
1780 xb = step * floor (xb / step);
1782 xe = m_vOrigin[nDim1] + w;
1783 if (xe > region_maxs[nDim1])
1784 xe = region_maxs[nDim1];
1785 xe = step * ceil (xe / step);
1787 yb = m_vOrigin[nDim2] - h;
1788 if (yb < region_mins[nDim2])
1789 yb = region_mins[nDim2];
1790 yb = step * floor (yb / step);
1792 ye = m_vOrigin[nDim2] + h;
1793 if (ye > region_maxs[nDim2])
1794 ye = region_maxs[nDim2];
1795 ye = step * ceil (ye / step);
1797 #define COLORS_DIFFER(a,b) \
1798 ((a)[0] != (b)[0] || \
1799 (a)[1] != (b)[1] || \
1803 // draw minor blocks
1804 if (g_xywindow_globals_private.d_showgrid || a < 1.0f) {
1808 if (COLORS_DIFFER(g_xywindow_globals.color_gridminor, g_xywindow_globals.color_gridback)) {
1809 glColor4fv(vector4_to_array(Vector4(g_xywindow_globals.color_gridminor, a)));
1813 for (x = xb ; x < xe ; x += minor_step, ++i) {
1814 if ((i & mask) != 0) {
1820 for (y = yb ; y < ye ; y += minor_step, ++i) {
1821 if ((i & mask) != 0) {
1829 // draw major blocks
1830 if (COLORS_DIFFER(g_xywindow_globals.color_gridmajor, g_xywindow_globals.color_gridminor)) {
1831 glColor4fv(vector4_to_array(Vector4(g_xywindow_globals.color_gridmajor, a)));
1834 for (x = xb ; x <= xe ; x += step) {
1838 for (y = yb ; y <= ye ; y += step) {
1846 glDisable(GL_BLEND);
1849 // draw coordinate text if needed
1850 if ( g_xywindow_globals_private.show_coordinates) {
1851 glColor4fv(vector4_to_array(Vector4(g_xywindow_globals.color_gridtext, 1.0f)));
1852 // why does this not work on windows:
1853 // float offx = m_vOrigin[nDim2] + h - (1 + GlobalOpenGL().m_fontAscent) / m_fScale;
1854 float offx = m_vOrigin[nDim2] + h - 13 / m_fScale;
1855 float offy = m_vOrigin[nDim1] - w + 1 / m_fScale;
1856 for (x = xb - fmod(xb, stepx); x <= xe ; x += stepx) {
1857 glRasterPos2f (x, offx);
1858 sprintf (text, "%g", x);
1859 GlobalOpenGL().drawString(text);
1861 for (y = yb - fmod(yb, stepy); y <= ye ; y += stepy) {
1862 glRasterPos2f (offy, y);
1863 sprintf (text, "%g", y);
1864 GlobalOpenGL().drawString(text);
1868 glColor3fv(vector3_to_array(g_xywindow_globals.color_viewname));
1870 // we do this part (the old way) only if show_axis is disabled
1871 if (!g_xywindow_globals_private.show_axis) {
1872 glRasterPos2f ( m_vOrigin[nDim1] - w + 35 / m_fScale, m_vOrigin[nDim2] + h - 20 / m_fScale );
1874 GlobalOpenGL().drawString(ViewType_getTitle(m_viewType));
1878 XYWnd::XY_DrawAxis();
1880 // show current work zone?
1881 // the work zone is used to place dropped points and brushes
1882 if (g_xywindow_globals_private.d_show_work) {
1883 glColor4f( 1.0f, 0.0f, 0.0f, 1.0f );
1884 glBegin( GL_LINES );
1885 glVertex2f( xb, Select_getWorkZone().d_work_min[nDim2] );
1886 glVertex2f( xe, Select_getWorkZone().d_work_min[nDim2] );
1887 glVertex2f( xb, Select_getWorkZone().d_work_max[nDim2] );
1888 glVertex2f( xe, Select_getWorkZone().d_work_max[nDim2] );
1889 glVertex2f( Select_getWorkZone().d_work_min[nDim1], yb );
1890 glVertex2f( Select_getWorkZone().d_work_min[nDim1], ye );
1891 glVertex2f( Select_getWorkZone().d_work_max[nDim1], yb );
1892 glVertex2f( Select_getWorkZone().d_work_max[nDim1], ye );
1902 void XYWnd::XY_DrawBlockGrid()
1904 if(Map_FindWorldspawn(g_map) == 0)
1908 const char *value = Node_getEntity(*Map_GetWorldspawn(g_map))->getKeyValue("_blocksize" );
1910 sscanf( value, "%i", &g_xywindow_globals_private.blockSize );
1912 if (!g_xywindow_globals_private.blockSize || g_xywindow_globals_private.blockSize > 65536 || g_xywindow_globals_private.blockSize < 1024)
1913 // don't use custom blocksize if it is less than the default, or greater than the maximum world coordinate
1914 g_xywindow_globals_private.blockSize = 1024;
1916 float x, y, xb, xe, yb, ye;
1920 glDisable(GL_TEXTURE_2D);
1921 glDisable(GL_TEXTURE_1D);
1922 glDisable(GL_DEPTH_TEST);
1923 glDisable(GL_BLEND);
1925 w = (m_nWidth / 2 / m_fScale);
1926 h = (m_nHeight / 2 / m_fScale);
1928 int nDim1 = (m_viewType == YZ) ? 1 : 0;
1929 int nDim2 = (m_viewType == XY) ? 1 : 2;
1931 xb = m_vOrigin[nDim1] - w;
1932 if (xb < region_mins[nDim1])
1933 xb = region_mins[nDim1];
1934 xb = static_cast<float>(g_xywindow_globals_private.blockSize * floor (xb/g_xywindow_globals_private.blockSize));
1936 xe = m_vOrigin[nDim1] + w;
1937 if (xe > region_maxs[nDim1])
1938 xe = region_maxs[nDim1];
1939 xe = static_cast<float>(g_xywindow_globals_private.blockSize * ceil (xe/g_xywindow_globals_private.blockSize));
1941 yb = m_vOrigin[nDim2] - h;
1942 if (yb < region_mins[nDim2])
1943 yb = region_mins[nDim2];
1944 yb = static_cast<float>(g_xywindow_globals_private.blockSize * floor (yb/g_xywindow_globals_private.blockSize));
1946 ye = m_vOrigin[nDim2] + h;
1947 if (ye > region_maxs[nDim2])
1948 ye = region_maxs[nDim2];
1949 ye = static_cast<float>(g_xywindow_globals_private.blockSize * ceil (ye/g_xywindow_globals_private.blockSize));
1951 // draw major blocks
1953 glColor3fv(vector3_to_array(g_xywindow_globals.color_gridblock));
1958 for (x=xb ; x<=xe ; x+=g_xywindow_globals_private.blockSize)
1964 if (m_viewType == XY)
1966 for (y=yb ; y<=ye ; y+=g_xywindow_globals_private.blockSize)
1976 // draw coordinate text if needed
1978 if (m_viewType == XY && m_fScale > .1)
1980 for (x=xb ; x<xe ; x+=g_xywindow_globals_private.blockSize)
1981 for (y=yb ; y<ye ; y+=g_xywindow_globals_private.blockSize)
1983 glRasterPos2f (x+(g_xywindow_globals_private.blockSize/2), y+(g_xywindow_globals_private.blockSize/2));
1984 sprintf (text, "%i,%i",(int)floor(x/g_xywindow_globals_private.blockSize), (int)floor(y/g_xywindow_globals_private.blockSize) );
1985 GlobalOpenGL().drawString(text);
1989 glColor4f(0, 0, 0, 0);
1992 void XYWnd::DrawCameraIcon(const Vector3& origin, const Vector3& angles)
1994 float x, y, fov, box;
1997 fov = 48 / m_fScale;
1998 box = 16 / m_fScale;
2000 if (m_viewType == XY)
2004 a = degrees_to_radians(angles[CAMERA_YAW]);
2006 else if (m_viewType == YZ)
2010 a = degrees_to_radians(angles[CAMERA_PITCH]);
2016 a = degrees_to_radians(angles[CAMERA_PITCH]);
2019 glColor3f (0.0, 0.0, 1.0);
2020 glBegin(GL_LINE_STRIP);
2021 glVertex3f (x-box,y,0);
2022 glVertex3f (x,y+(box/2),0);
2023 glVertex3f (x+box,y,0);
2024 glVertex3f (x,y-(box/2),0);
2025 glVertex3f (x-box,y,0);
2026 glVertex3f (x+box,y,0);
2029 glBegin(GL_LINE_STRIP);
2030 glVertex3f (x + static_cast<float>(fov*cos(a+c_pi/4)), y + static_cast<float>(fov*sin(a+c_pi/4)), 0);
2031 glVertex3f (x, y, 0);
2032 glVertex3f (x + static_cast<float>(fov*cos(a-c_pi/4)), y + static_cast<float>(fov*sin(a-c_pi/4)), 0);
2038 float Betwixt(float f1, float f2)
2041 return f2 + ((f1 - f2) / 2);
2043 return f1 + ((f2 - f1) / 2);
2047 // can be greatly simplified but per usual i am in a hurry
2048 // which is not an excuse, just a fact
2049 void XYWnd::PaintSizeInfo(int nDim1, int nDim2, Vector3& vMinBounds, Vector3& vMaxBounds)
2051 if(vector3_equal(vMinBounds, vMaxBounds))
2055 const char* g_pDimStrings[] = {"x:", "y:", "z:"};
2056 typedef const char* OrgStrings[2];
2057 const OrgStrings g_pOrgStrings[] = { { "x:", "y:", }, { "x:", "z:", }, { "y:", "z:", } };
2059 Vector3 vSize(vector3_subtracted(vMaxBounds, vMinBounds));
2061 glColor3f(g_xywindow_globals.color_selbrushes[0] * .65f,
2062 g_xywindow_globals.color_selbrushes[1] * .65f,
2063 g_xywindow_globals.color_selbrushes[2] * .65f);
2065 StringOutputStream dimensions(16);
2067 if (m_viewType == XY)
2071 glVertex3f(vMinBounds[nDim1], vMinBounds[nDim2] - 6.0f / m_fScale, 0.0f);
2072 glVertex3f(vMinBounds[nDim1], vMinBounds[nDim2] - 10.0f / m_fScale, 0.0f);
2074 glVertex3f(vMinBounds[nDim1], vMinBounds[nDim2] - 10.0f / m_fScale, 0.0f);
2075 glVertex3f(vMaxBounds[nDim1], vMinBounds[nDim2] - 10.0f / m_fScale, 0.0f);
2077 glVertex3f(vMaxBounds[nDim1], vMinBounds[nDim2] - 6.0f / m_fScale, 0.0f);
2078 glVertex3f(vMaxBounds[nDim1], vMinBounds[nDim2] - 10.0f / m_fScale, 0.0f);
2081 glVertex3f(vMaxBounds[nDim1] + 6.0f / m_fScale, vMinBounds[nDim2], 0.0f);
2082 glVertex3f(vMaxBounds[nDim1] + 10.0f / m_fScale, vMinBounds[nDim2], 0.0f);
2084 glVertex3f(vMaxBounds[nDim1] + 10.0f / m_fScale, vMinBounds[nDim2], 0.0f);
2085 glVertex3f(vMaxBounds[nDim1] + 10.0f / m_fScale, vMaxBounds[nDim2], 0.0f);
2087 glVertex3f(vMaxBounds[nDim1] + 6.0f / m_fScale, vMaxBounds[nDim2], 0.0f);
2088 glVertex3f(vMaxBounds[nDim1] + 10.0f / m_fScale, vMaxBounds[nDim2], 0.0f);
2092 glRasterPos3f (Betwixt(vMinBounds[nDim1], vMaxBounds[nDim1]), vMinBounds[nDim2] - 20.0f / m_fScale, 0.0f);
2093 dimensions << g_pDimStrings[nDim1] << vSize[nDim1];
2094 GlobalOpenGL().drawString(dimensions.c_str());
2097 glRasterPos3f (vMaxBounds[nDim1] + 16.0f / m_fScale, Betwixt(vMinBounds[nDim2], vMaxBounds[nDim2]), 0.0f);
2098 dimensions << g_pDimStrings[nDim2] << vSize[nDim2];
2099 GlobalOpenGL().drawString(dimensions.c_str());
2102 glRasterPos3f (vMinBounds[nDim1] + 4, vMaxBounds[nDim2] + 8 / m_fScale, 0.0f);
2103 dimensions << "(" << g_pOrgStrings[0][0] << vMinBounds[nDim1] << " " << g_pOrgStrings[0][1] << vMaxBounds[nDim2] << ")";
2104 GlobalOpenGL().drawString(dimensions.c_str());
2106 else if (m_viewType == XZ)
2110 glVertex3f(vMinBounds[nDim1], 0, vMinBounds[nDim2] - 6.0f / m_fScale);
2111 glVertex3f(vMinBounds[nDim1], 0, vMinBounds[nDim2] - 10.0f / m_fScale);
2113 glVertex3f(vMinBounds[nDim1], 0,vMinBounds[nDim2] - 10.0f / m_fScale);
2114 glVertex3f(vMaxBounds[nDim1], 0,vMinBounds[nDim2] - 10.0f / m_fScale);
2116 glVertex3f(vMaxBounds[nDim1], 0,vMinBounds[nDim2] - 6.0f / m_fScale);
2117 glVertex3f(vMaxBounds[nDim1], 0,vMinBounds[nDim2] - 10.0f / m_fScale);
2120 glVertex3f(vMaxBounds[nDim1] + 6.0f / m_fScale, 0,vMinBounds[nDim2]);
2121 glVertex3f(vMaxBounds[nDim1] + 10.0f / m_fScale, 0,vMinBounds[nDim2]);
2123 glVertex3f(vMaxBounds[nDim1] + 10.0f / m_fScale, 0,vMinBounds[nDim2]);
2124 glVertex3f(vMaxBounds[nDim1] + 10.0f / m_fScale, 0,vMaxBounds[nDim2]);
2126 glVertex3f(vMaxBounds[nDim1] + 6.0f / m_fScale, 0,vMaxBounds[nDim2]);
2127 glVertex3f(vMaxBounds[nDim1] + 10.0f / m_fScale, 0,vMaxBounds[nDim2]);
2131 glRasterPos3f (Betwixt(vMinBounds[nDim1], vMaxBounds[nDim1]), 0, vMinBounds[nDim2] - 20.0f / m_fScale);
2132 dimensions << g_pDimStrings[nDim1] << vSize[nDim1];
2133 GlobalOpenGL().drawString(dimensions.c_str());
2136 glRasterPos3f (vMaxBounds[nDim1] + 16.0f / m_fScale, 0, Betwixt(vMinBounds[nDim2], vMaxBounds[nDim2]));
2137 dimensions << g_pDimStrings[nDim2] << vSize[nDim2];
2138 GlobalOpenGL().drawString(dimensions.c_str());
2141 glRasterPos3f (vMinBounds[nDim1] + 4, 0, vMaxBounds[nDim2] + 8 / m_fScale);
2142 dimensions << "(" << g_pOrgStrings[1][0] << vMinBounds[nDim1] << " " << g_pOrgStrings[1][1] << vMaxBounds[nDim2] << ")";
2143 GlobalOpenGL().drawString(dimensions.c_str());
2149 glVertex3f(0, vMinBounds[nDim1], vMinBounds[nDim2] - 6.0f / m_fScale);
2150 glVertex3f(0, vMinBounds[nDim1], vMinBounds[nDim2] - 10.0f / m_fScale);
2152 glVertex3f(0, vMinBounds[nDim1], vMinBounds[nDim2] - 10.0f / m_fScale);
2153 glVertex3f(0, vMaxBounds[nDim1], vMinBounds[nDim2] - 10.0f / m_fScale);
2155 glVertex3f(0, vMaxBounds[nDim1], vMinBounds[nDim2] - 6.0f / m_fScale);
2156 glVertex3f(0, vMaxBounds[nDim1], vMinBounds[nDim2] - 10.0f / m_fScale);
2159 glVertex3f(0, vMaxBounds[nDim1] + 6.0f / m_fScale, vMinBounds[nDim2]);
2160 glVertex3f(0, vMaxBounds[nDim1] + 10.0f / m_fScale, vMinBounds[nDim2]);
2162 glVertex3f(0, vMaxBounds[nDim1] + 10.0f / m_fScale, vMinBounds[nDim2]);
2163 glVertex3f(0, vMaxBounds[nDim1] + 10.0f / m_fScale, vMaxBounds[nDim2]);
2165 glVertex3f(0, vMaxBounds[nDim1] + 6.0f / m_fScale, vMaxBounds[nDim2]);
2166 glVertex3f(0, vMaxBounds[nDim1] + 10.0f / m_fScale, vMaxBounds[nDim2]);
2170 glRasterPos3f (0, Betwixt(vMinBounds[nDim1], vMaxBounds[nDim1]), vMinBounds[nDim2] - 20.0f / m_fScale);
2171 dimensions << g_pDimStrings[nDim1] << vSize[nDim1];
2172 GlobalOpenGL().drawString(dimensions.c_str());
2175 glRasterPos3f (0, vMaxBounds[nDim1] + 16.0f / m_fScale, Betwixt(vMinBounds[nDim2], vMaxBounds[nDim2]));
2176 dimensions << g_pDimStrings[nDim2] << vSize[nDim2];
2177 GlobalOpenGL().drawString(dimensions.c_str());
2180 glRasterPos3f (0, vMinBounds[nDim1] + 4.0f, vMaxBounds[nDim2] + 8 / m_fScale);
2181 dimensions << "(" << g_pOrgStrings[2][0] << vMinBounds[nDim1] << " " << g_pOrgStrings[2][1] << vMaxBounds[nDim2] << ")";
2182 GlobalOpenGL().drawString(dimensions.c_str());
2186 class XYRenderer: public Renderer
2195 unsigned int m_highlight;
2199 XYRenderer(RenderStateFlags globalstate, Shader* selected) :
2200 m_globalstate(globalstate),
2201 m_state_selected(selected)
2203 ASSERT_NOTNULL(selected);
2204 m_state_stack.push_back(state_type());
2207 void SetState(Shader* state, EStyle style)
2209 ASSERT_NOTNULL(state);
2210 if(style == eWireframeOnly)
2211 m_state_stack.back().m_state = state;
2213 const EStyle getStyle() const
2215 return eWireframeOnly;
2219 m_state_stack.push_back(m_state_stack.back());
2223 ASSERT_MESSAGE(!m_state_stack.empty(), "popping empty stack");
2224 m_state_stack.pop_back();
2226 void Highlight(EHighlightMode mode, bool bEnable = true)
2229 ? m_state_stack.back().m_highlight |= mode
2230 : m_state_stack.back().m_highlight &= ~mode;
2232 void addRenderable(const OpenGLRenderable& renderable, const Matrix4& localToWorld)
2234 if(m_state_stack.back().m_highlight & ePrimitive)
2236 m_state_selected->addRenderable(renderable, localToWorld);
2240 m_state_stack.back().m_state->addRenderable(renderable, localToWorld);
2244 void render(const Matrix4& modelview, const Matrix4& projection)
2246 GlobalShaderCache().render(m_globalstate, modelview, projection);
2249 std::vector<state_type> m_state_stack;
2250 RenderStateFlags m_globalstate;
2251 Shader* m_state_selected;
2254 void XYWnd::updateProjection()
2256 m_projection[0] = 1.0f / static_cast<float>(m_nWidth / 2);
2257 m_projection[5] = 1.0f / static_cast<float>(m_nHeight / 2);
2258 m_projection[10] = 1.0f / (g_MaxWorldCoord * m_fScale);
2260 m_projection[12] = 0.0f;
2261 m_projection[13] = 0.0f;
2262 m_projection[14] = -1.0f;
2274 m_projection[11] = 0.0f;
2276 m_projection[15] = 1.0f;
2278 m_view.Construct(m_projection, m_modelview, m_nWidth, m_nHeight);
2281 // note: modelview matrix must have a uniform scale, otherwise strange things happen when rendering the rotation manipulator.
2282 void XYWnd::updateModelview()
2284 int nDim1 = (m_viewType == YZ) ? 1 : 0;
2285 int nDim2 = (m_viewType == XY) ? 1 : 2;
2288 m_modelview[12] = -m_vOrigin[nDim1] * m_fScale;
2289 m_modelview[13] = -m_vOrigin[nDim2] * m_fScale;
2290 m_modelview[14] = g_MaxWorldCoord * m_fScale;
2296 m_modelview[0] = m_fScale;
2301 m_modelview[5] = m_fScale;
2306 m_modelview[10] = -m_fScale;
2309 m_modelview[0] = m_fScale;
2315 m_modelview[6] = m_fScale;
2318 m_modelview[9] = m_fScale;
2319 m_modelview[10] = 0;
2324 m_modelview[2] = -m_fScale;
2326 m_modelview[4] = m_fScale;
2331 m_modelview[9] = m_fScale;
2332 m_modelview[10] = 0;
2336 m_modelview[3] = m_modelview[7] = m_modelview[11] = 0;
2337 m_modelview[15] = 1;
2339 m_view.Construct(m_projection, m_modelview, m_nWidth, m_nHeight);
2348 //#define DBG_SCENEDUMP
2350 void XYWnd::XY_Draw()
2355 glViewport(0, 0, m_nWidth, m_nHeight);
2356 glClearColor (g_xywindow_globals.color_gridback[0],
2357 g_xywindow_globals.color_gridback[1],
2358 g_xywindow_globals.color_gridback[2],0);
2360 glClear(GL_COLOR_BUFFER_BIT);
2366 glMatrixMode(GL_PROJECTION);
2367 glLoadMatrixf(reinterpret_cast<const float*>(&m_projection));
2369 glMatrixMode(GL_MODELVIEW);
2371 glScalef(m_fScale, m_fScale, 1);
2372 int nDim1 = (m_viewType == YZ) ? 1 : 0;
2373 int nDim2 = (m_viewType == XY) ? 1 : 2;
2374 glTranslatef(-m_vOrigin[nDim1], -m_vOrigin[nDim2], 0);
2376 glDisable (GL_LINE_STIPPLE);
2378 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
2379 glDisableClientState(GL_NORMAL_ARRAY);
2380 glDisableClientState(GL_COLOR_ARRAY);
2381 glDisable(GL_TEXTURE_2D);
2382 glDisable(GL_LIGHTING);
2383 glDisable(GL_COLOR_MATERIAL);
2384 glDisable(GL_DEPTH_TEST);
2386 if (m_backgroundActivated)
2387 XY_DrawBackground();
2390 if ( g_xywindow_globals_private.show_blocks)
2393 glLoadMatrixf(reinterpret_cast<const float*>(&m_modelview));
2395 unsigned int globalstate = RENDER_COLOURARRAY | RENDER_COLOURWRITE | RENDER_POLYGONSMOOTH | RENDER_LINESMOOTH;
2396 if(!g_xywindow_globals.m_bNoStipple)
2398 globalstate |= RENDER_LINESTIPPLE;
2402 XYRenderer renderer(globalstate, m_state_selected);
2404 Scene_Render(renderer, m_view);
2406 GlobalOpenGL_debugAssertNoErrors();
2407 renderer.render(m_modelview, m_projection);
2408 GlobalOpenGL_debugAssertNoErrors();
2411 glDepthMask(GL_FALSE);
2413 GlobalOpenGL_debugAssertNoErrors();
2415 glLoadMatrixf(reinterpret_cast<const float*>(&m_modelview));
2417 GlobalOpenGL_debugAssertNoErrors();
2418 glDisable(GL_LINE_STIPPLE);
2419 GlobalOpenGL_debugAssertNoErrors();
2421 GlobalOpenGL_debugAssertNoErrors();
2422 if(GlobalOpenGL().GL_1_3())
2424 glActiveTexture(GL_TEXTURE0);
2425 glClientActiveTexture(GL_TEXTURE0);
2427 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
2428 GlobalOpenGL_debugAssertNoErrors();
2429 glDisableClientState(GL_NORMAL_ARRAY);
2430 GlobalOpenGL_debugAssertNoErrors();
2431 glDisableClientState(GL_COLOR_ARRAY);
2432 GlobalOpenGL_debugAssertNoErrors();
2433 glDisable(GL_TEXTURE_2D);
2434 GlobalOpenGL_debugAssertNoErrors();
2435 glDisable(GL_LIGHTING);
2436 GlobalOpenGL_debugAssertNoErrors();
2437 glDisable(GL_COLOR_MATERIAL);
2438 GlobalOpenGL_debugAssertNoErrors();
2440 GlobalOpenGL_debugAssertNoErrors();
2444 if(g_xywindow_globals_private.m_bSizePaint && GlobalSelectionSystem().countSelected() != 0)
2447 Select_GetBounds(min, max);
2448 PaintSizeInfo(nDim1, nDim2, min, max);
2453 glColor4f(0.2f, 0.9f, 0.2f, 0.8f);
2455 if (m_viewType == XY)
2457 glVertex2f(2.0f * g_MinWorldCoord, m_mousePosition[1]);
2458 glVertex2f(2.0f * g_MaxWorldCoord, m_mousePosition[1]);
2459 glVertex2f(m_mousePosition[0], 2.0f * g_MinWorldCoord);
2460 glVertex2f(m_mousePosition[0], 2.0f * g_MaxWorldCoord);
2462 else if (m_viewType == YZ)
2464 glVertex3f(m_mousePosition[0], 2.0f * g_MinWorldCoord, m_mousePosition[2]);
2465 glVertex3f(m_mousePosition[0], 2.0f * g_MaxWorldCoord, m_mousePosition[2]);
2466 glVertex3f(m_mousePosition[0], m_mousePosition[1], 2.0f * g_MinWorldCoord);
2467 glVertex3f(m_mousePosition[0], m_mousePosition[1], 2.0f * g_MaxWorldCoord);
2471 glVertex3f (2.0f * g_MinWorldCoord, m_mousePosition[1], m_mousePosition[2]);
2472 glVertex3f (2.0f * g_MaxWorldCoord, m_mousePosition[1], m_mousePosition[2]);
2473 glVertex3f(m_mousePosition[0], m_mousePosition[1], 2.0f * g_MinWorldCoord);
2474 glVertex3f(m_mousePosition[0], m_mousePosition[1], 2.0f * g_MaxWorldCoord);
2481 GlobalClipPoints_Draw(m_fScale);
2484 GlobalOpenGL_debugAssertNoErrors();
2488 glScalef(m_fScale, m_fScale, 1);
2489 glTranslatef(-m_vOrigin[nDim1], -m_vOrigin[nDim2], 0);
2491 DrawCameraIcon (Camera_getOrigin(*g_pParentWnd->GetCamWnd()), Camera_getAngles(*g_pParentWnd->GetCamWnd()));
2493 Feedback_draw2D( m_viewType );
2495 if (g_xywindow_globals_private.show_outline)
2499 glMatrixMode (GL_PROJECTION);
2501 glOrtho (0, m_nWidth, 0, m_nHeight, 0, 1);
2503 glMatrixMode (GL_MODELVIEW);
2506 // four view mode doesn't colorize
2507 if (g_pParentWnd->CurrentStyle() == MainFrame::eSplit)
2508 glColor3fv(vector3_to_array(g_xywindow_globals.color_viewname));
2514 glColor3fv(vector3_to_array(g_xywindow_globals.AxisColorX));
2517 glColor3fv(vector3_to_array(g_xywindow_globals.AxisColorY));
2520 glColor3fv(vector3_to_array(g_xywindow_globals.AxisColorZ));
2524 glBegin (GL_LINE_LOOP);
2526 glVertex2i (m_nWidth-1, 0);
2527 glVertex2i (m_nWidth-1, m_nHeight-1);
2528 glVertex2i (0, m_nHeight-1);
2533 GlobalOpenGL_debugAssertNoErrors();
2538 void XYWnd_MouseToPoint(XYWnd* xywnd, int x, int y, Vector3& point)
2540 xywnd->XY_ToPoint(x, y, point);
2541 xywnd->XY_SnapToGrid(point);
2543 int nDim = (xywnd->GetViewType() == XY) ? 2 : (xywnd->GetViewType() == YZ) ? 0 : 1;
2544 float fWorkMid = float_mid(Select_getWorkZone().d_work_min[nDim], Select_getWorkZone().d_work_max[nDim]);
2545 point[nDim] = float_snapped(fWorkMid, GetGridSize());
2548 void XYWnd::OnEntityCreate (const char* item)
2550 StringOutputStream command;
2551 command << "entityCreate -class " << item;
2552 UndoableCommand undo(command.c_str());
2554 XYWnd_MouseToPoint(this, m_entityCreate_x, m_entityCreate_y, point);
2555 Entity_createFromSelection(item, point);
2560 void GetFocusPosition(Vector3& position)
2562 if(GlobalSelectionSystem().countSelected() != 0)
2564 Select_GetMid(position);
2568 position = Camera_getOrigin(*g_pParentWnd->GetCamWnd());
2572 void XYWnd_Focus(XYWnd* xywnd)
2575 GetFocusPosition(position);
2576 xywnd->PositionView(position);
2579 void XY_Split_Focus()
2582 GetFocusPosition(position);
2583 g_pParentWnd->GetXYWnd()->PositionView(position);
2584 g_pParentWnd->GetXZWnd()->PositionView(position);
2585 g_pParentWnd->GetYZWnd()->PositionView(position);
2590 if (g_pParentWnd->CurrentStyle() == MainFrame::eSplit)
2592 // cannot do this in a split window
2593 // do something else that the user may want here
2598 XYWnd* xywnd = g_pParentWnd->GetXYWnd();
2604 if (g_pParentWnd->CurrentStyle() == MainFrame::eSplit || g_pParentWnd->CurrentStyle() == MainFrame::eFloating)
2606 // cannot do this in a split window
2607 // do something else that the user may want here
2612 XYWnd* xywnd = g_pParentWnd->GetXYWnd();
2613 xywnd->SetViewType(XY);
2619 if (g_pParentWnd->CurrentStyle() == MainFrame::eSplit || g_pParentWnd->CurrentStyle() == MainFrame::eFloating)
2621 // cannot do this in a split window
2622 // do something else that the user may want here
2627 XYWnd* xywnd = g_pParentWnd->GetXYWnd();
2628 xywnd->SetViewType(XZ);
2634 if (g_pParentWnd->CurrentStyle() == MainFrame::eSplit || g_pParentWnd->CurrentStyle() == MainFrame::eFloating)
2636 // cannot do this in a split window
2637 // do something else that the user may want here
2642 XYWnd* xywnd = g_pParentWnd->GetXYWnd();
2643 xywnd->SetViewType(YZ);
2649 if (g_pParentWnd->CurrentStyle() == MainFrame::eSplit || g_pParentWnd->CurrentStyle() == MainFrame::eFloating)
2651 // cannot do this in a split window
2652 // do something else that the user may want here
2657 XYWnd* xywnd = g_pParentWnd->GetXYWnd();
2658 if (xywnd->GetViewType() == XY)
2659 xywnd->SetViewType(XZ);
2660 else if (xywnd->GetViewType() == XZ)
2661 xywnd->SetViewType(YZ);
2663 xywnd->SetViewType(XY);
2669 if (g_pParentWnd->GetXYWnd())
2670 g_pParentWnd->GetXYWnd()->SetScale(1);
2671 if (g_pParentWnd->GetXZWnd())
2672 g_pParentWnd->GetXZWnd()->SetScale(1);
2673 if (g_pParentWnd->GetYZWnd())
2674 g_pParentWnd->GetYZWnd()->SetScale(1);
2679 XYWnd_ZoomIn(g_pParentWnd->ActiveXY());
2682 // NOTE: the zoom out factor is 4/5, we could think about customizing it
2683 // we don't go below a zoom factor corresponding to 10% of the max world size
2684 // (this has to be computed against the window size)
2687 XYWnd_ZoomOut(g_pParentWnd->ActiveXY());
2692 void ToggleShowCrosshair()
2695 XY_UpdateAllWindows();
2698 void ToggleShowSizeInfo()
2700 g_xywindow_globals_private.m_bSizePaint = !g_xywindow_globals_private.m_bSizePaint;
2701 XY_UpdateAllWindows();
2704 void ToggleShowGrid()
2706 g_xywindow_globals_private.d_showgrid = !g_xywindow_globals_private.d_showgrid;
2707 XY_UpdateAllWindows();
2710 ToggleShown g_xy_top_shown(true);
2712 void XY_Top_Shown_Construct(GtkWindow* parent)
2714 g_xy_top_shown.connect(GTK_WIDGET(parent));
2717 ToggleShown g_yz_side_shown(false);
2719 void YZ_Side_Shown_Construct(GtkWindow* parent)
2721 g_yz_side_shown.connect(GTK_WIDGET(parent));
2724 ToggleShown g_xz_front_shown(false);
2726 void XZ_Front_Shown_Construct(GtkWindow* parent)
2728 g_xz_front_shown.connect(GTK_WIDGET(parent));
2732 class EntityClassMenu : public ModuleObserver
2734 std::size_t m_unrealised;
2736 EntityClassMenu() : m_unrealised(1)
2741 if(--m_unrealised == 0)
2747 if(++m_unrealised == 1)
2749 if(XYWnd::m_mnuDrop != 0)
2751 gtk_widget_destroy(GTK_WIDGET(XYWnd::m_mnuDrop));
2752 XYWnd::m_mnuDrop = 0;
2758 EntityClassMenu g_EntityClassMenu;
2763 void ShowNamesToggle()
2765 GlobalEntityCreator().setShowNames(!GlobalEntityCreator().getShowNames());
2766 XY_UpdateAllWindows();
2768 typedef FreeCaller<ShowNamesToggle> ShowNamesToggleCaller;
2769 void ShowNamesExport(const BoolImportCallback& importer)
2771 importer(GlobalEntityCreator().getShowNames());
2773 typedef FreeCaller1<const BoolImportCallback&, ShowNamesExport> ShowNamesExportCaller;
2775 void ShowAnglesToggle()
2777 GlobalEntityCreator().setShowAngles(!GlobalEntityCreator().getShowAngles());
2778 XY_UpdateAllWindows();
2780 typedef FreeCaller<ShowAnglesToggle> ShowAnglesToggleCaller;
2781 void ShowAnglesExport(const BoolImportCallback& importer)
2783 importer(GlobalEntityCreator().getShowAngles());
2785 typedef FreeCaller1<const BoolImportCallback&, ShowAnglesExport> ShowAnglesExportCaller;
2787 void ShowBlocksToggle()
2789 g_xywindow_globals_private.show_blocks ^= 1;
2790 XY_UpdateAllWindows();
2792 typedef FreeCaller<ShowBlocksToggle> ShowBlocksToggleCaller;
2793 void ShowBlocksExport(const BoolImportCallback& importer)
2795 importer(g_xywindow_globals_private.show_blocks);
2797 typedef FreeCaller1<const BoolImportCallback&, ShowBlocksExport> ShowBlocksExportCaller;
2799 void ShowCoordinatesToggle()
2801 g_xywindow_globals_private.show_coordinates ^= 1;
2802 XY_UpdateAllWindows();
2804 typedef FreeCaller<ShowCoordinatesToggle> ShowCoordinatesToggleCaller;
2805 void ShowCoordinatesExport(const BoolImportCallback& importer)
2807 importer(g_xywindow_globals_private.show_coordinates);
2809 typedef FreeCaller1<const BoolImportCallback&, ShowCoordinatesExport> ShowCoordinatesExportCaller;
2811 void ShowOutlineToggle()
2813 g_xywindow_globals_private.show_outline ^= 1;
2814 XY_UpdateAllWindows();
2816 typedef FreeCaller<ShowOutlineToggle> ShowOutlineToggleCaller;
2817 void ShowOutlineExport(const BoolImportCallback& importer)
2819 importer(g_xywindow_globals_private.show_outline);
2821 typedef FreeCaller1<const BoolImportCallback&, ShowOutlineExport> ShowOutlineExportCaller;
2823 void ShowAxesToggle()
2825 g_xywindow_globals_private.show_axis ^= 1;
2826 XY_UpdateAllWindows();
2828 typedef FreeCaller<ShowAxesToggle> ShowAxesToggleCaller;
2829 void ShowAxesExport(const BoolImportCallback& importer)
2831 importer(g_xywindow_globals_private.show_axis);
2833 typedef FreeCaller1<const BoolImportCallback&, ShowAxesExport> ShowAxesExportCaller;
2835 void ShowWorkzoneToggle()
2837 g_xywindow_globals_private.d_show_work ^= 1;
2838 XY_UpdateAllWindows();
2840 typedef FreeCaller<ShowWorkzoneToggle> ShowWorkzoneToggleCaller;
2841 void ShowWorkzoneExport(const BoolImportCallback& importer)
2843 importer(g_xywindow_globals_private.d_show_work);
2845 typedef FreeCaller1<const BoolImportCallback&, ShowWorkzoneExport> ShowWorkzoneExportCaller;
2847 ShowNamesExportCaller g_show_names_caller;
2848 BoolExportCallback g_show_names_callback(g_show_names_caller);
2849 ToggleItem g_show_names(g_show_names_callback);
2851 ShowAnglesExportCaller g_show_angles_caller;
2852 BoolExportCallback g_show_angles_callback(g_show_angles_caller);
2853 ToggleItem g_show_angles(g_show_angles_callback);
2855 ShowBlocksExportCaller g_show_blocks_caller;
2856 BoolExportCallback g_show_blocks_callback(g_show_blocks_caller);
2857 ToggleItem g_show_blocks(g_show_blocks_callback);
2859 ShowCoordinatesExportCaller g_show_coordinates_caller;
2860 BoolExportCallback g_show_coordinates_callback(g_show_coordinates_caller);
2861 ToggleItem g_show_coordinates(g_show_coordinates_callback);
2863 ShowOutlineExportCaller g_show_outline_caller;
2864 BoolExportCallback g_show_outline_callback(g_show_outline_caller);
2865 ToggleItem g_show_outline(g_show_outline_callback);
2867 ShowAxesExportCaller g_show_axes_caller;
2868 BoolExportCallback g_show_axes_callback(g_show_axes_caller);
2869 ToggleItem g_show_axes(g_show_axes_callback);
2871 ShowWorkzoneExportCaller g_show_workzone_caller;
2872 BoolExportCallback g_show_workzone_callback(g_show_workzone_caller);
2873 ToggleItem g_show_workzone(g_show_workzone_callback);
2875 void XYShow_registerCommands()
2877 GlobalToggles_insert("ShowAngles", ShowAnglesToggleCaller(), ToggleItem::AddCallbackCaller(g_show_angles));
2878 GlobalToggles_insert("ShowNames", ShowNamesToggleCaller(), ToggleItem::AddCallbackCaller(g_show_names));
2879 GlobalToggles_insert("ShowBlocks", ShowBlocksToggleCaller(), ToggleItem::AddCallbackCaller(g_show_blocks));
2880 GlobalToggles_insert("ShowCoordinates", ShowCoordinatesToggleCaller(), ToggleItem::AddCallbackCaller(g_show_coordinates));
2881 GlobalToggles_insert("ShowWindowOutline", ShowOutlineToggleCaller(), ToggleItem::AddCallbackCaller(g_show_outline));
2882 GlobalToggles_insert("ShowAxes", ShowAxesToggleCaller(), ToggleItem::AddCallbackCaller(g_show_axes));
2883 GlobalToggles_insert("ShowWorkzone", ShowWorkzoneToggleCaller(), ToggleItem::AddCallbackCaller(g_show_workzone));
2886 void XYWnd_registerShortcuts()
2888 command_connect_accelerator("ToggleCrosshairs");
2889 command_connect_accelerator("ToggleSizePaint");
2894 void Orthographic_constructPreferences(PreferencesPage& page)
2896 page.appendCheckBox("", "Solid selection boxes", g_xywindow_globals.m_bNoStipple);
2897 page.appendCheckBox("", "Display size info", g_xywindow_globals_private.m_bSizePaint);
2898 page.appendCheckBox("", "Chase mouse during drags", g_xywindow_globals_private.m_bChaseMouse);
2899 page.appendCheckBox("", "Update views on camera move", g_xywindow_globals_private.m_bCamXYUpdate);
2901 void Orthographic_constructPage(PreferenceGroup& group)
2903 PreferencesPage page(group.createPage("Orthographic", "Orthographic View Preferences"));
2904 Orthographic_constructPreferences(page);
2906 void Orthographic_registerPreferencesPage()
2908 PreferencesDialog_addSettingsPage(FreeCaller1<PreferenceGroup&, Orthographic_constructPage>());
2911 void Clipper_constructPreferences(PreferencesPage& page)
2913 page.appendCheckBox("", "Clipper tool uses caulk", g_clip_useCaulk);
2915 void Clipper_constructPage(PreferenceGroup& group)
2917 PreferencesPage page(group.createPage("Clipper", "Clipper Tool Settings"));
2918 Clipper_constructPreferences(page);
2920 void Clipper_registerPreferencesPage()
2922 PreferencesDialog_addSettingsPage(FreeCaller1<PreferenceGroup&, Clipper_constructPage>());
2926 #include "preferencesystem.h"
2927 #include "stringio.h"
2932 void ToggleShown_importBool(ToggleShown& self, bool value)
2936 typedef ReferenceCaller1<ToggleShown, bool, ToggleShown_importBool> ToggleShownImportBoolCaller;
2937 void ToggleShown_exportBool(const ToggleShown& self, const BoolImportCallback& importer)
2939 importer(self.active());
2941 typedef ConstReferenceCaller1<ToggleShown, const BoolImportCallback&, ToggleShown_exportBool> ToggleShownExportBoolCaller;
2944 void XYWindow_Construct()
2946 GlobalCommands_insert("ToggleCrosshairs", FreeCaller<ToggleShowCrosshair>(), Accelerator('X', (GdkModifierType)GDK_SHIFT_MASK));
2947 GlobalCommands_insert("ToggleSizePaint", FreeCaller<ToggleShowSizeInfo>(), Accelerator('J'));
2948 GlobalCommands_insert("ToggleGrid", FreeCaller<ToggleShowGrid>(), Accelerator('0'));
2950 GlobalToggles_insert("ToggleView", ToggleShown::ToggleCaller(g_xy_top_shown), ToggleItem::AddCallbackCaller(g_xy_top_shown.m_item), Accelerator('V', (GdkModifierType)(GDK_SHIFT_MASK|GDK_CONTROL_MASK)));
2951 GlobalToggles_insert("ToggleSideView", ToggleShown::ToggleCaller(g_yz_side_shown), ToggleItem::AddCallbackCaller(g_yz_side_shown.m_item));
2952 GlobalToggles_insert("ToggleFrontView", ToggleShown::ToggleCaller(g_xz_front_shown), ToggleItem::AddCallbackCaller(g_xz_front_shown.m_item));
2953 GlobalCommands_insert("NextView", FreeCaller<XY_Next>(), Accelerator(GDK_Tab, (GdkModifierType)GDK_CONTROL_MASK));
2954 GlobalCommands_insert("ZoomIn", FreeCaller<XY_ZoomIn>(), Accelerator(GDK_Delete));
2955 GlobalCommands_insert("ZoomOut", FreeCaller<XY_ZoomOut>(), Accelerator(GDK_Insert));
2956 GlobalCommands_insert("ViewTop", FreeCaller<XY_Top>());
2957 GlobalCommands_insert("ViewSide", FreeCaller<XY_Side>());
2958 GlobalCommands_insert("ViewFront", FreeCaller<XY_Front>());
2959 GlobalCommands_insert("Zoom100", FreeCaller<XY_Zoom100>());
2960 GlobalCommands_insert("CenterXYView", FreeCaller<XY_Focus>(), Accelerator(GDK_Tab, (GdkModifierType)(GDK_SHIFT_MASK|GDK_CONTROL_MASK)));
2962 GlobalPreferenceSystem().registerPreference("ClipCaulk", BoolImportStringCaller(g_clip_useCaulk), BoolExportStringCaller(g_clip_useCaulk));
2964 GlobalPreferenceSystem().registerPreference("NewRightClick", BoolImportStringCaller(g_xywindow_globals.m_bRightClick), BoolExportStringCaller(g_xywindow_globals.m_bRightClick));
2965 GlobalPreferenceSystem().registerPreference("ChaseMouse", BoolImportStringCaller(g_xywindow_globals_private.m_bChaseMouse), BoolExportStringCaller(g_xywindow_globals_private.m_bChaseMouse));
2966 GlobalPreferenceSystem().registerPreference("SizePainting", BoolImportStringCaller(g_xywindow_globals_private.m_bSizePaint), BoolExportStringCaller(g_xywindow_globals_private.m_bSizePaint));
2967 GlobalPreferenceSystem().registerPreference("NoStipple", BoolImportStringCaller(g_xywindow_globals.m_bNoStipple), BoolExportStringCaller(g_xywindow_globals.m_bNoStipple));
2968 GlobalPreferenceSystem().registerPreference("SI_ShowCoords", BoolImportStringCaller(g_xywindow_globals_private.show_coordinates), BoolExportStringCaller(g_xywindow_globals_private.show_coordinates));
2969 GlobalPreferenceSystem().registerPreference("SI_ShowOutlines", BoolImportStringCaller(g_xywindow_globals_private.show_outline), BoolExportStringCaller(g_xywindow_globals_private.show_outline));
2970 GlobalPreferenceSystem().registerPreference("SI_ShowAxis", BoolImportStringCaller(g_xywindow_globals_private.show_axis), BoolExportStringCaller(g_xywindow_globals_private.show_axis));
2971 GlobalPreferenceSystem().registerPreference("CamXYUpdate", BoolImportStringCaller(g_xywindow_globals_private.m_bCamXYUpdate), BoolExportStringCaller(g_xywindow_globals_private.m_bCamXYUpdate));
2972 GlobalPreferenceSystem().registerPreference("ShowWorkzone", BoolImportStringCaller(g_xywindow_globals_private.d_show_work), BoolExportStringCaller(g_xywindow_globals_private.d_show_work));
2974 GlobalPreferenceSystem().registerPreference("SI_AxisColors0", Vector3ImportStringCaller(g_xywindow_globals.AxisColorX), Vector3ExportStringCaller(g_xywindow_globals.AxisColorX));
2975 GlobalPreferenceSystem().registerPreference("SI_AxisColors1", Vector3ImportStringCaller(g_xywindow_globals.AxisColorY), Vector3ExportStringCaller(g_xywindow_globals.AxisColorY));
2976 GlobalPreferenceSystem().registerPreference("SI_AxisColors2", Vector3ImportStringCaller(g_xywindow_globals.AxisColorZ), Vector3ExportStringCaller(g_xywindow_globals.AxisColorZ));
2977 GlobalPreferenceSystem().registerPreference("SI_Colors1", Vector3ImportStringCaller(g_xywindow_globals.color_gridback), Vector3ExportStringCaller(g_xywindow_globals.color_gridback));
2978 GlobalPreferenceSystem().registerPreference("SI_Colors2", Vector3ImportStringCaller(g_xywindow_globals.color_gridminor), Vector3ExportStringCaller(g_xywindow_globals.color_gridminor));
2979 GlobalPreferenceSystem().registerPreference("SI_Colors3", Vector3ImportStringCaller(g_xywindow_globals.color_gridmajor), Vector3ExportStringCaller(g_xywindow_globals.color_gridmajor));
2980 GlobalPreferenceSystem().registerPreference("SI_Colors6", Vector3ImportStringCaller(g_xywindow_globals.color_gridblock), Vector3ExportStringCaller(g_xywindow_globals.color_gridblock));
2981 GlobalPreferenceSystem().registerPreference("SI_Colors7", Vector3ImportStringCaller(g_xywindow_globals.color_gridtext), Vector3ExportStringCaller(g_xywindow_globals.color_gridtext));
2982 GlobalPreferenceSystem().registerPreference("SI_Colors8", Vector3ImportStringCaller(g_xywindow_globals.color_brushes), Vector3ExportStringCaller(g_xywindow_globals.color_brushes));
2983 GlobalPreferenceSystem().registerPreference("SI_Colors14", Vector3ImportStringCaller(g_xywindow_globals.color_gridmajor_alt), Vector3ExportStringCaller(g_xywindow_globals.color_gridmajor_alt));
2986 GlobalPreferenceSystem().registerPreference("XZVIS", makeBoolStringImportCallback(ToggleShownImportBoolCaller(g_xz_front_shown)), makeBoolStringExportCallback(ToggleShownExportBoolCaller(g_xz_front_shown)));
2987 GlobalPreferenceSystem().registerPreference("YZVIS", makeBoolStringImportCallback(ToggleShownImportBoolCaller(g_yz_side_shown)), makeBoolStringExportCallback(ToggleShownExportBoolCaller(g_yz_side_shown)));
2989 Orthographic_registerPreferencesPage();
2990 Clipper_registerPreferencesPage();
2992 XYWnd::captureStates();
2993 GlobalEntityClassManager().attach(g_EntityClassMenu);
2996 void XYWindow_Destroy()
2998 GlobalEntityClassManager().detach(g_EntityClassMenu);
2999 XYWnd::releaseStates();