forked from paulhoad/gp2careditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCarEditorView.h
More file actions
executable file
·283 lines (266 loc) · 6 KB
/
CarEditorView.h
File metadata and controls
executable file
·283 lines (266 loc) · 6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
// CarEditorView.h : interface of the CCarEditorView class
//
/////////////////////////////////////////////////////////////////////////////
#include "OpenGLView.h"
enum t_CameraView
{
t_Air,
t_Cam1,
t_Cam2,
t_Cam3,
t_Cam4,
t_Cam5,
t_Cam6,
t_Cam7,
t_Cam8,
t_Cam9
};
class CCarEditorView : public COpenGLView
{
protected: // create from serialization only
CCarEditorView();
DECLARE_DYNCREATE(CCarEditorView)
// Attributes
public:
CCarEditorDoc*
GetDocument();
BOOL showFilled;
BOOL showPoints;
BOOL showHelmet;
BOOL showTyres;
BOOL showAxis;
BOOL showCameras;
BOOL showTexture;
BOOL showShadowBox;
BOOL showLines;
BOOL showCulling;
BOOL showNormals;
BOOL showSingleColor;
BOOL showLighting;
BOOL showCar;
BOOL showPointNumbers;
BOOL showVertexNumbers;
BOOL showPolygonNumbers;
BOOL showCameraNumbers;
BOOL showNoseDetail;
BOOL showObject;
BOOL Animation;
t_CameraView currentView;
CString DefaultJamFileName;
CBitmap tyreface;
CBitmap tyre;
CBitmap helmets;
CBitmap shadow;
void
UpdateJamFile();
void
getLookPoint();
void
TextureMap(CBitmap& cbmp);
void
DrawHelmetModel();
void
DrawObjectModel();
void
ReReadJams();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCarEditorView)
public:
virtual void
OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL
PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL
OnPreparePrinting(CPrintInfo* pInfo);
virtual void
OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void
OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CCarEditorView();
#ifdef _DEBUG
virtual void
AssertValid() const;
virtual void
Dump(CDumpContext& dc) const;
#endif
void
OpenGLDrawScene(HDC hdc);
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CCarEditorView)
afx_msg void
OnFillobjects();
afx_msg void
OnUpdateFillobjects(CCmdUI* pCmdUI);
afx_msg void
OnShowPoints();
afx_msg void
OnUpdateShowPoints(CCmdUI* pCmdUI);
afx_msg void
OnShowtyres();
afx_msg void
OnUpdateShowtyres(CCmdUI* pCmdUI);
afx_msg void
OnHelmet();
afx_msg void
OnDrawaxis();
afx_msg void
OnUpdateDrawaxis(CCmdUI* pCmdUI);
afx_msg void
OnShowcameras();
afx_msg void
OnUpdateShowcameras(CCmdUI* pCmdUI);
afx_msg void
OnTexturemaps();
afx_msg void
OnUpdateTexturemaps(CCmdUI* pCmdUI);
afx_msg void
OnUpdateHelmet(CCmdUI* pCmdUI);
afx_msg void
OnShowShadow();
afx_msg void
OnUpdateShowShadow(CCmdUI* pCmdUI);
afx_msg void
OnShowLines();
afx_msg void
OnUpdateShowLines(CCmdUI* pCmdUI);
afx_msg void
OnShowCulling();
afx_msg void
OnUpdateShowCulling(CCmdUI* pCmdUI);
afx_msg void
OnShowNormals();
afx_msg void
OnUpdateShowNormals(CCmdUI* pCmdUI);
afx_msg void
OnShowSingleColor();
afx_msg void
OnUpdateShowSingleColor(CCmdUI* pCmdUI);
afx_msg void
OnLighting();
afx_msg void
OnUpdateLighting(CCmdUI* pCmdUI);
afx_msg void
OnShowCar();
afx_msg void
OnUpdateShowCar(CCmdUI* pCmdUI);
afx_msg void
OnShowPolygonNumbers();
afx_msg void
OnUpdateShowPolygonNumbers(CCmdUI* pCmdUI);
afx_msg void
OnShowPointnumbers();
afx_msg void
OnUpdateShowPointnumbers(CCmdUI* pCmdUI);
afx_msg void
OnShowVertexNumbers();
afx_msg void
OnUpdateShowVertexNumbers(CCmdUI* pCmdUI);
afx_msg void
OnShowCameraNumbers();
afx_msg void
OnUpdateShowCameraNumbers(CCmdUI* pCmdUI);
afx_msg void
OnJamSet();
afx_msg void
OnCameraViewfromcamera1();
afx_msg void
OnCameraViewfromcamera2();
afx_msg void
OnCameraViewfromcamera3();
afx_msg void
OnCameraViewfromcamera4();
afx_msg void
OnCameraViewfromcamera5();
afx_msg void
OnCameraViewfromcamera6();
afx_msg void
OnCameraViewfromcamera7();
afx_msg void
OnCameraViewfromcamera8();
afx_msg void
OnCameraViewfromcamera9();
afx_msg void
OnUpdateCameraViewfromcamera1(CCmdUI* pCmdUI);
afx_msg void
OnUpdateCameraViewfromcamera2(CCmdUI* pCmdUI);
afx_msg void
OnUpdateCameraViewfromcamera3(CCmdUI* pCmdUI);
afx_msg void
OnUpdateCameraViewfromcamera4(CCmdUI* pCmdUI);
afx_msg void
OnUpdateCameraViewfromcamera5(CCmdUI* pCmdUI);
afx_msg void
OnUpdateCameraViewfromcamera6(CCmdUI* pCmdUI);
afx_msg void
OnUpdateCameraViewfromcamera7(CCmdUI* pCmdUI);
afx_msg void
OnUpdateCameraViewfromcamera8(CCmdUI* pCmdUI);
afx_msg void
OnUpdateCameraViewfromcamera9(CCmdUI* pCmdUI);
afx_msg void
OnNormalView();
afx_msg void
OnUpdateNormalView(CCmdUI* pCmdUI);
afx_msg void
OnCameraViewrightside();
afx_msg void
OnCameraViewleftside();
afx_msg void
OnCameraViewfront();
afx_msg void
OnCameraViewtop();
afx_msg void
OnCameraViewback();
afx_msg void
OnCameraViewbottom();
afx_msg void
OnCameraViewfrontleft();
afx_msg void
OnCameraViewfrontright();
afx_msg void
OnCameraViewbackleft();
afx_msg void
OnCameraViewbackright();
afx_msg void
OnStartAnimation();
afx_msg void
OnTimer(UINT_PTR nIDEvent);
afx_msg void
OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void
OnUpdateStartAnimation(CCmdUI* pCmdUI);
afx_msg void
OnZoomOut();
afx_msg void
OnZoomIn();
afx_msg int
OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void
OnShowNoseCone();
afx_msg void
OnUpdateShowNoseCone(CCmdUI* pCmdUI);
afx_msg void
OnJamExportrcrjam();
afx_msg void
OnShowObject();
afx_msg void
OnUpdateShowObject(CCmdUI* pCmdUI);
afx_msg void
OnJamDrawrcrjam();
afx_msg void
OnUpdateJamDrawrcrjam(CCmdUI* pCmdUI);
afx_msg void
OnJamProducercrimages();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////