Serious-Engine/Sources/Engine/Templates/Selection.cpp

97 lines
2.1 KiB
C++
Raw Normal View History

2016-03-11 14:57:17 +01:00
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
#ifndef SE_INCL_SELECTION_CPP
#define SE_INCL_SELECTION_CPP
#ifdef PRAGMA_ONCE
#pragma once
#endif
#include <Engine/Templates/Selection.h>
#include <Engine/Templates/DynamicContainer.cpp>
/*
* Select one object.
*/
template<class cType, unsigned long ulFlag>
void CSelection<cType, ulFlag>::Select(cType &tToSelect)
{
// if the object is not yet selected
if (!tToSelect.IsSelected(ulFlag)) {
// select it
tToSelect.Select(ulFlag);
// add it to this container
this->Add(&tToSelect);
2016-03-11 14:57:17 +01:00
// if the object is already selected
} else {
ASSERTALWAYS("Object already selected!");
}
}
/*
* Deselect one object.
*/
template<class cType, unsigned long ulFlag>
void CSelection<cType, ulFlag>::Deselect(cType &tToSelect)
{
// if the object is selected
if (tToSelect.IsSelected(ulFlag)) {
// deselect it
tToSelect.Deselect(ulFlag);
// remove it from this container
Remove(&tToSelect);
// if the object is not selected
} else {
ASSERTALWAYS("Object is not selected!");
}
}
/*
* Test if one object is selected.
*/
template<class cType, unsigned long ulFlag>
BOOL CSelection<cType, ulFlag>::IsSelected(cType &tToSelect)
{
// test if the object is selected
return tToSelect.IsSelected(ulFlag);
}
/*
* Deselect all objects.
*/
template<class cType, unsigned long ulFlag>
void CSelection<cType, ulFlag>::Clear(void)
{
// for all objects in the container
FOREACHINDYNAMICCONTAINER(*this, cType, itObject) {
// object must be allocated and valid
#ifdef _MSC_VER
2016-03-11 14:57:17 +01:00
ASSERT(_CrtIsValidPointer(&*itObject, sizeof(cType), TRUE));
/*
ASSERT(_CrtIsValidHeapPointer(&*itObject));
2016-03-11 14:57:17 +01:00
ASSERT(_CrtIsMemoryBlock(&*itObject, sizeof(cType), NULL, NULL, NULL ));
*/
#endif
2016-03-11 14:57:17 +01:00
// deselect it
itObject->Deselect(ulFlag);
}
// clear the entire container at once
CDynamicContainer<cType>::Clear();
}
template<class cType, unsigned long ulFlag>
cType *CSelection<cType, ulFlag>::GetFirstInSelection(void)
{
if( this->Count() == 0)
2016-03-11 14:57:17 +01:00
{
return NULL;
}
return (cType *) &CDynamicContainer<cType>::GetFirst();
}
#endif /* include-once check. */