00001 00013 /*************************************************************************** 00014 * Copyright (C) 2007 by Jan Koci * 00015 * honza.koci@email.cz * 00016 * http://kengine.sourceforge.net/tutorial/ 00017 * * 00018 * This program is free software; you can redistribute it and/or modify * 00019 * it under the terms of the GNU General Public License as published by * 00020 * the Free Software Foundation; either version 2 of the License, or * 00021 * (at your option) any later version. * 00022 * * 00023 * This program is distributed in the hope that it will be useful, * 00024 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00025 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00026 * GNU General Public License for more details. * 00027 * * 00028 * You should have received a copy of the GNU General Public License * 00029 * along with this program; if not, write to the * 00030 * Free Software Foundation, Inc., * 00031 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00032 ***************************************************************************/ 00033 00034 #include "K3dVector2Build.h" 00035 00039 K3dVector2Build::K3dVector2Build(K3dGameData *_pGameData) 00040 { 00041 m_pGameData = _pGameData; 00042 // Set this pointer to the game data 00043 m_pGameData->SetVector2Build(this); 00044 } 00045 00046 K3dVector2Build::~K3dVector2Build() 00047 { 00048 while(m_pGameData->GetVector2SP().GetNum()) 00049 { 00050 K3dVector2 *p = m_pGameData->GetVector2SP().Get(0); 00051 p = m_pGameData->GetVector2SP().Delete(p); 00052 } 00053 } 00054 00057 K3dVector2 *K3dVector2Build::CreateNewVector2() 00058 { 00059 // Create new vector 00060 K3dVector2 *pVector = m_pGameData->GetVector2SP().New(); 00061 // Set vector index 00062 pVector->GetId() = m_pGameData->GetVector2SP().GetNum()-1; 00063 return pVector; 00064 }