1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Miscellaneous OGL support functions
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "misc.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
28 #include <wx/deprecated/wxexpr.h>
41 #include "wx/ogl/ogl.h"
44 wxFont
* g_oglNormalFont
;
46 wxPen
* g_oglWhiteBackgroundPen
;
47 wxPen
* g_oglTransparentPen
;
48 wxBrush
* g_oglWhiteBackgroundBrush
;
49 wxPen
* g_oglBlackForegroundPen
;
50 wxCursor
* g_oglBullseyeCursor
= NULL
;
52 wxChar
* oglBuffer
= NULL
;
54 wxList
oglObjectCopyMapping(wxKEY_INTEGER
);
58 void wxOGLInitialize()
60 g_oglBullseyeCursor
= new wxCursor(wxCURSOR_BULLSEYE
);
62 g_oglNormalFont
= new wxFont(10, wxSWISS
, wxNORMAL
, wxNORMAL
);
64 g_oglBlackPen
= new wxPen(wxT("BLACK"), 1, wxSOLID
);
66 g_oglWhiteBackgroundPen
= new wxPen(wxT("WHITE"), 1, wxSOLID
);
67 g_oglTransparentPen
= new wxPen(wxT("WHITE"), 1, wxTRANSPARENT
);
68 g_oglWhiteBackgroundBrush
= new wxBrush(wxT("WHITE"), wxSOLID
);
69 g_oglBlackForegroundPen
= new wxPen(wxT("BLACK"), 1, wxSOLID
);
71 OGLInitializeConstraintTypes();
73 // Initialize big buffer used when writing images
74 oglBuffer
= new wxChar
[3000];
87 if (g_oglBullseyeCursor
)
89 delete g_oglBullseyeCursor
;
90 g_oglBullseyeCursor
= NULL
;
95 delete g_oglNormalFont
;
96 g_oglNormalFont
= NULL
;
100 delete g_oglBlackPen
;
101 g_oglBlackPen
= NULL
;
103 if (g_oglWhiteBackgroundPen
)
105 delete g_oglWhiteBackgroundPen
;
106 g_oglWhiteBackgroundPen
= NULL
;
108 if (g_oglTransparentPen
)
110 delete g_oglTransparentPen
;
111 g_oglTransparentPen
= NULL
;
113 if (g_oglWhiteBackgroundBrush
)
115 delete g_oglWhiteBackgroundBrush
;
116 g_oglWhiteBackgroundBrush
= NULL
;
118 if (g_oglBlackForegroundPen
)
120 delete g_oglBlackForegroundPen
;
121 g_oglBlackForegroundPen
= NULL
;
124 OGLCleanUpConstraintTypes();
127 wxFont
*oglMatchFont(int point_size
)
129 wxFont
*font
= wxTheFontList
->FindOrCreateFont(point_size
, wxSWISS
, wxNORMAL
, wxNORMAL
);
143 font
= swiss_font_12
;
146 font
= swiss_font_14
;
149 font
= swiss_font_18
;
152 font
= swiss_font_24
;
156 font
= swiss_font_10
;
163 int FontSizeDialog(wxFrame
*parent
, int old_size
)
169 wxString ans
= wxGetTextFromUser(wxT("Enter point size"), wxT("Font size"), buf
, parent
);
170 if (ans
.Length() == 0)
174 ans
.ToLong(&new_size
);
175 if ((new_size
<= 0) || (new_size
> 40))
177 wxMessageBox(wxT("Invalid point size!"), wxT("Error"), wxOK
);
191 char *ans = wxGetSingleChoice("Choose", "Choose a font size", 8, strings, parent);
195 sscanf(ans, "%d", &size);
196 return oglMatchFont(size);
202 // Centre a list of strings in the given box. xOffset and yOffset are the
203 // the positions that these lines should be relative to, and this might be
204 // the same as m_xpos, m_ypos, but might be zero if formatting from left-justifying.
205 void oglCentreText(wxDC
& dc
, wxList
*text_list
,
206 double m_xpos
, double m_ypos
, double width
, double height
,
209 int n
= text_list
->GetCount();
211 if (!text_list
|| (n
== 0))
214 // First, get maximum dimensions of box enclosing text
216 long char_height
= 0;
218 long current_width
= 0;
220 // Store text extents for speed
221 double *widths
= new double[n
];
223 wxNode
*current
= text_list
->GetFirst();
227 wxShapeTextLine
*line
= (wxShapeTextLine
*)current
->GetData();
228 dc
.GetTextExtent(line
->GetText(), ¤t_width
, &char_height
);
229 widths
[i
] = current_width
;
231 if (current_width
> max_width
)
232 max_width
= current_width
;
233 current
= current
->GetNext();
237 double max_height
= n
*char_height
;
239 double xoffset
, yoffset
, xOffset
, yOffset
;
241 if (formatMode
& FORMAT_CENTRE_VERT
)
243 if (max_height
< height
)
244 yoffset
= (double)(m_ypos
- (height
/2.0) + (height
- max_height
)/2.0);
246 yoffset
= (double)(m_ypos
- (height
/2.0));
255 if (formatMode
& FORMAT_CENTRE_HORIZ
)
257 xoffset
= (double)(m_xpos
- width
/2.0);
266 current
= text_list
->GetFirst();
271 wxShapeTextLine
*line
= (wxShapeTextLine
*)current
->GetData();
274 if ((formatMode
& FORMAT_CENTRE_HORIZ
) && (widths
[i
] < width
))
275 x
= (double)((width
- widths
[i
])/2.0 + xoffset
);
278 double y
= (double)(i
*char_height
+ yoffset
);
280 line
->SetX( x
- xOffset
); line
->SetY( y
- yOffset
);
281 current
= current
->GetNext();
288 // Centre a list of strings in the given box
289 void oglCentreTextNoClipping(wxDC
& dc
, wxList
*text_list
,
290 double m_xpos
, double m_ypos
, double width
, double height
)
292 int n
= text_list
->GetCount();
294 if (!text_list
|| (n
== 0))
297 // First, get maximum dimensions of box enclosing text
299 long char_height
= 0;
301 long current_width
= 0;
303 // Store text extents for speed
304 double *widths
= new double[n
];
306 wxNode
*current
= text_list
->GetFirst();
310 wxShapeTextLine
*line
= (wxShapeTextLine
*)current
->GetData();
311 dc
.GetTextExtent(line
->GetText(), ¤t_width
, &char_height
);
312 widths
[i
] = current_width
;
314 if (current_width
> max_width
)
315 max_width
= current_width
;
316 current
= current
->GetNext();
320 double max_height
= n
*char_height
;
322 double yoffset
= (double)(m_ypos
- (height
/2.0) + (height
- max_height
)/2.0);
324 double xoffset
= (double)(m_xpos
- width
/2.0);
326 current
= text_list
->GetFirst();
331 wxShapeTextLine
*line
= (wxShapeTextLine
*)current
->GetData();
333 double x
= (double)((width
- widths
[i
])/2.0 + xoffset
);
334 double y
= (double)(i
*char_height
+ yoffset
);
336 line
->SetX( x
- m_xpos
); line
->SetY( y
- m_ypos
);
337 current
= current
->GetNext();
343 void oglGetCentredTextExtent(wxDC
& dc
, wxList
*text_list
,
344 double WXUNUSED(m_xpos
), double WXUNUSED(m_ypos
), double WXUNUSED(width
), double WXUNUSED(height
),
345 double *actual_width
, double *actual_height
)
347 int n
= text_list
->GetCount();
349 if (!text_list
|| (n
== 0))
356 // First, get maximum dimensions of box enclosing text
358 long char_height
= 0;
360 long current_width
= 0;
362 wxNode
*current
= text_list
->GetFirst();
365 wxShapeTextLine
*line
= (wxShapeTextLine
*)current
->GetData();
366 dc
.GetTextExtent(line
->GetText(), ¤t_width
, &char_height
);
368 if (current_width
> max_width
)
369 max_width
= current_width
;
370 current
= current
->GetNext();
373 *actual_height
= n
*char_height
;
374 *actual_width
= max_width
;
377 // Format a string to a list of strings that fit in the given box.
378 // Interpret %n and 10 or 13 as a new line.
379 wxStringList
*oglFormatText(wxDC
& dc
, const wxString
& text
, double width
, double WXUNUSED(height
), int formatMode
)
381 // First, parse the string into a list of words
382 wxStringList word_list
;
384 // Make new lines into NULL strings at this point
385 int i
= 0; int j
= 0; int len
= text
.Length();
386 wxChar word
[200]; word
[0] = 0;
387 bool end_word
= FALSE
; bool new_line
= FALSE
;
396 { word
[j
] = wxT('%'); j
++; }
399 if (text
[i
] == wxT('n'))
400 { new_line
= TRUE
; end_word
= TRUE
; i
++; }
402 { word
[j
] = wxT('%'); j
++; word
[j
] = text
[i
]; j
++; i
++; }
408 new_line
= TRUE
; end_word
= TRUE
; i
++;
413 new_line
= TRUE
; end_word
= TRUE
; i
++;
428 if (i
== len
) end_word
= TRUE
;
438 word_list
.Append(NULL
);
442 // Now, make a list of strings which can fit in the box
443 wxStringList
*string_list
= new wxStringList
;
446 wxStringListNode
*node
= word_list
.GetFirst();
451 wxString
oldBuffer(buffer
);
453 wxChar
*s
= (wxChar
*)node
->GetData();
457 if (buffer
.Length() > 0)
458 string_list
->Add(buffer
);
464 if (buffer
.Length() != 0)
468 dc
.GetTextExtent(buffer
, &x
, &y
);
470 // Don't fit within the bounding box if we're fitting shape to contents
471 if ((x
> width
) && !(formatMode
& FORMAT_SIZE_TO_CONTENTS
))
473 // Deal with first word being wider than box
474 if (oldBuffer
.Length() > 0)
475 string_list
->Add(oldBuffer
);
482 node
= node
->GetNext();
484 if (buffer
.Length() != 0)
485 string_list
->Add(buffer
);
490 void oglDrawFormattedText(wxDC
& dc
, wxList
*text_list
,
491 double m_xpos
, double m_ypos
, double width
, double height
,
494 double xoffset
, yoffset
;
495 if (formatMode
& FORMAT_CENTRE_HORIZ
)
498 xoffset
= (double)(m_xpos
- (width
/ 2.0));
500 if (formatMode
& FORMAT_CENTRE_VERT
)
503 yoffset
= (double)(m_ypos
- (height
/ 2.0));
505 dc
.SetClippingRegion(
506 (long)(m_xpos
- width
/2.0), (long)(m_ypos
- height
/2.0),
507 (long)width
, (long)height
);
509 wxNode
*current
= text_list
->GetFirst();
512 wxShapeTextLine
*line
= (wxShapeTextLine
*)current
->GetData();
514 dc
.DrawText(line
->GetText(), WXROUND(xoffset
+ line
->GetX()), WXROUND(yoffset
+ line
->GetY()));
515 current
= current
->GetNext();
518 dc
.DestroyClippingRegion();
522 * Find centroid given list of points comprising polyline
526 void oglFindPolylineCentroid(wxList
*points
, double *x
, double *y
)
531 wxNode
*node
= points
->GetFirst();
534 wxRealPoint
*point
= (wxRealPoint
*)node
->GetData();
537 node
= node
->GetNext();
540 *x
= (xcount
/points
->GetCount());
541 *y
= (ycount
/points
->GetCount());
545 * Check that (x1, y1) -> (x2, y2) hits (x3, y3) -> (x4, y4).
546 * If so, ratio1 gives the proportion along the first line
547 * that the intersection occurs (or something like that).
548 * Used by functions below.
551 void oglCheckLineIntersection(double x1
, double y1
, double x2
, double y2
,
552 double x3
, double y3
, double x4
, double y4
,
553 double *ratio1
, double *ratio2
)
555 double denominator_term
= (y4
- y3
)*(x2
- x1
) - (y2
- y1
)*(x4
- x3
);
556 double numerator_term
= (x3
- x1
)*(y4
- y3
) + (x4
- x3
)*(y1
- y3
);
558 double line_constant
;
559 double length_ratio
= 1.0;
562 // Check for parallel lines
563 if ((denominator_term
< 0.005) && (denominator_term
> -0.005))
564 line_constant
= -1.0;
566 line_constant
= numerator_term
/denominator_term
;
568 // Check for intersection
569 if ((line_constant
< 1.0) && (line_constant
> 0.0))
571 // Now must check that other line hits
572 if (((y4
- y3
) < 0.005) && ((y4
- y3
) > -0.005))
573 k_line
= ((x1
- x3
) + line_constant
*(x2
- x1
))/(x4
- x3
);
575 k_line
= ((y1
- y3
) + line_constant
*(y2
- y1
))/(y4
- y3
);
577 if ((k_line
>= 0.0) && (k_line
< 1.0))
578 length_ratio
= line_constant
;
582 *ratio1
= length_ratio
;
587 * Find where (x1, y1) -> (x2, y2) hits one of the lines in xvec, yvec.
588 * (*x3, *y3) is the point where it hits.
591 void oglFindEndForPolyline(double n
, double xvec
[], double yvec
[],
592 double x1
, double y1
, double x2
, double y2
, double *x3
, double *y3
)
595 double lastx
= xvec
[0];
596 double lasty
= yvec
[0];
598 double min_ratio
= 1.0;
602 for (i
= 1; i
< n
; i
++)
604 oglCheckLineIntersection(x1
, y1
, x2
, y2
, lastx
, lasty
, xvec
[i
], yvec
[i
],
605 &line_ratio
, &other_ratio
);
609 if (line_ratio
< min_ratio
)
610 min_ratio
= line_ratio
;
613 // Do last (implicit) line if last and first doubles are not identical
614 if (!(xvec
[0] == lastx
&& yvec
[0] == lasty
))
616 oglCheckLineIntersection(x1
, y1
, x2
, y2
, lastx
, lasty
, xvec
[0], yvec
[0],
617 &line_ratio
, &other_ratio
);
619 if (line_ratio
< min_ratio
)
620 min_ratio
= line_ratio
;
623 *x3
= (x1
+ (x2
- x1
)*min_ratio
);
624 *y3
= (y1
+ (y2
- y1
)*min_ratio
);
629 * Find where the line hits the box.
633 void oglFindEndForBox(double width
, double height
,
634 double x1
, double y1
, // Centre of box (possibly)
635 double x2
, double y2
, // other end of line
636 double *x3
, double *y3
) // End on box edge
641 xvec
[0] = (double)(x1
- width
/2.0);
642 yvec
[0] = (double)(y1
- height
/2.0);
643 xvec
[1] = (double)(x1
- width
/2.0);
644 yvec
[1] = (double)(y1
+ height
/2.0);
645 xvec
[2] = (double)(x1
+ width
/2.0);
646 yvec
[2] = (double)(y1
+ height
/2.0);
647 xvec
[3] = (double)(x1
+ width
/2.0);
648 yvec
[3] = (double)(y1
- height
/2.0);
649 xvec
[4] = (double)(x1
- width
/2.0);
650 yvec
[4] = (double)(y1
- height
/2.0);
652 oglFindEndForPolyline(5, xvec
, yvec
, x2
, y2
, x1
, y1
, x3
, y3
);
656 * Find where the line hits the circle.
660 void oglFindEndForCircle(double radius
,
661 double x1
, double y1
, // Centre of circle
662 double x2
, double y2
, // Other end of line
663 double *x3
, double *y3
)
665 double H
= (double)sqrt((x2
- x1
)*(x2
- x1
) + (y2
- y1
)*(y2
- y1
));
674 *y3
= radius
* (y2
- y1
)/H
+ y1
;
675 *x3
= radius
* (x2
- x1
)/H
+ x1
;
680 * Given the line (x1, y1) -> (x2, y2), and an arrow size of given length and width,
681 * return the position of the tip of the arrow and the left and right vertices of the arrow.
685 void oglGetArrowPoints(double x1
, double y1
, double x2
, double y2
,
686 double length
, double width
,
687 double *tip_x
, double *tip_y
,
688 double *side1_x
, double *side1_y
,
689 double *side2_x
, double *side2_y
)
691 double l
= (double)sqrt((x2
- x1
)*(x2
- x1
) + (y2
- y1
)*(y2
- y1
));
696 double i_bar
= (x2
- x1
)/l
;
697 double j_bar
= (y2
- y1
)/l
;
699 double x3
= (- length
*i_bar
) + x2
;
700 double y3
= (- length
*j_bar
) + y2
;
702 *side1_x
= width
*(-j_bar
) + x3
;
703 *side1_y
= width
*i_bar
+ y3
;
705 *side2_x
= -width
*(-j_bar
) + x3
;
706 *side2_y
= -width
*i_bar
+ y3
;
708 *tip_x
= x2
; *tip_y
= y2
;
712 * Given an ellipse and endpoints of a line, returns the point at which
713 * the line touches the ellipse in values x4, y4.
714 * This function assumes that the centre of the ellipse is at x1, y1, and the
715 * ellipse has a width of width1 and a height of height1. It also assumes you are
716 * wanting to draw an arc FROM point x2, y2 TOWARDS point x3, y3.
717 * This function calculates the x,y coordinates of the intersection point of
718 * the arc with the ellipse.
719 * Author: Ian Harrison
722 void oglDrawArcToEllipse(double x1
, double y1
, double width1
, double height1
, double x2
, double y2
, double x3
, double y3
,
723 double *x4
, double *y4
)
725 double a1
= (double)(width1
/2.0);
726 double b1
= (double)(height1
/2.0);
728 // These are required to give top left x and y coordinates for DrawEllipse
729 // double top_left_x1 = (double)(x1 - a1);
730 // double top_left_y1 = (double)(y1 - b1);
732 // Check for vertical line
733 if (fabs(x2 - x3) < 0.05)
737 *y4 = (double)(y1 - b1);
739 *y4 = (double)(y1 + b1);
743 // Check that x2 != x3
744 if (fabs(x2
- x3
) < 0.05)
748 *y4
= (double)(y1
- sqrt((b1
*b1
- (((x2
-x1
)*(x2
-x1
))*(b1
*b1
)/(a1
*a1
)))));
750 *y4
= (double)(y1
+ sqrt((b1
*b1
- (((x2
-x1
)*(x2
-x1
))*(b1
*b1
)/(a1
*a1
)))));
754 // Calculate the x and y coordinates of the point where arc intersects ellipse
756 double A
, B
, C
, D
, E
, F
, G
, H
, K
;
757 double ellipse1_x
, ellipse1_y
;
759 A
= (double)(1/(a1
* a1
));
760 B
= (double)((y3
- y2
) * (y3
- y2
)) / ((x3
- x2
) * (x3
- x2
) * b1
* b1
);
761 C
= (double)(2 * (y3
- y2
) * (y2
- y1
)) / ((x3
- x2
) * b1
* b1
);
762 D
= (double)((y2
- y1
) * (y2
- y1
)) / (b1
* b1
);
764 F
= (double)(C
- (2 * A
* x1
) - (2 * B
* x2
));
765 G
= (double)((A
* x1
* x1
) + (B
* x2
* x2
) - (C
* x2
) + D
- 1);
766 H
= (double)((y3
- y2
) / (x3
- x2
));
767 K
= (double)((F
* F
) - (4 * E
* G
));
770 // In this case the line intersects the ellipse, so calculate intersection
774 ellipse1_x
= (double)(((F
* -1) + sqrt(K
)) / (2 * E
));
775 ellipse1_y
= (double)((H
* (ellipse1_x
- x2
)) + y2
);
779 ellipse1_x
= (double)(((F
* -1) - sqrt(K
)) / (2 * E
));
780 ellipse1_y
= (double)((H
* (ellipse1_x
- x2
)) + y2
);
784 // in this case, arc does not intersect ellipse, so just draw arc
793 // Draw a little circle (radius = 2) at the end of the arc where it hits
796 double circle_x = ellipse1_x - 2.0;
797 double circle_y = ellipse1_y - 2.0;
798 m_canvas->DrawEllipse(circle_x, circle_y, 4.0, 4.0);
802 // Update a list item from a list of strings
803 void UpdateListBox(wxListBox
*item
, wxList
*list
)
809 wxNode
*node
= list
->GetFirst();
812 wxChar
*s
= (wxChar
*)node
->GetData();
814 node
= node
->GetNext();
818 bool oglRoughlyEqual(double val1
, double val2
, double tol
)
820 return ( (val1
< (val2
+ tol
)) && (val1
> (val2
- tol
)) &&
821 (val2
< (val1
+ tol
)) && (val2
> (val1
- tol
)));
825 * Hex<->Dec conversion
828 // Array used in DecToHex conversion routine.
829 static wxChar sg_HexArray
[] = { wxT('0'), wxT('1'), wxT('2'), wxT('3'),
830 wxT('4'), wxT('5'), wxT('6'), wxT('7'),
831 wxT('8'), wxT('9'), wxT('A'), wxT('B'),
832 wxT('C'), wxT('D'), wxT('E'), wxT('F')
835 // Convert 2-digit hex number to decimal
836 unsigned int oglHexToDec(wxChar
* buf
)
838 int firstDigit
, secondDigit
;
840 if (buf
[0] >= wxT('A'))
841 firstDigit
= buf
[0] - wxT('A') + 10;
843 firstDigit
= buf
[0] - wxT('0');
845 if (buf
[1] >= wxT('A'))
846 secondDigit
= buf
[1] - wxT('A') + 10;
848 secondDigit
= buf
[1] - wxT('0');
850 return firstDigit
* 16 + secondDigit
;
853 // Convert decimal integer to 2-character hex string
854 void oglDecToHex(unsigned int dec
, wxChar
*buf
)
856 int firstDigit
= (int)(dec
/16.0);
857 int secondDigit
= (int)(dec
- (firstDigit
*16.0));
858 buf
[0] = sg_HexArray
[firstDigit
];
859 buf
[1] = sg_HexArray
[secondDigit
];
863 // 3-digit hex to wxColour
864 wxColour
oglHexToColour(const wxString
& hex
)
866 if (hex
.Length() == 6)
870 hex
.Mid(0,2).ToLong(&r
, 16);
871 hex
.Mid(2,2).ToLong(&g
, 16);
872 hex
.Mid(4,2).ToLong(&b
, 16);
873 return wxColour(r
, g
, b
);
876 return wxColour(0,0,0);
879 // RGB to 3-digit hex
880 wxString
oglColourToHex(const wxColour
& colour
)
883 unsigned int red
= colour
.Red();
884 unsigned int green
= colour
.Green();
885 unsigned int blue
= colour
.Blue();
887 oglDecToHex(red
, buf
);
888 oglDecToHex(green
, buf
+2);
889 oglDecToHex(blue
, buf
+4);
891 return wxString(buf
);