Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
365 B

  1. if( scalar( @ARGV ) != 2 )
  2. {
  3. die "Usage: playback_getframe.pl framenum blah.txt\n";
  4. }
  5. # getframe.pl framenum blah.txt
  6. $line = 0;
  7. $desiredFrame = shift;
  8. $frame = 1;
  9. open INPUT, shift || die;
  10. while( <INPUT> )
  11. {
  12. $line++;
  13. if( /Dx8Present/ )
  14. {
  15. $frame++;
  16. }
  17. if( $frame == $desiredFrame )
  18. {
  19. print "$line: $_";
  20. }
  21. last if $frame > $desiredFrame;
  22. }
  23. close INPUT;