mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-26 06:01:14 +00:00
- allow all actor list CCMDs to filter by tid.
This commit is contained in:
parent
a6761463af
commit
a0b830c198
1 changed files with 15 additions and 6 deletions
|
@ -937,14 +937,20 @@ static void PrintFilteredActorList(const ActorTypeChecker IsActorType, const cha
|
||||||
AActor *mo;
|
AActor *mo;
|
||||||
const PClass *FilterClass = NULL;
|
const PClass *FilterClass = NULL;
|
||||||
int counter = 0;
|
int counter = 0;
|
||||||
|
int tid = 0;
|
||||||
|
|
||||||
if (FilterName != NULL)
|
if (FilterName != NULL)
|
||||||
{
|
{
|
||||||
FilterClass = PClass::FindActor(FilterName);
|
FilterClass = PClass::FindActor(FilterName);
|
||||||
if (FilterClass == NULL)
|
if (FilterClass == NULL)
|
||||||
{
|
{
|
||||||
Printf("%s is not an actor class.\n", FilterName);
|
char *endp;
|
||||||
return;
|
tid = (int)strtol(FilterName, &endp, 10);
|
||||||
|
if (*endp != 0)
|
||||||
|
{
|
||||||
|
Printf("%s is not an actor class.\n", FilterName);
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
TThinkerIterator<AActor> it;
|
TThinkerIterator<AActor> it;
|
||||||
|
@ -953,10 +959,13 @@ static void PrintFilteredActorList(const ActorTypeChecker IsActorType, const cha
|
||||||
{
|
{
|
||||||
if ((FilterClass == NULL || mo->IsA(FilterClass)) && IsActorType(mo))
|
if ((FilterClass == NULL || mo->IsA(FilterClass)) && IsActorType(mo))
|
||||||
{
|
{
|
||||||
counter++;
|
if (tid == 0 || tid == mo->tid)
|
||||||
if (!countOnly)
|
{
|
||||||
Printf ("%s at (%f,%f,%f)\n",
|
counter++;
|
||||||
mo->GetClass()->TypeName.GetChars(), mo->X(), mo->Y(), mo->Z());
|
if (!countOnly)
|
||||||
|
Printf("%s at (%f,%f,%f)\n",
|
||||||
|
mo->GetClass()->TypeName.GetChars(), mo->X(), mo->Y(), mo->Z());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Printf("%i match(s) found.\n", counter);
|
Printf("%i match(s) found.\n", counter);
|
||||||
|
|
Loading…
Reference in a new issue