mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
28 lines
456 B
Perl
Executable File
28 lines
456 B
Perl
Executable File
if( scalar( @ARGV ) != 1 )
|
|
{
|
|
die "Usage: playback_numprims.pl frame.txt\n";
|
|
}
|
|
open INPUT, shift || die;
|
|
$numprims = 0;
|
|
$numcalls = 0;
|
|
while( <INPUT> )
|
|
{
|
|
if( /DrawIndexedPrimitive.*numPrimitives:\s*(\d+)\s*$/i )
|
|
{
|
|
$numprims += $1;
|
|
if( $1 > 85 )
|
|
{
|
|
$numfreeprims += $1;
|
|
}
|
|
else
|
|
{
|
|
$numfreeprims += 85;
|
|
}
|
|
$numcalls++;
|
|
}
|
|
}
|
|
close INPUT;
|
|
print "$numprims primitives\n";
|
|
print "$numfreeprims freeprimitives\n";
|
|
print "$numcalls calls\n";
|