Nochmal so als Beweis dass ich mich im code zurechtfinde. SVN crasht momentan beim Laden von Speicherständen da bei der "Dynamisierung" der Kartenabmessungen was übersehen wurde.
habs mal so behoben
Code: Alles auswählen
Index: BotE Game/trunk/Source/Framework/botf2Doc.cpp
===================================================================
--- BotE Game/trunk/Source/Framework/botf2Doc.cpp (revision 73684)
+++ BotE Game/trunk/Source/Framework/botf2Doc.cpp (working copy)
@@ -304,6 +304,8 @@
ar >> m_ptKO;
ar >> STARMAP_SECTORS_HCOUNT;
ar >> STARMAP_SECTORS_VCOUNT;
+
+ AllocateSectorsAndSystems();
// Hauptrassen-Koordinaten laden
m_mRaceKO.clear();
@@ -990,15 +992,7 @@
m_iRound = 1;
- m_Sector = new CSector*[STARMAP_SECTORS_HCOUNT];
- for(int i = 0; i < STARMAP_SECTORS_HCOUNT; i++)
- m_Sector[i] = new CSector[STARMAP_SECTORS_VCOUNT];
- ASSERT(m_Sector);
-
- m_System = new CSystem*[STARMAP_SECTORS_HCOUNT];
- for(int i = 0; i < STARMAP_SECTORS_HCOUNT; i++)
- m_System[i] = new CSystem[STARMAP_SECTORS_VCOUNT];
- ASSERT(m_System);
+ AllocateSectorsAndSystems();
// Generierungssektornamenklasse wieder neu starten
m_ShipArray.RemoveAll();
@@ -6606,4 +6600,17 @@
file.Close();
SetModifiedFlag(FALSE);
return TRUE;
+}
+
+void CBotf2Doc::AllocateSectorsAndSystems()
+{
+ m_Sector = new CSector*[STARMAP_SECTORS_HCOUNT];
+ for(int i = 0; i < STARMAP_SECTORS_HCOUNT; i++)
+ m_Sector[i] = new CSector[STARMAP_SECTORS_VCOUNT];
+ ASSERT(m_Sector);
+
+ m_System = new CSystem*[STARMAP_SECTORS_HCOUNT];
+ for(int i = 0; i < STARMAP_SECTORS_HCOUNT; i++)
+ m_System[i] = new CSystem[STARMAP_SECTORS_VCOUNT];
+ ASSERT(m_System);
}
\ No newline at end of file
Index: BotE Game/trunk/Source/Framework/botf2Doc.h
===================================================================
--- BotE Game/trunk/Source/Framework/botf2Doc.h (revision 73684)
+++ BotE Game/trunk/Source/Framework/botf2Doc.h (working copy)
@@ -343,6 +343,9 @@
public:
afx_msg void OnUpdateFileNew(CCmdUI *pCmdUI);
afx_msg void OnUpdateFileOpen(CCmdUI *pCmdUI);
+
+private:
+ void AllocateSectorsAndSystems();
};
/////////////////////////////////////////////////////////////////////////////
Ich bemerke noch 2 weitere crashs und 1 memory leak aber die stören mich grad nicht so sehr.