Sha256: 67ae9a6c14f555ea695cd89c8962a088d794f725e417862eeef5f71b851877e9

Contents?: true

Size: 1.02 KB

Versions: 8

Compression:

Stored size: 1.02 KB

Contents

# Export for 3DE v3 point files
class Tracksperanto::Export::Equalizer3 < Tracksperanto::Export::Base
  
  HEADER = '// 3DE Multiple Tracking Curves Export %d x %d * %d frames'
  
  def self.desc_and_extension
    "3de_v3.txt"
  end
  
  def self.human_name
    "3DE v3 point export .txt file"
  end
  
  def start_export( img_width, img_height)
    @w, @h = img_width, img_height
    # 3DE needs to know the number of keyframes in advance
    @buffer = Tempfile.new("ts3dex")
    @highest_keyframe = 0
  end
  
  def start_tracker_segment(tracker_name)
    @buffer.puts(tracker_name)
  end
  
  def export_point(frame, abs_float_x, abs_float_y, float_residual)
    off_by_one = frame + 1
    @buffer.puts("\t%d\t%.3f\t%.3f" % [off_by_one, abs_float_x, abs_float_y])
    @highest_keyframe = off_by_one if (@highest_keyframe < off_by_one)
  end
  
  def end_export
    @buffer.rewind
    @io.puts(HEADER % [@w, @h, @highest_keyframe])
    @io.puts(@buffer.read) until @buffer.eof?
    @buffer.close!
    @io.puts("") # Newline at end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
tracksperanto-1.8.1 lib/export/equalizer3.rb
tracksperanto-1.8.0 lib/export/equalizer3.rb
tracksperanto-1.7.5 lib/export/equalizer3.rb
tracksperanto-1.7.4 lib/export/equalizer3.rb
tracksperanto-1.7.3 lib/export/equalizer3.rb
tracksperanto-1.7.2 lib/export/equalizer3.rb
tracksperanto-1.7.1 lib/export/equalizer3.rb
tracksperanto-1.7.0 lib/export/equalizer3.rb