File: editorView.h

package info (click to toggle)
descent3 1.5.0%2Bds-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 35,256 kB
  • sloc: cpp: 416,147; ansic: 3,233; sh: 10; makefile: 8
file content (364 lines) | stat: -rw-r--r-- 10,706 bytes parent folder | download | duplicates (2)
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.

--- HISTORICAL COMMENTS FOLLOW ---

 * $Logfile: /DescentIII/Main/editor/editorView.h $
 * $Revision: 1.1.1.1 $
 * $Date: 2003-08-26 03:57:37 $
 * $Author: kevinb $
 *
 * CEditorView containss GrWnds and other editor views.
 *
 * $Log: not supported by cvs2svn $
 *
 * 48    10/14/99 4:21p Matt
 * Added code to remove duplicate faces from a room.
 *
 * 47    10/07/99 3:12p Matt
 * Added a function to flip the view 180 degrees.
 *
 * 46    9/07/99 12:10p Matt
 * Added a function to propagate a texture to all adjacent coplanar faces
 * in a room.
 *
 * 45    8/24/99 4:24p Matt
 * Added a function to rotate a placed room by 45 degrees.
 *
 * 44    5/08/99 6:39p Matt
 * Added a function to delete a face and all faces connected to it.
 *
 * 43    4/30/99 6:52p Matt
 * Added a function to merge an object's geometry into a room.
 *
 * 42    4/28/99 12:51a Matt
 * Added some funtions to edit face geometry.
 *
 * 41    4/19/99 12:10a Matt
 * Added a menu item to delete a vertex from a face.
 *
 * 40    4/06/99 10:23a Matt
 *
 * 39    3/31/99 12:58p Matt
 * Added snap-point-to-face
 *
 * 38    3/29/99 6:46p Matt
 * Added menu item to fix/remove degenerate faces
 *
 * 37    3/23/99 5:12p Matt
 * Added function to combine rooms.
 *
 * 36    3/01/99 10:39p Matt
 * Added menu options to set & clear room center points
 *
 * 35    2/28/99 6:32p Matt
 * Disable z-buffer button if OpenGL is being used in the editor.
 *
 * 34    1/15/99 10:50a Matt
 * Added rename room to Room menu & added shortcut key
 *
 * 33    12/23/98 10:53a Matt
 * Added functions to create a face
 *
 * 32    10/03/98 11:22p Matt
 * Added system to seperately control outline mode for mine, terrain, sky,
 * & objects
 *
 * 31    10/03/98 8:31p Matt
 * Added Join Rooms Exact function.
 *
 * 30    9/09/98 4:07p Matt
 * Added Smooth Bridge function
 *
 * 29    9/08/98 6:12p Matt
 * Added code to check for and fix duplicate and unused points.
 *
 * 28    9/08/98 12:06p Jason
 * added ReInit openGL button
 *
 * 27    9/07/98 10:58p Matt
 * Added snap point to point.
 *
 * 26    9/04/98 3:34p Matt
 * Added groovy vertex snap code
 *
 * 25    6/25/98 7:15p Matt
 * Added a function to delete a pair of portals.
 *
 * 24    6/08/98 12:28p Matt
 * Added a function to triangulate a face
 *
 * 23    5/22/98 4:47p Matt
 * Added menu item to propagate a texture to all the faces in a room.
 *
 * 22    4/27/98 6:41p Matt
 * Added code to join all adjacent faces between two rooms
 *
 * 21    2/16/98 1:27p Matt
 * Added function to snap the placed room to a vertex/edge on the base
 * room/face
 *
 * 20    2/11/98 12:39p Matt
 * Implemented Delete Face menu item.
 *
 * 19    1/29/98 2:15p Samir
 * Implemented ObjectListModeless and Toolbar button.
 *
 * 18    1/27/98 6:15p Samir
 * Added Object toolbar button.
 *
 * 17    1/20/98 4:08p Matt
 * Added function to swap current and marked room:face.  Added some
 * addition error checking to bridge function.
 *
 * 16    11/05/97 7:13p Matt
 * Added join rooms function
 *
 * 15    10/03/97 3:37p Matt
 * Added menu item to place a building on the terrain
 *
 * 14    9/24/97 3:22p Matt
 * Added Drop Room function
 *
 * 13    9/17/97 11:21a Matt
 * Ripped out segment code
 *
 * 12    9/16/97 4:09p Jason
 * implemented software zbuffer
 *
 * 11    9/14/97 11:07p Matt
 * Fixed up Room menu
 *
 * 10    8/21/97 6:00p Matt
 * Added delete current room function
 *
 * 9     8/19/97 5:58p Samir
 * OLE additions
 *
 * 8     8/19/97 10:54a Matt
 * Added remove placed room option
 *
 * 7     8/18/97 6:59p Matt
 * Implemented Place Room/Attach room system
 *
 * 6     8/04/97 12:52p Matt
 * Added hooks for mark & bridge
 *
 * 5     8/01/97 6:10p Matt
 * Added hooks for attach room
 *
 * 4     7/28/97 11:29a Samir
 * Fixed editor->game goofiness.  Isolated GrWnd creation and destruction
 * to a couple of functions.
 *
 * 3     7/22/97 10:33a Matt
 * Added functions for new room menu
 *
 * 18    6/30/97 1:29p Jason
 * added netherspace stuff
 *
 * 17    6/03/97 4:55p Mark
 *
 * 16    5/27/97 3:30p Matt
 * Added editor button to toggle lighting
 *
 * 15    4/03/97 1:17p Matt
 * Took out support for toolbar movement mode toggle button, now that that
 * function has been moved to the object keypad.
 *
 * 14    4/02/97 8:07p Matt
 * Added variable & button to toggle object move state
 *
 * 13    3/07/97 4:18p Jason
 * implemented terrain functionality in the editor
 *
 * 12    2/28/97 6:37p Matt
 * Added variable & toggle button for box selection mode
 *
 * 11    2/11/97 1:42p Samir
 * Moved file opening and closing to editorDoc where it should be.
 *
 * 10    2/10/97 5:40p Matt
 * Code to handle several File menu options
 *
 * 9     2/07/97 7:41p Matt
 * Hooked in next & prev segment & side funcs
 *
 * 8     1/23/97 4:09p Samir
 * Added stuff for toggling wireframe, texture windows, tiling or
 * cascading
 *
 * 7     1/21/97 12:51p Samir
 * GrWnds created based on D3EditState info
 *
 * $NoKeywords: $
 */

// editorView.h : interface of the CEditorView class
//
/////////////////////////////////////////////////////////////////////////////

#ifndef C_EDITORVIEW_H
#define C_EDITORVIEW_H

#include "WireframeGrWnd.h"
#include "TextureGrWnd.h"

class CEditorView : public CView {
protected: // create from serialization only
  CEditorView();
  DECLARE_DYNCREATE(CEditorView)

  // Attributes
public:
  int SafetyCheck();
  CEditorDoc *GetDocument();

  // Operations
public:
  void ActivateView();
  void DeactivateView();
  bool SetupPopup(CMenu *popup);

  // Overrides
  // ClassWizard generated virtual function overrides
  //{{AFX_VIRTUAL(CEditorView)
public:
  virtual void OnDraw(CDC *pDC); // overridden to draw this view
  virtual BOOL PreCreateWindow(CREATESTRUCT &cs);
  virtual void OnInitialUpdate();

protected:
  virtual BOOL OnPreparePrinting(CPrintInfo *pInfo);
  virtual void OnBeginPrinting(CDC *pDC, CPrintInfo *pInfo);
  virtual void OnEndPrinting(CDC *pDC, CPrintInfo *pInfo);
  virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  //}}AFX_VIRTUAL

  // Implementation
public:
  virtual ~CEditorView();
#ifdef _DEBUG
  virtual void AssertValid() const;
  virtual void Dump(CDumpContext &dc) const;
#endif

protected:
  // Generated message map functions
protected:
  //{{AFX_MSG(CEditorView)
  afx_msg void OnSize(UINT nType, int cx, int cy);
  afx_msg void OnDestroy();
  afx_msg void OnButtonOutline();
  afx_msg void OnUpdateButtonOutline(CCmdUI *pCmdUI);
  afx_msg void OnUpdateViewTexturemine(CCmdUI *pCmdUI);
  afx_msg void OnViewTexturemine();
  afx_msg void OnUpdateViewWireframemine(CCmdUI *pCmdUI);
  afx_msg void OnViewWireframemine();
  afx_msg void OnParentNotify(UINT message, LPARAM lParam);
  afx_msg void OnWindowTile();
  afx_msg void OnWindowCascade();
  afx_msg void OnButtonWindowSelection();
  afx_msg void OnUpdateButtonWindowSelection(CCmdUI *pCmdUI);
  afx_msg void OnButtonLighting();
  afx_msg void OnUpdateButtonLighting(CCmdUI *pCmdUI);
  afx_msg BOOL OnHelpInfo(HELPINFO *pHelpInfo);
  afx_msg void OnRoomAdd();
  afx_msg void OnRoomGrabTexture();
  afx_msg void OnRoomNextFace();
  afx_msg void OnRoomPreviousFace();
  afx_msg void OnRoomSelectByNumber();
  afx_msg void OnRoomAttachRoom();
  afx_msg void OnRoomBuildBridge();
  afx_msg void OnRoomMark();
  afx_msg void OnRoomPlaceRoom();
  afx_msg void OnUpdateRoomAttachRoom(CCmdUI *pCmdUI);
  afx_msg void OnRoomUnPlaceRoom();
  afx_msg void OnUpdateRoomUnPlaceRoom(CCmdUI *pCmdUI);
  afx_msg void OnCancelEditSrvr();
  afx_msg void OnRoomDelete();
  afx_msg void OnRoomSelectFaceByNumber();
  afx_msg void OnRoomSaveCurrentRoom();
  afx_msg void OnZbutton();
  afx_msg void OnUpdateZbutton(CCmdUI *pCmdUI);
  afx_msg void OnRoomDropRoom();
  afx_msg void OnRoomPlaceTerrainRoom();
  afx_msg void OnRoomJoinRooms();
  afx_msg void OnRoomSwapMarkedAndCurrentRoomFace();
  afx_msg void OnRoomDeleteFace();
  afx_msg void OnRoomSnapPlacedRoom();
  afx_msg void OnUpdateRoomSnapPlacedRoom(CCmdUI *pCmdUI);
  afx_msg void OnRoomJoinAdjacentFaces();
  afx_msg void OnRoomPropagateToAll();
  afx_msg void OnRoomSplitFace();
  afx_msg void OnRoomDeletePortal();
  afx_msg void OnRoomSnapPointToEdge();
  afx_msg void OnRoomUndoSnap();
  afx_msg void OnUpdateRoomUndoSnap(CCmdUI *pCmdUI);
  afx_msg void OnRoomSnapPointToPoint();
  afx_msg void OnReinitOpengl();
  afx_msg void OnUpdateReinitOpengl(CCmdUI *pCmdUI);
  afx_msg void OnFileRemoveExtraPoints();
  afx_msg void OnRoomBuildSmoothBridge();
  afx_msg void OnRoomJoinRoomsExact();
  afx_msg void OnRoomStartNewFace();
  afx_msg void OnRoomFinishNewFace();
  afx_msg void OnRoomAddVertToNewFace();
  afx_msg void OnRoomRenameRoom();
  afx_msg void OnRoomSetCenterFromViewer();
  afx_msg void OnRoomClearCenterPoint();
  afx_msg void OnUpdateRoomClearCenterPoint(CCmdUI *pCmdUI);
  afx_msg void OnUpdateRoomSetCenterFromViewer(CCmdUI *pCmdUI);
  afx_msg void OnRoomCombine();
  afx_msg void OnFileFixDegenerateFaces();
  afx_msg void OnRoomSnapPointToFace();
  afx_msg void OnRoomLinkToNewExternal();
  afx_msg void OnRoomDeleteVert();
  afx_msg void OnRoomFaceAddVertToEdge();
  afx_msg void OnRoomFaceMoveVertOnEdge();
  afx_msg void OnRoomFaceSplitFace();
  afx_msg void OnRoomFaceDeleteVertOnEdge();
  afx_msg void OnRoomMergeObjectIntoRoom();
  afx_msg void OnRoomDeleteConnectedFaces();
  afx_msg void OnRoomRotatePlacedRoom45Degrees();
  afx_msg void OnRoomPropagateToAdjacentCoplanarFaces();
  afx_msg void OnViewFlip();
  afx_msg void OnFileRemoveDuplicateFacesFromCurrentRoom();
  //}}AFX_MSG
  DECLARE_MESSAGE_MAP()

  //	afx_msg void OnFileSave();
  //	afx_msg void OnFileSaveAs();

private:
  CWireframeGrWnd m_grwndWireframe;
  CTextureGrWnd m_grwndTexture;

  BOOL m_grwndCreated;
  BOOL m_grwndActive;

private:
  void KillChildViews();
  void CreateChildViews();
};

#ifndef _DEBUG // debug version in editorView.cpp
inline CEditorDoc *CEditorView::GetDocument() { return (CEditorDoc *)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////
#endif