Multiple orbits stuff

pull/1/head
E. Almqvist 4 years ago
parent d7222f3a2b
commit 9ffab0b61c
  1. 15
      physobj.rb

@ -2,7 +2,7 @@ GRAV_CONSTANT = 1e+1
MAX_PATH_TRACK_POINT = 1000 MAX_PATH_TRACK_POINT = 1000
class PhysObj class PhysObj
attr_accessor :world, :saved_pos, :pos, :vel, :accel, :x, :y, :show_info, :angle, :parent_orbit attr_accessor :world, :saved_pos, :pos, :vel, :accel, :x, :y, :show_info, :angle, :parent_orbit, :accel_vecs
attr_reader :name attr_reader :name
def initialize(name, world) def initialize(name, world)
@name = name @name = name
@ -15,11 +15,21 @@ class PhysObj
@show_info = false @show_info = false
@angle = 0 @angle = 0
@parent_orbit = "" @parent_orbit = ""
@accel_vecs = []
end
private def apply_accel_vecs
@accel_vecs.each do |vec|
@accel += vec
end
@accel_vecs = []
end end
def tick def tick
@x, @y = @pos[0], @pos[1] @x, @y = @pos[0], @pos[1]
@angle %= 360 @angle %= 360
self.apply_accel_vecs
if( !world.freeze ) then if( !world.freeze ) then
if( @accel.magnitude != 0 ) then if( @accel.magnitude != 0 ) then
@vel += @accel @vel += @accel
@ -126,8 +136,7 @@ class Planet < PhysObj
if( !self.world.freeze ) then if( !self.world.freeze ) then
physobjs.each do |obj| physobjs.each do |obj|
grav_vec = self.calculate_gravity_vector(obj) grav_vec = self.calculate_gravity_vector(obj)
obj.accel = grav_vec obj.accel_vecs << grav_vec
obj.parent_orbit = self
end end
end end
end end

Loading…
Cancel
Save