Sha256: f3dfdace6c7ef9228995aa60513072965d8c34cbcc3b9e8da1aed623aa1d410a

Contents?: true

Size: 918 Bytes

Versions: 3

Compression:

Stored size: 918 Bytes

Contents

require 'chipmunk'

module ChipMunk
  def cp_space
    @space = CP::Space.new
    @space.damping = 0.8
    @space.gravity = vec2 0, 25
    @space
  end

  def cp_oval l, t, r, opts = {}
    b = CP::Body.new 1,1
    b.p = vec2 l, t
    @space.add_body b
    @space.add_shape CP::Shape::Circle.new(b, r, vec2(0, 0))
      
    img = image left: l-r-1, top: t-r-1, width: 2*r+2, height: 2*r+2, body: b, inflate: r-2 do
      oval 1, 1, 2*r, opts
    end
  end
  
  def cp_line x0, y0, x1, y1, opts = {}
    opts[:strokewidth] = 5 unless opts[:strokewidth]
    sb = CP::Body.new 1.0/0.0, 1.0/0.0
    seg = CP::Shape::Segment.new sb, vec2(x0, y0), vec2(x1, y1), opts[:strokewidth]
    @space.add_shape seg
    line x0, y0, x1, y1, opts
  end
end

Shoes::Image.class_eval do
  def cp_move
    move style[:body].p.x.to_i - style[:inflate], style[:body].p.y.to_i - style[:inflate]
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shoesgem-0.1480.0 shoes/lib/shoes/chipmunk.rb
shoesgem-0.1469.0 shoes/lib/shoes/chipmunk.rb
shoesgem-0.1430.0 shoes/lib/shoes/chipmunk.rb