Sha256: ec072107b8c3aa4f6f3fb6688a839f71e4686b9225fdbe2e8d529700973faaa3

Contents?: true

Size: 1.14 KB

Versions: 14

Compression:

Stored size: 1.14 KB

Contents

class Tracksperanto::Import::PFTrack < Tracksperanto::Import::Base
  def self.human_name
    "PFTrack .2dt file"
  end
  
  def self.distinct_file_ext
    ".2dt"
  end
  
  CHARACTERS = /[AZaz]/
  
  def parse(io)
    trackers = []
    until io.eof?
      line = io.gets
      next if (!line || line =~ /^#/)
      
      if line =~ CHARACTERS # Tracker with a name
        t = Tracksperanto::Tracker.new{|t| t.name = line.strip.gsub(/"/, '') }
        report_progress("Reading tracker #{t.name}")
        parse_tracker(t, io)
        trackers << t
      end
    end
    
    trackers
  end
  
  private
    def parse_tracker(t, io)
      first_tracker_line = io.gets.chomp
      
      if first_tracker_line =~ CHARACTERS # PFTrack version 5 format
        first_tracker_line = io.gets.chomp
      end
      
      num_of_keyframes = first_tracker_line.to_i
      t.keyframes = (1..num_of_keyframes).map do | keyframe_idx |
        report_progress("Reading keyframe #{keyframe_idx} of #{num_of_keyframes} in #{t.name}")
        Tracksperanto::Keyframe.new do |k| 
          k.frame, k.abs_x, k.abs_y, k.residual = io.gets.chomp.split
        end
      end
    end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
tracksperanto-1.8.2 lib/import/pftrack.rb
tracksperanto-1.8.1 lib/import/pftrack.rb
tracksperanto-1.8.0 lib/import/pftrack.rb
tracksperanto-1.7.5 lib/import/pftrack.rb
tracksperanto-1.7.4 lib/import/pftrack.rb
tracksperanto-1.7.3 lib/import/pftrack.rb
tracksperanto-1.7.2 lib/import/pftrack.rb
tracksperanto-1.7.1 lib/import/pftrack.rb
tracksperanto-1.7.0 lib/import/pftrack.rb
tracksperanto-1.6.9 lib/import/pftrack.rb
tracksperanto-1.6.8 lib/import/pftrack.rb
tracksperanto-1.6.7 lib/import/pftrack.rb
tracksperanto-1.6.6 lib/import/pftrack.rb
tracksperanto-1.6.5 lib/import/pftrack.rb