doom3-gpl
Doom 3 GPL source release
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MapInfo.cpp
Go to the documentation of this file.
1 /*
2 ===========================================================================
3 
4 Doom 3 GPL Source Code
5 Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
6 
7 This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
8 
9 Doom 3 Source Code is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
13 
14 Doom 3 Source Code is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18 
19 You should have received a copy of the GNU General Public License
20 along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
21 
22 In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
23 
24 If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
25 
26 ===========================================================================
27 */
28 
29 #include "../../idlib/precompiled.h"
30 #pragma hdrstop
31 
32 #include "qe3.h"
33 #include "Radiant.h"
34 #include "MapInfo.h"
35 
36 #ifdef _DEBUG
37 #define new DEBUG_NEW
38 #undef THIS_FILE
39 static char THIS_FILE[] = __FILE__;
40 #endif
41 
43 // CMapInfo dialog
44 
45 
46 CMapInfo::CMapInfo(CWnd* pParent /*=NULL*/)
47  : CDialog(CMapInfo::IDD, pParent)
48 {
49  //{{AFX_DATA_INIT(CMapInfo)
50  m_nNet = 0;
51  m_nTotalBrushes = 0;
52  m_nTotalEntities = 0;
53  //}}AFX_DATA_INIT
54 }
55 
56 
57 void CMapInfo::DoDataExchange(CDataExchange* pDX)
58 {
59  CDialog::DoDataExchange(pDX);
60  //{{AFX_DATA_MAP(CMapInfo)
61  DDX_Control(pDX, IDC_LIST_ENTITIES, m_lstEntity);
62  DDX_Text(pDX, IDC_EDIT_NET, m_nNet);
63  DDX_Text(pDX, IDC_EDIT_TOTALBRUSHES, m_nTotalBrushes);
65  //}}AFX_DATA_MAP
66 }
67 
68 
69 BEGIN_MESSAGE_MAP(CMapInfo, CDialog)
70  //{{AFX_MSG_MAP(CMapInfo)
71  //}}AFX_MSG_MAP
72 END_MESSAGE_MAP()
73 
75 // CMapInfo message handlers
76 
77 BOOL CMapInfo::OnInitDialog()
78 {
79  CDialog::OnInitDialog();
80 
81  m_nTotalBrushes = 0;
82  m_nTotalEntities = 0;
83  m_nNet = 0;
84  for (brush_t* pBrush=active_brushes.next ; pBrush != &active_brushes ; pBrush=pBrush->next)
85  {
86  m_nTotalBrushes++;
87  if (pBrush->owner == world_entity)
88  m_nNet++;
89  }
90 
91 
92  CMapStringToPtr mapEntity;
93 
94  int nValue = 0;
95  for (entity_t* pEntity=entities.next ; pEntity != &entities ; pEntity=pEntity->next)
96  {
97  m_nTotalEntities++;
98  nValue = 0;
99  mapEntity.Lookup(pEntity->eclass->name, reinterpret_cast<void*&>(nValue));
100  nValue++ ;
101  mapEntity.SetAt(pEntity->eclass->name, reinterpret_cast<void*>(nValue));
102  }
103 
104  m_lstEntity.ResetContent();
105  m_lstEntity.SetTabStops(96);
106  CString strKey;
107  POSITION pos = mapEntity.GetStartPosition();
108  while (pos)
109  {
110  mapEntity.GetNextAssoc(pos, strKey, reinterpret_cast<void*&>(nValue));
111  CString strList;
112  strList.Format("%s\t%i", strKey, nValue);
113  m_lstEntity.AddString(strList);
114  }
115 
116  UpdateData(FALSE);
117 
118  return TRUE; // return TRUE unless you set the focus to a control
119  // EXCEPTION: OCX Property Pages should return FALSE
120 }
int m_nNet
Definition: MapInfo.h:50
entity_t * world_entity
Definition: EditorMap.cpp:49
brush_t active_brushes
Definition: EditorMap.cpp:39
int m_nTotalEntities
Definition: MapInfo.h:52
#define BOOL
Definition: mprintf.c:71
#define IDC_EDIT_TOTALBRUSHES
#define IDC_LIST_ENTITIES
struct entity_s * next
Definition: EditorEntity.h:34
CMapInfo(CWnd *pParent=NULL)
Definition: MapInfo.cpp:46
int m_nTotalBrushes
Definition: MapInfo.h:51
#define IDC_EDIT_NET
entity_t entities
Definition: EditorMap.cpp:47
#define FALSE
Definition: mprintf.c:70
CListBox m_lstEntity
Definition: MapInfo.h:49
#define IDC_EDIT_TOTALENTITIES
#define TRUE
Definition: mprintf.c:69
virtual void DoDataExchange(CDataExchange *pDX)
Definition: MapInfo.cpp:57